with one click
executing-plans
当有一份书面实现计划需要在当前会话中逐步执行,并设有审查检查点时
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
当有一份书面实现计划需要在当前会话中逐步执行,并设有审查检查点时
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
在开始任何对话时使用——确立如何查找和使用技能,要求在任何响应(包括澄清性问题)之前调用 Skill 工具
在任何创造性工作之前必须使用此技能——创建功能、构建组件、添加功能或修改行为。在实现之前先探索用户意图、需求和设计。
中文 review 沟通参考——话术模板、分级标注(必须修复/建议修改/仅供参考)、国内团队常见反模式应对。
中文 commit 与 changelog 配置参考——Conventional Commits 中文适配、commitlint/husky/commitizen 中文模板、conventional-changelog 中文配置。仅在用户显式 /chinese-commit-conventions 时调用,不要根据上下文自动触发。
中文文档排版参考——中英文空格、全半角标点、术语保留、链接格式、中文文案排版指北约定。仅在用户显式 /chinese-documentation 时调用,不要根据上下文自动触发。
国内 Git 平台配置参考——Gitee、Coding.net、极狐 GitLab、CNB 的 SSH/HTTPS/凭据/CI 接入差异与镜像同步配置。仅在用户显式 /chinese-git-workflow 时调用,不要根据上下文自动触发。
| name | executing-plans |
| description | 当有一份书面实现计划需要在当前会话中逐步执行,并设有审查检查点时 |
加载计划,批判性审查,使用工具逐步执行,验证每个步骤,完成后报告。
开始时宣布: "我正在使用 executing-plans 技能来实现此计划。"
注意: 如果任务相互独立且子代理可用,优先使用 subagent-driven-development。
read_file(path="计划文件路径")
如有多个计划文件,一并读取。
审查重点:
search_content / list_directory 快速确认)有疑虑时向用户提出,不要猜测。
提取任务列表,在对话中维护待办:
▸ 任务 1/5:xxx
- [ ] 任务 2:xxx
...
每个任务的循环:
read_file、search_content 理解现状edit_file(SEARCH/REPLACE)run_command(测试、lint、构建)run_command(command="git commit -m '...'")工具使用原则:
| 场景 | 工具 |
|---|---|
| 读取文件 | read_file |
| 搜索代码 | search_content(内容)、search_files(文件名) |
| 修改代码 | edit_file(SEARCH/REPLACE) |
| 运行测试/构建/git | run_command |
| 启动服务器/watch | run_background |
run_command vs run_background: 需要等待结果做决策的用 run_command(测试、lint、git);启动持续进程用 run_background(服务器、watch)。
SEARCH/REPLACE 规范:
每完成 3 个任务暂停回顾:
run_command(command="git diff --stat HEAD~3") # 查看变更范围
run_command(command="go test ./...") # 完整回归测试
发现前期问题先修复,再继续。
全部完成后:
## 执行报告
**计划:** docs/plans/xxx.md
**分支:** feature/xxx
**任务:** N/N 已完成
### 完成的任务
1. ✅ xxx
2. ✅ xxx
...
### 验证结果
- 测试:X/X 通过
- lint:0 警告
### 偏离计划
- 任务 X:xxx(经用户同意)
### 下一步
按 finishing-a-development-branch 处理合并
| 异常 | 处理 |
|---|---|
| 测试失败 | 读错误→定位→修复→重跑;同一失败 2 次以上停止求助 |
| 依赖缺失 | 停止,向用户报告 |
| 指令不清 | 列出理解+困惑,等用户澄清 |
| 计划缺陷 | 停止,建议修正方案 |
必需技能: