commit-agent-csk

commit-agent-csk is an agent for coding agents from byerlikaya/claude-starter-kit. It costs 42 tokens per session (883 once invoked), scanned A, original, MIT.

A helper for writing Git commit messages, which describe grouped changes in a code repository. It reads the staged changes—the files selected for the next commit—and suggests a standard Conventional Commits message.

In plain words
What is it for?
Use it when preparing commits, choosing labels such as feature or bug fix, explaining why a change was made, or marking breaking changes.
Why use it?
It helps keep commit history clear and consistent, while avoiding messages that hide the reason for a change. It also identifies when a mixed set of changes should be split.

Agent

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 agents/byerlikaya/claude-starter-kit/commit-agent-csk
Clone the repo
git clone --depth 1 https://github.com/byerlikaya/claude-starter-kit

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-agent-csk

README.md
[![agentmods](https://agentmods.dev/badge/agents/byerlikaya/claude-starter-kit/commit-agent-csk.svg)](https://agentmods.dev/agents/byerlikaya/claude-starter-kit/commit-agent-csk)
Your own site
<a href="https://agentmods.dev/agents/byerlikaya/claude-starter-kit/commit-agent-csk"><img src="https://agentmods.dev/badge/agents/byerlikaya/claude-starter-kit/commit-agent-csk.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 883 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.00042 $0.00883
Opus 5 $0.00021 $0.00441
Sonnet 5 $0.00008 $0.00177
Haiku 4.5 $0.00004 $0.00088

Measured 4d ago against content hash 1664a468cc34, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

commit-agent-csk 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 4d ago.

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.

claude-starter/agents/commit-agent-csk.md · 63 lines

How it starts

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

Commit Agent

Trigger phrases: "commit message", "make a commit", "write a commit", "git commit", "commit the changes", "commit this", "commit what", "working tree"

Read-only + git. The "how" lives in the commit-message skill; this agent triggers it at work closure.

Expertise stance (release engineer)

  • Atomic: one logical change = one commit; split a mixed diff.
  • Message is "what + why"; context for the git-blame reader goes in the body.
  • Pick the correct Conventional type (feat/fix/refactor/perf…), with an accurate scope.
  • Make breaking changes visible with BREAKING CHANGE:.

When

When a task/subtask closes with DoD met (the last step before commit).

How (applies the commit-message skill)

  1. Read git diff --staged (if empty, git status + ask the user with explicit options about scope).
  2. Classify the change → type(scope): summary (English, ≤72, no trailing period).
  3. If justification is needed, add the WHY to the body; if breaking, a BREAKING CHANGE: footer.
  4. Mixed diff → split into atomic commits, proposing a separate message for each.
  5. Version/tag work (tag · CHANGELOG) → applies the release skill (SemVer).

Constraints

  • Does NOT modify source code.
  • No silent commits; even in auto/fast mode present the message FIRST, wait for approval (the user prefers to proceed manually).
  • If DoD is not green, does not propose a commit — warns instead.

Output & context (token)

To the main thread: the proposed single-line commit subject (+ a short body if needed). Do NOT return the diff again.

Errors/escalation

On a mixed/non-atomic diff, propose a split; do not call git add/commit before approval (§4.4).

Example delegation

  • ✅ Proposing a commit message from the staged diff
  • ❌ Push/commit without approval (prohibited, §4.4)

Read the full file on GitHub · 63 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. 4d ago First seen · 63 lines · 42 tokens per session scan A 1664a468cc34

Subscribe to this mod's changes

commit-agent-csk is an agent published in the GitHub repository byerlikaya/claude-starter-kit (22 stars, last pushed 3d ago), licensed MIT. It adds 42 tokens to every session and 883 once invoked, about $0.0002 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-30.

Related

Other agents, from other repositories

code-reviewer

Use proactively after completing code changes, or when the user asks for a code review. Reviews diffs against the base branch for correctness, test quality, conventions, duplication, security, and simplicity. Returns structured findings.

rootstrap/rails_api_base · 47 tokens

agent-evolve

다른 서브에이전트를 실제로 써본 후 피드백을 받아 해당 agents/.md를 자동 개선하는 메타 에이전트. 에이전트가 틀렸거나, 결과가 부실하거나, description이 실제 동작과 안 맞을 때, 또는 새로 배운 함정을 기록할 때 호출.

LeeYudok/agents-scaffold · 77 tokens

sdd-researcher

Read-only codebase explorer for Spec-Driven Development. Use BEFORE implementation to gather facts about existing modules, functions, types, endpoints, and patterns relevant to a task. Returns a structured findings report with file:line citations. NEVER edits files. Stack-agnostic.

chohra-med/expo_boilerplate · 60 tokens

sdd-tester

Runs the project's verification suite (type-check, lint, tests) and reports pass/fail with concrete failures. Use AFTER the implementer finishes a task and BEFORE the verifier. Read-only on source. Stack-agnostic — reads the commands from .memory/30-tech.md.

chohra-med/expo_boilerplate · 61 tokens

plan

Read-only analysis and planning agent. Investigates code, creates structured implementation plans, identifies risks. Cannot modify files.

rretsiem/opencode-hive · 23 tokens

python-pro

Expert Python 3.12+ developer with mastery of uv, ruff, Pydantic v2, and modern typing. Framework-agnostic.

rretsiem/opencode-hive · 31 tokens