fix: correct workflow:execute usage in docs command

Fixed incorrect usage of /workflow:execute with task IDs.
- Changed from: /workflow:execute IMPL-001 (incorrect)
- Changed to: /workflow:execute (correct - executes entire workflow)
- Simplified execution commands section
- Aligned with execute.md specification

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-10-16 16:54:00 +08:00
parent 872fb4995e
commit 5e59c1d2d9

View File

@@ -742,27 +742,15 @@ bash(
## Execution Commands ## Execution Commands
### Full Mode (--mode full)
```bash ```bash
# Level 1 - Module documentation (parallel) # Execute entire workflow (auto-discovers active session)
/workflow:execute IMPL-001 /workflow:execute
/workflow:execute IMPL-002
/workflow:execute IMPL-003
# Level 2 - Project README (after Level 1) # Or specify session
/workflow:execute IMPL-004 /workflow:execute --resume-session="WFS-docs-yyyymmdd-hhmmss"
# Level 3 - Architecture & Examples (after Level 2) # Individual task execution (if needed)
/workflow:execute IMPL-005 # ARCHITECTURE.md + EXAMPLES.md /task:execute IMPL-001
/workflow:execute IMPL-006 # HTTP API (if present)
```
### Partial Mode (--mode partial)
```bash
# Only Level 1 tasks generated (module documentation)
/workflow:execute IMPL-001
/workflow:execute IMPL-002
/workflow:execute IMPL-003
``` ```
## Simple Bash Commands ## Simple Bash Commands