aegiscode 6.1.0 → 6.1.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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/app.js +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aegiscode",
3
3
  "productName": "AEGIS Code",
4
- "version": "6.1.0",
4
+ "version": "6.1.1",
5
5
  "description": "aegiscode — the command-line version of AEGIS Desktop. The shared tool surface in your shell, over the same thin transport and tool registry as the MCP plugin and the desktop app. Ships transport + UI only; no brain.",
6
6
  "author": {
7
7
  "name": "AEGIS Code",
package/src/app.js CHANGED
@@ -553,7 +553,7 @@ function createApp(options = {}) {
553
553
  if (tokens != null) {
554
554
  const t = themeOf(ctx());
555
555
  out.write(
556
- t.dim + GLYPH.spend + ' ' + t.blue + (res.model || 'aegis') + RESET +
556
+ t.dim + GLYPH.hook + ' ' + t.blue + (res.model || 'aegis') + RESET +
557
557
  t.dim + ' ' + GLYPH.bullet + ' ' + RESET +
558
558
  t.white + `${fmtTokens(tokens)} tok` + RESET + '\n'
559
559
  );
@@ -569,7 +569,7 @@ function createApp(options = {}) {
569
569
  out.write('\n');
570
570
 
571
571
  const rl = options.readline || readline.createInterface({ input: process.stdin, output: out, terminal: true });
572
- const promptStr = themeOf(ctx()).gold + GLYPH.prompt + ' ' + RESET;
572
+ const promptStr = themeOf(ctx()).gold + GLYPH.cursor + ' ' + RESET;
573
573
  rl.setPrompt(promptStr);
574
574
  rl.prompt();
575
575