@lenylvt/pi-coding-agent 0.64.0 → 0.64.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lenylvt/pi-coding-agent",
|
|
3
|
-
"version": "0.64.
|
|
3
|
+
"version": "0.64.1",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"piConfig": {
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@mariozechner/jiti": "^2.6.2",
|
|
45
|
-
"@lenylvt/pi-agent-core": "^0.64.
|
|
46
|
-
"@lenylvt/pi-ai": "^0.64.
|
|
47
|
-
"@lenylvt/pi-tui": "^0.64.
|
|
45
|
+
"@lenylvt/pi-agent-core": "^0.64.1",
|
|
46
|
+
"@lenylvt/pi-ai": "^0.64.1",
|
|
47
|
+
"@lenylvt/pi-tui": "^0.64.1",
|
|
48
48
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
49
49
|
"@sinclair/typebox": "^0.34.41",
|
|
50
50
|
"ajv": "^8.17.1",
|
|
@@ -75,7 +75,7 @@ import { ExtensionEditorComponent } from "./components/extension-editor.js";
|
|
|
75
75
|
import { ExtensionInputComponent } from "./components/extension-input.js";
|
|
76
76
|
import { ExtensionSelectorComponent } from "./components/extension-selector.js";
|
|
77
77
|
import { FooterComponent } from "./components/footer.js";
|
|
78
|
-
import {
|
|
78
|
+
import { keyText } from "./components/keybinding-hints.js";
|
|
79
79
|
import { LoginDialogComponent } from "./components/login-dialog.js";
|
|
80
80
|
import { ModelSelectorComponent } from "./components/model-selector.js";
|
|
81
81
|
import { OAuthSelectorComponent } from "./components/oauth-selector.js";
|
|
@@ -431,35 +431,11 @@ export class InteractiveMode {
|
|
|
431
431
|
if (this.options.verbose || !this.settingsManager.getQuietStartup()) {
|
|
432
432
|
const logo = theme.bold(theme.fg("accent", APP_NAME)) + theme.fg("dim", ` v${this.version}`);
|
|
433
433
|
|
|
434
|
-
// Build startup instructions using keybinding hint helpers
|
|
435
|
-
const hint = (keybinding: AppKeybinding, description: string) => keyHint(keybinding, description);
|
|
436
|
-
|
|
437
|
-
const instructions = [
|
|
438
|
-
hint("app.interrupt", "to interrupt"),
|
|
439
|
-
hint("app.clear", "to clear"),
|
|
440
|
-
rawKeyHint(`${keyText("app.clear")} twice`, "to exit"),
|
|
441
|
-
hint("app.exit", "to exit (empty)"),
|
|
442
|
-
hint("app.suspend", "to suspend"),
|
|
443
|
-
keyHint("tui.editor.deleteToLineEnd", "to delete to end"),
|
|
444
|
-
hint("app.thinking.cycle", "to cycle thinking level"),
|
|
445
|
-
rawKeyHint(`${keyText("app.model.cycleForward")}/${keyText("app.model.cycleBackward")}`, "to cycle models"),
|
|
446
|
-
hint("app.model.select", "to select model"),
|
|
447
|
-
hint("app.tools.expand", "to expand tools"),
|
|
448
|
-
hint("app.thinking.toggle", "to expand thinking"),
|
|
449
|
-
hint("app.editor.external", "for external editor"),
|
|
450
|
-
rawKeyHint("/", "for commands"),
|
|
451
|
-
rawKeyHint("!", "to run bash"),
|
|
452
|
-
rawKeyHint("!!", "to run bash (no context)"),
|
|
453
|
-
hint("app.message.followUp", "to queue follow-up"),
|
|
454
|
-
hint("app.message.dequeue", "to edit all queued messages"),
|
|
455
|
-
hint("app.clipboard.pasteImage", "to paste image"),
|
|
456
|
-
rawKeyHint("drop files", "to attach"),
|
|
457
|
-
].join("\n");
|
|
458
434
|
const onboarding = theme.fg(
|
|
459
435
|
"dim",
|
|
460
436
|
`Pi can explain its own features and look up its docs. Ask it how to use or extend Pi.`,
|
|
461
437
|
);
|
|
462
|
-
this.builtInHeader = new Text(`${logo}\n${
|
|
438
|
+
this.builtInHeader = new Text(`${logo}\n${onboarding}`, 1, 0);
|
|
463
439
|
|
|
464
440
|
// Setup UI layout
|
|
465
441
|
this.headerContainer.addChild(new Spacer(1));
|