git-workflow

git-workflow is a skill for Claude Code, Codex from microsoft/Generative-AI-for-beginners-dotnet. It costs 16 tokens per session (1,557 once invoked), scanned C, a copy of git-workflow, MIT.

A Git workflow for Squad, a project that uses separate branches for released code, integration work, and early previews.

In plain words
What is it for?
Use it to create an issue branch from dev, mark the issue in progress, open a draft pull request, test and commit changes, then publish preview or released packages through the appropriate branch.
Why use it?
It explains where new work starts, how issue branches must be named, and where pull requests should go. This reduces mistakes when sharing changes with the team.

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/microsoft/generative-ai-for-beginners-dotnet/git-workflow
Any agent
npx skills add microsoft/Generative-AI-for-beginners-dotnet --skill git-workflow
Clone the repo
git clone --depth 1 https://github.com/microsoft/Generative-AI-for-beginners-dotnet

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/microsoft/generative-ai-for-beginners-dotnet/git-workflow.svg)](https://agentmods.dev/skills/microsoft/generative-ai-for-beginners-dotnet/git-workflow)
Your own site
<a href="https://agentmods.dev/skills/microsoft/generative-ai-for-beginners-dotnet/git-workflow"><img src="https://agentmods.dev/badge/skills/microsoft/generative-ai-for-beginners-dotnet/git-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,557 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00016 $0.01557
Opus 5 $0.00008 $0.00779
Sonnet 5 $0.00003 $0.00311
Haiku 4.5 $0.00002 $0.00156

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

Security

Grade C, and why

git-workflow scanned grade C with 1 finding 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

If a worktree was deleted manually (rm -rf), `git worktree prune` recovers the state.
Origin

This is a copy

100% identical to git-workflow — 3 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

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

How it starts

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

Context

Squad uses a three-branch model. All feature work starts from dev, not main.

Branch Purpose Publishes
main Released, tagged, in-npm code only npm publish on tag
dev Integration branch — all feature work lands here npm publish --tag preview on merge
insiders Early-access channel — synced from dev npm publish --tag insiders on sync

Branch Naming Convention

Issue branches MUST use: squad/{issue-number}-{kebab-case-slug}

Examples:

  • squad/195-fix-version-stamp-bug
  • squad/42-add-profile-api

Workflow for Issue Work

  1. Branch from dev:

    git checkout dev
    git pull origin dev
    git checkout -b squad/{issue-number}-{slug}
    
  2. Mark issue in-progress:

    gh issue edit {number} --add-label "status:in-progress"
    
  3. Create draft PR targeting dev:

    gh pr create --base dev --title "{description}" --body "Closes #{issue-number}" --draft
    
  4. Do the work. Make changes, write tests, commit with issue reference.

  5. Push and mark ready:

    git push -u origin squad/{issue-number}-{slug}
    gh pr ready
    
  6. After merge to dev:

    git checkout dev
    git pull origin dev
    git branch -d squad/{issue-number}-{slug}
    git push origin --delete squad/{issue-number}-{slug}
    

Parallel Multi-Issue Work (Worktrees)

When the coordinator routes multiple issues simultaneously (e.g., "fix bugs X, Y, and Z"), use git worktree to give each agent an isolated working directory. No filesystem collisions, no branch-switching overhead.

When to Use Worktrees vs Sequential

Scenario Strategy
Single issue Standard workflow above — no worktree needed
2+ simultaneous issues in same repo Worktrees — one per issue
Work spanning multiple repos Separate clones as siblings (see Multi-Repo below)

Setup

From the main clone (must be on dev or any branch):

Read the full file on GitHub · 205 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 · 205 lines · 16 tokens per session scan C 0591afc3b9be

Subscribe to this mod's changes

git-workflow is a skill published in the GitHub repository microsoft/Generative-AI-for-beginners-dotnet (3,046 stars, last pushed 3d ago), licensed MIT. It adds 16 tokens to every session and 1,557 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 100% identical to git-workflow, differing in 3 lines, and is treated as a copy.

Related

Other skills, from other repositories

tidy-skill

Keep local AI agent environments clean, explainable, and recoverable. Use for repo artifact governance, workspace cache audits, WSL2/Docker hygiene, package and model cache mapping, C-drive growth diagnosis, and safe cleanup boundaries. Prevent throwaway Markdown files, audit local development environment sprawl, and…

Phoenix0531-sudo/tidy-skill · 82 tokens

terminal-management

Teaches AI agents to properly manage VS Code terminal lifecycle — always use background terminals and kill them after commands complete. Prevents zombie terminal accumulation in GitHub Codespaces and VS Code.

nirholas/auto-kill-terminal · 0 tokens

azure-ml-model-evaluation

Evaluate generative AI applications and models locally or in the cloud using Azure AI Evaluation SDK. Measure quality, safety, and performance with built-in and custom evaluators.

kimtth/azure-ml-finetuning-eval-skills · 40 tokens

azure-ml-dataset-creator

Generate synthetic and simulated datasets for evaluation and fine-tuning using Azure AI Foundry simulators. Create non-adversarial task data, adversarial safety data, and conversation datasets without manual data collection.

kimtth/azure-ml-finetuning-eval-skills · 48 tokens

azure-ml-llm-trainer

Train or fine-tune LLMs on Azure ML managed compute with TRL trainers. Uses direct trainer loops (SFT, DPO, RL) without relying on serverless APIs or Hugging Face infrastructure.

kimtth/azure-ml-finetuning-eval-skills · 52 tokens

academic-research

Research project scaffolding, thesis/dissertation writing, literature reviews, publication workflows, and Alex-assisted academic workflows.

fabioc-aloha/Alex_Plug_In · 25 tokens