You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update VSCode extension from 2.2.4 to 2.4.0 with comprehensive changelog
documenting all user-facing changes from the internal sync.
Major changes:
- Add topic block deprecation warning
- Add @voicecall context variable support
- Add @utils.end_session tool support
- Enhanced code completion with indentation-based fallback
- New validation rules for routes, spread operators, and duplicates
- Connection syntax updates (response_tools → response_actions)
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
- Syntax highlighting now works correctly with light themes and third-party color themes.
54
+
- Special character escaping in string literals during compilation.
55
+
56
+
### Changed
57
+
58
+
- Removed `unused-variable` lint warnings (now shown as informational diagnostics).
59
+
- Removed non-existent `@utils.supervise` from language completions.
60
+
- Updated dependencies:
61
+
-@agentscript/agentforce@2.5.19
62
+
-@agentscript/lsp-server@2.2.14
63
+
64
+
## [2.2.3] - 2026-4-14
65
+
66
+
### Added
67
+
68
+
- Syntax support for `on_init` and `on_exit` properties on custom subagents.
69
+
- Syntax support for the spread operator (`*expr`) to unpack arrays in function calls and list literals. For example: `fn(*@variables.items)` or `[*@variables.existing, new_item]`.
70
+
- Enhanced validation and code completion for custom subagent schemas.
71
+
72
+
### Changed
73
+
74
+
- Action parameter type mismatches now appear as warnings instead of errors, allowing for more flexible type handling.
0 commit comments