rc-execute-task

Solid

Executes one PRD task end-to-end using a provided task file, PRD directory, tracking file paths, and auto-commit mode. Use when a prompt includes a task specification that must be implemented, validated, and reflected in task tracking files. Do not use for PR review batches, generic coding tasks without a PRD task file, or standalone verification-only work.

Code & Development 19 stars 1 forks Updated 2 weeks ago MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
43
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Execute PRD Task Execute one PRD task from exploration through tracking updates. ## Code navigation & editing (Serena) If the Serena MCP is available, prefer its symbolic tools over whole-file reads and line-based edits — they are LSP-accurate and token-efficient: - `get_symbols_overview` to grasp a file's structure before reading it; `find_symbol` (by name path, e.g. `Type/method`) to jump straight to a definition. - `find_referencing_symbols` to map every caller before changing a symbol (impact analysis). - `replace_symbol_body`, `insert_after_symbol`, `insert_before_symbol` for precise edits that don't depend on line numbers. Fall back to Grep/Glob + Read/Edit when Serena is unavailable or for plain-text (non-symbol) searches. ## 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 > **Delegation.** Keep this skill's context lean by routing to specialist subagents per the > delegation contract in the `rc` skill (`references/delegation-contract.md`): hand broad or > unfamiliar recon to a `rc-explorer` (cheap/fast, read-only) instead of reading widely > yourself, route version-specific library/API lookups to a `rc-librarian` (cheap, read-only) > instead of guessing from memory, and route architecture/security review or a stubborn debug to > `rc-oracle` (st...

Details

Author
rodolfochicone
Repository
rodolfochicone/rc-project
Created
1 months ago
Last Updated
2 weeks ago
Language
JavaScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

rc-create-tasks

Decomposes PRDs and TechSpecs into detailed, independently implementable task files with enrichment from codebase exploration. Use when a PRD or TechSpec exists and needs to be broken down into executable tasks, or when task files need enrichment with implementation context. Do not use for PRD creation, TechSpec generation, or direct task execution.

19 Updated 2 weeks ago
rodolfochicone
AI & Automation Listed

prd-to-tasks

Break down a PRD.md into a concrete, executable `tasks.md` checklist that a developer or an AI agent can pick up and ship. Reads `.workflow/PRD.md` (and `.workflow/PROJECT.md` for context), produces `.workflow/tasks.md` with one task per checkable bullet, grouped by user story or epic, sized to ~2–8 hours each. Output is compatible with beads, GitHub Issues import, `linear-scrum` (via Linear MCP), and ralph-tui task sources. Use when the user says "split this into tasks", "make the issues", "ticket the PRD", "task breakdown", "create the issues from the PRD", or the orchestrator routes here from phase `prd_drafted`. Not for: writing code or implementing the tasks (those run later).

4 Updated 4 days ago
lukedj78
Code & Development Solid

rc-review-round

Performs a comprehensive code review of a PRD implementation and generates a review round directory with issue files compatible with rc-fix-reviews. Use when reviewing implemented PRD tasks, creating a manual review round without an external provider, or performing a quality audit of code changes. Do not use for fetching reviews from external providers, fixing existing review issues, executing PRD tasks, or editing source code.

19 Updated 2 weeks ago
rodolfochicone