commit

A command for creating organized Git commits, which are saved snapshots of changes in a code project. It uses categories such as feature, fix, documentation, test, and maintenance.

In plain words
What is it for?
Use it to inspect staged and unstaged changes, choose a commit category, and write a concise commit message with optional context or issue references.
Why use it?
It helps turn unstructured changes into clear commit history that explains what changed and why.

Command

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/onmyway133/claude-code-plugins/commit
Clone the repo
git clone --depth 1 https://github.com/onmyway133/claude-code-plugins
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 463 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.00463
Opus 5 $0.00000 $0.00231
Sonnet 5 $0.00000 $0.00093
Haiku 4.5 $0.00000 $0.00046

Measured yesterday against content hash c0cfe80a9333, 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.

plugins/super/commands/commit.md · 99 lines

What it actually says

Commit

Create well-structured git commits with meaningful messages.

Usage

/commit [type]

Arguments:

  • type - Optional: feat, fix, refactor, docs, test, chore

Commit Process

Step 1: Analyze Changes

Run these commands to understand what changed:

git status
git diff --staged
git diff

If nothing is staged, ask whether to stage all changes or specific files.

Step 2: Categorize Changes

Determine the primary change type:

Type When to Use
feat New feature or capability
fix Bug fix or correction
refactor Code restructuring (no behavior change)
docs Documentation only
test Adding or updating tests
chore Build, tooling, dependencies

Step 3: Craft the Message

Follow this format:

<type>: <concise summary in imperative mood>

<optional body explaining what and why>

<optional footer with references>

Rules:

  • Summary line: 50 chars or less, imperative mood ("Add" not "Added")
  • Body: Wrap at 72 chars, explain motivation and context
  • Footer: Issue references, breaking changes

Good Examples:

feat: add user authentication with JWT tokens

Implement login/logout flow with secure token storage.
Tokens expire after 24 hours and refresh automatically.

Closes #123
fix: prevent crash when network unavailable

Handle nil response gracefully instead of force unwrapping.

Bad Examples:

fixed stuff          # Too vague
WIP                  # Not descriptive
Updated files        # Says nothing useful

Step 4: Execute

Stage files if needed and create the commit:

git add <files>
git commit -m "<message>"

Show the result with git log -1.

Guidelines

  • One logical change per commit
  • Don't mix unrelated changes
  • Never commit secrets or credentials
  • Reference issues when applicable
  • Keep commits atomic and revertable
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 · 99 lines · 0 tokens per session scan A c0cfe80a9333

Subscribe to this mod's changes

commit is a command published in the GitHub repository onmyway133/claude-code-plugins (5 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 463 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.