git-workflow

git-workflow is a skill for Claude Code, Codex from povvo/claudikins-kernel. It costs 54 tokens per session (3,207 once invoked), scanned A, original, MIT.

A workflow guide for breaking development plans into isolated tasks and reviewing them in controlled batches. A Git branch is a separate line of project history, and the guide uses one branch per task to keep changes apart.

In plain words
What is it for?
Use it when running the execute command, dividing plans into tasks, choosing batch sizes, setting up two-stage reviews, or handling agents that get stuck or fail.
Why use it?
It prevents parallel agents from polluting one another’s work, encourages manageable batches, and adds human checkpoints before changes are combined.

Skill for Claude CodeCodex

Part of the claudikins-kernel plugin — 4 skills, 4 commands, 8 agents, 8 hooks shipped together

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

Made for: Claude Code, Codex.

Or install claudikins-kernel, the plugin that ships this one along with the rest of its 4 skills, 4 commands, 8 agents, 8 hooks.

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/povvo/claudikins-kernel/git-workflow.svg)](https://agentmods.dev/skills/povvo/claudikins-kernel/git-workflow)
Your own site
<a href="https://agentmods.dev/skills/povvo/claudikins-kernel/git-workflow"><img src="https://agentmods.dev/badge/skills/povvo/claudikins-kernel/git-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,207 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.00054 $0.03207
Opus 5 $0.00027 $0.01604
Sonnet 5 $0.00011 $0.00641
Haiku 4.5 $0.00005 $0.00321

Measured 4d ago against content hash 23b70f74a15f, 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 4d 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.

skills/git-workflow/SKILL.md · 383 lines

How it starts

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

Git Workflow Methodology

When to use this skill

Use this skill when you need to:

  • Run the claudikins-kernel:execute command
  • Decompose plans into executable tasks
  • Set up two-stage code review
  • Decide batch sizes and checkpoints
  • Handle stuck agents or failed tasks

Core Philosophy

"I'd use 5-7 agents per SESSION, not 30 per batch." - Boris

Execution is about isolation, verification, and human checkpoints. Not speed.

The Six Principles

  1. One task = one branch - Isolation prevents pollution
  2. Fresh context per task - context: fork gives a clean slate
  3. Two-stage review - Spec compliance first, then code quality
  4. Human checkpoints between batches - Not between individual tasks
  5. Commands own git - Agents never checkout/merge/push
  6. Features are the unit - Batch at feature level, not task level

Batch Size Guidance (GOSPEL)

Wrong: 30 agents for 10 tasks (3 per task micro-management) Right: 5-7 agents total (feature-level batches)

Scenario Wrong Right
10 tasks, 5 features 30 micro-task agents 5-7 feature agents
Simple refactor 10 agents for tiny changes 1-2 feature agents

Default --batch 1 is correct. Features are the unit of work.

Task Decomposition

From a plan, extract tasks that are:

Quality Definition Example
Atomic Completable in one agent session "Add auth middleware" not "Build auth system"
Testable Has measurable acceptance criteria "Returns 401 for invalid token"
Independent Minimal dependencies on other tasks Can be reviewed in isolation
Right-sized Not too small (noise) or large (context death) 50-200 lines of changes

Read the full file on GitHub · 383 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. 4d ago First seen · 383 lines · 54 tokens per session scan A 23b70f74a15f

Subscribe to this mod's changes

git-workflow is a skill published in the GitHub repository povvo/claudikins-kernel (126 stars, last pushed 4mo ago), licensed MIT. It adds 54 tokens to every session and 3,207 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

task-breakdown

Group a session-metrics session's turns into higher-level SEMANTIC TASKS ("what was I actually trying to do") and render a Tasks companion page (tasks.html + tasks.md) with a worth-it / mixed / likely-waste verdict per task. Trigger when the user runs /task-breakdown, when session-metrics suggests a task breakdown…

centminmod/claude-plugins · 177 tokens

audit-session-metrics

Audit a session-metrics JSON export for token-usage waste and produce a plain-English findings report. Trigger when the user runs /audit-session-metrics, when session-metrics suggests an audit after an HTML export, or when the user asks to audit / review / find waste in a saved session-metrics JSON. Two modes: "quick"…

centminmod/claude-plugins · 147 tokens

session-metrics

Tally Claude Code session token usage and cost estimates from the raw JSONL conversation log. Trigger when the user asks about session cost, token usage, API spend, cache hit rate, input/output tokens, or wants a breakdown of how much a Claude Code session has cost. Also trigger for "how much have we spent", "show me…

centminmod/claude-plugins · 182 tokens

workflow

Professional AI programming assistant with structured workflow (Research -> Ideate -> Plan -> Execute -> Optimize -> Review) for developers.

UfoMiao/zcf · 25 tokens

golden-rss

Use when testing the rss golden build.

yusufkaraaslan/Skill_Seekers · 12 tokens

r3f-best-practices

React Three Fiber (R3F) and Poimandres ecosystem best practices. Use when writing, reviewing, or optimizing R3F code. Triggers on tasks involving @react-three/fiber, @react-three/drei, zustand, @react-three/postprocessing, @react-three/rapier, or leva.

zebbern/claude-code-guide · 74 tokens