mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
修复workflow/execute.md中的过时命令引用
- 更新Discovery Issues部分的错误处理,使用新的命令格式 - 修复Next Actions中的命令语法 (/workflow:vibe → /workflow/execute) - 更新Related Commands使用正确的命令路径 - 统一术语:Vibe Philosophy → Execution Philosophy - 修正session状态字段名称 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -17,9 +17,9 @@ Coordinates multiple agents for executing existing workflow tasks through automa
|
|||||||
**Session Management:** @~/.claude/workflows/session-management-principles.md
|
**Session Management:** @~/.claude/workflows/session-management-principles.md
|
||||||
**Agent Orchestration:** @~/.claude/workflows/agent-orchestration-patterns.md
|
**Agent Orchestration:** @~/.claude/workflows/agent-orchestration-patterns.md
|
||||||
|
|
||||||
## Vibe Philosophy
|
## Execution Philosophy
|
||||||
|
|
||||||
The "vibe" approach focuses on:
|
The intelligent execution approach focuses on:
|
||||||
- **Discovery-first execution** - Automatically discover existing plans and tasks
|
- **Discovery-first execution** - Automatically discover existing plans and tasks
|
||||||
- **Status-aware coordination** - Execute only tasks that are ready
|
- **Status-aware coordination** - Execute only tasks that are ready
|
||||||
- **Context-rich agent assignment** - Use complete task JSON data for agent context
|
- **Context-rich agent assignment** - Use complete task JSON data for agent context
|
||||||
@@ -52,7 +52,7 @@ Workflow Discovery:
|
|||||||
**Always First**: Create comprehensive TodoWrite based on discovered tasks
|
**Always First**: Create comprehensive TodoWrite based on discovered tasks
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
# Workflow Vibe Coordination
|
# Workflow Execute Coordination
|
||||||
*Session: WFS-[topic-slug]*
|
*Session: WFS-[topic-slug]*
|
||||||
|
|
||||||
## Execution Plan
|
## Execution Plan
|
||||||
@@ -211,8 +211,8 @@ mark_dependent_tasks_ready(task_dependencies)
|
|||||||
### Session State Updates
|
### Session State Updates
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"current_phase": "VIBE",
|
"current_phase": "EXECUTE",
|
||||||
"last_vibe_execution": "2025-09-08T14:30:00Z"
|
"last_execute_run": "2025-09-08T14:30:00Z"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -220,9 +220,9 @@ mark_dependent_tasks_ready(task_dependencies)
|
|||||||
|
|
||||||
### Discovery Issues
|
### Discovery Issues
|
||||||
```bash
|
```bash
|
||||||
# No workflow found
|
# No active session found
|
||||||
❌ No workflow folder found
|
❌ No active workflow session found
|
||||||
→ Use: /workflow init "project name" first
|
→ Use: /workflow/session/start "project name" first
|
||||||
|
|
||||||
# No executable tasks
|
# No executable tasks
|
||||||
⚠️ All tasks completed or blocked
|
⚠️ All tasks completed or blocked
|
||||||
@@ -230,7 +230,7 @@ mark_dependent_tasks_ready(task_dependencies)
|
|||||||
|
|
||||||
# Missing task files
|
# Missing task files
|
||||||
❌ Task impl-1.2 referenced but JSON file missing
|
❌ Task impl-1.2 referenced but JSON file missing
|
||||||
→ Fix: Recreate task or repair references
|
→ Fix: /task/create or repair task references
|
||||||
```
|
```
|
||||||
|
|
||||||
### Execution Recovery
|
### Execution Recovery
|
||||||
@@ -248,18 +248,18 @@ mark_dependent_tasks_ready(task_dependencies)
|
|||||||
|
|
||||||
### Next Actions
|
### Next Actions
|
||||||
```bash
|
```bash
|
||||||
# After /workflow:vibe execution
|
# After /workflow/execute completion
|
||||||
/context # View updated task status
|
/context # View updated task status
|
||||||
/task:execute impl-X # Execute specific remaining tasks
|
/task/execute impl-X # Execute specific remaining tasks
|
||||||
/workflow:review # Move to review phase when complete
|
/workflow/review # Move to review phase when complete
|
||||||
```
|
```
|
||||||
|
|
||||||
## Related Commands
|
## Related Commands
|
||||||
|
|
||||||
- `/context` - View discovered tasks and current status
|
- `/context` - View discovered tasks and current status
|
||||||
- `/task:execute` - Execute individual tasks (user-controlled)
|
- `/task/execute` - Execute individual tasks (user-controlled)
|
||||||
- `/task:status` - Check task progress and dependencies
|
- `/workflow/session/status` - Check session progress and dependencies
|
||||||
- `/workflow:review` - Move to review phase after completion
|
- `/workflow/review` - Move to review phase after completion
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user