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/pymodel/pythinker-cli/judge-minimum-diffnpx skills add PyModel/pythinker-cli --skill judge-minimum-diffgit clone --depth 1 https://github.com/PyModel/pythinker-cliWhat 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.00029 | $0.01120 |
| Opus 5 | $0.00015 | $0.00560 |
| Sonnet 5 | $0.00006 | $0.00224 |
| Haiku 4.5 | $0.00003 | $0.00112 |
Grade A, and why
judge-minimum-diff 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 — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Judge Minimum-Diff Lens
Use when judging a code change, diff, or implementation report. This is the rubric dimension the Pythinker judge subagent applies to every non-trivial diff — the same ladder that lives in the base system prompt's §6 (Code Standards), surfaced here as an explicit rubric so the judge, an implementer doing pre-flight, or a reviewer running the over-engineering skill apply it uniformly.
The judge applies the full ladder. There is no mode switch on the judge
(lite / full / ultra); the implementer is the role that would carry a
mode toggle if one is ever introduced.
The ladder — walk it before writing code; stop at the first rung that holds
- Does this need to exist at all? A speculative need is skipped, said so in one line. YAGNI is the highest rung.
- Does the standard library do it? Use it.
- Does a native platform or framework feature cover it? A database constraint over an app-level check, a built-in form control over a picker library, the language's own construct over a hand-rolled one — use it.
- Does a dependency already in the manifest solve it? Use it; never add a new dependency for what a few lines cover.
- Can it be one line? Make it one line.
- Only then write the minimum code that works.
When two rungs both hold, take the higher one and move on. The ladder is a reflex, not a research project. None of this overrides the guards below: trust-boundary validation, error handling that prevents data loss, security, and accessibility stay in even at rung 5.
Minimum-diff rubric
A diff passes the minimum-diff check when all of these hold:
- The change takes the smallest rung of the ladder above before adding new code.
- There are no abstractions (no interface with one implementation, no factory for one product, no config layer for a value that never changes) that the brief did not ask for.
- There are no new dependencies unless the brief asked for one; when one is added, a one-line justification names why an already-installed dependency or the standard library couldn't cover it.
- There are no new config keys unless a consumer is named in the same diff (a value with no consumer is over-engineering).
- There are no new files unless the brief asked for them; reuse the nearest neighbor's module.
- There are no error paths for impossible scenarios; validate at boundaries, not deep in business logic.
- There is no reformatting, renaming, or wrapping churn outside the changed lines. Formatting churn is scope creep.
- Comments only where they earn their keep: non-obvious algorithms,
deliberate simplifications whose ceiling matters, business rules, or
genuine
TODO:technical debt. No self-evident comments.
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 First seen · 105 lines · 29 tokens per session scan A c1f4ff1034a8
judge-minimum-diff is a skill published in the GitHub repository PyModel/pythinker-cli (20 stars, last pushed 4d ago), licensed Apache-2.0. It adds 29 tokens to every session and 1,120 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 skills, from other repositories
skill-creator
Create or update a Codex skill with appropriately scoped instructions and any needed supporting resources.
multi-cli-runtime
Internal helper contract for calling the multi-cli-companion runtime from any multi: subagent.
customize
Rewire which CLI handles which role in cc-multi-cli-plugin, OR diagnose/work around an upstream CLI quirk via env vars and config files. Use when the user asks to swap CLIs, change a subagent's target CLI, add or disable a subagent or command, restrict a CLI to read-only, hardcode a model, or change how a role frames…
subagent-manager
Use when the user mentions "subagent" commands, wants to coordinate worker agents, or asks to delegate tasks to a team of agents using subagent-cli. Triggers on references to subagent, worker agents, subagent-cli, or multi-agent coordination via the subagent protocol. Also use when the user says things like "チームで進めて"…
weekly-digests
Generate a serial week-by-week narrative digest of a project's full claude-mem timeline. Splits the timeline into per-ISO-week files, then runs one consecutive subagent per week — each receiving the prior week's carry-forward block — to produce one chapter per ISO week of data. Use when asked for "weekly digests"…
Agent Development
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development…