@elyracode/coding-agent 0.5.13 → 0.6.1

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +27 -2
  2. package/dist/core/agent-session.d.ts.map +1 -1
  3. package/dist/core/agent-session.js +6 -1
  4. package/dist/core/agent-session.js.map +1 -1
  5. package/dist/core/compaction/compaction.d.ts.map +1 -1
  6. package/dist/core/compaction/compaction.js +35 -7
  7. package/dist/core/compaction/compaction.js.map +1 -1
  8. package/dist/core/compaction/utils.d.ts.map +1 -1
  9. package/dist/core/compaction/utils.js +1 -1
  10. package/dist/core/compaction/utils.js.map +1 -1
  11. package/dist/core/extensions/types.d.ts +1 -1
  12. package/dist/core/extensions/types.d.ts.map +1 -1
  13. package/dist/core/extensions/types.js.map +1 -1
  14. package/dist/core/keybindings.d.ts +1 -1
  15. package/dist/core/keybindings.d.ts.map +1 -1
  16. package/dist/core/keybindings.js.map +1 -1
  17. package/dist/core/sdk.d.ts +1 -1
  18. package/dist/core/sdk.d.ts.map +1 -1
  19. package/dist/core/sdk.js +25 -27
  20. package/dist/core/sdk.js.map +1 -1
  21. package/dist/core/slash-commands.d.ts.map +1 -1
  22. package/dist/core/slash-commands.js +2 -0
  23. package/dist/core/slash-commands.js.map +1 -1
  24. package/dist/core/smart-router.d.ts +2 -2
  25. package/dist/core/smart-router.d.ts.map +1 -1
  26. package/dist/core/smart-router.js +64 -10
  27. package/dist/core/smart-router.js.map +1 -1
  28. package/dist/core/system-prompt.d.ts.map +1 -1
  29. package/dist/core/system-prompt.js +2 -9
  30. package/dist/core/system-prompt.js.map +1 -1
  31. package/dist/modes/interactive/interactive-mode.d.ts +2 -0
  32. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  33. package/dist/modes/interactive/interactive-mode.js +87 -1
  34. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  35. package/dist/utils/clipboard-image.d.ts.map +1 -1
  36. package/dist/utils/clipboard-image.js +1 -1
  37. package/dist/utils/clipboard-image.js.map +1 -1
  38. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  39. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  40. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  41. package/examples/extensions/sandbox/package-lock.json +2 -2
  42. package/examples/extensions/sandbox/package.json +1 -1
  43. package/examples/extensions/with-deps/package-lock.json +2 -2
  44. package/examples/extensions/with-deps/package.json +1 -1
  45. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,9 +1,34 @@
1
1
  # Changelog
2
2
 
3
- ## [0.5.13] - 2026-05-16
3
+ ## [0.6.1] - 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 -- hides token stats, context usage, cost, and auto-compact indicator.
6
+ - `/memory` command: view, clear, or locate project memory. Shows the knowledge Elyra has built across sessions.
7
+ - First-run welcome message with example prompts for new projects (shown when no `.elyra/` directory exists)
8
+ - `/help` command: example prompts, useful commands, and link to elyracode.com
9
+ - Onboarding text now references elyracode.com for docs and guides
10
+
11
+ ## [0.6.0] - 2026-05-17
12
+
13
+ ### Added
14
+ - `/footer` command: toggle between full and minimal footer. Minimal shows only cwd, git branch, and model name.
15
+ - Norwegian Midnight built-in theme (Nord palette with deeper backgrounds)
16
+ - `@elyracode/swarm` extension: multi-agent pipeline orchestration with build, review, and refactor pipelines
17
+ - `@elyracode/docker` extension: container-aware development with exec routing, log tailing, compose operations, and environment sync
18
+
19
+ ### Changed
20
+ - Compaction summarization prompts now preserve Architecture & Patterns, Error History, exact file paths, error messages, and stack traces
21
+ - Tool result serialization limit increased from 2000 to 4000 characters for richer compaction context
22
+ - Smart router expanded from 8 to 35 complex keywords covering debugging, architecture, and performance terms
23
+ - Smart router adds hysteresis to prevent tier oscillation between turns
24
+ - Smart router gates read-only de-escalation on conversation length (< 10 messages only)
25
+ - Smart router escalates to powerful tier on large tool outputs (> 5000 chars)
26
+ - Current date moved from system prompt to context injection for better LLM cache hit rates
27
+ - Upgraded @anthropic-ai/sdk to 0.96.0, openai to 6.38.0, @biomejs/biome to 2.4.15
28
+
29
+ ### Fixed
30
+ - Added `@elyracode/swarm` to `/ext` package browser list
31
+ - Updated xAI test model references after grok-3 removal from API
7
32
 
8
33
  ## [0.5.10] - 2026-05-15
9
34