@elyracode/coding-agent 0.5.13 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -2
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +6 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/compaction/compaction.d.ts.map +1 -1
- package/dist/core/compaction/compaction.js +35 -7
- package/dist/core/compaction/compaction.js.map +1 -1
- package/dist/core/compaction/utils.d.ts.map +1 -1
- package/dist/core/compaction/utils.js +1 -1
- package/dist/core/compaction/utils.js.map +1 -1
- package/dist/core/extensions/types.d.ts +1 -1
- package/dist/core/extensions/types.d.ts.map +1 -1
- package/dist/core/extensions/types.js.map +1 -1
- package/dist/core/keybindings.d.ts +1 -1
- package/dist/core/keybindings.d.ts.map +1 -1
- package/dist/core/keybindings.js.map +1 -1
- package/dist/core/sdk.d.ts +1 -1
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +25 -27
- package/dist/core/sdk.js.map +1 -1
- package/dist/core/smart-router.d.ts +2 -2
- package/dist/core/smart-router.d.ts.map +1 -1
- package/dist/core/smart-router.js +64 -10
- package/dist/core/smart-router.js.map +1 -1
- package/dist/core/system-prompt.d.ts.map +1 -1
- package/dist/core/system-prompt.js +2 -9
- package/dist/core/system-prompt.js.map +1 -1
- package/dist/utils/clipboard-image.d.ts.map +1 -1
- package/dist/utils/clipboard-image.js +1 -1
- package/dist/utils/clipboard-image.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
3
|
+
## [0.6.0] - 2026-05-17
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
|
-
- `/footer` command: toggle between full and minimal footer. Minimal shows only cwd, git branch, and model name
|
|
6
|
+
- `/footer` command: toggle between full and minimal footer. Minimal shows only cwd, git branch, and model name.
|
|
7
|
+
- Norwegian Midnight built-in theme (Nord palette with deeper backgrounds)
|
|
8
|
+
- `@elyracode/swarm` extension: multi-agent pipeline orchestration with build, review, and refactor pipelines
|
|
9
|
+
- `@elyracode/docker` extension: container-aware development with exec routing, log tailing, compose operations, and environment sync
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Compaction summarization prompts now preserve Architecture & Patterns, Error History, exact file paths, error messages, and stack traces
|
|
13
|
+
- Tool result serialization limit increased from 2000 to 4000 characters for richer compaction context
|
|
14
|
+
- Smart router expanded from 8 to 35 complex keywords covering debugging, architecture, and performance terms
|
|
15
|
+
- Smart router adds hysteresis to prevent tier oscillation between turns
|
|
16
|
+
- Smart router gates read-only de-escalation on conversation length (< 10 messages only)
|
|
17
|
+
- Smart router escalates to powerful tier on large tool outputs (> 5000 chars)
|
|
18
|
+
- Current date moved from system prompt to context injection for better LLM cache hit rates
|
|
19
|
+
- Upgraded @anthropic-ai/sdk to 0.96.0, openai to 6.38.0, @biomejs/biome to 2.4.15
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- Added `@elyracode/swarm` to `/ext` package browser list
|
|
23
|
+
- Updated xAI test model references after grok-3 removal from API
|
|
7
24
|
|
|
8
25
|
## [0.5.10] - 2026-05-15
|
|
9
26
|
|