From 514f97956edfe235882cc40ae01796252230efbf Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sat, 7 Feb 2026 12:05:12 +0800 Subject: [PATCH] =?UTF-8?q?fix(skill):=20=E6=9B=B4=E6=96=B0=E6=8A=80?= =?UTF-8?q?=E8=83=BD=E5=90=8D=E7=A7=B0=E4=B8=BA=20workflow-lite-plan-execu?= =?UTF-8?q?te=EF=BC=8C=E4=BF=AE=E6=AD=A3=E7=9B=B8=E5=85=B3=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../skills/workflow-lite-plan-execute/SKILL.md | 18 +++++++++--------- .../phases/01-lite-plan.md | 2 +- .codex/skills/workflow-plan-execute/SKILL.md | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.codex/skills/workflow-lite-plan-execute/SKILL.md b/.codex/skills/workflow-lite-plan-execute/SKILL.md index 2d2f98af..ac849662 100644 --- a/.codex/skills/workflow-lite-plan-execute/SKILL.md +++ b/.codex/skills/workflow-lite-plan-execute/SKILL.md @@ -1,5 +1,5 @@ --- -name: workflow-lite-plan +name: workflow-lite-plan-execute description: Unified lightweight planning skill with mode selection (Lite Plan, Multi-CLI Plan, Lite Fix). Supports exploration, diagnosis, multi-CLI collaboration, and shared execution via lite-execute. allowed-tools: spawn_agent, wait, send_input, close_agent, AskUserQuestion, Read, Write, Edit, Bash, Glob, Grep, mcp__ace-tool__search_context --- @@ -43,8 +43,8 @@ When `--yes` or `-y`: Skip mode selection (use default or flag-specified mode), ## Usage ``` -Skill(skill="workflow-lite-plan", args="") -Skill(skill="workflow-lite-plan", args="[FLAGS] \"\"") +Skill(skill="workflow-lite-plan-execute", args="") +Skill(skill="workflow-lite-plan-execute", args="[FLAGS] \"\"") # Flags --mode lite-plan|multi-cli|lite-fix Planning mode selection (default: lite-plan) @@ -53,11 +53,11 @@ Skill(skill="workflow-lite-plan", args="[FLAGS] \"\"") --hotfix Fast hotfix mode (lite-fix only) # Examples -Skill(skill="workflow-lite-plan", args="\"Implement JWT authentication\"") # Default: lite-plan -Skill(skill="workflow-lite-plan", args="--mode multi-cli \"Refactor payment module\"") # Multi-CLI planning -Skill(skill="workflow-lite-plan", args="--mode lite-fix \"Login fails with 500 error\"") # Bug fix mode -Skill(skill="workflow-lite-plan", args="-y \"Add user profile page\"") # Auto mode -Skill(skill="workflow-lite-plan", args="--mode lite-fix --hotfix \"Production DB timeout\"") # Hotfix mode +Skill(skill="workflow-lite-plan-execute", args="\"Implement JWT authentication\"") # Default: lite-plan +Skill(skill="workflow-lite-plan-execute", args="--mode multi-cli \"Refactor payment module\"") # Multi-CLI planning +Skill(skill="workflow-lite-plan-execute", args="--mode lite-fix \"Login fails with 500 error\"") # Bug fix mode +Skill(skill="workflow-lite-plan-execute", args="-y \"Add user profile page\"") # Auto mode +Skill(skill="workflow-lite-plan-execute", args="--mode lite-fix --hotfix \"Production DB timeout\"") # Hotfix mode ``` ## Subagent API Reference @@ -279,5 +279,5 @@ Phase-internal sub-tasks are managed by each phase document (attach/collapse pat ## Related Skills -- Full planning workflow: [workflow-plan/SKILL.md](../workflow-plan/SKILL.md) +- Full planning workflow: [workflow-plan-execute/SKILL.md](../workflow-plan-execute/SKILL.md) - Brainstorming: [workflow-brainstorm-auto-parallel/SKILL.md](../workflow-brainstorm-auto-parallel/SKILL.md) diff --git a/.codex/skills/workflow-lite-plan-execute/phases/01-lite-plan.md b/.codex/skills/workflow-lite-plan-execute/phases/01-lite-plan.md index a19c90d6..3842b310 100644 --- a/.codex/skills/workflow-lite-plan-execute/phases/01-lite-plan.md +++ b/.codex/skills/workflow-lite-plan-execute/phases/01-lite-plan.md @@ -1105,7 +1105,7 @@ executionContext = { | Planning agent failure | Fallback to direct planning by Claude | | Clarification timeout | Use exploration findings as-is | | Confirmation timeout | Save context, display resume instructions | -| Modify loop > 3 times | Suggest breaking task or using full planning workflow (workflow-plan/SKILL.md) | +| Modify loop > 3 times | Suggest breaking task or using full planning workflow (workflow-plan-execute/SKILL.md) | --- diff --git a/.codex/skills/workflow-plan-execute/SKILL.md b/.codex/skills/workflow-plan-execute/SKILL.md index ecf29445..42ee0d38 100644 --- a/.codex/skills/workflow-plan-execute/SKILL.md +++ b/.codex/skills/workflow-plan-execute/SKILL.md @@ -1,5 +1,5 @@ --- -name: workflow-plan +name: workflow-plan-execute description: 4-phase planning+execution workflow with action-planning-agent task generation, outputs IMPL_PLAN.md and task JSONs, optional Phase 4 execution. Triggers on "workflow:plan". allowed-tools: spawn_agent, wait, send_input, close_agent, AskUserQuestion, Read, Write, Edit, Bash, Glob, Grep ---