Agent Skills
› HashWarlock/nobody-plans-for-pi
› nobody-executes-plans
nobody-executes-plans
GitHub用于按批次执行已编写的实现计划,每批设置人工审查检查点。遵循TDD原则,严格执行计划步骤,通过测试后提交代码,确保开发过程可控且可追溯。
Trigger Scenarios
用户提供了详细的实施计划文件
需要分阶段执行开发任务并等待确认
Install
npx skills add HashWarlock/nobody-plans-for-pi --skill nobody-executes-plans -g -y
SKILL.md
Frontmatter
{
"name": "nobody-executes-plans",
"description": "Use when you have a written implementation plan to execute with review checkpoints"
}
Executing Plans
Overview
Execute implementation plans in batches with human checkpoints. Each batch is a logical group of tasks that can be reviewed together.
Announce at start: "I'm using the nobody-executes-plans skill to work through the plan."
Process
- Load plan — Read the plan file, confirm scope with user
- Execute in batches — Group 2–5 related tasks per batch
- Checkpoint after each batch — Show what was done, run tests, ask to continue
- Track progress — Update plan file with completion marks
Batch Execution
For each batch:
### Batch N: [Description]
Tasks: [list from plan]
1. Execute each task following plan exactly
2. Run tests after each task
3. Commit after each task passes
Checkpoint:
- Tasks completed: [list]
- Tests: [pass/fail count]
- Files changed: [list]
- Continue? [y/n]
Rules
- Follow the plan exactly — don't improve, optimize, or "enhance"
- TDD always — write test, watch fail, implement, watch pass
- Stop on failure — if tests fail, report and wait for guidance
- Commit frequently — after each passing task
- Never skip checkpoints — user must approve each batch
Progress Tracking
Update the plan file as you go:
- [x] Task 1: Setup database schema ✅
- [x] Task 2: Add migration script ✅
- [ ] Task 3: Implement CRUD endpoints
- [ ] Task 4: Add validation
When Things Go Wrong
| Problem | Action |
|---|---|
| Plan step is unclear | Ask user, don't guess |
| Tests fail unexpectedly | Report full output, wait |
| Plan needs modification | Propose change, get approval |
| Scope creep temptation | Stick to plan, note ideas for later |
Version History
- fc2edc0 Current 2026-07-25 05:06


