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/vikasudasi/skill-vault/git-workflownpx skills add vikasudasi/skill-vault --skill git-workflowgit clone --depth 1 https://github.com/vikasudasi/skill-vaultWhat 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.00037 | $0.01750 |
| Opus 5 | $0.00018 | $0.00875 |
| Sonnet 5 | $0.00007 | $0.00350 |
| Haiku 4.5 | $0.00004 | $0.00175 |
Grade A, and why
git-workflow 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.
How it starts
The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Safe Git Branch Workflow
Use when managing feature branches and keeping history clean without losing work. The whole point of the discipline is that every destructive command is recoverable and no shared branch is ever rewritten out from under a teammate.
Branch + commit flow
git switch -c feat/thing # branch off main, off a fresh main
git add -A
git commit -m "feat: add thing"
Convention this house follows (and Skill Vault's own commit log uses): commit
messages in imperative mood (add, fix, seed: ...), type: subject
format, no trailing &, and no unbalanced quotes — because a tool parses your
output. Keep the subject under ~72 chars; put detail in the body.
Rebase onto latest main (preferred over merge)
git fetch origin
git rebase origin/main
# resolve conflicts, re-add resolved files, then:
git rebase --continue
git push --force-with-lease
What rebase actually does to the graph
Before (your branch feat forked from an old main):
A---B---C feat
/
D---E---F main
After git rebase origin/main:
A'--B'--C' feat
/
D---E---F---G main <- G is origin/main's newest
Your commits are A B C re-played as new commits A' B' C' on top of the
current main tip G. They keep the same content/message but get new SHAs.
Merging instead produces a visible M merge commit and keeps the fork point —
fine for shared branches, noise for solo work. Prefer rebase for a linear,
readable history on a branch only you own.
--force-with-lease vs --force
git push --force— overwrites the remote ref unconditionally. On a shared branch this permanently deletes whatever a teammate pushed since your last fetch. There is no remote-side undo.git push --force-with-lease— only overwrites if the remote tip still matches what you last fetched. If someone pushed in between, it refuses and tells you to fetch again first.
What ships with it
2 files 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.
- 2d ago First seen · 168 lines · 37 tokens per session scan A 4fe24c2735b1
git-workflow is a skill published in the GitHub repository vikasudasi/skill-vault (0 stars, last pushed 17d ago), licensed Apache-2.0. It adds 37 tokens to every session and 1,750 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
codeflow-maintainer
OpenClaw-only maintainer PR workflow modes and skills. For OpenCoven/coven PR creation, redirect to skills/pr-agent, the Coven PR Readiness Agent.
openclaw-dev
OpenClaw Dev Agent — OpenClaw-only docs-aware development assistant. For OpenCoven/coven PR creation, redirect to skills/pr-agent, the Coven PR Readiness Agent.
git-flow-pr
Executes the full PR-driven development workflow: create an isolated feature branch from the current work, commit all staged changes, rebase cleanly onto the selected base branch (skipping any ancestor commits already merged), push the branch, and open a GitHub pull request linked to a related issue. Includes guidance…
new-gh-issue-orchestration
Orchestrates a GitHub-issue-driven delivery workflow from issue intake to PR creation using reviewer-first then worker execution. Invoked when the user provides a GitHub issue link/number and asks to start end-to-end delivery.
git-commit-helper
Writes clear, conventional-commit-style commit messages from staged git diffs, and can split unrelated changes into separate commits.
github-design
Use when setting up GitHub repositories, workflows, issue templates, or project organization - enforces best practices for .github folder structure, reusable workflows, branch protection, CODEOWNERS, labels, and GitHub Projects. Triggers on: GitHub, repository setup, workflow, Actions, issue template, PR template…