commit-changes

A git commit helper that examines recent commits and creates a message matching the project's existing style.

In plain words
What is it for?
Use it to review changes, classify them as features, fixes, documentation, tests, or other types, and commit them after approval.
Why use it?
It removes the guesswork from naming commits and helps keep the project history consistent.

Skill for Claude CodeCodex

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 skills/anilcancakir/claude-code-plugins/commit-changes
Any agent
npx skills add anilcancakir/claude-code-plugins --skill commit-changes
Clone the repo
git clone --depth 1 https://github.com/anilcancakir/claude-code-plugins

Made for: Claude Code, Codex.

Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 441 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.00024 $0.00441
Opus 5 $0.00012 $0.00220
Sonnet 5 $0.00005 $0.00088
Haiku 4.5 $0.00002 $0.00044

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

Security

Grade A, and why

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

pre-commit-flow/skills/commit-changes/SKILL.md · 84 lines

What it actually says

Commit Task

Create a commit for staged/unstaged changes following project conventions.

Steps

  1. Check git status for changes
  2. Analyze git log --oneline -10 to detect commit style
  3. Categorize changes (feat/fix/docs/refactor/test/chore)
  4. Generate commit message matching detected style
  5. Present to user for approval
  6. Execute commit

Commit Style Detection

Use the detection script for accurate results:

# Returns JSON with style and confidence
"${CLAUDE_PLUGIN_ROOT}/scripts/detect-commit-style.sh"

Output example:

{
  "style": "conventional-scoped",
  "confidence": 80,
  "stats": { "total": 10, "conventional_scoped": 8, "gitmoji": 2 }
}
Pattern Style
type(scope): message Conventional Commits (scoped)
type: message Conventional (no scope)
:emoji: message Gitmoji
Plain text Simple

Conventional Commits Types

Type Use For
feat New features
fix Bug fixes
docs Documentation only
style Formatting changes
refactor Code restructuring
perf Performance improvements
test Adding/fixing tests
chore Maintenance tasks

Message Format

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

<body>

<footer>

Subject Rules:

  • Imperative mood ("add" not "added")
  • No period at end
  • Max 50 characters
  • Lowercase

Body (optional):

  • Explain what and why
  • Wrap at 72 characters

Footer (optional):

  • Closes #123
  • BREAKING CHANGE: description

Output

Present message for approval before committing.

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 · 84 lines · 24 tokens per session scan A 6b19f6f33bb3

Subscribe to this mod's changes

commit-changes is a skill published in the GitHub repository anilcancakir/claude-code-plugins (6 stars, last pushed 7mo ago), licensed MIT. It adds 24 tokens to every session and 441 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.

Related

Other skills, from other repositories