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 commands/ai-sdlc-framework/ai-sdlc/review-prgit clone --depth 1 https://github.com/ai-sdlc-framework/ai-sdlcWrote 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/ai-sdlc-framework/ai-sdlc/review-pr)<a href="https://agentmods.dev/commands/ai-sdlc-framework/ai-sdlc/review-pr"><img src="https://agentmods.dev/badge/commands/ai-sdlc-framework/ai-sdlc/review-pr.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.00021 | $0.01047 |
| Opus 5 | $0.00010 | $0.00524 |
| Sonnet 5 | $0.00004 | $0.00209 |
| Haiku 4.5 | $0.00002 | $0.00105 |
Grade A, and why
review-pr 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 6d 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 — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Review PR #$ARGUMENTS by invoking @ai-sdlc/orchestrator's
executeReview() for the three review perspectives. The orchestrator
already drives the LLM-based ReviewAgentRunner and applies the
meta-review pass that filters medium-confidence findings; this skill's
job is to fetch context, fan out to the three review types, and
present the structured verdicts.
Step 1 — Fetch PR context
Don't hardcode --repo — let the cwd's git remote drive gh.
PR=$ARGUMENTS
# Diff + metadata for the review agents
gh pr diff "$PR" > /tmp/pr-diff.txt
gh pr view "$PR" --json number,title,body,headRefName,changedFiles > /tmp/pr.json
# Linked issue (if any) — feeds acceptance-criteria extraction
LINKED=$(gh pr view "$PR" --json body --jq '
(.body | scan("(?i)(?:closes|fixes|resolves)\\s+#([0-9]+)"))[0][0] // empty
')
if [ -n "$LINKED" ]; then
gh issue view "$LINKED" --json number,title,body > /tmp/issue.json
fi
If there's no linked issue, omit --issue-file from the calls below —
cli-review falls back to the PR title/body.
Step 2 — Run the three review types
for TYPE in testing critic security; do
pnpm --filter @ai-sdlc/dogfood review \
--pr "$PR" \
--diff-file /tmp/pr-diff.txt \
--type "$TYPE" \
${LINKED:+--issue-file /tmp/issue.json} \
> "/tmp/review-$TYPE.json" 2>"/tmp/review-$TYPE.stderr"
done
Each call writes a structured ReviewVerdict JSON to its own file:
{
"approved": true | false,
"findings": [
{ "severity": "critical"|"major"|"minor"|"suggestion",
"file": "path",
"line": 42,
"message": "string" }
],
"summary": "string"
}
If any of the three calls writes to stderr, surface it — typically a config issue, not a true review failure.
Step 3 — Present verdicts
For each review type in order (testing, critic, security):
- Header line —
Testing: APPROVED with 2 suggestionsorCritic: CHANGES REQUESTED — 1 critical, 3 major - Summary — the orchestrator's
summarystring - Findings — only critical and major; minor and suggestion go in a collapsed list
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.
- 6d ago First seen · 111 lines · 21 tokens per session scan A 1e3e1f6f271d
review-pr is a command published in the GitHub repository ai-sdlc-framework/ai-sdlc (103 stars, last pushed today), licensed Apache-2.0. It adds 21 tokens to every session and 1,047 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 commands, from other repositories
spec-intake
Execute the canonical workflow: .agent/workflows/spec-intake.md.
research
Research a technical or product question.
profile
Profile Go code, identify bottlenecks, optimize, and verify improvements.
wardley
Create strategic Wardley Maps for architecture decisions and build vs buy analysis.
at-dsgvo
You are helping an enterprise architect generate an Austrian Data Protection Assessment — the Austrian-specific GDPR layer applied by the Datenschutzbehörde (DSB) under the Datenschutzgesetz (DSG 2018, BGBl. I Nr. 165/1999 as amended). Run this after /arckit:eu-rgpd to add Austrian obligations that go beyond the EU…
eu-dora
You are helping an enterprise architect generate a DORA Compliance Assessment (Digital Operational Resilience Act, EU Regulation 2022/2554) for a financial sector entity operating in the European Union. DORA has applied since 17 January 2025 and establishes a unified framework for ICT risk management, incident…