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 skills add Eliyce/paqad-ai --skill diff-minimizergit clone --depth 1 https://github.com/Eliyce/paqad-aiWrote 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/eliyce/paqad-ai/diff-minimizer)<a href="https://agentmods.dev/skills/eliyce/paqad-ai/diff-minimizer"><img src="https://agentmods.dev/badge/skills/eliyce/paqad-ai/diff-minimizer.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.00028 | $0.00992 |
| Opus 5 | $0.00014 | $0.00496 |
| Sonnet 5 | $0.00006 | $0.00198 |
| Haiku 4.5 | $0.00003 | $0.00099 |
Grade A, and why
diff-minimizer 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 — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.
What It Does
Evaluates a proposed implementation outline step-by-step against the acceptance criteria. Classifies each step as ac-satisfying, necessary-setup, scaffolding, or over-build and recommends which scaffolding and over-build steps to drop before any code is written.
The goal is to move scope-creep detection upstream from post-implementation review into the planning phase.
Use This When
Use this between acceptance-criteria-gen and the Story Designer's solution write-up, in the graduated and full lanes. Skip in the fast lane — the overhead is not justified for low-complexity work.
Inputs
- Read the acceptance criteria artifact first; identifiers must be
AC-{fr}.{n}so each step's mapped AC is unambiguous. - Read the proposed solution outline (steps, files to modify, abstractions introduced).
- Read canonical module docs at the module paths listed in
module_doc_paths. Patterns declared there are project conventions and cannot be classified asover-build. - Read
references/classification-guide.mdbefore assigning any classification so the rubric stays consistent.
Procedure
- Run
scripts/extract-ac-ids.sh <ac-file>to load the canonical AC id set; cross-check every cited id against this set. - Parse the proposed solution into discrete steps (one new file, one function, or one significant edit each).
- Classify each step using
assets/classifications.txt(ac-satisfying,necessary-setup,scaffolding,over-build). - For
scaffolding/over-buildsteps, propose a leaner alternative or deletion. - List ACs with no satisfying step under
### Open Questions(or write the literalOpen Questions: none). - Format per
assets/output.template.md; validate withscripts/lint-output.sh.
Output Contract
- Return a heading named
Diff Minimization. - Provide a
Step Maptable with columns#,Step,Classification,Mapped AC,Actionwhere:#is the 1-based step index from the proposed solution.Classificationis exactly one ofac-satisfying,necessary-setup,scaffolding,over-build.Mapped ACis the AC id when the step isac-satisfying, the dependent step number whennecessary-setup, and—otherwise.Actioniskeepforac-satisfyingandnecessary-setup, ordrop — <one-line reason>forscaffoldingandover-build.
- Provide a
Recommended Dropssection listing dropped step numbers with a one-line reason each. - Provide a
Necessary Setup (justified)section listing setup steps and the dependent step numbers. - End with
Open Questionslisting AC ids with no satisfying step, orOpen Questions: noneexactly.
What ships with it
6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 84 lines · 28 tokens per session scan A 7c2083f360f3
diff-minimizer is a skill published in the GitHub repository Eliyce/paqad-ai (8 stars, last pushed today), licensed MIT. It adds 28 tokens to every session and 992 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-31.
Other skills, from other repositories
pr-writing-review
Extract and analyze writing improvements from GitHub PR review comments. Use when asked to show review feedback, style changes, or editorial improvements from a GitHub pull request URL. Handles both explicit suggestions and plain text feedback. Produces structured output comparing original phrasing with reviewer…
session-investigator
Investigate fast-agent session and history files to diagnose issues. Use when a session ended unexpectedly, when debugging tool loops, when correlating sub-agent traces with main sessions, or when analyzing conversation flow and timing. Covers session.json metadata, history JSON format, message structure, tool…
auto-go
A command that implements code from a SPEC, a document describing the required behavior and work.
auto-plan
A code-planning skill that examines a codebase and creates a detailed specification, implementation plan, and acceptance criteria. It can organize requirements using EARS, a structured way to describe how software should behave in different situations.
agent-pipeline
Multi-agent pipeline orchestration skill.
adaptive-quality
Per-task execution profile selection based on complexity in Balanced quality mode.