commit-simple

A workflow guide for creating a branch, committing changes, and optionally pushing them to a remote code repository. It uses standard commit-message conventions and checks the current Git state first.

In plain words
What is it for?
Use it when preparing code changes for commit or push, choosing a branch name, splitting separate changes, and writing Conventional Commit messages.
Why use it?
It helps organize changes into reviewable commits and avoids committing directly to the main branch without checking first. It also keeps branch names and commit messages 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/edonadei/caliper/commit-simple
Any agent
npx skills add edonadei/caliper --skill commit-simple
Clone the repo
git clone --depth 1 https://github.com/edonadei/caliper

Made for: Claude Code, Codex.

Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 313 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.00020 $0.00313
Opus 5 $0.00010 $0.00156
Sonnet 5 $0.00004 $0.00063
Haiku 4.5 $0.00002 $0.00031

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

Security

Grade A, and why

commit-simple 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 2d 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.

skills/evaluate-skill/references/evals/commit-simple/SKILL.md · 30 lines

What it actually says

Commit

Use this skill when creating a branch, committing changes, or pushing work.

Workflow

  1. Inspect the current branch, working tree, staged changes, and diff.
  2. Propose any branch change, commit split, and Conventional Commit message(s).
  3. After confirmation, create the branch if needed and commit.
  4. Offer to push after the commit.
  5. If the user wants a pull request, suggest commit-pr as the next step.

Rules

  • If there are logically separate changes, propose separate commits and confirm the plan before committing.
  • If the current branch is main or master, ask whether to create a new branch before committing.
  • For new branches, use {type}/sc-{number}/{slug}, {type}/gh-{number}/{slug}, {type}/{number}/{slug}, or {type}/{slug}.
  • When working inside a ticket worktree folder, keep the branch aligned with the folder's ticket id.
  • Use Conventional Commits for commit messages.
  • Commit messages should describe the resulting code change, not the development process.
  • Unless the change is trivial, include a concise human-readable body that explains why the change matters and any important reviewer context.
  • Prefer concrete facts over workflow labels: name the behavior, API, module, or cleanup that changed.
  • Ask before committing or pushing.
  • Hand pull request work off to commit-pr.
Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 30 lines · 20 tokens per session scan A f27c75d902b1

Subscribe to this mod's changes

commit-simple is a skill published in the GitHub repository edonadei/caliper (50 stars, last pushed 2d ago), licensed MIT. It adds 20 tokens to every session and 313 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-30.

Related

Other skills, from other repositories

demo-reviewer

Demo skill for the Skill Eval Harness example. Use it to review a proposed change and label the severity of each finding.

adewale/skill-eval-harness · 28 tokens

agent-eval-skills

Evaluate an existing agent skill with Promptfoo-native behavior, routing, or role-play tests. Use when a skill needs executable evidence that its product promise works. Do not use to author the domain skill itself.

akshay5995/agent-skill-evals · 47 tokens

setup-skills-evals

Set up the skills-evals library in a repository — discover agent artifacts, interview the user about what to test, scaffold eval cases, and wire CI and local runners. Use when the user wants to set up skills-evals, test their agent skills, add evals for skills or custom agents, check why a skill isn't triggering, or…

ahnafyy/skills-evals · 87 tokens

bugfix-workflow

Use when the user reports a concrete bug in an existing application and asks for a code fix. Reproduce the bug, write or run a verifier that fails, change the smallest amount of code that makes the verifier pass, re-run the verifier, and explain the change. Do not use for: feature requests, code review, dependency…

akshay5995/agent-skill-evals · 91 tokens

test-driven-development

Write a failing test before implementing any fix or feature. Use when fixing bugs, adding features, or refactoring code that lacks test coverage.

ahnafyy/skills-evals · 32 tokens

commit-messages

Draft clear conventional commit messages. Use when committing changes, drafting a commit message, or reviewing git history hygiene.

ahnafyy/skills-evals · 26 tokens