commit-detection

commit-detection is a skill for Claude Code, Codex from fusengine/agents. It costs 26 tokens per session (928 once invoked), scanned A, original, MIT.

A skill that examines Git changes and selects a Conventional Commit type, such as feature, fix, test, documentation, or continuous integration. Continuous integration means automatically building and testing code when changes are submitted.

In plain words
What is it for?
Use it before committing to inspect modified files, compare change statistics, identify likely fixes, and choose an appropriate commit type.
Why use it?
It reduces guesswork when naming commits and bases the choice on the files and content that changed.

Skill for Claude CodeCodex

Part of the fuse-commit-pro plugin — 4 skills, 10 commands, 1 agent 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 skills/fusengine/agents/commit-detection
Any agent
npx skills add fusengine/agents --skill commit-detection
Clone the repo
git clone --depth 1 https://github.com/fusengine/agents

Made for: Claude Code, Codex.

Or install fuse-commit-pro, the plugin that ships this one along with the rest of its 4 skills, 10 commands, 1 agent.

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-detection

README.md
[![agentmods](https://agentmods.dev/badge/skills/fusengine/agents/commit-detection.svg)](https://agentmods.dev/skills/fusengine/agents/commit-detection)
Your own site
<a href="https://agentmods.dev/skills/fusengine/agents/commit-detection"><img src="https://agentmods.dev/badge/skills/fusengine/agents/commit-detection.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 928 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.00026 $0.00928
Opus 5 $0.00013 $0.00464
Sonnet 5 $0.00005 $0.00186
Haiku 4.5 $0.00003 $0.00093

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

Security

Grade A, and why

commit-detection 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/commit-pro/skills/commit-detection/SKILL.md · 130 lines

How it starts

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

Commit Type Detection Skill

Expert knowledge for detecting the optimal conventional commit type.

Detection Algorithm

Step 1: Gather Data

# Get modified files
git diff --name-only
git diff --staged --name-only

# Get change statistics
git diff --stat
git diff --staged --stat

# Check for keywords in diff
git diff | grep -i "fix\|bug\|error" | head -5

Step 2: Categorize Files

Category File Patterns
docs *.md, *.txt, *.rst, README*, CHANGELOG*
test *.test.*, *.spec.*, __tests__/*, test/*
config *.json, *.yml, *.yaml, *.toml, .*rc
ci .github/*, .gitlab-ci.yml, Jenkinsfile
build package.json, Makefile, webpack.*, vite.*
style Only whitespace, formatting changes
src *.ts, *.js, *.py, *.go, *.rs, etc.

Step 3: Apply Rules

IF only docs files changed:
  → docs

IF only test files changed:
  → test

IF only config/build files changed:
  → chore

IF only CI files changed:
  → ci

IF diff contains "fix", "bug", "error", "issue", "resolve":
  → fix

IF new files added with business logic:
  → feat

IF files renamed/moved without logic change:
  → refactor

IF performance keywords ("optimize", "perf", "speed", "cache"):
  → perf

IF formatting only (whitespace, semicolons):
  → style

DEFAULT:
  → Use /commit-pro:commit for smart analysis

Read the full file on GitHub · 130 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 · 130 lines · 26 tokens per session scan A 6dd74db4fa3e

Subscribe to this mod's changes

commit-detection is a skill published in the GitHub repository fusengine/agents (25 stars, last pushed today), licensed MIT. It adds 26 tokens to every session and 928 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.

Related

Other skills, from other repositories