plan-quality-reviewer

plan-quality-reviewer is a skill for Claude Code from s977043/PlanGate. It costs 93 tokens per session (995 once invoked), scanned A, original, MIT.

A review procedure for checking whether a development plan is logically complete before coding starts. It reads the plan, task list, test cases, and optional product requirements, but normally does not inspect implementation code.

In plain words
What is it for?
Use it for an external design review of a plan, producing structured findings with IDs, review lane, severity, and status.
Why use it?
It catches missing acceptance criteria, unclear links between the goal and planned work, and scope gaps before they become coding problems.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it for an external design review of a plan, producing structured findings with IDs, review lane, severity, and status.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s977043/plangate/plan-quality-reviewer
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/PlanGate --skill plan-quality-reviewer
Clone the repo
git clone --depth 1 https://github.com/s977043/PlanGate

Made for: Claude Code.

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 plan-quality-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/skills/s977043/plangate/plan-quality-reviewer/github.svg)](https://agentmods.dev/skills/s977043/plangate/plan-quality-reviewer)
Your own site
<a href="https://agentmods.dev/skills/s977043/plangate/plan-quality-reviewer"><img src="https://agentmods.dev/badge/skills/s977043/plangate/plan-quality-reviewer/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 plan-quality-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/skills/s977043/plangate/plan-quality-reviewer"><img src="https://agentmods.dev/badge/skills/s977043/plangate/plan-quality-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 995 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.00093 $0.00995
Opus 5 $0.00046 $0.00498
Sonnet 5 $0.00019 $0.00199
Haiku 4.5 $0.00009 $0.00100

Measured 7d ago against content hash 81828ec56bbf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

plan-quality-reviewer 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 7d 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.

.claude/skills/plan-quality-reviewer/SKILL.md · 102 lines

How it starts

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

Plan Quality Reviewer

本 Skill と plan-quality-check の違い: plan-quality-check は実装前の内部セルフチェック(スコア返却)。 本 Skill は C-2 外部レビューの 設計妥当性レーン として R-NNN 構造化 Finding を出力する。

カテゴリ

Review / External

想定 Phase

C-2(plan ゲート外部レビュー)

役割・責務

review-principles.md §7-bis の 「設計妥当性レーン」担当として以下を担う:

読む 読まない(原則)
plan.md 実装コード
todo.md テスト結果ログ
test-cases.md
pbi-input.md

捕捉する観点:

  • plan の論理整合(Goal → Approach → Work Breakdown のつながり)
  • 受入基準(AC)の網羅性・テスト可能性
  • スコープ欠落(Out of scope が明示されているか)
  • 既存コード構造に起因する不足は「追加 AC 候補」として返す(コードベース整合レーンへの返し)

入力

plan: <plan.md の内容>
todo: <todo.md の内容>
test_cases: <test-cases.md の内容>
pbi_input: <pbi-input.md の内容(任意)>

出力フォーマット

review-external.md 追記と互換の Finding 配列:

## Plan Quality Review — R-NNN〜R-MMM

| ID | Lane | Severity | Status | 内容 |
|----|------|---------|--------|------|
| R-001 | design | major | open | AC-02 の検証コマンドが未定義 |
| R-002 | design | minor | open | Risks セクションにロールバック手順が欠落 |

各 Finding の必須フィールド:

フィールド 値の例
id R-NNN(review-external.md 採番ルールに従う)
lane design
severity critical / major / minor / info
status open
body 具体的な指摘内容(plan.md の該当箇所を引用)

判定基準

review-principles.md §3-4 に従う:

判定 条件
Auto-approve 相当 critical=0, major=0
Human review 推奨 major ≥ 1
Human review 必須 critical ≥ 1

指摘ゼロの場合も「指摘なし(監査連続性のため)」を明示記録すること。

使い方(呼び出し例)

# C-2 フェーズで呼び出す場合
bin/plangate review TASK-XXXX --phase c2 --reviewer plan-quality-reviewer

または SKILL を直接 invoke:

/plan-quality-reviewer
入力: docs/working/TASK-XXXX/plan.md, todo.md, test-cases.md

関連

Read the full file on GitHub · 102 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. 7d ago First seen · 102 lines · 93 tokens per session scan A 81828ec56bbf

Subscribe to this mod's changes

plan-quality-reviewer is a skill published in the GitHub repository s977043/PlanGate (2 stars, last pushed today), licensed MIT. It adds 93 tokens to every session and 995 once invoked, about $0.0005 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

improve

Autonomous quality improvement loop. Scores a target against a rubric, selects the highest-leverage axis, attacks it, verifies, documents, and loops. No pre-planning between iterations — each loop re-scores from scratch.

SethGammon/Citadel · 48 tokens

triage

GitHub issue and PR investigator. Pulls open issues/PRs, classifies them, searches the codebase for root cause or reviews contributed code, proposes fixes with file:line references, and optionally implements fixes. Use for investigating GitHub issues and reviewing PRs; do NOT use for general code review unrelated to…

SethGammon/Citadel · 71 tokens

00-async-dev

Drive the async-dev pipeline from one entry point, whether setup, run, or review. Use when the user wants to install async dev, run a ready issue, or address PR review comments, or on a webhook trigger. Not for plain status checks.

ai-driven-dev/framework · 56 tokens

01-sdlc

Autonomously orchestrates a request from framing to a draft pull request, isolating implementation, independent review, and final outcome challenge. Use when the user wants to deliver a change end to end. Not for running one development step.

ai-driven-dev/framework · 52 tokens

agents-consilium

Run external coding agents (Codex, Claude Code, OpenCode, native Grok Build, Gemini) as independent reviewers, stateful repository researchers, or single-agent implementers. Use for multi-model opinions and code review, steerable Grok research, full-access delegation, long-running work, or reattaching to delegated…

CodeAlive-AI/ai-driven-development · 86 tokens

vue-best-practices

A review checklist for Vue 2 and Vue 3 components, covering component names, prop declarations, TypeScript casts, API styles and complex template expressions.

liuyanghejerry/Clausura · 31 tokens