skills/cy-review-round/SKILL.md
Performs a comprehensive code review of a PRD implementation and generates a review round directory with issue files compatible with cy-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.
npx skillsauth add compozy/compozy cy-review-roundInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Perform a structured code review of a PRD implementation and produce a review round directory that the cy-fix-reviews workflow can process.
.compozy/tasks/<name>/ directory.Determine the review round directory.
.compozy/tasks/<name>/.reviews-NNN/ subdirectories to determine the next round number. If none exist, use round 1..compozy/tasks/<name>/reviews-NNN/ with the round number zero-padded to 3 digits. Do NOT create it yet — wait until step 4 confirms there are issues to write. This avoids leaving empty directories when the review finds no issues.Identify the review scope.
_prd.md, _techspec.md, and _tasks.md from the PRD directory to understand what was implemented and why..compozy/tasks/<name>/adrs/ for architectural decision context._prd.md and _techspec.md are both missing, warn that the review will lack requirements context but proceed with a code-quality-only review.git diff main...HEAD --name-only to discover all files created or modified on the current branch. If the diff is empty or unhelpful, ask the user to specify files.Perform the code review.
references/review-criteria.md for severity definitions and evaluation areas._prd.md or _techspec.md were available in step 2, cross-check the implementation against every stated requirement, acceptance criterion, and architectural decision. Flag any requirement that is missing, partially implemented, or implemented differently than specified. These are correctness issues — assign severity based on the gap's impact (critical if a core feature is missing, high if behavior deviates from spec, medium if an edge case from the spec is unhandled).// nolint: intentionally ignoring close error on read-only file), do not create an issue. Only flag patterns that are genuinely problematic, not merely unconventional.make lint first to filter these out.Generate issue files.
Create the review round directory determined in step 1.
Read references/issue-template.md for the canonical format.
For each issue identified in step 3, create an issue_NNN.md file in the review round directory.
Issue numbering starts at 001 and increments sequentially.
Each file must use this exact structure:
---
provider: manual
pr:
round: <N>
round_created_at: <UTC timestamp in RFC3339 format>
status: pending
file: path/to/file.go
line: 42
severity: high
author: claude-code
provider_ref:
---
# Issue NNN: <title>
## Review Comment
<detailed review body>
## Triage
- Decision: `UNREVIEWED`
- Notes:
The <author> field must be claude-code.
The provider_ref field must be empty.
The provider field must be manual.
The pr field is empty for manual reviews. If the user provides a PR number, include it.
The round field must match the directory number as an integer (not zero-padded).
The round_created_at field must use the same current UTC RFC3339 timestamp in every issue in this round.
The severity field must be exactly one of: critical, high, medium, low.
Summarize and present the review.
compozy reviews fix <name> to process the review round.Verify before completion.
cy-final-verify before claiming the review round is complete.provider, pr, round, and round_created_at values.reviews-NNN naming convention.cy-fix-reviews workflow handles remediation.prompt.ParseReviewContext()._meta.md; round metadata lives in each issue file frontmatter.gh mutations._prd.md and _techspec.md are missing, warn about the lack of requirements context but proceed with code-quality-only review.make lint fails to run (build errors, missing tools), note the failure in the summary and proceed with the review. Do not skip the review because linting failed — just acknowledge that linter-overlap filtering could not be applied.tools
Explains Compozy capabilities, CLI commands, core workflow skills, optional extension skills, configuration, artifact structure, reusable agents, and extensions. Use when the user asks how to use Compozy, what commands are available, how the workflow pipeline works, or how to configure a workspace. Do not use for executing workflow steps — use the specific cy- skills instead.
testing
Executes provider-agnostic PR review remediation using existing review round files under .compozy/tasks/<name>/reviews-NNN/. Use when resolving batched review issues, updating issue markdown files, implementing fixes, and verifying the result. Do not use for PRD task execution, review export/fetch, or generic coding tasks without review issue files.
data-ai
Maintains workflow-scoped task memory for Compozy runs using .compozy/tasks/<name>/memory/ files. Use when a task prompt provides workflow memory paths and requires the agent to read, update, compact, and promote durable context across PRD task executions. Do not use for PR review remediation, global user preferences, or programmatic event-log summarization.
development
Enforces fresh verification evidence before any completion, fix, or passing claim, and before commits or PR creation. Use when an agent is about to report success, hand off work, or commit code. Do not use for early planning, brainstorming, or tasks that have not yet reached a concrete verification step.