AI Agent Review Readiness

AI Agent Review Readiness is a skill for Claude Code from s977043/river-review. It costs 36 tokens per session (1,934 once invoked), scanned A, original, MIT.

A review check for whether work delegated to an AI coding agent has clear success criteria, enough context, a review process, human decision boundaries, and a way to capture feedback. An AI coding agent is software that performs development tasks from instructions.

In plain words
What is it for?
It is for reviewing documents or changes that describe delegating coding work to an AI agent before that work begins.
Why use it?
It helps prevent an agent from filling in missing requirements by guessing.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; built for aider.

Part of the river-review plugin — 138 skills, 18 commands, 5 agents, 3 hooks shipped together

Good fit It is for reviewing documents or changes that describe delegating coding work to an AI agent before that work begins.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s977043/river-review/ai-agent-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 s977043/river-review --skill ai-agent-review-readiness
Clone the repo
git clone --depth 1 https://github.com/s977043/river-review

Made for: Claude Code.

Or install river-review, the plugin that ships this one along with the rest of its 138 skills, 18 commands, 5 agents, 3 hooks.

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 AI Agent Review Readiness

README.md
[![agentmods](https://agentmods.dev/badge/skills/s977043/river-review/ai-agent-review-readiness/github.svg)](https://agentmods.dev/skills/s977043/river-review/ai-agent-review-readiness)
Your own site
<a href="https://agentmods.dev/skills/s977043/river-review/ai-agent-review-readiness"><img src="https://agentmods.dev/badge/skills/s977043/river-review/ai-agent-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 AI Agent Review Readiness

Your own site · 80×15
<a href="https://agentmods.dev/skills/s977043/river-review/ai-agent-review-readiness"><img src="https://agentmods.dev/badge/skills/s977043/river-review/ai-agent-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 1,934 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.
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.01934
Opus 5 $0.00018 $0.00967
Sonnet 5 $0.00007 $0.00387
Haiku 4.5 $0.00004 $0.00193

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

Security

Grade A, and why

AI Agent 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.

skills/upstream/ai-agent-review-readiness/SKILL.md · 138 lines

How it starts

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

Pattern declaration

Primary pattern: Reviewer Secondary patterns: Gate Why: AI エージェント委譲の文脈があるドキュメントを対象に、委譲前の readiness を統合的にチェックする。Pre-execution Gate で適用対象を絞り込む。

Goal / 目的

  • AI エージェントに作業を委譲する前に、チームが「何を作るか」「どう判定するか」「どこに人間が介在するか」を明示しているかをチェックする。
  • 委譲前の設計不足を早期に検出し、AI が推測で実装することを防ぐ。

Non-goals / 扱わないこと

  • 受入条件の Given-When-Then 形式チェック → requirements-acceptance の責務。
  • 実装計画の危険操作・Stop-work トリガー → plan-review-gate の責務。
  • plan.md / pbi-input.md 間の整合性 → plangate-plan-integrity の責務。
  • PlanGate ファイル(plan.md / pbi-input.md)への依存は持たない。

Pre-execution Gate / 実行前ゲート

以下の条件がすべて満たされない限り NO_REVIEW を返す。

  • diff に AI エージェントへの作業委譲・タスク委任の文脈が含まれている (キーワードは大文字小文字を区別しない。例: "agent", "delegate", "AI にやらせる", "Cursor", "Claude Code", "Aider", "agentic", "ai-assisted", "LLM", "copilot", "GPT", "Gemini", "自動実行", "委任", "委譲" 等が 委譲・自動実行の意図 を伴って 使われている。一般的な自動化(CI/CD 説明等)には適用しない)
  • inputContext に diff が含まれている

ゲート不成立時の出力: NO_REVIEW: ai-agent-review-readiness — AI 委譲の文脈が見当たらない

False-positive guards / 抑制条件

  • AI ツールの紹介・説明文書(「AI を使うと便利」という一般論のみ)では起動しない。
  • 変更ログ・リリースノート(CHANGELOG.md, RELEASES.md 等)では起動しない。
  • 既に 5 つの readiness 条件(基準・コンテキスト・ループ・境界・フィードバック)がすべて明示されている文書では findings を出さない。

Evidence / 根拠の取り方

  • 推測ではなく、差分のテキストから直接引用して根拠にする。
  • 欠落指摘(セクションが存在しない)は文書全体を確認してから行う。
  • キーワード一致だけでなく、委譲意図の文脈を確認してから Gate を通過させる。

Rule / ルール

Check 1 — Review criteria before work / 作業前レビュー基準の定義

AI 委譲タスクの文書に以下が定義されていない場合に finding を出す:

  • 成功基準(何ができれば完了か)
  • 受入条件・非ゴール
  • レビュー観点・期待する review perspective

Check 2 — Required knowledge access / 必要なコンテキストへのアクセス

エージェントが参照すべき設計コンテキストへの参照が明示されていない場合:

  • アーキテクチャ規約・ADR
  • API コントラクト・スキーマ
  • セキュリティ要件・運用制約

判定閾値: セクション名(例: "## 前提条件")やドキュメント種別名による参照で足りる。 ファイルパスの完全指定は必須ではない。

Check 3 — Explicit review loop / 明示的なレビューループ

実装ステップの後に自己レビュー・外部レビュー・修正のステップが明示されていない場合:

  • 期待ループ: plan → execute → self-review → external review → revise

Check 4 — Human judgment boundary / 人間判断境界の明示

以下の高リスク領域で AI 出力を final として扱う場合(人間承認ステップが明示されていない):

Read the full file on GitHub · 138 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 138 lines · 36 tokens per session scan A d2d97d1ede53

Subscribe to this mod's changes

AI Agent Review Readiness is a skill published in the GitHub repository s977043/river-review (3 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 1,934 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-09-03.

Related

Other skills, from other repositories

review-all

Multi-agent code review for diffs (project-agnostic). Covers standards, bugs, security, DRY, smells, perf, tests, API contracts, a11y/i18n. Verifies each finding to eliminate false positives. Use for /review-all, pre-PR/pre-commit review, or auditing uncommitted/staged changes.

ncoevoet/claude-review-all · 74 tokens

logic-health

Sweep a directory, module, or full codebase for logic correctness and produce a scored health dashboard with systemic patterns. Trigger when the user requests a health view — "audit the whole codebase", "health check", "health overview", "logic health overview", "audit src/", "audit auth and payments modules", "where…

hyhmrright/logic-lens · 180 tokens

omnicheck-gitlab

Use when checking if MR review findings have been applied — verifies both OmniForge-generated and human reviewer comments against the current diff, posts nudge replies on unaddressed threads.

nexiouscaliver/OmniForge · 41 tokens

omnicheck-github

Use when checking if PR review findings have been applied — verifies both OmniForge-generated and human reviewer comments against the current diff, posts nudge replies on unaddressed threads.

nexiouscaliver/OmniForge · 40 tokens

omnicreate-gitlab

Use when creating a GitLab merge request (OmniForge). Auto-populates title and description from commits, supports draft MRs, labels, assignees, reviewers, and issue linking.

nexiouscaliver/OmniForge · 45 tokens

logic-diff

Compare two code versions for semantic equivalence via semi-formal tracing of both versions side-by-side. Trigger when the user shares a refactor, rewrite, migration, or A/B implementation and wants to confirm behavior is unchanged — "did I break anything", "is this equivalent", "are these equivalent", "semantically…

hyhmrright/logic-lens · 192 tokens