From 3772cbd331f1c67ddc077648e1f710b61a0ba0ee Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sat, 11 Oct 2025 23:02:57 +0800 Subject: [PATCH] Add tool control configuration reference to CLAUDE.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added reference to tool-control.yaml for CLI tool availability management - Includes new tool-control.yaml configuration file - Helps coordinate tool usage across commands and agent executions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude/workflows/tool-control.yaml | 10 ++++++++++ CLAUDE.md | 1 + 2 files changed, 11 insertions(+) create mode 100644 .claude/workflows/tool-control.yaml diff --git a/.claude/workflows/tool-control.yaml b/.claude/workflows/tool-control.yaml new file mode 100644 index 00000000..c4d76bf2 --- /dev/null +++ b/.claude/workflows/tool-control.yaml @@ -0,0 +1,10 @@ +# Tool Control Configuration +# Controls whether CLI tools (Gemini, Qwen, Codex) are enabled in the workspace + +tools: + gemini: + enabled: true + qwen: + enabled: true + codex: + enabled: true diff --git a/CLAUDE.md b/CLAUDE.md index 17b0f024..1d951867 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -5,6 +5,7 @@ This document defines project-specific coding standards and development principles. ### CLI Tool Context Protocols For all CLI tool usage, command syntax, and integration guidelines: +- **Tool Control Configuration**: @~/.claude/workflows/tool-control.yaml - Controls CLI tool availability for all commands and agent executions (if disabled, use other enabled CLI tools or Claude's own capabilities) - **Intelligent Context Strategy**: @~/.claude/workflows/intelligent-tools-strategy.md - **Context Search Commands**: @~/.claude/workflows/context-search-strategy.md - **MCP Tool Strategy**: @~/.claude/workflows/mcp-tool-strategy.md