execute
Original:🇺🇸 English
Translated
Carry an approved task through to working, verified code
2installs
Added on
NPX Install
npx skill4agent add yeachan-heo/oh-my-claudecode executeTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Execute
Use this skill when the work is understood and the job is to build it.
This is the canonical execution workflow. , , ,
, , , and route here.
autopilotralphultraworkultragoalultrapilotpipelineswarmGoal
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 agents in parallel.
executor - 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, , and stub tests are blockers, not progress.
test.skip - Authoring and approval are separate passes — do not self-approve; hand off to or
review.verify
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