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 skills/tugrulguner/summonpot/review-codenpx skills add tugrulguner/summonpot --skill review-codegit clone --depth 1 https://github.com/tugrulguner/summonpotWrote 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/skills/tugrulguner/summonpot/review-code)<a href="https://agentmods.dev/skills/tugrulguner/summonpot/review-code"><img src="https://agentmods.dev/badge/skills/tugrulguner/summonpot/review-code.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 | $0.00062 | $0.00866 |
| Opus 5 | $0.00031 | $0.00433 |
| Sonnet 5 | $0.00012 | $0.00173 |
| Haiku 4.5 | $0.00006 | $0.00087 |
Grade A, and why
review-code 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 yesterday.
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 — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Reviewing a summonpot change
Check the diff against the defects this project has actually shipped, in the order they have cost the most.
1. Does a doc claim something the code does not do?
The most repeated defect here. Shipped examples: stream=True documented as working
while nothing read the flag; method= accepted and discarded; "capabilities themselves
remain deterministic" claiming a guarantee the framework cannot give.
A claim is a defect. Check README.md, ROADMAP.md, docs/, docstrings, and
src/summonpot/templates/skills/summonpot.md.
grep -rn "stream\|method=" README.md docs/ src/summonpot/templates/skills/
2. Does a new guard reject valid code?
Every registration guard needs a false-positive test, not only a true-positive one. Two guards shipped rejecting valid input:
- an unbound-method check that rejected any function whose first parameter was
self; - an annotation check that rejected
request: "Request"whereRequestexisted.
For any new rule, write the case that should still be accepted and run it.
3. Is the failure raised at the right time?
Registration beats request time; request time beats silence. A wrong declaration should
never reach traffic. Summon.__call__() in src/summonpot/summon.py is the registration
entry point. Place each rule in the responsible validation layer — including capability
normalization in src/summonpot/tools.py and contract checks in
src/summonpot/_validation.py — and ensure the entry point invokes it before serving or
execution.
4. Does the test fail without the fix?
Assert it in an isolated worktree so verification cannot modify the reviewer's working tree or any user-owned recovery state. Apply only the test diff to the base revision, then run the focused regression there:
base=${BASE_REF:-origin/main}
red_tree=$(mktemp -d)
git worktree add --detach "$red_tree" "$base"
git diff "$base" -- tests/ | git -C "$red_tree" apply -
(cd "$red_tree" && uv sync --all-extras --locked && uv run pytest tests/ -q)
git worktree remove --force "$red_tree"
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.
- yesterday Changed · +14 lines e1d954a39474
- 5d ago First seen · 77 lines · 62 tokens per session scan A 99c674cf056f
review-code is a skill published in the GitHub repository tugrulguner/summonpot (2 stars, last pushed today), licensed MIT. It adds 62 tokens to every session and 866 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 skills, from other repositories
fastapi
Use when building, reviewing, testing, securing or shipping a FastAPI / async Python service — routers, Pydantic v2 schemas, dependency injection, async SQLAlchemy 2.0, OAuth2/JWT, ASGITransport tests, production wiring. NOT language-level Python or packaging (that is python), NOT engine-level SQL (that is…
jupyter-notebook
Use when the user asks to create, scaffold, or edit Jupyter notebooks (.ipynb) for experiments, explorations, or tutorials; prefer the bundled templates and run the helper script newnotebook.py to generate a clean starting notebook.
python-package-management
Guide for managing packages in the Agent Framework Python monorepo, including creating new connector packages, versioning, and the lazy-loading pattern. Use this when adding, modifying, or releasing packages.
temporal-python-testing
Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.
python-feature-lifecycle
Guidance for package and feature lifecycle in the Agent Framework Python codebase, including stage meanings, feature-stage decorators, feature enums, and how to move APIs from one stage to the next.
python-code-quality
Code quality checks, linting, formatting, and type checking commands for the Agent Framework Python codebase. Use this when running checks, fixing lint errors, or troubleshooting CI failures.