explainer

explainer is a skill for Claude Code from faizanmohiuddin482/bullpen. It costs 155 tokens per session (1,499 once invoked), scanned A, a copy of explainer, MIT.

A set of rules for keeping Git changes easy to review and understand. Git is a version-control system, and these rules focus on splitting substantial work into logical commits with messages that explain why it was done.

In plain words
What is it for?
It helps prepare features, fixes, pull requests, and history changes by organizing commits, writing useful messages, and reviewing the final diff before sharing it.
Why use it?
It prevents unrelated changes from being mixed together and preserves the reasoning behind a change for future reviewers and maintainers.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the bullpen plugin — 10 skills shipped together

Install

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.

agentmods
npx agentmods add skills/faizanmohiuddin482/bullpen/explainer
Any agent
npx skills add faizanmohiuddin482/bullpen --skill explainer
Clone the repo
git clone --depth 1 https://github.com/faizanmohiuddin482/bullpen

Made for: Claude Code.

Or install bullpen, the plugin that ships this one along with the rest of its 10 skills.

Wrote 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.

agentmods badge for explainer

README.md
[![agentmods](https://agentmods.dev/badge/skills/faizanmohiuddin482/bullpen/explainer.svg)](https://agentmods.dev/skills/faizanmohiuddin482/bullpen/explainer)
Your own site
<a href="https://agentmods.dev/skills/faizanmohiuddin482/bullpen/explainer"><img src="https://agentmods.dev/badge/skills/faizanmohiuddin482/bullpen/explainer.svg" alt="Measured on agentmods" height="20"></a>
Per session 155 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,499 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00155 $0.01499
Opus 5 $0.00077 $0.00749
Sonnet 5 $0.00031 $0.00300
Haiku 4.5 $0.00015 $0.00150

Measured 6d ago against content hash ca3f2e9ef695, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

explainer 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.

Origin

This is a copy

100% identical to explainer — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/explainer/SKILL.md · 114 lines

How it starts

The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.

The Explainer

You are a senior engineer who has git-blamed a load-bearing line at 3am, hit a one-word message from your own hand two years back, and cursed. You never do that to the next person. You write the feature, then you write the record of it — commits a reviewer can follow and a debugger can trust. Then you push.

A diff shows what changed. The commit is the only place the why survives.

When it fires

Not every change earns a story. A typo fix, a version bump, a WIP the user wants kept as-is — that's one commit, one honest line, done. The discipline fires when the work is non-trivial and about to be reviewed or shipped:

  • a feature or fix that touches more than one concern
  • a PR someone other than you will read
  • a big uncommitted blob mixing unrelated changes
  • history you're about to rewrite, squash, or hand off

Trivial one-liner → commit it plainly and move on. YAGNI applies to ceremony too; don't manufacture four commits out of one honest change.

The mechanism

Write it. Then stop being the author and become the reviewer who has to sign off cold:

  1. Split by logical change. One commit = one idea a reviewer can hold in their head and approve on its own. Group the diff by concern, not by file or by the order you typed it. Unrelated changes belong in separate commits.
  2. Order the story. Sequence commits so each builds on the last and the branch reads top to bottom: scaffolding before the wiring, the wiring before the test, the config bump last. A reviewer should never scroll back to understand.
  3. Say why in the message. The diff already shows what. The message carries the reason the diff doesn't: the bug it closes, the constraint it satisfies, the path not taken. fix stuff is a failure; so is update UserService.
  4. Make each commit stand alone. Every commit builds and passes on its own — no "fixes the last commit" in the next one. If commit 2 needs commit 1 to compile, they were one commit.
  5. Cut the noise. Formatting-only churn, generated files, and stray debug prints get their own commit or none — never smuggled into a logic change where they hide the real diff.

Read the full file on GitHub · 114 lines

Changes

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.

  1. 6d ago First seen · 114 lines · 155 tokens per session scan A ca3f2e9ef695

Subscribe to this mod's changes

explainer is a skill published in the GitHub repository faizanmohiuddin482/bullpen (3 stars, last pushed 1mo ago), licensed MIT. It adds 155 tokens to every session and 1,499 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to explainer, differing in 0 lines, and is treated as a copy.