Review issue
npx -y skills add ravihammond/skills --skill review-issueAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Review and repair one GitHub issue implementation in the current checkout.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
5.7 KB, as published. Nobody here has run it
Review Issue
Review and repair exactly one GitHub issue implementation in the current checkout. Stay local: do not create worktrees, Docker containers, branches, pull requests, labels, issue comments, pushes, or issue closes.
Intake
- Require exactly one GitHub issue number from the user. If it is missing or ambiguous, ask for the issue number and stop.
- Read repository instructions before editing: root
AGENTS.md, nestedAGENTS.mdfiles that apply to touched paths, and any domain or issue-tracker docs those files name. - Fetch the issue packet with
gh issue view <number> --comments. - Search the issue body and comments for parent PRD references, blocker issues, follow-on issues, and related implementation issues. Fetch every linked issue that affects expected behavior with
gh issue view <number> --comments. - Treat the issue packet, linked PRD/spec, existing tests, and repo instructions as the source of truth. Do not pause for plan approval unless they contradict each other or required context is missing.
- Work on the current branch only. Do not create or switch branches.
- Infer the base branch from a user-provided base, the branch upstream, or the repository default branch. Confirm it resolves before reviewing.
- Run
git status --short,git log --oneline <base>..HEAD, andgit diff <base>...HEAD. If the implementation diff is empty, stop withBLOCKED: no implementation diff to review.
Intake is complete when the issue packet, linked context, repo instructions, base branch, working-tree state, commit list, and implementation diff are understood.
Review
Do not invoke the report-only review skill. Inline the two-axis review here before fixing anything.
-
Read the relevant source, tests, standards, and local guidance before judging the diff. Include
AGENTS.md,CONTEXT.mdif present, relevant ADRs,docs/standards/python-docstrings.mdif Python files may change, and relevant test/style/config files. -
Read the diff carefully, file by file and hunk by hunk.
-
Verify the implementation against the issue and linked PRD/spec.
-
Stress-test edge cases and regressions.
-
Record findings under these headings, keeping the axes separate:
## Standards - <file:line> <finding>. Standard: <standard or local convention>. ## Spec - <file:line> <finding>. Source: <issue or PRD requirement>.
Standards findings are documented-standard violations, local convention breaks, brittle tests, or maintainability risks introduced by the diff. Spec findings are missing requirements, partial implementation, wrong behavior, scope creep, edge-case failures, or regressions against the issue or linked PRD/spec. Within each axis, order findings by severity. If there are no valid findings, say so clearly and name any residual test gaps or risk.
Review is complete only when every touched behavior and changed file has been checked against both axes, and each valid finding is recorded or explicitly dismissed as not valid.
Fix
Fix every valid finding, one finding at a time.
- For each behavioral or spec finding, first add or update a focused failing behavior test through a public interface. Do not create artificial seams just to test internals.
- Implement the smallest correct fix.
- Run the targeted test and get it green before moving to the next finding.
- Refactor only while tests are green.
- For standards-only findings that do not need tests, make the smallest cleanup and run the nearest relevant verification.
Preserve unrelated local changes. Stage and commit only files relevant to this issue and its review fixes. Do not leave commented-out code or TODO comments in committed code.
Fixing is complete when every valid finding is fixed, tested or justified as standards-only, and no unrelated changes are staged.
Verify
Follow the repo's AGENTS.md test workflow.
- Prefer the smallest meaningful pytest scope for the touched code, then broaden only when the changed surface justifies it.
- If Python code changed, run the repo-approved syntax/type check; when
srcandtestsexist and repo instructions do not specify otherwise, useuv run python -m compileall -q src tests. - Run any additional focused checks the findings specifically require.
- Do not run full training jobs, W&B-backed commands, Docker validation, broad suites, or full suites unless repo instructions, the changed surface, or the user explicitly requires it.
Verification is complete when targeted tests and required syntax/type checks pass, or failures are diagnosed as blockers.
Commit
If no valid findings needed fixing, make no commit. Output the review result, commands run, and residual risk.
If fixes were made and verification passed, review git diff, git status --short, and staged files before committing. Commit only relevant changes. Do not use a RALPH: prefix. Prefer this message shape:
fix: address review findings for issue #<number>
Issue: #<number> <title>
PRD: #<number> <title> # omit if none
Findings fixed:
- <finding summary>
Verification:
- <command run>
Risk:
- <residual risk or "None known">
Committing is complete when a local follow-up commit exists for the fixes, or no commit was made because the review found nothing valid to fix.
Blocked Path
If required context is missing, the base cannot be resolved, tests fail for reasons you cannot fix, dependencies are unavailable, or the issue cannot be reviewed or repaired safely:
- Do not post to GitHub.
- Do not commit partial work unless it is a useful local checkpoint and clearly described as incomplete.
- Output
BLOCKED, the blocker, evidence gathered, commands run, and a draft issue comment the user can post.