@eminent337/aery 0.1.27 → 0.1.29
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/README.md +2 -0
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +1 -1
- package/dist/core/sdk.js.map +1 -1
- package/dist/core/system-prompt.d.ts.map +1 -1
- package/dist/core/system-prompt.js +1 -1
- package/dist/core/system-prompt.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +2 -2
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/compaction.md +10 -10
- package/docs/custom-provider.md +18 -18
- package/docs/development.md +3 -3
- package/docs/extensions.md +163 -163
- package/docs/json.md +3 -3
- package/docs/keybindings.md +5 -5
- package/docs/models.md +1 -1
- package/docs/packages.md +9 -9
- package/docs/prompt-templates.md +3 -3
- package/docs/providers.md +2 -2
- package/docs/rpc.md +8 -8
- package/docs/sdk.md +15 -15
- package/docs/session.md +3 -3
- package/docs/settings.md +7 -7
- package/docs/shell-aliases.md +1 -1
- package/docs/skills.md +5 -5
- package/docs/terminal-setup.md +1 -1
- package/docs/termux.md +2 -2
- package/docs/themes.md +5 -5
- package/docs/tree.md +1 -1
- package/docs/tui.md +9 -9
- package/docs/windows.md +1 -1
- package/package.json +3 -2
|
@@ -442,10 +442,10 @@ export class InteractiveMode {
|
|
|
442
442
|
const cwdBasename = path.basename(this.sessionManager.getCwd());
|
|
443
443
|
const sessionName = this.sessionManager.getSessionName();
|
|
444
444
|
if (sessionName) {
|
|
445
|
-
this.ui.terminal.setTitle(
|
|
445
|
+
this.ui.terminal.setTitle(`⌬ aery - ${sessionName} - ${cwdBasename}`);
|
|
446
446
|
}
|
|
447
447
|
else {
|
|
448
|
-
this.ui.terminal.setTitle(
|
|
448
|
+
this.ui.terminal.setTitle(`⌬ aery - ${cwdBasename}`);
|
|
449
449
|
}
|
|
450
450
|
}
|
|
451
451
|
/**
|