git-workflow

git-workflow is a skill for Claude Code, Codex from jamestorrevillas/dev-skills. It costs 78 tokens per session (1,094 once invoked), scanned A, original, MIT.

A guide to Git and version-control practices, including Conventional Commits, pull requests, branches, changelogs, releases, and code reviews.

In plain words
What is it for?
Use it to write commits, PR descriptions, reviews, branching plans, changelogs, release notes, and other Git-related documentation.
Why use it?
It makes repository history and collaboration more consistent, while giving automated tools the structured commit information they need.

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

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for git-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/jamestorrevillas/dev-skills/git-workflow.svg)](https://agentmods.dev/skills/jamestorrevillas/dev-skills/git-workflow)
Your own site
<a href="https://agentmods.dev/skills/jamestorrevillas/dev-skills/git-workflow"><img src="https://agentmods.dev/badge/skills/jamestorrevillas/dev-skills/git-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,094 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.00078 $0.01094
Opus 5 $0.00039 $0.00547
Sonnet 5 $0.00016 $0.00219
Haiku 4.5 $0.00008 $0.00109

Measured 3d ago against content hash 36db06b32a5a, 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 3d 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.

.github/skills/git-workflow/SKILL.md · 171 lines

How it starts

The opening of the file, as written. The whole thing — 171 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Git Workflow

Commit Message Convention

Follow the Conventional Commits specification. This enables automated versioning, changelogs, and semantic releases.

Format

type(scope): short description

[optional body — explain the WHY, not the WHAT]

[optional footer — breaking changes, issue refs]

Types

Type When to Use
feat New feature
fix Bug fix
refactor Code change that neither fixes a bug nor adds a feature
perf Performance improvement
test Adding or updating tests
docs Documentation only
chore Build process, dependency updates, tooling
ci CI/CD configuration changes
style Formatting, whitespace (no logic change)
revert Reverting a previous commit

Examples

feat(auth): add OAuth2 login with Google

fix(api): handle null response from payment gateway

refactor(db): extract query builder into separate module

docs(readme): update local setup instructions

chore(deps): upgrade dependencies to latest versions

Rules

  • Subject line: max 72 characters, imperative mood ("add" not "added")
  • Body: explain WHY the change was made, not what (the diff shows what)
  • Reference issue/ticket IDs in footer: Closes #123 or Refs US-2111704
  • If AI-assisted, note it: Co-authored-by: GitHub Copilot

PR Description Template

Every PR should answer three questions:

## What
Brief summary of what changed.

## Why
The business or technical reason for this change.

## How
Key implementation decisions or approach taken.

## Testing
How was this verified? (unit tests, manual testing, E2E)

## Checklist
- [ ] Tests added/updated
- [ ] No new security vulnerabilities introduced
- [ ] Documentation updated if needed
- [ ] No breaking changes (or documented if there are)

Branching Strategy

GitHub Flow (Recommended for most teams)

main
└── feature/US-1234-short-description
└── fix/bug-short-description
└── chore/update-dependencies
  • Branch from main, merge back to main via PR
  • Deploy from main continuously

Read the full file on GitHub · 171 lines

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. 3d ago First seen · 171 lines · 0 tokens per session scan A 36db06b32a5a

Subscribe to this mod's changes

git-workflow is a skill published in the GitHub repository jamestorrevillas/dev-skills (3 stars, last pushed 5mo ago), licensed MIT. It adds 78 tokens to every session and 1,094 once invoked, about $0.0004 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.