New to Claude Skills? Learn how to install them →

nousresearch on GitHub

SDLC Review

Free

Independently verify Kanban handoffs and outcomes.

Get this skill

Free · Opens the source repo

What SDLC Review does

The SDLC Review skill is designed to facilitate the independent verification of work that has been handed off to the review lane in a Kanban workflow. This skill allows users to assess deliverables and their supporting evidence, ensuring that tasks are thoroughly evaluated before they are marked as complete. It does not replace the implementer's role but serves as a critical checkpoint in the software development lifecycle (SDLC) to maintain quality and accountability.

When a task is marked as review_requested, the SDLC Review skill takes over, guiding the reviewer through a structured process. The reviewer is required to examine the task specification, the handoff summary, and the deliverable itself. Based on this assessment, the reviewer can approve the work, request changes, or escalate the task for further decision-making. This process helps ensure that all criteria are met and that the work aligns with the original specifications.

The skill emphasizes the importance of utilizing various lenses during the review process to catch different types of defects. By varying the approach in each review round—such as focusing on the artifact, execution, or contract—the reviewer can uncover issues that may not be apparent through a single inspection method. This structured approach not only enhances the quality of the review but also fosters a culture of continuous improvement within the development team.

The SDLC Review skill is particularly useful for teams implementing Kanban methodologies who require a clear and efficient way to manage task reviews. It is ideal for ensuring that all work is independently verified before completion, thereby reducing the risk of defects and improving overall project outcomes.

When to use it

Use this skill when a task has been handed off for review and requires an independent assessment before completion.

When not to use it

Do not use this skill for downstream review cards that are part of ordinary implementation work; it is specifically for independent reviews of tasks in the review lane.

What you can build with it

Reviewing a Completed Feature

Use the SDLC Review skill to verify that a newly implemented feature meets all specified requirements before it is marked as complete.

Assessing Code Changes

When code changes are submitted for review, this skill helps ensure that they are independently verified against the original acceptance criteria.

Quality Assurance in Agile Teams

In Agile environments, use this skill to maintain high-quality standards by independently reviewing work handed off in Kanban.

How to install SDLC Review

View source

1. Install with the skills CLI

npx skills add nousresearch/hermes-agent/sdlc-review --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by nousresearch

SDLC Review Skill

Independently verify work handed from a Kanban implementation run to the review lane, then approve it, request changes, or escalate. This skill reviews the deliverable and its evidence; it does not take over the implementer's work.

When to Use

Use this skill when all of the following are true:

  • the dispatcher spawned you for a task claimed from the review lane;
  • an implementer submitted a review_requested handoff;
  • the task needs an independent verdict before it can be completed.

Do not use it for a separate downstream review card. A downstream card is ordinary implementation work with a review-oriented specification and completes through its own lifecycle.

Prerequisites

  • A Kanban worker context with the current task and run identifiers.
  • Native Kanban tools: kanban_show, kanban_comment, kanban_complete, kanban_request_changes, and kanban_block.
  • Workspace access through read_file, search_files, and terminal when the deliverable is code.
  • The task's original specification, acceptance criteria, handoff summary, and prior run history must be available through kanban_show.

How to Run

This skill is loaded automatically by the review dispatcher. Start with kanban_show before inspecting files or choosing a verdict.

  1. Read the task specification and the latest review_requested handoff.
  2. Inspect the actual deliverable and run relevant verification.
  3. Choose exactly one verdict: approve, request changes, or escalate.
  4. Record concrete evidence in the terminal Kanban transition.

Quick Reference

VerdictWhenFinal action
ApproveAcceptance criteria and verification passkanban_complete
Request changesCorrectable implementation defects remainkanban_comment, then kanban_request_changes
EscalateA human decision or external prerequisite is requiredkanban_block

A requested-changes transition returns the task to its original implementer. When that implementer requests review again without naming a reviewer, the persisted reviewer provenance routes the re-review back to the same reviewer profile.

Review Lenses

Vary how you look at the work on each round instead of repeating the same inspection. Decorrelated lenses catch different defect classes: a cold read of the artifact surfaces design and correctness problems that the implementer's narrative would have framed away, execution surfaces claims that do not reproduce, and a strict contract audit surfaces quiet scope drift. Repeating the round-1 lens on round 3 mostly re-finds what round 1 already found.

Determine the current round from the history the task record already gives you: count the changes_requested entries in the "Prior attempts on this task" section of your worker context (also visible as prior runs in kanban_show). The current review round is that count plus one. Round 1 therefore shows zero changes_requested attempts; round 2 shows one; and so on.

RoundLensHow to apply it
1ArtifactRead the diff or deliverable cold, before the implementer's summary. Form an independent judgment, then compare it against the handoff narrative and investigate every mismatch.
2ExecutionCheck out the work and actually run it via terminal: build, test, and exercise the reported behavior yourself. Verify each handoff claim empirically instead of re-reading the artifact.
3+ContractRe-read the ORIGINAL task body and acceptance criteria, then audit the deliverable strictly against them. Also verify that every item from every prior kanban_request_changes round actually landed.

The baseline duties in the Procedure section still apply on every round; the lens sets which inspection you lead with and weight most heavily.

Lens variation for ad-hoc review fan-outs

The same principle applies outside the Kanban review lane. When spawning multiple parallel reviewers via delegate_task, give each reviewer a different lens — one diff-only brief, one full-context brief, one checkout-and-run brief — rather than identical briefs. Identical briefs produce correlated verdicts and duplicate findings; varied briefs cover more defect classes for the same review spend.

Procedure

1. Orient from the durable task record

Call kanban_show and identify:

  • the original task body and acceptance criteria;
  • the latest implementation summary and structured metadata;
  • changed files, commit identifiers, and test evidence;
  • comments and decisions from earlier runs;
  • findings from prior review rounds.

Treat the handoff as a claim to verify, not as proof that the work is correct.

2. Compare requested behavior with delivered behavior

Map every acceptance criterion to concrete implementation or output evidence. Note omissions, changed semantics, and unrelated scope before deciding whether to run deeper checks.

For code work:

  1. Use read_file and search_files to inspect the changed paths and their callers.
  2. Use terminal to inspect the diff and run the project's existing focused tests, lint, type checks, or build commands.
  3. Exercise the reported failure path and at least one ordinary control path when practical.
  4. Check error handling, edge cases, concurrency boundaries, data preservation, security boundaries, and cross-platform behavior relevant to the change.
  5. Confirm that tests assert behavior rather than merely snapshotting source text or constants.

For non-code work:

  1. Inspect the complete deliverable rather than only its summary.
  2. Check correctness, completeness, formatting, and provenance.
  3. Validate referenced URLs or external facts with the appropriate native tools when they affect the verdict.

3. Choose one verdict

Approve

Approve only when the acceptance criteria are satisfied and the evidence is sufficient. Call:

kanban_complete(
    summary="Reviewed and approved. <what was verified>",
    metadata={"review_outcome": "approved", "reviewer_checks": [...]}
)

Include the exact checks that passed and any bounded caveat that does not block acceptance.

Request changes

Use this for specific, correctable defects. First record actionable findings:

kanban_comment(
    task_id="<current-task-id>",
    body="Changes requested:\n1. <file or artifact + defect>\n2. <required correction>",
)

Then return the same task to its implementer:

kanban_request_changes(
    reason="<concise summary of the required corrections>"
)

State where the defect is, how it reproduces, why it violates the task, and what minimum outcome would resolve it. The transition does not use blocker recurrence accounting.

Escalate

Use escalation only when the reviewer and implementer cannot resolve the problem without a human decision or external prerequisite:

kanban_block(
    reason="escalation: <decision or prerequisite required>"
)

Explain the blocked decision and the smallest information needed to continue.

4. Preserve role separation

Do not edit the implementation while acting as reviewer. Request changes and let the implementer produce the next candidate; then independently verify that candidate in the next review run.

Pitfalls

  • Rubber-stamping: A passing handoff summary is not independent evidence.
  • Reviewer implementation: Editing the deliverable hides ownership and weakens the re-review boundary.
  • Vague findings: “Needs work” does not give the implementer a reproducible correction target.
  • Style-only blocking: Do not request changes for preference-level nits when behavior and repository standards are satisfied.
  • Skipping prior rounds: Re-review must confirm both the requested corrections and preservation of previously passing behavior.
  • Using blockers for ordinary rework: Correctable defects belong in kanban_request_changes; reserve kanban_block for genuine external blockers or human decisions.
  • Completing without evidence: Every approval summary must name the checks or artifacts actually inspected.

Verification

Before submitting the verdict, confirm:

  • kanban_show was read for the current task and run.
  • Every acceptance criterion was mapped to evidence.
  • The actual deliverable was inspected.
  • Relevant focused checks were run or an explicit reason was recorded when execution was impossible.
  • Prior requested changes were re-tested on re-review.
  • Unrelated regressions and scope changes were considered.
  • The verdict uses exactly one terminal action.
  • The summary contains concrete, non-secret evidence.
  • No implementation files were edited by the reviewer.

Frequently asked questions about SDLC Review

Similar skills