From d34e8d80c446d5d0117f672ee14deeacec3cda35 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sun, 22 Feb 2026 19:05:57 +0100 Subject: [PATCH] docs(coding-agent): add built-in-tool-renderer to extensions README --- packages/coding-agent/examples/extensions/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/coding-agent/examples/extensions/README.md b/packages/coding-agent/examples/extensions/README.md index 18cf40ca..a997e6aa 100644 --- a/packages/coding-agent/examples/extensions/README.md +++ b/packages/coding-agent/examples/extensions/README.md @@ -33,6 +33,7 @@ cp permission-gate.ts ~/.pi/agent/extensions/ | `question.ts` | Demonstrates `ctx.ui.select()` for asking the user questions with custom UI | | `questionnaire.ts` | Multi-question input with tab bar navigation between questions | | `tool-override.ts` | Override built-in tools (e.g., add logging/access control to `read`) | +| `built-in-tool-renderer.ts` | Custom compact rendering for built-in tools (read, bash, edit, write) while keeping original behavior | | `minimal-mode.ts` | Override built-in tool rendering for minimal display (only tool calls, no output in collapsed mode) | | `truncated-tool.ts` | Wraps ripgrep with proper output truncation (50KB/2000 lines) | | `antigravity-image-gen.ts` | Generate images via Google Antigravity with optional save-to-disk modes |