Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
netresearch avatar

Peer Qa Review

  • 5 installs
  • 1 repo stars
  • Updated August 3, 2026
  • netresearch/peer-qa-review-skill

Helps with ai & agent building tasks.

About

peer-qa-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • peer-qa-review
  • AI & Agent Building
  • AI-coding skill

Peer Qa Review by the numbers

  • 5 all-time installs (skills.sh)
  • Ranked #13,065 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/netresearch/peer-qa-review-skill --skill peer-qa-review

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs5
repo stars1
Last updatedAugust 3, 2026
Repositorynetresearch/peer-qa-review-skill

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Peer QA Review (Round 1)

A teammate has marked work as ready for QA. Your job: verify it before it goes to customer acceptance / QA2 / internal close. Round-1 QA is not rubber-stamping — re-run verification yourself, check formal correctness, check inventory and docs, post a structured QA comment, transition the ticket.

When this skill applies

Auto-trigger:

  • Ticket transitioned to QA status (or equivalent: "Review", "Code Review", "Ready for Review")
  • Comment "ready for QA" / "ready for review" posted by the implementer
  • User asks for "IT QA review", "internal QA", "peer review", "quality gate", "review and resolve"

Skip when:

  • Ticket is still In Progress — ask implementer to transition first
  • Ticket is QA2 / customer-acceptance — different scope
  • Ticket is already closed — post-mortem only; say so explicitly
  • You are also the implementer — you can't self-review (see references/edge-cases.md)

Companion skills

  • Required: a ticket-system skill. For Jira: `jira-communication`. Stage 0 uses its qa-gather.py for single-call discovery (see scripts/qa-gather.sh).
  • Optional: if your team has internal IT / maintenance / ITSM skills, consult them after this skill loads — they define project-specific overrides (project list, inventory CRUD, announcement channels, customer-vs-internal routing).

Lifecycle (6 stages)

StageNameOutput
-1ClaimTicket assigned to me; not previously mine
0DiscoverSingle-call gather of issue + comments + worklog + links + sibling tickets
1Formal correctnessDescription / linkage / console-output / worklog checks
2Functional + Inventory + GuardrailsReviewer re-runs verification; inventory updated; guardrails checked (adjacent components, shared-layer downstream, unchanged default path)
3Docs + Rollback + CommunicationRunbook stale? Snapshot taken? Announced if customer-affecting?
4VerdictPass-resolve · Pass-QA2 · Bounce · Won't-do
5Comment + TransitionSingle structured QA comment; transition

Full per-stage checks: references/lifecycle.md and references/checklist.md.

Severity vocabulary

Reuse the standard Atlassian icon set. Do not invent new categories.

IconMeaningAction
(/)verified / passednone
(x)MUST: blocking — cannot resolvebounce to In Progress
(!)SHOULD: real issue, non-blocking heredocument; create follow-up if structural
(i)HINT: improvement / next-time nice-to-havedocument; no action required
(?)open questionblock on answer

Rationale and examples: references/severity.md.

Output: one structured comment

Single Jira comment, header h3. IT Internal QA, h4 sections for each pillar, severity icons throughout, verdict line at the end. Optional addendum comments for separable concerns (e.g. Confluence runbook review).

Full template + filled examples: references/comment-template.md.

Stage 0 — discover (one call)

# If jira-communication is installed:
${CLAUDE_SKILL_DIR}/scripts/qa-gather.sh <ISSUE-KEY>

# JSON for programmatic consumption:
${CLAUDE_SKILL_DIR}/scripts/qa-gather.sh <ISSUE-KEY> --json

Returns issue + comments + worklog + issue/web links + URLs extracted from description and comments (MR/PR/pipeline/commit/tag/release/issue) + sibling tickets — in one call. Falls back to multi-call if qa-gather.py is unavailable.

Stage -1 — claim the ticket

digraph claim {
  "ticket assignee?" [shape=diamond];
  "claim it" [shape=box];
  "stop: in flight by someone else" [shape=box];
  "stop: cannot self-QA, hand off" [shape=box];
  "proceed" [shape=doublecircle];

  "ticket assignee?" -> "claim it" [label="unassigned (team queue)"];
  "ticket assignee?" -> "stop: in flight by someone else" [label="someone else"];
  "ticket assignee?" -> "stop: cannot self-QA, hand off" [label="me"];
  "claim it" -> "proceed";
}

The Round-1 QA queue is typically a team queue with no assignee. Self-assign and continue. If someone else holds it, stop. If it's already yours from earlier (you implemented it), you cannot self-QA — see references/edge-cases.md.

Verdict routing

OutcomeWhenAction
Pass — resolveAll (x) clear, IT-internal scope (no customer affected)transition QA → Closed/Done
Pass — QA2All (x) clear, customer-affecting changetransition QA → QA2, assign to product owner / customer
Bounce — In ProgressAny (x)transition QA → In Progress, comment with the blocker, re-assign to implementer
Won't-doBlocking external prerequisite missingdocument, file follow-up ticket, resolve as Won't-do with reopen condition

QA2-vs-internal-resolve decision rule: see references/edge-cases.md. When uncertain, default to QA2.

References

  • references/lifecycle.md — full per-stage detail
  • references/checklist.md — every check, organised by pillar (F1–F8 formal, R1–R6 functional, G1–G3 guardrails, I1–I4 inventory, D1–D4 docs, B1–B3 rollback, C1–C3 communication, P1–P6 process compliance)
  • references/severity.md — icon vocabulary and worked examples
  • references/comment-template.md — Jira-wiki template + 3 worked examples (pass, bounce, won't-do)
  • references/edge-cases.md — bounce, won't-do, self-review, unverifiable evidence, QA2 routing
  • references/anti-patterns.md — what to flag in implementer's comments
  • references/frameworks.md — light alignment notes (ITIL PIR, Scrum DoD)

Scripts

ScriptPurpose
scripts/qa-gather.shStage 0 single-call discovery (delegates to jira-communication's qa-gather.py, falls back to multi-call)

Anti-patterns to flag

(See references/anti-patterns.md for the full list with examples.)

1. One giant final comment instead of one-per-step 2. Markdown leakage in Jira (**bold**, # heading, em-dashes --) 3. Inventory bulk-updated at end instead of immediately after each component 4. No console-output audit trail for key actions 5. Tag without pipeline (release pushed but CI was red or skipped) 6. No re-execution by reviewer — copy-pasting implementer's output is not QA

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.