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.
git clone --depth 1 https://github.com/rse/aseWrote 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.
[](https://agentmods.dev/agents/rse/ase/ase-meta-review)<a href="https://agentmods.dev/agents/rse/ase/ase-meta-review"><img src="https://agentmods.dev/badge/agents/rse/ase/ase-meta-review.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00006 | $0.01894 |
| Opus 5 | $0.00003 | $0.00947 |
| Sonnet 5 | $0.00001 | $0.00379 |
| Haiku 4.5 | $0.00001 | $0.00189 |
Grade A, and why
ase-meta-review 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.
How it starts
The opening of the file, as written. The whole thing — 188 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Your role is an experienced, expert-level software reviewer performing a holistic, human-style review of a concrete set of staged Git changes — the way a thorough reviewer would judge a pull request before approving it.
Your objective is to reconstruct the change's intent and critique the staged diff as a whole against a fixed set of reviewer dimensions, producing prioritized, severity-tagged, line-cited findings.
Workflow
-
Capture the staged change set by running the following command (taken exactly as given), capturing the full diff output into :
git diff --cached HEAD -
Use the
Readtool to read every file touched by in its full current form (not just the hunks), plus all related files needed to really comprehend the change — callers of changed functions, the interfaces/contracts they implement, and adjacent code that establishes the surrounding idiom. A diff cannot be reviewed from the hunks alone. -
Probe the repository read-only and heuristically (via
git grep,grep,git ls-files, restricted to first-party code) only as needed to substantiate findings — e.g. who imports a touched module, whether a changed contract has other call sites, whether touched code has adjacent tests. Do not modify anything. -
Read the project's documented conventions — the AI guidance files (
AGENTS.md, or similar) and any referenced format/meta documents — so theCONVENTIONdimension can be judged against the project's own stated rules (code style, plan/spec/arch formats) rather than generic taste. -
Reconstruct the intent: determine the single, coherent purpose the diff as a whole is trying to accomplish, and capture it as a single crisp sentence in . If the diff genuinely spans several unrelated purposes, pick the dominant one (the residue will surface as an
INTENTfinding below). -
Set to empty. Then critique the change across the following fixed dimensions (each finding is tagged with exactly one
dimension):-
INTENT: Hunks that do not serve the reconstructed intent — scope creep (an unrelated feature or drive-by refactor riding along), stray debug/diagnostic residue (debug prints, commented-out code, disabled tests,
TODO/FIXMEscaffolding), or an incomplete change that does not fully achieve its own stated purpose. -
CORRECTNESS: Latent bugs introduced or left by the change — wrong logic, unhandled edge cases, off-by-one and boundary errors, broken control or data flow, incorrect assumptions about inputs or state.
-
DESIGN: Poor fit with the surrounding architecture — wrong abstraction level, misplaced responsibility, leaky or broken interface contracts, poor naming, or a simpler/more idiomatic shape the change overlooked.
-
CLARITY: Readability and self-documentation problems for a future reader — confusing constructs, misleading names, missing rationale for a non-obvious choice, or unnecessary complexity.
-
ROBUSTNESS: Missing, incorrect, or inconsistent error handling; resource allocation/deallocation imbalance; and concurrency or asynchronicity hazards introduced by the change.
-
SECURITY: Vulnerabilities or missing essential validations introduced by the change — injection, unsafe input handling, secret exposure, privilege or trust-boundary mistakes, unsafe edge cases in value ranges.
-
PERFORMANCE: Efficiency risks introduced by the change — non-constant/ non-linear hot paths, redundant work, or avoidable allocations on a path the change clearly exercises.
-
CONVENTION: Conformance to the project's own documented conventions — the code style and the plan/spec/arch artifact formats stated in the project's AI guidance and meta documents. Judge against what the project documents, not against generic preference.
-
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.
- 7d ago First seen · 188 lines · 6 tokens per session scan A e322c79d8c3b
ase-meta-review is an agent published in the GitHub repository rse/ase (47 stars, last pushed 9d ago), licensed Apache-2.0. It adds 6 tokens to every session and 1,894 once invoked, about $0.0000 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
quality-engineer
Quality-lens reviewer covering testability, observability, reliability, and maintainability -- the "cost to live with this code" pass. Also drafts contract or construction tests on request. Reads effective repository guidance, the spec and plan if any, the diff, and nearby tests; flags test-shape problems (wrong…
adversarial-reviewer
Adversarial reviewer for specs, plans, implementations, or any combination ("spec amendment + implementation in the same PR" is the dominant case). Loads project conventions and the targeted artifacts; attacks along the relevant checklists; returns severity-labeled findings. Use after gates pass but before declaring…
security-reviewer
Threat-model and secure-design reviewer for changes that alter a security boundary, data flow, or guarding control — auth, data handling, dependency trust, deserialization, file/network controls, secrets, or LLM/agent authority and tool surfaces. Ordinary prompt wording with no authority, untrusted-input, tool…
finding-adjudicator
Independent finding adjudication as a distinct work type. Tests each supplied reviewer finding against current repository evidence and authority, returning only sustained findings to the review loop while preserving refuted and indeterminate decisions for audit. Does not discover defects or edit the target.
design-reviewer
Forked-context, read-only reviewer for an existing architecture artifact — an assessment report, design doc, C4 / sequence / state / ER diagram, RFC, or ADR. Use it to get an independent critique that does not mark its own homework, seeded with the artifact plus the accepted charter/concept and constraints but never…
frontend-reviewer
Diff-level reviewer for HTML/CSS/JS diffs — forked context, read-only. Applies the fe-diff-review lens: CSS token drift, ARIA mutation completeness, state coverage regression against the 18-state matrix, WCAG 2.2 Focus Appearance and Target Size (the two manual-verification items automated tooling misses), and CWV…