一键导入
executing-plans
Use when you have an approved implementation plan and want to execute it directly in the current session without the full subagent-driven workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when you have an approved implementation plan and want to execute it directly in the current session without the full subagent-driven workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Helps explore ideas before implementation. Use when the user wants to brainstorm features, compare approaches, shape requirements, or discuss tradeoffs before writing code.
Use when you have two or more independent tasks, failures, or investigations that can be worked on concurrently without shared state or sequential dependencies.
Use when receiving code review feedback, before implementing suggestions, especially when feedback is unclear, broad, or may not fit the codebase as-is.
Use when finishing substantial code changes, before merging, or at natural checkpoints to request an explicit code review pass.
Use when executing a multi-task implementation plan by dispatching one fresh builder agent per task, reviewing each task before moving on, and keeping controller context narrow.
Use when investigating a bug, test failure, build failure, flaky behavior, or unexpected runtime issue before proposing or implementing fixes.
| name | executing-plans |
| description | Use when you have an approved implementation plan and want to execute it directly in the current session without the full subagent-driven workflow. |
Use this skill to execute a written implementation plan directly in the current session.
When work is tracked, use context-task as the durable execution-record policy and pi-task tools for task-record operations:
task_read for the brief, plan, and prior notestask_append_note for task-specific discoveries and progresstask_write (document: "plan") when a material course correction changes the coherent plantask_write (document: "task") for stable task metadata or relevant PR referencesUse context-memory only for durable cross-task facts or decisions.
This is the lighter-weight alternative to subagent-driven-development: execute a plan in one session without per-task builder and reviewer dispatches. Use the subagent workflow when stronger context isolation and review gates are needed.
Use it when the plan is approved, clear enough to execute directly, and moderate in size or tightly coupled. Do not use it when the work is highly parallelizable, benefits from strict per-task isolation, or needs repeated review gates.
Before editing, read the plan carefully and check for contradictions, missing prerequisites, or unclear steps. For tracked work, read the task brief, plan, and relevant notes with task_read. Do not treat a plan as automatically correct just because it exists.
Identify each plan task, keep one task in progress at a time, and regard a plan task as complete only after its verification passes. For tracked work, record meaningful progress and discoveries with task_append_note rather than relying on transient chat history.
For each task:
Record material discoveries and revise the full plan with task_write (document: "plan") when needed. Do not skip ahead merely because later work seems related.
Stop and reassess if the plan is missing detail, verification repeatedly fails, the codebase conflicts with the plan, or a task reveals that the plan structure is wrong. Ask for clarification or revise the plan instead of forcing through blockers.
After implementation tasks are verified, run broader relevant checks, confirm the implementation still meets the plan goal, and request review when substantial or risky.
Do not call task_finish merely because all implementation tasks are complete. Finish is a separate explicit-user-directed workflow through finishing-task.
Do not:
Review first, execute task by task, verify continuously, and retain durable task-specific progress without automatically changing task lifecycle state.