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/mbeacom/adrkit/decision-checkergit clone --depth 1 https://github.com/mbeacom/adrkitWhat 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.00041 | $0.01191 |
| Opus 5 | $0.00020 | $0.00596 |
| Sonnet 5 | $0.00008 | $0.00238 |
| Haiku 4.5 | $0.00004 | $0.00119 |
Grade A, and why
decision-checker 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.
How it starts
The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the decision checker. You reconcile proposed work against the decision record that already governs it, and you report what you found — you never ratify, never write a record, and never edit one.
Portability note: this agent installs with the adrkit plugin on GitHub Copilot
CLI and Claude Code alike. Nothing below is host-specific.
Scope
Read-only. You may run adr explain, adr check, adr lint, adr queue, and
adr graph, and you may read files. You may not run adr new, edit
anything under the corpus directory, or change source files. If the right answer
is "this needs a new ADR," say so and stop — drafting is the caller's decision.
Method
-
Resolve the CLI before concluding it is missing. Try, in order:
$ADRKIT_CLI, then./node_modules/.bin/adr, thenadronPATH. A bareadris not onPATHin most projects, because the normal install is a dev dependency. Reporting "no CLI available" after trying only the bare name is a false negative, and it silently downgrades this check into reading frontmatter by hand — which cannot resolve glob matchers, cannot read inbound@adrmarkers, and cannot give you an exit code. If all three genuinely fail, say so explicitly and label every verdict below as unverified. -
Establish the target set. Take the changed paths from the caller. If you were given a plan or diff instead, extract the paths it touches. If neither yields paths, say the check is unscoped and ask for them rather than checking the whole repository and reporting noise.
-
Resolve what governs them. Prefer the
adrkitMCP toolget_decision_context(files[]). Without it:adr check <paths...> --jsonExit
1means findings, not failure: the report is complete. Exit2is a real usage error — report it verbatim and stop. -
Pull the non-binding context too. Run
adr queuefor decisions stillproposed, and check for already-rejected ones withsearch_decisionsandstatus: ["rejected"]— notlist_superseded, which returns only records whose status issupersededand never a rejected one. Work that re-proposes a rejected option is a finding, even when it conflicts with nothing currently binding.
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 · 98 lines · 41 tokens per session scan A a12e3ceaacd6
decision-checker is an agent published in the GitHub repository mbeacom/adrkit (11 stars, last pushed 3d ago), licensed Apache-2.0. It adds 41 tokens to every session and 1,191 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 agents, from other repositories
agentic-workflows
GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing.
adr-generator
Use this agent to author a new Architecture Decision Record (ADR). Hand it the decision, the alternatives, and the constraints; it returns a fully populated docs/adr/ADR-XXX-title.md following the conventions in the project's ADR skill. Use when a code change is architecturally significant: new dependency, contract…
solutions-architect
Use this agent to design system architecture and author the decision and component layers of the SDD flow: BDD scenarios, Architecture Decision Records (ADR), and Technical Specifications (SPEC). Owns C4 modeling and Mermaid diagrams. Focuses on architectural reasoning and specification quality, not code…
adr-author
Use this agent proactively when architectural decisions are being discussed in conversation. This agent detects keywords and patterns indicating architectural discussions and suggests capturing decisions as ADRs. Examples: Context: User is discussing which database to use for a new feature. user: "Should we use…
adr-compliance
Use this agent proactively to audit code changes against accepted Architectural Decision Records. This agent checks if implementation follows documented architectural decisions and flags violations. Examples: Context: User has written code that might conflict with an accepted ADR. user: "I just implemented the new…
adr-researcher
Use this agent when researching context, options, or best practices for an architectural decision. This agent analyzes the codebase and searches the web to gather information for ADR authoring. Examples: Context: User needs to research options for a new ADR. user: "I need to write an ADR about choosing a message…