git-workflow

A guide to managing Git branches and commit history safely. Git is a tool for tracking code changes; branches let you work separately before combining changes.

In plain words
What is it for?
Use it to create feature branches, choose between rebasing and merging, resolve conflicts, update branches, and recover from mistakes.
Why use it?
It reduces the risk of losing work, rewriting a teammate’s shared branch, or creating a confusing project history.

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/vikasudasi/skill-vault/git-workflow
Any agent
npx skills add vikasudasi/skill-vault --skill git-workflow
Clone the repo
git clone --depth 1 https://github.com/vikasudasi/skill-vault

Made for: Claude Code, Codex.

Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,750 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.00037 $0.01750
Opus 5 $0.00018 $0.00875
Sonnet 5 $0.00007 $0.00350
Haiku 4.5 $0.00004 $0.00175

Measured 2d ago against content hash 4fe24c2735b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/safe_rebase.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skill_vault/data/skills/git-workflow/SKILL.md · 168 lines

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.

Read the full file on GitHub · 168 lines

Files

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.

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. 2d ago First seen · 168 lines · 37 tokens per session scan A 4fe24c2735b1

Subscribe to this mod's changes

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.

Related

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.

OpenCoven/coven · 39 tokens

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.

OpenCoven/coven · 42 tokens

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…

soulcodex/agentic · 103 tokens

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.

soulcodex/agentic · 54 tokens

git-commit-helper

Writes clear, conventional-commit-style commit messages from staged git diffs, and can split unrelated changes into separate commits.

ghostship25/Skilllint · 29 tokens

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…

parisgroup-ai/imersao-ia-setup · 76 tokens