Fix tool mapping

This commit is contained in:
Mario Zechner 2026-01-12 17:56:13 +01:00
parent 8e5b0112e7
commit 0138eee6f7

View file

@ -39,7 +39,7 @@ const claudeCodeToolNames: Record<string, string> = {
bash: "Bash",
grep: "Grep",
find: "Glob",
ls: "Glob",
ls: "Ls",
};
const toClaudeCodeName = (name: string) => claudeCodeToolNames[name] || name;