mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
## Major Changes ### Gemini CLI Integration (google-gemini/gemini-cli#11228) - Migrate from wrapper scripts to native Gemini CLI v0.11.0-nightly - Remove `-p` flag requirement for prompt strings - Deprecate `gemini-wrapper` and `qwen-wrapper` scripts - Update all commands and workflows to use direct CLI syntax ### Command Syntax Updates - **Before**: `gemini -p "CONTEXT: @**/* prompt"` - **After**: `gemini "CONTEXT: @**/* prompt"` - Apply to all 70+ command files and workflow templates - Maintain backward compatibility for Qwen fallback ### File Pattern Migration - Replace `@{CLAUDE.md}` with `@CLAUDE.md` - Replace `@{**/*}` with `@**/*` - Update all file references to use direct @ notation - Remove legacy brace syntax across all documentation ### Documentation Improvements - Reorganize `intelligent-tools-strategy.md` structure - Add Quick Start section with decision matrix - Enhance `--include-directories` best practices - Add comprehensive command templates and examples - Improve navigation with clearer section hierarchy ### Files Modified (75+ files) - Commands: All CLI commands updated (cli/, workflow/, task/, memory/) - Workflows: Core strategy files and templates - Agents: CLI execution agent and doc generator - Templates: Planning roles and tech stack guides ## Breaking Changes - Gemini CLI v0.11.0-nightly or later required - Old wrapper scripts no longer supported - Legacy `@{pattern}` syntax deprecated ## Migration Guide Users should: 1. Update Gemini CLI to v0.11.0-nightly or later 2. Remove `-p` flag from existing commands 3. Update file patterns from `@{pattern}` to `@pattern` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
6.2 KiB
6.2 KiB
MCP Tool Strategy: Triggers & Workflows
⚡ Triggering Mechanisms
Auto-Trigger Scenarios:
- User mentions "exa-code" or code-related queries →
mcp__exa__get_code_context_exa - Need current web information →
mcp__exa__web_search_exa - Finding code patterns/files →
mcp__code-index__search_code_advanced - Locating specific files →
mcp__code-index__find_files
Manual Trigger Rules:
- Complex API research → Exa Code Context
- Architecture pattern discovery → Exa Code Context + Gemini analysis
- Real-time information needs → Exa Web Search
- Codebase exploration → Code Index tools first, then Gemini analysis
🎯 Available MCP Tools
Exa Code Context (mcp__exa__get_code_context_exa)
Purpose: Search and get relevant context for programming tasks Strengths: Highest quality context for libraries, SDKs, and APIs Best For: Code examples, API patterns, learning frameworks
Usage:
mcp__exa__get_code_context_exa(
query="React useState hook examples",
tokensNum="dynamic" # or 1000-50000
)
Examples: "React useState", "Python pandas filtering", "Express.js middleware"
Exa Web Search (mcp__exa__web_search_exa)
Purpose: Real-time web searches with content scraping Best For: Current information, research, recent solutions
Usage:
mcp__exa__web_search_exa(
query="latest React 18 features",
numResults=5 # default: 5
)
Code Index Tools (mcp__code-index__)
核心方法: search_code_advanced, find_files, refresh_index
核心搜索:
mcp__code-index__search_code_advanced(pattern="function.*auth", file_pattern="*.ts")
mcp__code-index__find_files(pattern="*.test.js")
mcp__code-index__refresh_index() # git操作后刷新
实用场景:
- 查找代码:
search_code_advanced(pattern="old.*API") - 定位文件:
find_files(pattern="src/**/*.tsx") - 更新索引:
refresh_index()(git操作后)
文件搜索测试结果:
- ✅
find_files(pattern="*.md")- 搜索所有 Markdown 文件 - ✅
find_files(pattern="*complete*")- 通配符匹配文件名 - ❌
find_files(pattern="complete.md")- 精确匹配可能失败 - 📝 建议使用通配符模式获得更好的搜索结果
📊 Tool Selection Matrix
| Task | MCP Tool | Use Case | Integration |
|---|---|---|---|
| Code Context | Exa Code | API examples, patterns | → Gemini analysis |
| Research | Exa Web | Current info, trends | → Planning phase |
| Code Search | Code Index | Pattern discovery, file location | → Gemini analysis |
| Navigation | Code Index | File exploration, structure | → Architecture phase |
🚀 Integration Patterns
Standard Workflow
# 1. Explore codebase structure
mcp__code-index__find_files(pattern="*async*")
mcp__code-index__search_code_advanced(pattern="async.*function", file_pattern="*.ts")
# 2. Get external context
mcp__exa__get_code_context_exa(query="TypeScript async patterns", tokensNum="dynamic")
# 3. Analyze with Gemini
cd "src/async" && gemini "
PURPOSE: Understand async patterns
CONTEXT: Code index results + Exa context + @src/async/**/*
EXPECTED: Pattern analysis
RULES: Focus on TypeScript best practices
"
# 4. Implement with Codex
codex -C src/async --full-auto exec "Apply modern async patterns" -s danger-full-access
Enhanced Planning
- Explore codebase with Code Index tools
- Research with Exa Web Search
- Get code context with Exa Code Context
- Analyze with Gemini
- Architect with Qwen
- Implement with Codex
🔧 Best Practices
Code Index
- Search first - Use before external tools for codebase exploration
- Refresh after git ops - Keep index synchronized
- Pattern specificity - Use precise regex patterns for better results
- File patterns - Combine with glob patterns for targeted search
- Glob pattern matching - Use
*.md,*complete*patterns for file discovery - Exact vs wildcard - Exact names may fail, use wildcards for better results
Exa Code Context
- Use "dynamic" tokens for efficiency
- Be specific - include technology stack
- MANDATORY when user mentions exa-code or code queries
Exa Web Search
- Default 5 results usually sufficient
- Use for current info - supplement knowledge cutoff
🎯 Common Scenarios
Learning New Technology
# Explore existing patterns + get examples + research + analyze
mcp__code-index__search_code_advanced(pattern="router|routing", file_pattern="*.ts")
mcp__exa__get_code_context_exa(query="Next.js 14 app router", tokensNum="dynamic")
mcp__exa__web_search_exa(query="Next.js 14 best practices 2024", numResults=3)
cd "src/app" && gemini "Learn Next.js patterns"
Debugging
# Find similar patterns + solutions + fix
mcp__code-index__search_code_advanced(pattern="similar.*error", file_pattern="*.ts")
mcp__exa__get_code_context_exa(query="TypeScript generic constraints", tokensNum="dynamic")
codex --full-auto exec "Fix TypeScript issues" -s danger-full-access
Codebase Exploration
# Comprehensive codebase understanding workflow
mcp__code-index__set_project_path(path="/current/project") # 设置项目路径
mcp__code-index__refresh_index() # 刷新索引
mcp__code-index__find_files(pattern="*auth*") # Find auth-related files
mcp__code-index__search_code_advanced(pattern="function.*auth", file_pattern="*.ts") # Find auth functions
mcp__code-index__get_file_summary(file_path="src/auth/index.ts") # Understand structure
cd "src/auth" && gemini "Analyze auth architecture"
Project Setup Workflow
# 新项目初始化流程
mcp__code-index__set_project_path(path="/path/to/new/project")
mcp__code-index__get_settings_info() # 确认设置
mcp__code-index__refresh_index() # 建立索引
mcp__code-index__configure_file_watcher(enabled=true) # 启用文件监控
mcp__code-index__get_file_watcher_status() # 确认监控状态
⚡ Performance Tips
- Code Index first → explore codebase before external tools
- Use "dynamic" tokens for Exa Code Context
- MCP first → gather context before analysis
- Focus queries - avoid overly broad searches
- Integrate selectively - use relevant context only
- Refresh index after major git operations