Agent Skills
› Yeachan-Heo/oh-my-claudecode
› execute
execute
GitHub将已批准的任务转化为可工作的代码,包含并行执行、逐步验证及证据收集。适用于明确需求的构建工作,强调小步快跑、复用现有模式及严格的质量控制。
触发场景
任务目标明确需直接编码实现
需要并行处理多个独立开发单元
需要将设计或规划转化为最终可运行代码
安装
npx skills add Yeachan-Heo/oh-my-claudecode --skill execute -g -y
SKILL.md
Frontmatter
{
"name": "execute",
"description": "Carry an approved task through to working, verified code"
}
Execute
Use this skill when the work is understood and the job is to build it.
This is the canonical execution workflow. autopilot, ralph, ultragoal,
ultrapilot, pipeline, and swarm route here.
Goal
Take a task from agreed intent to working code, with evidence that it works.
Workflow
- Confirm the task is clear enough to build. If it is not, plan first.
- Break the work into independent units; run genuinely independent units in parallel.
- Implement the smallest correct change per unit, reusing existing utilities and patterns.
- Verify as you go, not only at the end.
- Report what changed, what was verified, and what remains.
Scale
Match the machinery to the task:
- Single unit — implement directly, verify, done.
- Several independent units — delegate to
executoragents in parallel. - Long-running or unbounded — keep a durable task list and continue until the list is empty.
- Needs coordinated parallel workers — use
team.
Do not spin up coordination for work that one focused pass would finish.
Rules
- Prefer deletion over addition when behavior is preserved.
- Do not add dependencies without an explicit request.
- Keep diffs small and reversible.
- Placeholder TODOs,
test.skip, and stub tests are blockers, not progress. - Authoring and approval are separate passes — do not self-approve; hand off to
revieworverify.
Completion
Before claiming done:
- No pending tasks
- Tests pass, or failures are reported plainly
- Verification evidence collected
Output
- Files changed
- What was implemented
- Evidence it works
- What is still open
版本历史
-
e9e8fa3
当前 2026-09-03 09:14
更新上游路由代理列表,移除ultrawork,新增ultrapilot。
- 74e4e11 2026-08-28 11:11


