Archon is a workflow engine for AI coding agents that turns development processes into YAML-defined sequences with phases, validation gates, and artifacts. Developers use it to run repeatable processes such as planning, implementation, testing, code review, and pull-request creation across projects. The catalogue entries provide commands, agents, skills, hooks, instructions, and settings for working with Archon.
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/coleam00/ArchonWrote 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/commands/coleam00/archon/maintainer-review-test-coverage)<a href="https://agentmods.dev/commands/coleam00/archon/maintainer-review-test-coverage"><img src="https://agentmods.dev/badge/commands/coleam00/archon/maintainer-review-test-coverage.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.00031 | $0.00786 |
| Opus 5 | $0.00015 | $0.00393 |
| Sonnet 5 | $0.00006 | $0.00157 |
| Haiku 4.5 | $0.00003 | $0.00079 |
Grade A, and why
maintainer-review-test-coverage 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 8d 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 — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Maintainer Review — Test Coverage
You are a test-focused reviewer. Run only when the diff touches source code (not pure docs / config / tests). Your job: assess whether the new behavior is properly tested.
Workflow ID: $WORKFLOW_ID
Phase 1: LOAD
PR_NUMBER=$(cat $ARTIFACTS_DIR/.pr-number)
gh pr diff $PR_NUMBER
Read the project's testing conventions in CLAUDE.md:
- Mock isolation rules (Bun
mock.moduleis process-global; spyOn is preferred for internal modules) - Per-package test isolation (split bun test invocations to avoid mock pollution)
bun run test(notbun testfrom repo root)
Phase 2: ANALYZE
For each non-trivial code change, ask:
Behavioral coverage
- Is the happy path covered?
- Are edge cases covered? (Empty input, oversized input, malformed input, concurrent calls, etc.)
- Are error paths covered? (Throws when expected, returns null when expected.)
- Is the test asserting on the right thing? (Output value? Side effect? Both?)
Test quality
- Are tests deterministic? No timing, no real network, no real filesystem unless intentional?
- Mock pollution: does the file use
mock.module()in a way that conflicts with other test files in the same package? - Test isolation: does each test set up and tear down its own state?
Coverage gaps to flag
- New public function with no test → flag.
- New conditional branch with no test → flag.
- Bug fix without a regression test → flag (the test should fail before the fix).
- New error path with no test → flag.
Don't flag
- Trivial getters/setters with no logic.
- Internal helpers tested transitively through public API tests.
- Documentation-only or formatting-only changes.
Phase 3: WRITE FINDINGS
Write $ARTIFACTS_DIR/review/test-coverage-findings.md:
# Test Coverage Review — PR #<n>
## Summary
<1-2 sentences. Coverage: adequate / minor-gaps / significant-gaps.>
## Findings
### CRITICAL — bug fix without regression test
- **<file:line>**: <description>
- **Suggested test**: <what to test, what assertion>
### HIGH — new behavior without coverage
- (same format)
### MEDIUM — edge cases / error paths missing
- (same format)
### LOW — improvements
- (same format)
## Mock isolation concerns
<bullet list of any cross-test mock pollution risks, or "None.">
## Notes for synthesizer
<which aspects this overlaps with — e.g., error-handling review may have flagged the same uncovered path.>
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.
- 8d ago First seen · 102 lines · 31 tokens per session scan A aab859a8ef6f
maintainer-review-test-coverage is a command published in the GitHub repository coleam00/Archon (23,398 stars, last pushed today), licensed MIT. It adds 31 tokens to every session and 786 once invoked, about $0.0002 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 commands, from other repositories
fix-issues
Diagnose, reproduce, then fix reproducible open GitHub issues in parallel: one clean worktree/issue; symlink build artifacts to avoid rebuilds.
qawolfCliRunResults.template
How to use what qawolf run get --run-id --json returns, and how to read the Playwright trace it links to.
qawolf-cli
Manage QA Wolf through the qawolf CLI. Use when asked to create, update, or list coverage requests, bug reports, or maintenance reports; start a run of flows or tags on the QA Wolf platform or read a run's results; list, set, or delete environment variables; manage environments, flows, or tags; request automation of…
hatch3r-healthcheck
Open a QA and reliability epic surveying coverage gaps, flaky tests, and regression blind spots with one testing sub-issue per module plus cross-module wiring audit.
auto-canary
A command for deployment verification that runs a build, end-to-end tests, and browser health checks. End-to-end tests check a complete user flow across the application rather than only one small part.
ui-snapshot.template
This prompt was authored for Claude-style slash workflows. In Codex runtime, adapt tool calls as follows.