@@ -5,15 +5,17 @@ import { handleCodeSearch } from './tool/code-search'
55import { handleCreatePlan } from './tool/create-plan'
66import { handleEndTurn } from './tool/end-turn'
77import { handleFindFiles } from './tool/find-files'
8+ import { handleGlob } from './tool/glob'
9+ import { handleListDirectory } from './tool/list-directory'
810import { handleLookupAgentInfo } from './tool/lookup-agent-info'
911import { handleReadDocs } from './tool/read-docs'
1012import { handleReadFiles } from './tool/read-files'
1113import { handleRunFileChangeHooks } from './tool/run-file-change-hooks'
1214import { handleRunTerminalCommand } from './tool/run-terminal-command'
1315import { handleSetMessages } from './tool/set-messages'
1416import { handleSetOutput } from './tool/set-output'
15- import { handleSpawnAgents } from './tool/spawn-agents'
1617import { handleSpawnAgentInline } from './tool/spawn-agent-inline'
18+ import { handleSpawnAgents } from './tool/spawn-agents'
1719import { handleStrReplace } from './tool/str-replace'
1820import { handleThinkDeeply } from './tool/think-deeply'
1921import { handleUpdateSubgoal } from './tool/update-subgoal'
@@ -40,6 +42,8 @@ export const codebuffToolHandlers = {
4042 create_plan : handleCreatePlan ,
4143 end_turn : handleEndTurn ,
4244 find_files : handleFindFiles ,
45+ glob : handleGlob ,
46+ list_directory : handleListDirectory ,
4347 lookup_agent_info : handleLookupAgentInfo ,
4448 read_docs : handleReadDocs ,
4549 read_files : handleReadFiles ,
0 commit comments