Skip to content

Commit 36d77e9

Browse files
AgentGUIclaude
andcommitted
fix: add cli-agent-browser and gm-codex to batch tool update list
POST /api/tools/update was missing these two tools, so they'd be skipped on batch updates triggered from the UI. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 56c6d3d commit 36d77e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/routes-tools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function register(deps) {
3333
};
3434

3535
routes['POST /api/tools/update'] = async (req, res) => {
36-
const allToolIds = ['cli-claude', 'cli-opencode', 'cli-gemini', 'cli-kilo', 'cli-codex', 'gm-cc', 'gm-oc', 'gm-gc', 'gm-kilo'];
36+
const allToolIds = ['cli-claude', 'cli-opencode', 'cli-gemini', 'cli-kilo', 'cli-codex', 'cli-agent-browser', 'gm-cc', 'gm-oc', 'gm-gc', 'gm-kilo', 'gm-codex'];
3737
sendJSON(req, res, 200, { updating: true, toolCount: allToolIds.length });
3838
broadcastSync({ type: 'tools_update_started', tools: allToolIds });
3939
setImmediate(async () => {

0 commit comments

Comments
 (0)