Skip to content

Commit bb6f55d

Browse files
catlog22claude
andcommitted
fix(docs): correct command references based on Gemini verification
Removed non-existent commands: - Remove /context command (deprecated) - Remove /workflow:plan-deep (doesn't exist) - Remove /workflow:plan-verify (doesn't exist) - Remove /workflow:brainstorm:auto (doesn't exist) Added missing commands: - Add /workflow:session:complete to session management - Add /workflow:brainstorm:auto-parallel - Add /workflow:brainstorm:auto-squeeze - Add new "Workflow Tools (Internal)" section with: - /workflow:tools:context-gather - /workflow:tools:concept-enhanced - /workflow:tools:task-generate - /workflow:tools:task-generate-agent - /workflow:tools:status - /workflow:tools:docs Fixed command paths: - Change /workflow:docs to /workflow:tools:docs in examples - Update workflow lifecycle diagram - Update development examples Updated documentation: - Remove Plan Verification System section - Update Enhanced Workflow Lifecycle (5 phases instead of 6) - Update Key Innovations section All commands now verified against actual implementations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 07eff2d commit bb6f55d

File tree

1 file changed

+27
-30
lines changed

1 file changed

+27
-30
lines changed

README.md

Lines changed: 27 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
2424
### 🌟 Key Innovations
2525

26-
- **🔄 Enhanced Workflow Lifecycle**: Complete development cycle: Brainstorm → Plan → Verify → Execute → Test → Review
26+
- **🔄 Enhanced Workflow Lifecycle**: Complete development cycle: Brainstorm → Plan → Execute → Test → Review
2727
- **🧪 Automated Test Generation**: Comprehensive test workflow generation (`/workflow:test-gen`) with full coverage planning
28-
- **✅ Plan Verification System**: Pre-execution validation using dual Gemini/Codex analysis (`/workflow:plan-verify`)
2928
- **🎯 JSON-First Architecture**: Single source of truth with atomic session management
3029
- **💡 Brainstorm Artifacts**: Multi-perspective planning with synthesis and structured document generation
30+
- **🤖 Intelligent Agent Orchestration**: Automated agent assignment and task coordination
3131
- **🔧 MCP Tools Integration** *(Experimental)*: Enhanced codebase analysis through Model Context Protocol tools
3232

3333
---
@@ -105,10 +105,9 @@ Complete development lifecycle with quality gates at each phase:
105105

106106
1. **💡 Brainstorm Phase** - Multi-perspective conceptual planning with role-based analysis
107107
2. **📋 Plan Phase** - Structured implementation planning with task decomposition
108-
3. **✅ Verify Phase** - Pre-execution validation using Gemini (strategic) + Codex (technical)
109-
4. **⚡ Execute Phase** - Autonomous implementation with multi-agent orchestration
110-
5. **🧪 Test Phase** - Automated test workflow generation with comprehensive coverage
111-
6. **🔍 Review Phase** - Quality assurance and completion validation
108+
3. **⚡ Execute Phase** - Autonomous implementation with multi-agent orchestration
109+
4. **🧪 Test Phase** - Automated test workflow generation with comprehensive coverage
110+
5. **🔍 Review Phase** - Quality assurance and completion validation
112111

113112
### 🧪 **Automated Test Generation**
114113
Comprehensive test workflow creation:
@@ -117,12 +116,6 @@ Comprehensive test workflow creation:
117116
- **Agent Assignment**: Specialized test agents for different test types
118117
- **Dependency Mapping**: Test execution follows implementation dependency chains
119118

120-
### **Plan Verification System**
121-
Dual-engine validation before execution:
122-
- **Gemini Strategic Analysis**: High-level feasibility and architectural soundness
123-
- **Codex Technical Analysis**: Implementation details and technical feasibility
124-
- **Cross-Validation**: Identifies conflicts between strategic vision and technical constraints
125-
- **Improvement Suggestions**: Actionable recommendations before implementation begins
126119

127120
---
128121

@@ -145,7 +138,6 @@ CCW automatically adapts workflow structure based on project complexity:
145138
| Command | Function | Example |
146139
|---|---|---|
147140
| `🎯 /enhance-prompt` | Technical context enhancement | `/enhance-prompt "add auth system"` |
148-
| `📊 /context` | Unified context management | `/context --analyze --format=tree` |
149141
| `📝 /update-memory-full` | Complete documentation update | `/update-memory-full` |
150142
| `🔄 /update-memory-related` | Smart context-aware updates | `/update-memory-related` |
151143

@@ -194,24 +186,34 @@ The commands `/gemini:mode:auto` and `/gemini:mode:plan-precise` have been remov
194186
| `🚀 /workflow:session:start` | Create new session | `/workflow:session:start "OAuth2 System"` |
195187
| `⏸️ /workflow:session:pause` | Pause current session | `/workflow:session:pause` |
196188
| `▶️ /workflow:session:resume` | Resume session | `/workflow:session:resume "OAuth2 System"` |
189+
| `✅ /workflow:session:complete` | Complete current session | `/workflow:session:complete` |
197190
| `📋 /workflow:session:list` | List all sessions | `/workflow:session:list --active` |
198191
| `🔄 /workflow:session:switch` | Switch sessions | `/workflow:session:switch "Payment Fix"` |
199192

200193
#### 🎯 Workflow Operations
201194
| Command | Function | Usage |
202195
|---|---|---|
203196
| `💭 /workflow:brainstorm:*` | Multi-perspective planning with role experts | `/workflow:brainstorm:system-architect "microservices"` |
197+
| `🚀 /workflow:brainstorm:auto-parallel` | Automated parallel brainstorming | `/workflow:brainstorm:auto-parallel "topic"` |
198+
| `🔄 /workflow:brainstorm:auto-squeeze` | Automated sequential brainstorming | `/workflow:brainstorm:auto-squeeze "topic"` |
204199
| `🤝 /workflow:brainstorm:synthesis` | Synthesize all brainstorming perspectives | `/workflow:brainstorm:synthesis` |
205200
| `🎨 /workflow:brainstorm:artifacts` | Generate structured planning documents | `/workflow:brainstorm:artifacts "topic description"` |
206201
| `📋 /workflow:plan` | Convert to executable implementation plans | `/workflow:plan "description" \| file.md \| ISS-001` |
207-
| `🔍 /workflow:plan-deep` | Deep technical planning with Gemini analysis | `/workflow:plan-deep "requirements description"` |
208-
| `✅ /workflow:plan-verify` | Pre-execution validation using dual analysis | `/workflow:plan-verify` |
209202
| `⚡ /workflow:execute` | Coordinate agents for implementation | `/workflow:execute` |
210203
| `🔄 /workflow:resume` | Intelligent workflow resumption | `/workflow:resume [--from TASK-ID] [--retry]` |
211-
| `📊 /workflow:status` | Generate on-demand views from task data | `/workflow:status [task-id] [format] [validation]` |
204+
| `📊 /workflow:status` | Generate on-demand views from task data | `/workflow:status [task-id]` |
212205
| `🧪 /workflow:test-gen` | Generate comprehensive test workflows | `/workflow:test-gen WFS-session-id` |
213206
| `🔍 /workflow:review` | Execute review phase for quality validation | `/workflow:review` |
214-
| `📚 /workflow:docs` | Generate hierarchical documentation | `/workflow:docs "architecture" \| "api" \| "all"` |
207+
208+
#### 🔧 Workflow Tools (Internal)
209+
| Command | Function | Usage |
210+
|---|---|---|
211+
| `🔍 /workflow:tools:context-gather` | Intelligent context collection | `/workflow:tools:context-gather --session WFS-id "task"` |
212+
| `🧪 /workflow:tools:concept-enhanced` | Enhanced concept analysis | `/workflow:tools:concept-enhanced --session WFS-id` |
213+
| `📝 /workflow:tools:task-generate` | Manual task generation | `/workflow:tools:task-generate --session WFS-id` |
214+
| `🤖 /workflow:tools:task-generate-agent` | Autonomous task generation | `/workflow:tools:task-generate-agent --session WFS-id` |
215+
| `📊 /workflow:tools:status` | Advanced status reporting | `/workflow:tools:status [task-id]` |
216+
| `📚 /workflow:tools:docs` | Generate hierarchical documentation | `/workflow:tools:docs "architecture" \| "api" \| "all"` |
215217

216218
#### 🏷️ Task Management
217219
| Command | Function | Usage |
@@ -255,11 +257,10 @@ graph TD
255257
SESSION --> BRAINSTORM["/workflow:brainstorm:system-architect topic"]
256258
BRAINSTORM --> SYNTHESIS["/workflow:brainstorm:synthesis"]
257259
SYNTHESIS --> PLAN["/workflow:plan description"]
258-
PLAN --> VERIFY["/workflow:plan-verify"]
259-
VERIFY --> EXECUTE["/workflow:execute"]
260+
PLAN --> EXECUTE["/workflow:execute"]
260261
EXECUTE --> TEST["/workflow:test-gen WFS-session-id"]
261262
TEST --> REVIEW["/workflow:review"]
262-
REVIEW --> DOCS["/workflow:docs all"]
263+
REVIEW --> DOCS["/workflow:tools:docs all"]
263264
DOCS --> COMPLETE[✅ Complete]
264265
```
265266

@@ -293,20 +294,17 @@ graph LR
293294
# 4. Create executable implementation plan
294295
/workflow:plan "user dashboard with analytics and real-time data"
295296

296-
# 5. Verify plan before execution
297-
/workflow:plan-verify
298-
299-
# 6. Execute implementation with agent coordination
297+
# 5. Execute implementation with agent coordination
300298
/workflow:execute
301299

302-
# 7. Generate comprehensive test suite
300+
# 6. Generate comprehensive test suite
303301
/workflow:test-gen WFS-user-dashboard-feature
304302

305-
# 8. Quality assurance and review
303+
# 7. Quality assurance and review
306304
/workflow:review
307305

308-
# 9. Generate documentation
309-
/workflow:docs "all"
306+
# 8. Generate documentation
307+
/workflow:tools:docs "all"
310308
```
311309

312310
#### **⚡ Rapid Bug Resolution**
@@ -323,8 +321,7 @@ graph LR
323321
# Deep architecture workflow
324322
/workflow:session:start "API Refactoring Initiative"
325323
/cli:analyze "current API architecture patterns and technical debt" --tool gemini
326-
/workflow:plan-deep "microservices transition strategy"
327-
/workflow:plan-verify
324+
/workflow:plan "microservices transition strategy"
328325
/cli:execute "Refactor monolith to microservices architecture" --tool qwen
329326
/workflow:test-gen WFS-api-refactoring-initiative
330327
/workflow:review

0 commit comments

Comments
 (0)