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/haris0059/ibu-mcp/commit-messagenpx skills add Haris0059/ibu-mcp --skill commit-messagegit clone --depth 1 https://github.com/Haris0059/ibu-mcpWhat 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.00078 | $0.00279 |
| Opus 5 | $0.00039 | $0.00139 |
| Sonnet 5 | $0.00016 | $0.00056 |
| Haiku 4.5 | $0.00008 | $0.00028 |
Grade A, and why
commit-message 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 2d 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.
What it actually says
Generating Commit Messages
Process
- Run
git diff --stagedto see all staged changes - Analyze what changed and why
- Generate a commit message following the format below
- Only then run
git commit, always appending# via-skillto the command so the project's PreToolUse hook allows it through. Example:git commit -m "Add JWT auth middleware" #via-skill
Format
Summary line (under 50 characters)
- Present tense imperative mood: "Add", "Fix", "Update", "Remove"
- Specific and descriptive — no generic messages
Example
Add JWT authentication middleware
Forbidden
- No "Generated with Claude Code"
- No "Co-Authored-By: Claude [email protected]"
- No vague messages like "Update files" or "Fix issues"
- No Body in commit messages
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.
- 2d ago First seen · 30 lines · 78 tokens per session scan A 0fdc77303b32
commit-message is a skill published in the GitHub repository Haris0059/ibu-mcp (2 stars, last pushed 3mo ago), licensed MIT. It adds 78 tokens to every session and 279 once invoked, about $0.0004 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
prs
Expertise in managing the Git and GitHub Pull Request lifecycle, including staging changes, generating PR descriptions, and branch management.
ocx
Drive a running opencodex (ocx) proxy from the CLI — account pools, provider routing, model catalog, usage and cost attribution, request logs, access keys, storage cleanup, and the management API. Use when a task involves controlling or inspecting an opencodex proxy rather than editing the opencodex codebase.…
git-wrapup
Land working-tree changes as logical commits — the work grouped by concern, topped by a release commit (version bump, changelog, regenerated artifacts) and an annotated tag. Verify, commit, tag. Stops at "committed and tagged locally" — no push, no publish. The release-and-publish skill picks up from here. Distilled…
close-task-commit-push-pr
Close the active backlog task (detected from branch name), commit all changes, push to remote, and open a pull request. Use when the user says "close task and ship it", "close task commit push pr", or invokes /close-task-commit-push-pr.
git-commit-push-pr
Commit all changes, push to remote, and open a pull request in one go. Use when the user says "commit push pr", "ship it", "open a pr", or invokes /git-commit-push-pr.
micro-commit
Enforces strict, atomic commit hygiene. Splits large diffs into logical, revertible units.