From 44b26555a5f3a259297acdb473373d2157494caa Mon Sep 17 00:00:00 2001 From: catlog22 Date: Mon, 8 Sep 2025 16:26:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dworkflow/execute.md=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E8=BF=87=E6=97=B6=E5=91=BD=E4=BB=A4=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新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 --- .claude/commands/workflow/execute.md | 30 ++++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.claude/commands/workflow/execute.md b/.claude/commands/workflow/execute.md index e555d390..14768378 100644 --- a/.claude/commands/workflow/execute.md +++ b/.claude/commands/workflow/execute.md @@ -17,9 +17,9 @@ Coordinates multiple agents for executing existing workflow tasks through automa **Session Management:** @~/.claude/workflows/session-management-principles.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 - **Status-aware coordination** - Execute only tasks that are ready - **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 ```markdown -# Workflow Vibe Coordination +# Workflow Execute Coordination *Session: WFS-[topic-slug]* ## Execution Plan @@ -211,8 +211,8 @@ mark_dependent_tasks_ready(task_dependencies) ### Session State Updates ```json { - "current_phase": "VIBE", - "last_vibe_execution": "2025-09-08T14:30:00Z" + "current_phase": "EXECUTE", + "last_execute_run": "2025-09-08T14:30:00Z" } ``` @@ -220,9 +220,9 @@ mark_dependent_tasks_ready(task_dependencies) ### Discovery Issues ```bash -# No workflow found -❌ No workflow folder found -→ Use: /workflow init "project name" first +# No active session found +❌ No active workflow session found +→ Use: /workflow/session/start "project name" first # No executable tasks ⚠️ All tasks completed or blocked @@ -230,7 +230,7 @@ mark_dependent_tasks_ready(task_dependencies) # Missing task files ❌ Task impl-1.2 referenced but JSON file missing -→ Fix: Recreate task or repair references +→ Fix: /task/create or repair task references ``` ### Execution Recovery @@ -248,18 +248,18 @@ mark_dependent_tasks_ready(task_dependencies) ### Next Actions ```bash -# After /workflow:vibe execution +# After /workflow/execute completion /context # View updated task status -/task:execute impl-X # Execute specific remaining tasks -/workflow:review # Move to review phase when complete +/task/execute impl-X # Execute specific remaining tasks +/workflow/review # Move to review phase when complete ``` ## Related Commands - `/context` - View discovered tasks and current status -- `/task:execute` - Execute individual tasks (user-controlled) -- `/task:status` - Check task progress and dependencies -- `/workflow:review` - Move to review phase after completion +- `/task/execute` - Execute individual tasks (user-controlled) +- `/workflow/session/status` - Check session progress and dependencies +- `/workflow/review` - Move to review phase after completion ---