---
name: Review Cycle
slug: review-cycle-2
category: Quality
description: Review Cycle coordinates PR review, CI triage, and requested-changes loops for code that needs independent verification. It helps summarize findings, verify fixes, and decide merge readiness.
github: "https://github.com/prassanna-ravishankar/repowire/tree/main/daemon-go/cli/assets/orchestrator/.agents/skills/review-cycle"
language: Go
stars: 260
forks: 34
install: "npx degit https://github.com/prassanna-ravishankar/repowire/tree/main/daemon-go/cli/assets/orchestrator/.agents/skills/review-cycle ~/.claude/skills/review-cycle"
installs_to: ~/.claude/skills/review-cycle
source_path: daemon-go/cli/assets/orchestrator/.agents/skills/review-cycle/SKILL.md
collection_size: 17
category_size: 1418
collection_url: "https://dirskills.com/collections/prassanna-ravishankar/repowire"
added: 2026-09-02T05:20:19.814Z
last_synced: 2026-09-02T05:20:19.814Z
canonical_url: "https://dirskills.com/skills/review-cycle-2"
---

# Review Cycle

Review Cycle coordinates PR review, CI triage, and requested-changes loops for code that needs independent verification. It helps summarize findings, verify fixes, and decide merge readiness.

**Install:**

```bash
npx degit https://github.com/prassanna-ravishankar/repowire/tree/main/daemon-go/cli/assets/orchestrator/.agents/skills/review-cycle ~/.claude/skills/review-cycle
```

## README

# Review Cycle

Use review cycles when the cost of a missed bug is higher than the cost of an independent pass.

## Loop

1. Define what is being reviewed: branch, PR, ask ID, job ID, or file set.
2. Ask a reviewer peer for findings first, ordered by severity with file/line refs.
3. Route actionable findings to the implementation owner.
4. Verify fixes with tests, CI, and the real behavior when applicable.
5. Summarize residual risk and the merge/release decision separately.

## CI triage

For failed checks, inspect the failing job and logs before guessing. Prefer the user's existing GitHub tooling or plugin when available.

Do not treat green CI as proof of product behavior. UI, daemon workflow, transport, and docs changes often need a targeted smoke test.

## Merge readiness

Call out:

- Tests and checks run.
- Docs impact handled or explicitly deferred.
- Review findings resolved or accepted.
- Whether release/tagging is authorized by the user or project policy.

Do not ship personal release cadence or authority rules in this skill.
