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.
npx agentmods add skills/justomsharma/github-resume-assistant/commit-pushnpx skills add justomsharma/github-resume-assistant --skill commit-pushgit clone --depth 1 https://github.com/justomsharma/github-resume-assistantWhat 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.
| Model | Per session | Once 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 |
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.
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
- 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). git statusandgit diff— confirm what will be committed.- Secret scan — one more look; abort if any key/credential is present.
- Stage intentionally — add the specific files you meant to change.
NEVER
git add -Ablindly..envmust never be staged. - 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. - 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-prwill check it off.
Handoff
Once pushed → hand off to /open-pr to open the pull request.
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.
- yesterday First seen · 40 lines · 49 tokens per session scan A 828d1b94e69f
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.
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…
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.
session-handoff
End-of-session knowledge capture — decisions, preferences, corrections, conventions, open questions.
octave-compression
Workflow for transforming prose into semantic OCTAVE structures. Covers tier selection, transformation phases, loss accounting, and decision rules. REQUIRES octave-literacy.
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…
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.