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 instructions/zarl-prog/smart-git-commit/agents-mdgit clone --depth 1 https://github.com/Zarl-prog/Smart-git-commitWhat 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.00527 | $0.00527 |
| Opus 5 | $0.00264 | $0.00264 |
| Sonnet 5 | $0.00105 | $0.00105 |
| Haiku 4.5 | $0.00053 | $0.00053 |
Grade A, and why
Smart-git-commit AGENTS.md 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.
How it starts
The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Smart Git Commit — Agent Skills Manifest
Skill Directory Structure
skills/
smart-git-commit/ # kebab-case directory name
SKILL.md # Required: skill definition and phases
scripts/ # Executable bash scripts
references/ # Supporting docs, loaded on demand
templates/ # Drop-in config files for projects
tests/ # Test fixtures and scenarios
Naming Conventions
- Skill directories: kebab-case
- SKILL.md: always uppercase, always this exact filename
- Scripts: kebab-case.sh (bash) or kebab-case.mjs (Node)
- References: kebab-case.md
- Templates: dotfiles and
.examplesuffixes (.gitmessage,CLAUDE.md.example)
Script Requirements
- Shebang:
#!/usr/bin/env bash - Error handling:
set -euo pipefailfor strict mode - Progress/logs → stderr
- Machine-readable results → stdout as JSON
- Cleanup traps for temp files
- Exit 0 = success, exit 1 = failure (blocks caller)
- Color: Use ANSI color codes (RED for errors, GREEN for success, YELLOW for warnings)
Output JSON Schema
All scripts output JSON to stdout:
{
"status": "pass" | "fail" | "not_found",
"findings": [
{
"file": "path/to/file.ext",
"line": 42,
"pattern": "matched pattern description"
}
],
"message": "Human-readable summary"
}
SKILL.md Rules
- Under 500 lines
- YAML frontmatter with name + description (description must be "pushy")
- Progressive disclosure: SKILL.md is entry point, details in references/
- Phases numbered, each references the right script or reference file
Progressive Disclosure Pattern
- Level 1 — Frontmatter (always in context, ~100 words)
- Level 2 — SKILL.md body (in context when skill triggers, <500 lines)
- Level 3 — references/ (loaded on demand, unlimited depth)
- Level 4 — scripts/ (executed, only output enters context)
- Level 5 — templates/ (drop-in configs, user copies and customizes)
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 · 65 lines · 527 tokens per session scan A 0bd3291c0fa6
Smart-git-commit AGENTS.md is an instructions file published in the GitHub repository Zarl-prog/Smart-git-commit (6 stars, last pushed 21d ago), licensed MIT. It adds 527 tokens to every session, about $0.0026 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 instructions, from other repositories
diffler AGENTS.md
Instructions for jamestkelly/diffler, covering agents.md, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.
PowerHou53 AGENTS.md
AGENTS.md instructions for Sdinzsh/PowerHou53, covering powerhouse 3 — shared agent rules (agents.md), tool-calling discipline, powerhouse 3 universal protocol, execution speed rules (highest priority) and think before act (non-trivial actions only).
diffler CLAUDE.md
Instructions for jamestkelly/diffler, a project described as: Generate comprehension quizzes from Git branch diffs for Claude Code, OpenCode, and pull-request workflows.
plannotator AGENTS.md
AGENTS.md instructions for backnotprop/plannotator, covering plannotator, project structure, server runtimes, installation and environment variables.
solo AGENTS.md
Instructions for solo-agent/solo, covering project testing rules and project service lifecycle rules.
superset AGENTS.md
AGENTS.md instructions for superset-sh/superset, covering superset monorepo, project structure, exception: shadcn/ui components, database and releases.