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 skills add Xakki/ai-agents-skills --skill git-flowgit clone --depth 1 https://github.com/Xakki/ai-agents-skillsWrote 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.
[](https://agentmods.dev/skills/xakki/ai-agents-skills/git-flow)<a href="https://agentmods.dev/skills/xakki/ai-agents-skills/git-flow"><img src="https://agentmods.dev/badge/skills/xakki/ai-agents-skills/git-flow.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00099 | $0.00985 |
| Opus 5 | $0.00049 | $0.00492 |
| Sonnet 5 | $0.00020 | $0.00197 |
| Haiku 4.5 | $0.00010 | $0.00098 |
Grade A, and why
git-flow 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 7d 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.
How it starts
The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
git-flow — shared git core
Single source of truth for how agents do git in this plugin. Other git-using skills (kanban, schedule-tasks, prepare-pr, qa-check, git-move) follow this CORE and document only their own context-specific deltas. Edge cases and longer examples → reference.md.
CORE rules
- Default = commit to the default branch. An agent commits its work
directly to the default branch; the user reviews via commit history. Create a
feature/·fix/·chore/branch only when the user explicitly asks, OR when another skill defines its own branch model (kanban does — per-tasktask/<ID>branch; schedule-tasks runs an autonomous branch+park model). - Branch naming (when branches are used):
feature/<short>,fix/<short>,chore/<short>. - Who commits. Each sub-agent / teammate commits its OWN zone's changes when
it finishes that zone. End every commit message with a footer line naming the
zone:
Agent: <zone>(e.g.Agent: backend). ThisAgent: <zone>marker is the ONLY allowed trailer — do NOT addCo-Authored-By:,Generated with …, or any other signature. Prompt and execution evidence belongs in Kanban records, never extra Git trailers. - Commit message format.
<scope>: <imperative summary>. Subject ≤72 chars, imperative mood. Body optional (may be in Russian) — include it only when it adds meaning not visible from the diff. Keep the whole message readable. - Scopes (generic default set):
api | db | infra | docs | task. Projects extend/override this list in their ownCLAUDE.md(e.g. a Go-client project may addgoclient; a browser-extension project may addext). Do NOT treat project-specific scopes as the canonical set. - Staging — explicit paths only.
git add <path> …. Nevergit add .,git add -A,git add -u, orgit commit -a. (Resume-context exception → schedule-tasks documents it.) - Never force-push to the default branch. Never
git commit --no-verify. - Moving / renaming / deleting tracked files → use the
git-moveskill (git mv/git rm). Do not duplicate its mechanics. - PR. Title in English; body may be in Russian.
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.
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.
- 7d ago First seen · 55 lines · 99 tokens per session scan A c2c904eca003
git-flow is a skill published in the GitHub repository Xakki/ai-agents-skills (6 stars, last pushed 16d ago), licensed MIT. It adds 99 tokens to every session and 985 once invoked, about $0.0005 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
security-pipeline
Use when security verification is needed - pre-commit security checks, vulnerability scanning, STRIDE threat analysis. Integrates with /handoff-verify --security and /commit-push-pr. CWE Top 25 based.
github-commenting
How to post clean, rich, deduplicated GitHub PR review comments — suggestion blocks, multi-line anchors, markers, formatting rules. Load before posting or fixing any PR comment.
git-pushing
Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activates when user says "push changes", "commit and push", "push this", "push to github", or similar git workflow requests.
commit-msg
You receive a git diff of staged changes via stdin. Generate a commit message.
ag-rebobinar
Undo estruturado. Reverte N acoes do Claude com log detalhado do que foi desfeito. Vai alem de git checkout — rastreia mudancas por sessao, arquivo, e commit, com opcao de revert seletivo.
ag-versionar-codigo
Gerencia git - branches, commits semanticos, PRs, releases e changelog. Use ao final de cada fase ou feature para manter historico limpo.