commit

A Git helper that examines code changes and writes a conventional commit message. Git is a tool for tracking changes, and a commit message records what a change contains.

In plain words
What is it for?
Use it before committing changes to review the Git status and diffs, check recent commit style, and produce a formatted message.
Why use it?
It removes the need to manually determine the right change category and summarize staged or unstaged work.

Command for Claude Code

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 commands/bguivarch/skillforge/commit
Clone the repo
git clone --depth 1 https://github.com/bguivarch/skillforge

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 923 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.00923
Opus 5 $0.00000 $0.00462
Sonnet 5 $0.00000 $0.00185
Haiku 4.5 $0.00000 $0.00092

Measured yesterday against content hash 8a697e7d6ecb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

.claude/commands/commit.md · 128 lines

How it starts

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

Smart Commit

Analyze Git changes and generate a conventional commit message following the Commitizen format.

Arguments

  • $ARGUMENTS - Optional: Additional context or instructions for the commit message

Instructions

Generate a conventional commit message by analyzing the current Git changes.

Step 1: Gather Git Information

Run these commands in parallel:

  1. git status - See staged and unstaged changes
  2. git diff --cached - See staged changes (what will be committed)
  3. git diff - See unstaged changes
  4. git log --oneline -5 - See recent commit style for consistency

Step 2: Analyze the Changes

Based on the diff, determine:

  1. Type - Choose the most appropriate type:

    • feat — A new feature
    • fix — A bug fix
    • docs — Documentation only changes
    • style — Formatting, white-space, missing semi-colons (no code change)
    • refactor — Code change that neither fixes a bug nor adds a feature
    • perf — Performance improvement
    • test — Adding or correcting tests
    • build — Changes to build system or dependencies
    • ci — Changes to CI configuration
    • chore — Other changes (tooling, config, etc.)
    • revert — Reverts a previous commit
  2. Scope — The area of the codebase affected (optional but recommended):

    • Use lowercase, kebab-case
    • Examples: task, auth, api, db, channel, note
    • Derive from folder structure or feature name
  3. Description — A short, imperative summary:

    • Use imperative mood ("add" not "added" or "adds")
    • Don't capitalize first letter
    • No period at the end
    • Max 50 characters
  4. Breaking Change — If this introduces breaking changes:

    • Add an exclamation mark after the scope: feat(api)!: remove deprecated endpoint
    • Or add a footer: BREAKING CHANGE: explanation here

Step 3: Format the Commit Message

Follow the Conventional Commits specification:

<type>(<scope>): <description>

[optional body]

[optional footer(s)]

Read the full file on GitHub · 128 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. yesterday First seen · 128 lines · 0 tokens per session scan A 8a697e7d6ecb

Subscribe to this mod's changes

commit is a command published in the GitHub repository bguivarch/skillforge (3 stars, last pushed 7mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 923 tokens. 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.