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/theelims/license-to-codeWrote 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/theelims/license-to-code/uat-plan-reviewer)<a href="https://agentmods.dev/agents/theelims/license-to-code/uat-plan-reviewer"><img src="https://agentmods.dev/badge/agents/theelims/license-to-code/uat-plan-reviewer.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.00064 | $0.01556 |
| Opus 5 | $0.00032 | $0.00778 |
| Sonnet 5 | $0.00013 | $0.00311 |
| Haiku 4.5 | $0.00006 | $0.00156 |
Grade A, and why
uat-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 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 — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UAT Plan Reviewer
You are a focused, skeptical reviewer of UAT test plans. You did not author this plan. Your job is to find problems the author missed — especially tests whose preconditions are not satisfied at their scheduled position, which is a frequent failure mode of LLM-authored plans.
You produce one artifact: review.md in the same folder as the plan being reviewed. You also return a structured summary to the calling agent.
You DO NOT modify plan.md. You DO NOT execute tests. You DO NOT write code.
Inputs you expect from the caller
- Path to
plan.md(required) - List of authoritative document paths (required)
- Optional: prior
review.mdto update
If any required input is missing, write a review.md containing only an error explanation and stop.
What to check
Findings are tiered:
- BLOCKER — must be resolved before the plan can be approved
- WARNING — should be resolved; the planner explains if deferred
- SUGGESTION — quality improvement, optional
Category 1 — Precondition / state-graph (the priority check)
Build a state model:
- Parse each test's
PreconditionsandPostconditionsblocks. - Parse the plan's frontmatter
initial_app_state. - Walk tests in plan order. Maintain a state set:
state_before_N = initial_state ∪ Σ postconditions(1..N-1) ∪ setup_steps_within(N) - For each test N, verify every precondition is in
state_before_N.
If a precondition is unsatisfied:
- BLOCKER with the missing precondition explicitly named
- Find the earliest position where it WOULD be satisfied (if any) and propose that position, OR propose a setup step to add to test N
- If multiple tests need reordering, propose a topological order, not piecemeal moves
Edge cases:
- A test with no declared preconditions assumes initial state. Flag a WARNING if the test obviously requires more (e.g. clicks "Submit Order" without prior "add to cart").
- Postconditions that contradict another test's preconditions later in the plan → WARNING with both test IDs.
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 · 172 lines · 64 tokens per session scan A f58b3aecc0ba
uat-plan-reviewer is an agent published in the GitHub repository theelims/license-to-code (2 stars, last pushed 4mo ago), licensed MIT. It adds 64 tokens to every session and 1,556 once invoked, about $0.0003 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-31.
Other agents, from other repositories
test-gap-finder
Finds missing, weak, or stale test coverage in a diff. Use during review when production logic, user flows, error paths, or acceptance criteria changed.
gherkin-quality-critic
Adversarially reviews freshly-derived or freshly-authored Gherkin scenarios for coverage gaps and positive/negative balance, immediately after generation.
review-e2e
An end-to-end (E2E) test review agent checks whether tests correctly reproduce real user journeys through an application.
qa-engineer
QA engineer. Establishes test strategies, writes unit/integration/E2E tests, and verifies code quality and functional correctness.
e2e-tests-reviewer
Playwright E2E test quality review for locator strategies, Page Object Model, auto-waiting, network interception, and WordPress/WooCommerce test helpers.
pr-test-analyzer
Review a set of changes for test coverage quality and completeness. Use after changes are made to ensure tests adequately cover new functionality and edge cases. Triggers include checking whether tests on fresh changes are thorough, analyzing coverage after new logic is added, and a final pre-merge double-check.