commit

A command for creating a Git commit from changes that have already been staged. A commit is a saved checkpoint in a Git project, and staged changes are the files selected for that checkpoint.

In plain words
What is it for?
Use it to turn staged work into a properly formatted commit and report the resulting commit identifier.
Why use it?
It checks that there is something ready to save, prepares a conventional commit message, and applies safety checks before committing.

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/marmot-protocol/agent-config/commit
Clone the repo
git clone --depth 1 https://github.com/marmot-protocol/agent-config
Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 575 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.00011 $0.00575
Opus 5 $0.00005 $0.00287
Sonnet 5 $0.00002 $0.00115
Haiku 4.5 $0.00001 $0.00057

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

opencode/commands/commit.md · 89 lines

How it starts

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

Commit Command

You are creating a git commit for the currently staged changes.

Workflow

  1. Check staged changes exist

    • Run git diff --cached --stat to verify files are staged
    • If nothing is staged, inform the user and stop
    • List the staged files for confirmation
  2. Generate commit message

    • Use the /commit_message command workflow to analyze staged changes
    • Use the commit_message tool to get type, scope, and subject suggestions
    • Draft a conventional commit message following the format below
  3. Create the commit

    • Present the proposed commit message to the user
    • Use the commit tool with the full message to create the commit
    • The tool handles safety checks (secrets detection) and returns the commit hash
  4. Report result

    • Show the commit hash and summary from the tool response
    • If the commit failed, report the error and hint

Commit Message Format

<type>(<scope>): <subject>

<body>

<footer>

Types

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation changes
  • style: Code style (formatting, semicolons)
  • refactor: Code restructuring without behavior change
  • test: Adding or updating tests
  • chore: Maintenance tasks
  • perf: Performance improvements

Guidelines

  • Subject line: 50 characters max, imperative mood ("add" not "added")
  • Body: Explain what and why, not how
  • Reference issues with "Fixes #123" or "Closes #456"
  • Wrap body at 72 characters

Safety Rules

The commit tool enforces these automatically:

  • Rejects commits with no staged changes
  • Detects potential secrets (.env, credentials, keys) and blocks unless overridden
  • Returns structured error messages with hints

Additional rules for the agent:

  • NEVER use --amend unless explicitly requested
  • NEVER use --no-verify to skip hooks
  • ALWAYS present the message to the user before committing

Example Output

Staged changes:
  - src/auth/reset.ts (new file)
  - src/auth/login.ts (modified)

Proposed commit message:

feat(auth): add password reset functionality

Implement password reset flow with email verification.
Users can now request a reset link that expires after 24 hours.

Closes #42

---

✓ Commit created: a1b2c3d feat(auth): add password reset functionality

Read the full file on GitHub · 89 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 · 89 lines · 11 tokens per session scan A 3f40f9ce432e

Subscribe to this mod's changes

commit is a command published in the GitHub repository marmot-protocol/agent-config (2 stars, last pushed 7mo ago), licensed MIT. It adds 11 tokens to every session and 575 once invoked, about $0.0001 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.