feat(coding-agent): add hidden thinking label api closes #2673

This commit is contained in:
Mario Zechner
2026-03-29 21:33:15 +02:00
parent 9508eea9ec
commit de022ceba7
8 changed files with 103 additions and 2 deletions

View File

@@ -52,6 +52,7 @@ cp permission-gate.ts ~/.pi/agent/extensions/
| `qna.ts` | Extracts questions from last response into editor via `ctx.ui.setEditorText()` |
| `status-line.ts` | Shows turn progress in footer via `ctx.ui.setStatus()` with themed colors |
| `widget-placement.ts` | Shows widgets above and below the editor via `ctx.ui.setWidget()` placement |
| `hidden-thinking-label.ts` | Customizes the collapsed thinking label via `ctx.ui.setHiddenThinkingLabel()` |
| `model-status.ts` | Shows model changes in status bar via `model_select` hook |
| `snake.ts` | Snake game with custom UI, keyboard handling, and session persistence |
| `send-user-message.ts` | Demonstrates `pi.sendUserMessage()` for sending user messages from extensions |

View File

@@ -0,0 +1,57 @@
/**
* Hidden Thinking Label Extension
*
* Demonstrates `ctx.ui.setHiddenThinkingLabel()` for customizing the label shown
* when thinking blocks are hidden.
*
* Usage:
* pi --extension examples/extensions/hidden-thinking-label.ts
*
* Test:
* 1. Load this extension
* 2. Hide thinking blocks with Ctrl+T
* 3. Ask for something that produces reasoning output
* 4. The collapsed thinking block label will show the custom text
*
* Commands:
* /thinking-label <text> Set a custom hidden thinking label
* /thinking-label Reset to the default label
*/
import type { ExtensionAPI, ExtensionContext } from "@mariozechner/pi-coding-agent";
const DEFAULT_LABEL = "Pondering...";
export default function (pi: ExtensionAPI) {
let label = DEFAULT_LABEL;
const applyLabel = (ctx: ExtensionContext) => {
ctx.ui.setHiddenThinkingLabel(label);
};
pi.on("session_start", async (_event, ctx) => {
applyLabel(ctx);
});
pi.on("session_switch", async (_event, ctx) => {
applyLabel(ctx);
});
pi.registerCommand("thinking-label", {
description: "Set the hidden thinking label. Use without args to reset.",
handler: async (args, ctx) => {
const nextLabel = args.trim();
if (!nextLabel) {
label = DEFAULT_LABEL;
ctx.ui.setHiddenThinkingLabel();
ctx.ui.notify(`Hidden thinking label reset to: ${DEFAULT_LABEL}`);
return;
}
label = nextLabel;
ctx.ui.setHiddenThinkingLabel(label);
ctx.ui.notify(`Hidden thinking label set to: ${label}`);
},
});
}