From 7700abb7b28a7e4c253e79c5b593d7ca28e8cee0 Mon Sep 17 00:00:00 2001 From: setkyar Date: Sun, 31 May 2026 20:38:37 +0700 Subject: [PATCH] rename set_tab_title tool to pi_web_set_tab_title --- .pi/extensions/pi-web.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pi/extensions/pi-web.ts b/.pi/extensions/pi-web.ts index 4dd1e75..6511181 100644 --- a/.pi/extensions/pi-web.ts +++ b/.pi/extensions/pi-web.ts @@ -799,14 +799,14 @@ export default function (pi: ExtensionAPI) { let lastAutoTitle: string | null = null; pi.registerTool({ - name: "set_tab_title", + name: "pi_web_set_tab_title", label: "Set Tab Title", description: "Set the Pi/pi-web session title to a concise description of the user's current task.", promptSnippet: "Update the Pi/pi-web session title when the user's task focus changes.", promptGuidelines: [ - "Use set_tab_title with a short 2-5 word Title Case summary when the user's task focus changes.", + "Use pi_web_set_tab_title with a short 2-5 word Title Case summary when the user's task focus changes.", ], parameters: Type.Object({ title: Type.String({ description: "Short 2-5 word session title." }),