review-readiness

review-readiness is a skill for Claude Code, Codex from suyoumo/ClawProBench. It costs 36 tokens per session (906 once invoked), scanned A, original, Apache-2.0.

A dashboard that records whether a pull request is ready to merge by tracking code review, tests, security, quality assurance, and linting. A pull request is a proposed set of code changes submitted for review.

In plain words
What is it for?
Use it to create or read readiness records for branches, see missing checks, review findings, and decide whether a pull request can be merged.
Why use it?
It replaces guesswork about merge readiness with a visible checklist and evidence for each required check.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create or read readiness records for branches, see missing checks, review findings, and decide whether a pull request can be merged.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/suyoumo/clawprobench/review-readiness
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add suyoumo/ClawProBench --skill review-readiness
Clone the repo
git clone --depth 1 https://github.com/suyoumo/ClawProBench

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for review-readiness

README.md
[![agentmods](https://agentmods.dev/badge/skills/suyoumo/clawprobench/review-readiness/github.svg)](https://agentmods.dev/skills/suyoumo/clawprobench/review-readiness)
Your own site
<a href="https://agentmods.dev/skills/suyoumo/clawprobench/review-readiness"><img src="https://agentmods.dev/badge/skills/suyoumo/clawprobench/review-readiness/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for review-readiness

Your own site · 80×15
<a href="https://agentmods.dev/skills/suyoumo/clawprobench/review-readiness"><img src="https://agentmods.dev/badge/skills/suyoumo/clawprobench/review-readiness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 906 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.00906
Opus 5 $0.00018 $0.00453
Sonnet 5 $0.00007 $0.00181
Haiku 4.5 $0.00004 $0.00091

Measured 9d ago against content hash d9e4a538efab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

review-readiness scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

ironclaw/skills/review-readiness/SKILL.md · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Review Readiness Dashboard

Track process completeness per PR branch. Gate merges on evidence, not gut feel.

How it works

For each active PR branch, maintain a readiness state in projects/<owner>-<repo>/readiness/<branch-slug>.md:

---
type: review-readiness
repo: owner/repo
branch: feature-branch-name
pr_number: 123
updated_at: YYYY-MM-DD
---
# Review Readiness — PR #123

| Check | Status | Last Run | Score | Notes |
|-------|--------|----------|-------|-------|
| Code review | completed | 2026-03-28 | — | Approved by @alice |
| Tests | passing | 2026-03-28 | — | CI green, 3 new tests |
| Security review | completed | 2026-03-28 | 85/100 | 1 P3 finding (accepted) |
| QA review | pending | — | — | Not yet run |
| Linting | passing | 2026-03-28 | — | Zero warnings |

## Verdict: NOT READY
Missing: QA review

## Findings log
- [2026-03-28] Security: P3 — missing rate limit on new endpoint (accepted risk)
- [2026-03-28] Code review: approved, 2 nits addressed

When to use

Checking readiness: User asks "is this PR ready?" or "can I merge?"

  1. Read the readiness file for the branch
  2. If no file exists, create one with all checks as pending
  3. Present the dashboard
  4. If all checks passed: "Ready to merge."
  5. If checks missing: "Not ready. Missing: . Run /security-review and /qa-review to complete."

After running a review skill: When /security-review or /qa-review completes, update the readiness file with the result and score.

In the morning brief: For PRs that are "READY TO MERGE" (approved + CI green), also check review readiness. If security or QA is missing, note it: "READY TO MERGE (code + CI), but security review not run."

Automated updates

The readiness file is updated by:

  • Code review: when PR gets GitHub approval or changes-requested
  • Tests: from CI status (green/red/pending)
  • Security review: when /security-review runs on the branch
  • QA review: when /qa-review runs on the branch
  • Linting: from CI or manual cargo clippy / eslint output

Read the full file on GitHub · 97 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 97 lines · 36 tokens per session scan A d9e4a538efab

Subscribe to this mod's changes

review-readiness is a skill published in the GitHub repository suyoumo/ClawProBench (823 stars, last pushed 14d ago), licensed Apache-2.0. It adds 36 tokens to every session and 906 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

open-code-review

Performs AI-powered code review on Git changes using the ocr CLI from alibaba/open-code-review. Use when the user asks to review code, review a pull request, review staged/unstaged changes, review a commit, or compare branches for code quality issues. Produces line-level review comments and can automatically apply…

alibaba/open-code-review · 98 tokens

github

GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available)…

opensquilla/opensquilla · 101 tokens

meta-codereview-current-diff

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

opensquilla/opensquilla · 73 tokens

code-changes

Change the user's own program, on their machine or through GitHub. Use when a request needs a change to the user's code (instrument tracing, wire the SDK, fix the agent behind a failing scenario, add a run parameter to a connected agent, version a hardcoded prompt) and not when the platform alone can do it (create a…

langwatch/langwatch · 84 tokens

commit

Prepare and create git commits for dynobox. Use this skill whenever the user asks to commit, create a commit, suggest a commit message, stage changes, or prepare changes for review. Also use it when the user asks whether the changelog should be updated before committing.

dynobox/dynobox · 59 tokens

pr-comment

Answer a maintainer's question about an open PR with concrete, code-cited evidence. The PR-side counterpart to issue-comment — for questions tied to the diff, not a full review.

nearform/lastlight · 41 tokens