commit-push

A guided process for committing reviewed code and pushing it to a feature branch. It uses Conventional Commits, a shared format for commit messages, and checks that secrets are not included.

In plain words
What is it for?
Use it after self-review to check the branch and diff, scan for secrets, stage selected files, create a correctly formatted commit, and push the branch when the user has approved it.
Why use it?
It prevents accidental commits to the main branch, blind staging of files, and exposure of credentials. It also ensures changes have passed the required review and testing steps.

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/justomsharma/github-resume-assistant/commit-push
Any agent
npx skills add justomsharma/github-resume-assistant --skill commit-push
Clone the repo
git clone --depth 1 https://github.com/justomsharma/github-resume-assistant

Made for: Claude Code, Codex.

Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 433 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.00049 $0.00433
Opus 5 $0.00024 $0.00217
Sonnet 5 $0.00010 $0.00087
Haiku 4.5 $0.00005 $0.00043

Measured yesterday against content hash 828d1b94e69f, 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/skills/commit-push/SKILL.md · 40 lines

What it actually says

commit-push

Commit and push the reviewed changes. Follow docs/GIT_WORKFLOW.md.

Gate — requires explicit user go-ahead

Do NOT run this skill (or /open-pr, /review-pr, or merge) on your own after tests pass. Committing, pushing, opening the MR/PR, and merging happen only when the user explicitly asks ("commit and push", "raise the MR", etc.). If you reached here without that explicit instruction, STOP and ask first.

Safe sequence

  1. Branch check — confirm you are NOT on main. If you are, create a branch: git checkout -b <type>/<slug> (e.g. feat/fetch-github-repos).
  2. git status and git diff — confirm what will be committed.
  3. Secret scan — one more look; abort if any key/credential is present.
  4. Stage intentionally — add the specific files you meant to change. NEVER git add -A blindly. .env must never be staged.
  5. Commit with a Conventional Commit message: type(scope): imperative summary (≤72 chars, lowercase, no trailing period). Add a body explaining why only if non-obvious.
  6. Push: git push -u origin <branch>.

Guardrails

  • One logical change per commit. Split unrelated changes.
  • Only commit when tests are green (from /test) and the diff is reviewed (from /self-review).
  • If this completes a ROADMAP.md item, note it — /open-pr will check it off.

Handoff

Once pushed → hand off to /open-pr to open the pull request.

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 · 40 lines · 49 tokens per session scan A 828d1b94e69f

Subscribe to this mod's changes

commit-push is a skill published in the GitHub repository justomsharma/github-resume-assistant (0 stars, last pushed 1mo ago), licensed MIT. It adds 49 tokens to every session and 433 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-31.

Related

Other skills, from other repositories

scrape-batch

Extract many known URLs in one polite, rate-limited pass. Use when the user hands over a list of links, a set of search hits to read in full, or asks to "scrape these pages" / "pull the content from all of them". Drives extract(action="batch"), which fans out with per-domain rate limiting and returns partial results…

n24q02m/wet-mcp · 84 tokens

recall-context

Use at session start, before significant decisions, or when a new task references a known project to recall mnemo memories matching the current working directory, recently edited files, or topic keywords. Helps maintain continuity across sessions and avoid redoing past research.

n24q02m/mnemo-mcp · 53 tokens

session-handoff

End-of-session knowledge capture — decisions, preferences, corrections, conventions, open questions.

n24q02m/mnemo-mcp · 20 tokens

octave-compression

Workflow for transforming prose into semantic OCTAVE structures. Covers tier selection, transformation phases, loss accounting, and decision rules. REQUIRES octave-literacy.

elevanaltd/octave-mcp · 36 tokens

query-superset

Run bounded SELECT queries through an Apache Superset SQL Lab connection on Windows. Use when a user wants an Agent to configure a supported Superset instance, test connectivity, inspect tables or columns, execute SELECT queries, export small results, preserve query evidence, or diagnose authentication, permission…

Bono12138/bonobox · 73 tokens

Refactoring

Guía para refactorizar código Python de forma segura y efectiva. Incluye técnicas de refactoring, detección de code smells, y mejoras.

Vasallo94/obsidian-mcp-server · 33 tokens