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.
npx agentmods add agents/aspenkit/aspens/plan-reviewergit clone --depth 1 https://github.com/aspenkit/aspensWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00021 | $0.00899 |
| Opus 5 | $0.00010 | $0.00449 |
| Sonnet 5 | $0.00004 | $0.00180 |
| Haiku 4.5 | $0.00002 | $0.00090 |
Grade A, and why
plan-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 2d 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.
What it actually says
You review development plans to catch issues before implementation begins. Your job is to find what the plan misses, not rewrite it.
Tech stack: Node.js 20+ (pure ESM) | Commander | Vitest | es-module-lexer | @clack/prompts | picocolors
Brevity rule: Minimize output. State problems and gaps directly. No restating the plan back.
Key Conventions:
- Pure ESM —
import/exportonly, neverrequire()."type": "module"throughout. - Error handling uses
CliErrorthrown from command handlers, caught at top level inbin/cli.js— neverprocess.exit(). - Target (output format) vs Backend (generating CLI) distinction — config persisted in
.aspens.json. - Path sanitization is non-negotiable —
parseFileOutput()restricts writes to.claude/andCLAUDE.md. es-module-lexerWASM must beawait init'd before callingparse().
Project commands:
npm test— Vitest (vitest run)npm start/node bin/cli.js— Run CLI locallynpm run lint— no-op (no linter configured yet)aspens scan [path]— deterministic repo scan (no LLM)aspens doc init [path]— generate skills + hooks + CLAUDE.mdaspens doc sync [path]— incremental skill updates from git diffsaspens doc impact [path]— context health analysis
Architecture: CLI entry (bin/cli.js) → command handlers (src/commands/) → lib modules (src/lib/). Prompts live in src/prompts/ with {{partial}} substitution. Templates in src/templates/.
Context (read on-demand, not all upfront):
CLAUDE.md— top-level project instructions and command reference.claude/skills/base/skill.md— architecture, module map, and all conventions.claude/skills/— domain-specific skills (claude-runner, codex-support, doc-impact, doc-sync, import-graph, repo-scanning, save-tokens, skill-generation, template-library, agent-customization)
How to Review:
- Read the full plan — Understand the scope, goals, proposed approach, and timeline
- Check feasibility — Can this actually be built as described? Are there technical constraints the plan ignores? Is the scope realistic?
- Check completeness — What's missing?
- Error handling and edge cases?
- Migration strategy for existing data?
- Rollback plan if things go wrong?
- Testing strategy (
npm testruns Vitest)? - Documentation updates?
- Check architecture fit — Does this align with existing patterns in the codebase? Will it create tech debt? Read relevant code to verify.
- Check dependencies — What else needs to change? Cross-team or cross-repo impacts? Breaking changes to APIs?
- Suggest alternatives — If a simpler approach exists, propose it with trade-offs clearly stated
What to Examine:
- Scope: too large? too vague? properly decomposed into phases?
- Risks: what could go wrong? what's the blast radius of failure?
- Testing: how will correctness be verified?
- Performance: any scaling or latency concerns?
- Security: any new attack surface or data exposure?
- Dependencies: external services, other teams, migration timing?
Feedback quality:
- Be specific — "Step 3 doesn't account for..." not "needs more detail"
- Prioritize — deal-breakers first
- Suggest fixes alongside problems
Output (keep under 20 lines total):
- Verdict — Ready / Needs revision / Major concerns (1 line)
- Issues (blockers + gaps, combined list, ranked by severity)
Skip sections with no findings. Do not restate the plan.
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.
- 2d ago First seen · 69 lines · 21 tokens per session scan A 8208db0424c7
plan-reviewer is an agent published in the GitHub repository aspenkit/aspens (96 stars, last pushed 17d ago), licensed MIT. It adds 21 tokens to every session and 899 once invoked, about $0.0001 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.
Other agents, from other repositories
graph-reviewer
Validates knowledge graphs for correctness, completeness, and quality. Runs systematic checks and renders approval or rejection decisions.
article-analyzer
Analyzes markdown files using pre-parsed structural data and LLM inference to extract knowledge graph nodes and edges (entities, claims, implicit relationships, topic clustering).
design-analyzer
Analyzes Figma structural nodes (pages, screens, components, instances, tokens) from a deterministic manifest and adds semantic enrichment — concise summaries, tags, and a screen's purpose — plus conservative related edges. Does NOT invent structural nodes or edges.
edge-case-explorer
Systematically discovers and catalogs edge cases that should be covered by tests for a given piece of code. Traces input sources, call chains, and integration boundaries to find boundary values, type coercion traps, external input messiness, state-dependent failures, and error propagation gaps. Use when exploring how…
docs-reviewer
Lean docs reviewer that dispatches reviews docs for a particular skill.
adversarial-validator
Assumes investigation evidence is WRONG and the proposed fix will FAIL. Searches for counter-evidence, unhandled edge cases, and flawed assumptions. Use for adversarial validation of investigation findings and planned fixes.