@elyracode/coding-agent 0.5.10 → 0.5.13
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 +8 -0
- package/dist/core/settings-manager.d.ts +4 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +8 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +1 -0
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/modes/interactive/components/footer.d.ts +2 -0
- package/dist/modes/interactive/components/footer.d.ts.map +1 -1
- package/dist/modes/interactive/components/footer.js +11 -0
- package/dist/modes/interactive/components/footer.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +15 -0
- package/dist/modes/interactive/interactive-mode.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
|
@@ -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();
|
|
@@ -4228,6 +4242,7 @@ export class InteractiveMode {
|
|
|
4228
4242
|
"@elyracode/herd -- Laravel Herd: services, logs, PHP version, .env sync",
|
|
4229
4243
|
"@elyracode/anna -- Presentations: Anna.js slides, terminal demos, diagrams",
|
|
4230
4244
|
"@elyracode/swarm -- Swarm: automated build, review, and refactor pipelines",
|
|
4245
|
+
"@elyracode/docker -- Docker: container exec, logs, compose, env sync",
|
|
4231
4246
|
];
|
|
4232
4247
|
this.showSelector((done) => {
|
|
4233
4248
|
const selector = new ExtensionSelectorComponent("Install Extension", packages, (selected) => {
|