cy-execute-task

Executes one PRD task end-to-end from specification through validation and tracking updates.

Updated Feb 15, 2026
One-click install
npx skills add https://github.com/j0ruge/LouvorFlow --skill cy-execute-task-j0ruge
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: cy-execute-task
Source: https://github.com/j0ruge/LouvorFlow/tree/main/skills/cy-execute-task
Command: npx skills add https://github.com/j0ruge/LouvorFlow --skill cy-execute-task-j0ruge

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Implementing a single task from a Product Requirements Document involves many error-prone steps: reading the spec, reconciling it with tech specs and ADRs, writing code, running validations, and updating tracking files. This Skill orchestrates that entire flow so no step is skipped and task status is only marked complete after verified evidence. ## Core Features & Use Cases - Structured Execution Checklist: Extracts deliverables, acceptance criteria, and validation items from the task specification into a numbered, gated checklist before any code is written. - Conflict Detection: Cross-checks the task spec against the techspec and ADRs, stopping and reporting contradictions instead of guessing. - Mandatory Verification and Tracking: Runs every validation command in the spec, performs self-review, then updates task files, the master tasks file, and optionally commits. - Use Case: A developer hands the Skill a task markdown file, the PRD directory, and tracking file paths; the Skill implements the feature, runs the specified tests, marks subtasks complete, and creates a single local commit. ## Quick Start Execute the task defined in this task specification file using the PRD directory and tracking file paths I provide, with auto-commit enabled.

Frequently Asked Questions about cy-execute-task

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute a PRD task end-to-end with an AI coding assistant?▼

Provide the task specification markdown, the PRD directory path, the task file and master tasks file paths, and an auto-commit mode. The Skill builds a checklist from the spec, implements the changes, runs all listed validations, and updates tracking files only after verification passes.

What inputs does PRD task execution require?▼

It requires a task specification markdown, a PRD directory containing documents like _techspec.md and _tasks.md, the current task file path, the master tasks file path, and an auto-commit mode flag. Workflow memory paths are optional.

What happens when the task spec conflicts with ADRs or the techspec?▼

The Skill stops before implementation and reports the conflict instead of guessing. It cross-checks the task specification against the techspec and ADRs in the PRD directory's adrs/ subdirectory during the grounding step.

Does the task get marked complete if validation fails?▼

No. Task status stays unchanged until every validation command in the specification passes and a self-review resolves all blocking issues. Completion is only set after clean verification.

When should I not use PRD task execution?▼

Do not use it for PR review batches, generic coding tasks without a PRD task file, or standalone verification-only work. It is designed specifically for implementing one tracked PRD task.