
Cy Execute Task
- 1 installs
- 95 repo stars
- Updated June 28, 2026
- pedronauck/kodebase-go
Implements one PRD task end-to-end from a task file, validates it, and reflects the result in task tracking files.
About
Executes a single PRD task from a provided task specification, validating and updating tracking files with optional auto-commit. A developer uses it to drive implementation of an already-decomposed PRD task.
- Implements one PRD task end-to-end from a task file
- Auto-commit mode and task tracking file updates
Cy Execute Task by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,983 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/pedronauck/kodebase-go --skill cy-execute-taskAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 95 |
| Last updated | June 28, 2026 |
| Repository | pedronauck/kodebase-go ↗ |
What it does
Implements one PRD task end-to-end from a task file, validates it, and reflects the result in task tracking files.
Files
Execute PRD Task
Execute one PRD task from exploration through tracking updates.
Required Inputs
- Task specification markdown.
- PRD directory path.
- Task file path.
- Master tasks file path.
- Auto-commit mode.
- Optional workflow memory directory path.
- Optional shared workflow memory path.
- Optional current task memory path.
Workflow
1. Ground in repository and PRD context.
- Read the provided task specification.
- Read the repository guidance files named by the caller.
- Read the PRD documents under the provided directory, especially
_techspec.mdand_tasks.md. - Read ADRs from the
adrs/subdirectory of the PRD directory to understand the architectural decision context for this task. - After reading all sources, check for conflicts between the task specification, techspec, and ADRs. If any requirements contradict each other, stop and report the conflict instead of guessing — do not proceed to step 2.
- If the caller provides workflow memory paths, use the installed
cy-workflow-memoryskill before editing code. - Reconcile the current workspace state before new edits.
2. Build the execution checklist.
- Extract deliverables, acceptance criteria, and every explicit
Validation,Test Plan, orTestingitem into a numbered working checklist. - Print the full checklist before starting implementation so it is visible and trackable.
- Capture the concrete pre-change signal that proves the task is not finished yet.
- Use this checklist as a gate: mark each item done as evidence is produced during implementation, and do not proceed to validation until every checklist item has been addressed.
3. Implement the task.
- Keep scope tight to the task specification.
- Follow repository patterns and real dependency APIs.
- Record meaningful out-of-scope work as follow-up notes instead of silently expanding the task.
4. Validate and self-review.
- Run every test and validation command listed in the task specification — not just the repository-wide verification.
- Use the installed
cy-final-verifyskill. This step is mandatory regardless of auto-commit mode — always verify before claiming completion. - Perform a self-review after verification and resolve every blocking issue before proceeding.
5. Update task tracking.
- If workflow memory paths were provided, update the memory files first — record decisions, learnings, and touched surfaces before updating tracking status.
- Use the caller-provided task file path and master tasks file path.
- Mark subtasks complete only when the implementation and evidence are actually complete.
- Change task status to completed only after clean verification and self-review.
- Read
references/tracking-checklist.mdwhen applying status, checklist, or commit updates. - Sequence: memory update (if applicable) -> task file checkboxes -> task status -> master tasks file -> commit (if applicable).
6. Handle commit behavior.
- If auto-commit is enabled, create one local commit after clean verification, self-review, and tracking updates.
- If auto-commit is disabled, leave the diff ready for manual review and commit.
- Never push automatically.
Error Handling
- If the pre-change signal cannot be reproduced directly, capture the strongest available baseline signal and state the limitation.
- If validation fails, keep the task status unchanged until the failure is resolved.
- If tracking files are missing, stop and report the missing path before marking completion.
Tracking Checklist
Apply this checklist when updating PRD task tracking files.
1. Update the current task file checkboxes that correspond to completed subtasks. 2. Change the task status to completed only after implementation, validation, and self-review are complete. 3. Update the master _tasks.md entry that points to the current task file. 4. Re-check the task specification and supporting PRD docs before marking anything complete. 5. Follow the caller's commit mode and repository staging rules when deciding whether tracking files belong in a commit.