mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
feat: Add intelligent tool selection strategy and simplify plan.md analysis
- Create intelligent-tools.md as strategic guide for tool selection - Reference intelligent-tools.md from CLAUDE.md for global access - Add three analysis levels to plan.md (quick/standard/deep) - Separate tool selection strategy from plan command implementation - Maintain clear separation of concerns between strategy and execution 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -102,6 +102,31 @@ The command automatically detects input type:
|
||||
- Updates session state with task references
|
||||
- Runs project structure analysis to populate paths field
|
||||
|
||||
### Project Analysis Options
|
||||
|
||||
Three analysis levels available:
|
||||
|
||||
```bash
|
||||
# Quick - Structure only (5 seconds)
|
||||
/workflow:plan "requirements"
|
||||
|
||||
# Standard - Structure + Gemini analysis (30 seconds)
|
||||
/workflow:plan --analyze "requirements"
|
||||
|
||||
# Deep - Structure + Parallel comprehensive analysis (1-2 minutes)
|
||||
/workflow:plan --deep "requirements"
|
||||
```
|
||||
|
||||
**Analysis Selection**:
|
||||
- Default: Auto-selects based on project complexity
|
||||
- Manual: Use flags to override automatic selection
|
||||
- Strategy: See @~/.claude/workflows/intelligent-tools.md for tool selection principles
|
||||
|
||||
**Execution**:
|
||||
1. Always runs `get_modules_by_depth.sh` for structure
|
||||
2. Applies selected analysis level
|
||||
3. Populates task paths automatically
|
||||
|
||||
### Task Saturation Assessment
|
||||
Evaluates whether to merge preparation and execution:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user