Review
Skill lxb12123/agent-plugin-kit/examples/review-plugin/skills/review
A harness factory for AI coding agents — turn one idea into a verified, installable, multi-host plugin.
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.
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 the current changes (deterministically read the diff + LLM review) Before committing or merging, when you need to review the correctness and quality of code changes
SKILL.md
1.1 KB, as published. Nobody here has run it
/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.