commit

commit is a command for coding agents from sigistry/marketplace. It costs 11 tokens per session (730 once invoked), scanned A, original, MIT.

A command that turns the currently staged code changes into one Conventional Commit message, a standard format for describing commits.

In plain words
What is it for?
Use it before committing to classify a change as a feature, fix, documentation update, refactor, or another standard type and draft the message.
Why use it?
It prevents the commit message from describing unstaged or untracked work and keeps the message aligned with the actual staged diff.

Command

Part of the release-conductor plugin — 2 skills, 5 commands, 3 agents shipped together

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

Or install release-conductor, the plugin that ships this one along with the rest of its 2 skills, 5 commands, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for commit

README.md
[![agentmods](https://agentmods.dev/badge/commands/sigistry/marketplace/commit.svg)](https://agentmods.dev/commands/sigistry/marketplace/commit)
Your own site
<a href="https://agentmods.dev/commands/sigistry/marketplace/commit"><img src="https://agentmods.dev/badge/commands/sigistry/marketplace/commit.svg" alt="Measured on agentmods" height="20"></a>
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 730 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.00730
Opus 5 $0.00005 $0.00365
Sonnet 5 $0.00002 $0.00146
Haiku 4.5 $0.00001 $0.00073

Measured yesterday against content hash b3709bb72fcc, 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/release-conductor/commands/commit.md · 62 lines

How it starts

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

Turn the currently staged diff into one well-formed Conventional Commit message, ready to paste into git commit. Use this right before committing when you want a clean, conventional message that explains the why. Reads only what is staged (git diff --cached).

Process

Step 1: Confirm something is staged

Run git diff --cached --stat. If it is empty, there is nothing to commit, run git status --short to show the user what is unstaged/untracked, remind them to git add, and STOP. Do not invent a message from unstaged work.

Step 2: Read the staged diff

  • git diff --cached: the full staged patch. Read it to understand what actually changed.
  • git status --short: to note anything left unstaged that arguably belongs in this commit (mention it, but only describe what IS staged).

Step 3: Classify the change type

Pick the single best type per the changelog-assembly skill's references/conventional-commits.md:

Type When
feat A new user-facing capability
fix A bug fix
docs Documentation only
style Formatting/whitespace, no logic change
refactor Behavior-preserving restructuring
perf A performance improvement
test Adding/fixing tests only
build Build system, deps, packaging
ci CI configuration/pipelines
chore Maintenance not touching src or tests
revert Reverting a prior commit

If a diff spans multiple types, pick the dominant one and note that splitting into separate commits may be cleaner.

Step 4: Derive scope, subject, body, footers

  • Scope (optional): the module/package/area most affected (e.g. auth, parser, api). Derive it from the top-level directory or component in the diff.
  • Subject: imperative mood, ≤50 characters, no trailing period, lowercase after the colon.
  • Body: wrap at ~72 columns; explain why and any non-obvious how. Omit for trivial changes.
  • Footers: add BREAKING CHANGE: <description> (and a ! after type/scope) if a public contract changed; add Closes #NN / Refs #NN if the diff or branch name references an issue.

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

Subscribe to this mod's changes

commit is a command published in the GitHub repository sigistry/marketplace (3 stars, last pushed yesterday), licensed MIT. It adds 11 tokens to every session and 730 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-09-03.