Add input parameter to setVibeForTool function.

Allows tool input to be passed to vibe setter for future context-aware
customization.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
ace-pm 2026-04-15 16:18:54 +02:00
parent 42dda2013b
commit 6e10d93d0d

View file

@ -39,7 +39,7 @@ export function setVibeForPrompt(ctx: ExtensionContext, prompt: string): void {
ctx.ui.setWorkingMessage(`${emoji()} Thinking...`);
}
export function setVibeForTool(ctx: ExtensionContext, toolName: string): void {
export function setVibeForTool(ctx: ExtensionContext, toolName: string, _input?: unknown): void {
if (!ctx.hasUI) return;
switch (toolName) {
case "bash":