committing

committing is a skill for Claude Code, Codex from AvinashP/AgentsAtlas. It costs 24 tokens per session (879 once invoked), scanned A, original, MIT.

A guide to organizing optimization research code into packages, scripts, configuration files, and result folders. It also explains how to register algorithms and problems, control random seeds, and save results safely.

In plain words
What is it for?
Use it to build repeatable studies with many algorithms, problem instances, parameter settings, and runs across different computers.
Why use it?
It reduces the risk of losing track of which code, settings, or random seed produced an experiment's result.

Skill for Claude CodeCodex

Part of the agents-atlas plugin — 24 skills 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/avinashp/agentsatlas/committing
Any agent
npx skills add AvinashP/AgentsAtlas --skill committing
Clone the repo
git clone --depth 1 https://github.com/AvinashP/AgentsAtlas

Made for: Claude Code, Codex.

Or install agents-atlas, the plugin that ships this one along with the rest of its 24 skills.

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 committing

README.md
[![agentmods](https://agentmods.dev/badge/skills/avinashp/agentsatlas/committing.svg)](https://agentmods.dev/skills/avinashp/agentsatlas/committing)
Your own site
<a href="https://agentmods.dev/skills/avinashp/agentsatlas/committing"><img src="https://agentmods.dev/badge/skills/avinashp/agentsatlas/committing.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 879 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.00879
Opus 5 $0.00012 $0.00439
Sonnet 5 $0.00005 $0.00176
Haiku 4.5 $0.00002 $0.00088

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

Security

Grade A, and why

committing 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 3d 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/committing/SKILL.md · 173 lines

How it starts

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

Committing Skill

Create meaningful, conventional commits that tell the story of your changes.

Workflow

1. Analyze Staged Changes

# See what's staged
git diff --staged --stat

# See detailed changes
git diff --staged

Understand the changes:

  • What files changed?
  • What's the nature of the change?
  • Is this one logical change or multiple?

2. Determine Commit Type

Type When to Use
feat New feature for users
fix Bug fix for users
docs Documentation only
style Formatting, no code change
refactor Code change, no feature/fix
perf Performance improvement
test Adding/updating tests
build Build system, dependencies
ci CI configuration
chore Maintenance, tooling

3. Extract Scope (Optional)

Scope identifies the area of the codebase:

feat(auth): add password reset flow
fix(api): handle null response
refactor(cart): extract price calculation

Common scopes:

  • Component/module name: auth, cart, user
  • Layer: api, ui, db
  • Feature area: checkout, search, settings

4. Write the Message

Format:

<type>(<scope>): <description>

[optional body]

[optional footer]

Description rules:

  • Imperative mood: "add" not "added" or "adds"
  • Lowercase first letter
  • No period at end
  • Max 50 characters for subject line
  • Explain what and why, not how

5. Verify and Commit

# One more look
git diff --staged

# Commit
git commit -m "type(scope): description"

# Or with body
git commit -m "type(scope): description

More detailed explanation if needed.
Explain why this change was made."

Quick Reference

Good Commit Messages

feat(auth): add two-factor authentication

fix(api): prevent null pointer on empty response

refactor(user): extract validation to separate module

docs(readme): add installation instructions

test(cart): add edge cases for discount calculation

chore(deps): upgrade react to 18.2

Read the full file on GitHub · 173 lines

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. 3d ago First seen · 173 lines · 24 tokens per session scan A f247602ef46b

Subscribe to this mod's changes

committing is a skill published in the GitHub repository AvinashP/AgentsAtlas (7 stars, last pushed 3mo ago), licensed MIT. It adds 24 tokens to every session and 879 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

validate-changes

Evaluate staged changes using LLM-as-a-Judge before committing.

FlorianBruniaux/claude-code-plugins · 16 tokens

git-workflow

Git conventions and workflow guidelines using Conventional Commits, branching strategies, and best practices for version control.

shahidshabbir-se/my-pi-setup · 23 tokens

commit-archaeologist

Reconstructs why code exists from local git history, including the introducing commit, later changes, current authors, repeated companion files, and likely intent. Use when the user asks "why does this code exist", "who wrote this function and why", or to "explain the history of this function" before a rewrite…

Shubhamsaboo/awesome-llm-apps · 82 tokens

pr-draft-summary

Create the required PR-ready summary block, branch suggestion, title, and draft description for openai-agents-python. Use before the final response whenever the current task changed runtime code, tests, examples, build/test configuration, or docs with behavior impact, regardless of perceived change size and including…

openai/openai-agents-python · 114 tokens

commit-context

Trace a file, function, or line back to the agent session that produced its current commit. Use when the user asks "why is this code here", "what was the agent doing when this changed", "who wrote this", or wants context on a specific location in the codebase.

rohitg00/agentmemory · 61 tokens

commit-history

List recent git commits linked to agent sessions, optionally filtered by branch or repo. Use when the user asks "show agent commits", "what has the agent shipped", "list linked commits", or wants commits with their session context.

rohitg00/agentmemory · 49 tokens