commit-push

A command workflow that checks the current code, commits the changes, and pushes the commit to the remote Git repository. Git is a system for tracking code changes and sharing them with others.

In plain words
What is it for?
Use it to run formatting, linting, tests, and coverage checks, then stage all changes, create a descriptive commit, and push it. It can use a commit message supplied by the user.
Why use it?
It makes code-quality checks a required checkpoint before changes are published. If formatting, linting, tests, or coverage checks fail, the workflow requires fixing them first.

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/ianphil/promptbin/commit-push
Clone the repo
git clone --depth 1 https://github.com/ianphil/promptbin

Made for: Claude Code.

Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 306 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.00009 $0.00306
Opus 5 $0.00005 $0.00153
Sonnet 5 $0.00002 $0.00061
Haiku 4.5 $0.00001 $0.00031

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

Security

Grade A, and why

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

.claude/commands/commit-push.md · 29 lines

What it actually says

Commit and Push

Context

  • Current status: !git status --porcelain
  • Current branch: !git branch --show-current

Task

  1. Code Quality Checks: Run code quality tools and fix any issues
    • make format - Format code with black
    • make format-check - Verify formatting is correct
    • make lint - Run flake8 linting
    • make test - Run tests
    • make test-cov - Run Test coverage
    • If any step fails, fix the issues and re-run until all checks pass
  2. Stage changes: git add . (stage all changes including any formatting fixes)
  3. Commit: If commit message provided in $ARGUMENTS, use it. Otherwise, create a short descriptive commit message based on the changes shown above.
  4. Commit: git commit -m "message"
  5. Push: git push

Important: Do not proceed with commit/push if any code quality checks fail. Fix all issues first.

Tell me what you committed and pushed, including any formatting/linting fixes that were applied.

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 · 29 lines · 9 tokens per session scan A 1efc25819768

Subscribe to this mod's changes

commit-push is a command published in the GitHub repository ianphil/promptbin (0 stars, last pushed 7mo ago), licensed MIT. It adds 9 tokens to every session and 306 once invoked, about $0.0000 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.