mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
新增 Mode 6: 深度命令分析 - 创建 reference 备份目录(80个文档:11 agents + 69 commands) - 支持简单查询(直接文件查找)和复杂查询(CLI 辅助分析) - 集成 gemini/qwen 进行跨命令对比、最佳实践、工作流分析 - 添加查询复杂度自动分类和降级策略 更新文档 - SKILL.md: 添加 Mode 6 说明和 Reference Documentation 章节 - implementation-details.md: 添加完整的 Mode 6 实现逻辑 - 版本更新至 v1.3.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
3.3 KiB
3.3 KiB
name, description, argument-hint, allowed-tools
| name | description | argument-hint | allowed-tools |
|---|---|---|---|
| analyze | Read-only codebase analysis using Gemini (default), Qwen, or Codex with auto-pattern detection and template selection | [--agent] [--tool codex|gemini|qwen] [--enhance] analysis target | SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*), Task(*) |
CLI Analyze Command (/cli:analyze)
Purpose
Quick codebase analysis using CLI tools. Read-only - does NOT modify code.
Tool Selection:
- gemini (default) - Best for code analysis
- qwen - Fallback when Gemini unavailable
- codex - Alternative for deep analysis
Parameters
--tool <gemini|qwen|codex>- Tool selection (default: gemini)--agent- Use cli-execution-agent for automated context discovery--enhance- Use/enhance-promptfor context-aware enhancement<analysis-target>- Description of what to analyze
Tool Usage
Gemini (Primary):
--tool gemini # or omit (default)
Qwen (Fallback):
--tool qwen
Codex (Alternative):
--tool codex
Execution Flow
Standard Mode
- Parse tool selection (default: gemini)
- Optional: enhance with
/enhance-prompt - Auto-detect file patterns from keywords
- Build command with analysis template
- Execute analysis (read-only)
- Save results
Agent Mode (--agent)
Delegates to agent for intelligent analysis:
Task(
subagent_type="cli-execution-agent",
description="Codebase analysis",
prompt=`
Task: ${analysis_target}
Mode: analyze
Tool: ${tool_flag || 'auto-select'} // gemini|qwen|codex
Enhance: ${enhance_flag || false}
Agent responsibilities:
1. Context Discovery:
- Discover relevant files/patterns
- Identify analysis scope
- Build file context
2. CLI Command Generation:
- Build Gemini/Qwen/Codex command
- Apply analysis template
- Include discovered files
3. Execution & Output:
- Execute analysis
- Generate insights report
- Save to .workflow/.chat/ or .scratchpad/
`
)
Core Rules
- Read-only: Analyzes code, does NOT modify files
- Auto-pattern: Detects file patterns from keywords
- Template-based: Auto-selects analysis template
- Output: Saves to
.workflow/WFS-[id]/.chat/or.scratchpad/
File Pattern Auto-Detection
Keywords → file patterns:
- "auth" →
@**/*auth* @**/*user* - "component" →
@src/components/**/* - "API" →
@**/api/**/* @**/routes/**/* - "test" →
@**/*.test.* @**/*.spec.* - Generic →
@src/**/*
CLI Command Templates
Gemini/Qwen:
cd . && gemini -p "
PURPOSE: [goal]
TASK: [analysis type]
MODE: analysis
CONTEXT: @CLAUDE.md [auto-detected patterns]
EXPECTED: Insights, recommendations
RULES: [auto-selected template]
"
# Qwen: Replace 'gemini' with 'qwen'
Codex:
codex -C . --full-auto exec "
PURPOSE: [goal]
TASK: [analysis type]
MODE: analysis
CONTEXT: @CLAUDE.md [patterns]
EXPECTED: Deep insights
RULES: [template]
" -m gpt-5 --skip-git-repo-check -s danger-full-access
Output
- With session:
.workflow/WFS-[id]/.chat/analyze-[timestamp].md - No session:
.workflow/.scratchpad/analyze-[desc]-[timestamp].md
Notes
- See
intelligent-tools-strategy.mdfor detailed tool usage and templates