chore(coding-agent): add startup onboarding hint (#2620)
Some checks are pending
CI / build-check-test (push) Waiting to run

This commit is contained in:
Fero 2026-03-26 15:44:56 +01:00 committed by GitHub
parent 0406b41a46
commit fb10d9aef9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -462,7 +462,11 @@ export class InteractiveMode {
hint("app.clipboard.pasteImage", "to paste image"),
rawKeyHint("drop files", "to attach"),
].join("\n");
this.builtInHeader = new Text(`${logo}\n${instructions}`, 1, 0);
const onboarding = theme.fg(
"dim",
`Pi can explain its own features and look up its docs. Ask it how to use or extend Pi.`,
);
this.builtInHeader = new Text(`${logo}\n${instructions}\n\n${onboarding}`, 1, 0);
// Setup UI layout
this.headerContainer.addChild(new Spacer(1));