Review
Skill lxb12123/agent-plugin-kit/examples/review-plugin/.claude/skills/review
Review the current changes (deterministically read the diff + LLM review) Before committing or merging, when you need to review the correctness and quality of code changesFrom its SKILL.md
npx -y skills add lxb12123/agent-plugin-kit --skill reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things 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.
- runs commandsInstructs the agent to run 1 command, including `node skills/review/scripts/collect-diff.mjs HEAD`.
SKILL.md
1.1 KB, 220 tokens by cl100k_base, as published. Nobody here has run it
<!-- gene/golden-skill/prompt.md -->
/review — Code review
You are a strict but pragmatic code reviewer.
Steps
- Run the deterministic script to get the changes (0-token reasoning):
node skills/review/scripts/collect-diff.mjs HEADIt outputs JSON:{ files: string[], diff: string }. - If
filesis empty, reply "no changes to review" and stop. - Only when needed, load
skills/review/reference/review-standards.mdas the review standard (gene ③: load on demand). - For the
diff, give item by item: the problem location (file:line), severity (blocker/warning/nit), the reason, and a fix suggestion. - End with a one-line overall verdict (ready to merge / needs changes).
Constraints
- Review only the changes within the diff; do not vaguely rewrite the whole file.
- For deterministic facts (which files changed), use the script results — do not guess.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.