con un clic
go
Execute the task list for a feature PRD.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Execute the task list for a feature PRD.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
| name | go |
| description | Execute the task list for a feature PRD. |
| model | claude-sonnet-4-8 |
Implement the feature described in the PRD by working through its task list.
You are the orchestrator. You do not write tests or production code yourself — you spawn specialist subagents for that and you own all verification. The subagents write; you run every test with the bash tool. This division is non-negotiable:
write-test agent writes a failing test for a behavior. It cannot run anything.write-code agent writes minimal code to pass a failing test, or refactors. It cannot run anything.Find the right files:
$ARGUMENTS is provided, use it as the path to the PRD file.vibes/[0-9]*/*-prd.md and select the most recently modified one.[feature-name]-tasks.md.vibes/000-atomic/project-synopsis.md, vibes/000-atomic/coding-guidelines.md, COMMANDS.md.Read all of these files before doing anything else.
- [ ]) in the task file.- [x]) only after its verification requirement is met.When all tasks are done, summarize what was implemented and confirm the final test suite run passed.
For each task, the actor is fixed: a subagent writes, you verify with bash.
write-test agent (Task tool, subagent_type: write-test). Pass it the specific behavior to test (quote it from the task / PRD Test Requirements) and the context paths (vibes/000-atomic/coding-guidelines.md, the unit under test). It returns the test path and the expected failure. Do not run anything yet — that is the next task.write-test with that feedback; do not advance until you have a genuine RED.write-code agent (Task tool, subagent_type: write-code). Pass it the failing test path, the behavior, and the context paths. It returns the files changed. Do not run anything yet.write-code with the failure output and repeat. Do not advance on a red suite.write-code in refactor mode (preserve code behavior). Then you run the full suite again — must still be green. Paste the output.write-code in refactor mode with the lint/typecheck errors (behavior-preserving), then retry. You may never begin the next parent task until the phase gate passes.write-code with the regression output and fix it before advancing. Never accumulate failures.vibes/000-atomic/coding-guidelines.md at all times. If a task conflicts with the guidelines, STOP, explain the situation to the user and propose ways forward.Generate a detailed task list from a feature PRD so the work can be handed of to a junior developer
Generate coding and architecture guidelines for this project.
Generate a Product Requirements Document (PRD) for a feature. Invoke when a new feature is to be implemented or when significant existing logic is being changed.
Create a Project Synopsis for this project. Invoke when setting up a new project.