Agent skill · Testing & QA

meta-codereview-current-diff

Read the current uncommitted diff, run three independent reviewers (safety + tests-coverage + style) in parallel, then arbitrate a single BLOCK / BLOCK_WITH_OVERRIDE / PASS_WITH_NOTES verdict. Use before commit when you want a multi-perspective second-opinion instead of a single-reviewer agent loop.

opensquilla6,385★ · +160/wk · 1 repos on radarProfile →
claude-codeApache-2.0
Install
npx skills add opensquilla/opensquilla --skill meta-codereview-current-diff --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Path: src/opensquilla/skills/exp/meta-codereview-current-diff/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 6,515 · +130 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Codereview of Current Diff (Meta-Skill) A **combinator-style** meta-skill that runs three independent reviewers in parallel over the currently-uncommitted diff, then arbitrates a single verdict with a strict priority rule. This is the same combinator + arbitrate pattern as `meta-security-review-bundle`, applied to a code-review domain. The three reviewers each carry a tight, project-specific rubric — safety focuses on injection / credentials / G1.6 contract; tests focuses on the "new public surface ⇒ corresponding test" expectation; style flags only a fixed list of antipatterns so it doesn't drift into free-form opinions. ## Trigger surface Fire by saying `multi-reviewer diff`, `codereview my diff`, or one of the localized triggers listed in the frontmatter. The diff is read from the working tree (`git diff --cached HEAD`, falling back to `git diff HEAD` if nothing is staged). ## Fallback If `read_diff` returns `NO_DIFF`, the downstream reviewers should reply with their respective clean verdicts ("CLEAR" / "PASS" / "CLEAN") and arbitrate emits `PASS_WITH_NOTES: clean`. If a reviewer LLM step fails, the orchestrator's partial outputs are visible in `step_outputs`; operator should

What's inside
Steps it walks through
  1. Trigger surface
  2. Fallback
More from opensquilla
All skills →
About this skill
What does the meta-codereview-current-diff skill do?

Read the current uncommitted diff, run three independent reviewers (safety + tests-coverage + style) in parallel, then arbitrate a single BLOCK / BLOCK_WITH_OVERRIDE / PASS_WITH_NOTES verdict. Use before commit when you want a multi-perspective second-opinion instead of a single-reviewer agent loop.

How do I install it?

Run `npx skills add opensquilla/opensquilla --skill meta-codereview-current-diff --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From opensquilla/opensquilla, a repository with 6,515 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going