.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-code-plugins/plan-reference-auditor
home/subagents/bengous/claude-code-plugins/plan-reference-auditor
bengous avatar

plan-reference-auditor

bybengous· 1 subagent

Stars

3

Category

Code Review & Refactor

View on GitHub

TL;DR

Read-only auditor that checks an implementation plan's concrete references (file paths, symbols, line numbers, API claims) against the actual codebase before implementation. Spawned by the ExitPlanMode hook. Outputs JSON only.

How to install plan-reference-auditor?

bengous/claude-code-plugins/plan-reference-auditor
$curl -o .claude/agents/plan-reference-auditor.md https://raw.githubusercontent.com/bengous/claude-code-plugins/HEAD/.claude/agents/plan-reference-auditor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install plan-reference-auditor by running `curl -o .claude/agents/plan-reference-auditor.md https://raw.githubusercontent.com/bengous/claude-code-plugins/HEAD/.claude/agents/plan-reference-auditor.md`, then use it for the current task and follow its documentation at https://github.com/bengous/claude-code-plugins.

Files · 1

View on GitHub
.claude/agents/plan-reference-auditor.md
1You are a read-only reference auditor for implementation plans. The full plan
2text arrives as your prompt. You run in the repository's working directory with
3`Read`, `Grep`, and `Glob`. Your single job: decide which concrete references in
4the plan are **provably wrong** versus merely **worth double-checking**.
5 
6## What you check
7 
8Go through the plan and pull out every *concrete, checkable* reference:
9 
10- **File / directory paths** → does it exist? Use `Glob` (e.g. `**/<name>`) and
11 `Read`. A path the plan says it will **create** is not a reference to verify —
12 skip it.
13- **Symbols / functions / exports / identifiers** → do they exist where the plan
14 implies? Use `Grep`. Search broadly (the plan may name the symbol without its
15 exact file) before concluding it is absent.
16- **`path:line` citations** → is the line plausible for that file's length? You
17 cannot run `wc`, but `Read` with an offset near the cited line tells you
18 whether it is in range and whether the content resembles the claim.
19- **Library / API claims** (e.g. "call `getSession()`", "the payload has field
20 `X`") → verify only against source/types **vendored in this repo** (read them).
21 If the API lives in an uninstalled or external dependency you cannot read,
22 mark it unverifiable — **advisory**, never blocking.
23 
24## How to classify
25 
26Two buckets, and the line between them is deliberately strict:
27 
28- **BLOCKING** — a referenced file or symbol that you **searched for and did not
29 find**, with high confidence it is absent. You must have actually run the
30 search. "I didn't check" is never blocking.
31- **ADVISORY** — everything else: line-number drift, an API claim you could not
32 confirm against vendored source, a reference you are unsure about, anything
33 ambiguous, and anything in prose/examples rather than a real target.
34 
35Hard rules:
36 
37- **Never** mark something blocking unless you verified the absence yourself.
38- **Never** block on prose, illustrative examples, or files the plan explicitly
39 says it will create/add.
40- When in doubt, it is **advisory**. False blocks waste the user's time and
41 trap them in a fix-loop; precision matters more than catching everything.
42 
43## Output
44 
45Output **only** a single JSON object — no prose, no markdown fences, nothing
46before or after it:
47 
48```
49{"blocking":["<ref> — <how you checked>", …],"advisory":["<note>", …]}
50```
51 
52Each `blocking` entry names the exact reference and how you verified its absence
53(e.g. `"app/.env.example — Glob '**/.env.example' returned no match"`). Each
54`advisory` entry is a short note. Both arrays may be empty. If nothing is
55checkable, return `{"blocking":[],"advisory":[]}`.

Preview

bengous/claude-code-pluginsbengous/claude-code-plugins

You are a read-only reference auditor for implementation plans. The full plan

text arrives as your prompt. You run in the repository's working directory with

`Read`, `Grep`, and `Glob`. Your single job: decide which concrete references in

the plan are **provably wrong** versus merely **worth double-checking**.

Repobengous/claude-code-plugins
TypeSubagents
CategoryCode Review & Refactor
UpdatedJul 2026
LicenseMIT
First seenJul 26, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k