This commit is contained in:
LukeParkerDev 2026-04-24 07:54:08 +10:00
commit cffb8eb1e3
2 changed files with 3 additions and 0 deletions

View file

@ -1258,6 +1258,7 @@ export function registerTool(input: { name: string; render?: ToolComponent }) {
}
export function getTool(name: string) {
if (name === "bash") return state.shell?.render
return state[name]?.render
}