commit

A command that reviews Git changes, writes a commit message, creates the commit, and pushes it to the remote repository. Git is a version-control system used to track code changes and share them with a team.

In plain words
What is it for?
Use it after making code changes to inspect the work, stage selected files, create a concise commit, and push the current branch.
Why use it?
It reduces the steps needed to turn reviewed changes into a commit and send them to the shared repository. It also checks recent commit style and avoids committing likely secrets.

Command for Claude Code

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 commands/haraldbregu/friday/commit
Clone the repo
git clone --depth 1 https://github.com/HaraldBregu/friday

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 275 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.00000 $0.00275
Opus 5 $0.00000 $0.00138
Sonnet 5 $0.00000 $0.00055
Haiku 4.5 $0.00000 $0.00028

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

Security

Grade A, and why

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

.claude/commands/commit.md · 25 lines

What it actually says

Generate a commit message and push to remote.

Follow these steps:

  1. Run git status to see all changed files (never use -uall flag).
  2. Run git diff to see unstaged changes and git diff --cached to see staged changes.
  3. Run git log --oneline -5 to see recent commit message style.
  4. Stage all relevant changed files using git add with specific file paths (avoid git add -A unless all changes should be included).
  5. Analyze the staged changes and draft a concise commit message in imperative mood (max 72 chars for the subject line). Focus on the "why" not the "what". Match the style of recent commits.
  6. Create the commit using a HEREDOC:
    git commit -m "$(cat <<'EOF'
    Your commit message here
    EOF
    )"
    
  7. Run git push to push the commit to the remote.
  8. Confirm success to the user with the commit hash and pushed branch.

Important:

  • Never use git push --force.
  • Never skip hooks with --no-verify.
  • Do not commit files that may contain secrets (.env, credentials, etc.).
  • If there are no changes to commit, inform the user instead of creating an empty commit.
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 · 25 lines · 0 tokens per session scan A cd321eca4e13

Subscribe to this mod's changes

commit is a command published in the GitHub repository HaraldBregu/friday (10 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 275 tokens. 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.