Smart-git-commit AGENTS.md

A specification for the Smart Git Commit agent skill’s folders, file names, scripts, and JSON output. It defines conventions such as kebab-case names and required script behavior.

In plain words
What is it for?
Use it when creating or maintaining the Smart Git Commit skill, its Bash or Node scripts, supporting documents, templates, and tests. It helps ensure scripts return machine-readable JSON with consistent exit codes.
Why use it?
It makes the skill’s structure predictable and lets other tools read script results reliably. It also sets rules for errors, logging, cleanup, and success or failure status.

Instructions file for CodexOpenCode

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 instructions/zarl-prog/smart-git-commit/agents-md
Clone the repo
git clone --depth 1 https://github.com/Zarl-prog/Smart-git-commit

Made for: Codex, OpenCode.

Per session 527 This file is loaded in full into every session.
When invoked 527 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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 $0.00527 $0.00527
Opus 5 $0.00264 $0.00264
Sonnet 5 $0.00105 $0.00105
Haiku 4.5 $0.00053 $0.00053

Measured 2d ago against content hash 0bd3291c0fa6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 65 lines

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 .example suffixes (.gitmessage, CLAUDE.md.example)

Script Requirements

  • Shebang: #!/usr/bin/env bash
  • Error handling: set -euo pipefail for 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

  1. Level 1 — Frontmatter (always in context, ~100 words)
  2. Level 2 — SKILL.md body (in context when skill triggers, <500 lines)
  3. Level 3 — references/ (loaded on demand, unlimited depth)
  4. Level 4 — scripts/ (executed, only output enters context)
  5. Level 5 — templates/ (drop-in configs, user copies and customizes)

Read the full file on GitHub · 65 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. 2d ago First seen · 65 lines · 527 tokens per session scan A 0bd3291c0fa6

Subscribe to this mod's changes

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.