@elyracode/coding-agent 0.5.12 → 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.
Files changed (53) hide show
  1. package/CHANGELOG.md +22 -0
  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/settings-manager.d.ts +4 -0
  22. package/dist/core/settings-manager.d.ts.map +1 -1
  23. package/dist/core/settings-manager.js +8 -0
  24. package/dist/core/settings-manager.js.map +1 -1
  25. package/dist/core/slash-commands.d.ts.map +1 -1
  26. package/dist/core/slash-commands.js +1 -0
  27. package/dist/core/slash-commands.js.map +1 -1
  28. package/dist/core/smart-router.d.ts +2 -2
  29. package/dist/core/smart-router.d.ts.map +1 -1
  30. package/dist/core/smart-router.js +64 -10
  31. package/dist/core/smart-router.js.map +1 -1
  32. package/dist/core/system-prompt.d.ts.map +1 -1
  33. package/dist/core/system-prompt.js +2 -9
  34. package/dist/core/system-prompt.js.map +1 -1
  35. package/dist/modes/interactive/components/footer.d.ts +2 -0
  36. package/dist/modes/interactive/components/footer.d.ts.map +1 -1
  37. package/dist/modes/interactive/components/footer.js +11 -0
  38. package/dist/modes/interactive/components/footer.js.map +1 -1
  39. package/dist/modes/interactive/interactive-mode.d.ts +1 -0
  40. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  41. package/dist/modes/interactive/interactive-mode.js +14 -0
  42. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  43. package/dist/utils/clipboard-image.d.ts.map +1 -1
  44. package/dist/utils/clipboard-image.js +1 -1
  45. package/dist/utils/clipboard-image.js.map +1 -1
  46. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  47. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  48. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  49. package/examples/extensions/sandbox/package-lock.json +2 -2
  50. package/examples/extensions/sandbox/package.json +1 -1
  51. package/examples/extensions/with-deps/package-lock.json +2 -2
  52. package/examples/extensions/with-deps/package.json +1 -1
  53. package/package.json +4 -4
@@ -234,6 +234,7 @@ export class InteractiveMode {
234
234
  this.footerDataProvider = new FooterDataProvider(this.sessionManager.getCwd());
235
235
  this.footer = new FooterComponent(this.session, this.footerDataProvider);
236
236
  this.footer.setAutoCompactEnabled(this.session.autoCompactionEnabled);
237
+ this.footer.setMinimalFooter(this.settingsManager.getMinimalFooter());
237
238
  // Load hide thinking block setting
238
239
  this.hideThinkingBlock = this.settingsManager.getHideThinkingBlock();
239
240
  // Register themes from resource loader and initialize
@@ -1170,6 +1171,7 @@ export class InteractiveMode {
1170
1171
  applyRuntimeSettings() {
1171
1172
  this.footer.setSession(this.session);
1172
1173
  this.footer.setAutoCompactEnabled(this.session.autoCompactionEnabled);
1174
+ this.footer.setMinimalFooter(this.settingsManager.getMinimalFooter());
1173
1175
  this.footerDataProvider.setCwd(this.sessionManager.getCwd());
1174
1176
  this.hideThinkingBlock = this.settingsManager.getHideThinkingBlock();
1175
1177
  this.ui.setShowHardwareCursor(this.settingsManager.getShowHardwareCursor());
@@ -1976,6 +1978,11 @@ export class InteractiveMode {
1976
1978
  this.handleBlueprintCommand(text.startsWith("/blueprint ") ? text.slice(11).trim() : undefined);
1977
1979
  return;
1978
1980
  }
1981
+ if (text === "/footer") {
1982
+ this.editor.setText("");
1983
+ this.handleFooterCommand();
1984
+ return;
1985
+ }
1979
1986
  if (text === "/theme" || text.startsWith("/theme ")) {
1980
1987
  const themeName = text.startsWith("/theme ") ? text.slice(7).trim() : undefined;
1981
1988
  this.editor.setText("");
@@ -3457,6 +3464,13 @@ export class InteractiveMode {
3457
3464
  this.showError(`Failed to read blueprint: ${bpPath}`);
3458
3465
  }
3459
3466
  }
3467
+ handleFooterCommand() {
3468
+ const current = this.settingsManager.getMinimalFooter();
3469
+ this.settingsManager.setMinimalFooter(!current);
3470
+ this.footer.setMinimalFooter(!current);
3471
+ this.ui.requestRender();
3472
+ this.showStatus(!current ? "Footer: minimal" : "Footer: full");
3473
+ }
3460
3474
  handleThemeCommand(themeName) {
3461
3475
  if (!themeName) {
3462
3476
  this.showThemeSelector();