worktree-lifecycle

worktree-lifecycle is a skill for Claude Code, Codex from MadAppGang/claude-code. It costs 34 tokens per session (3,715 once invoked), scanned D, original, MIT.

A procedure for creating, using, and cleaning up Git worktrees, which are separate working directories linked to the same repository.

In plain words
What is it for?
It helps start isolated feature work, test risky changes, support parallel agent tasks, and preserve work across sessions.
Why use it?
It keeps feature or experimental changes isolated from current work and adds checks for branch conflicts, setup problems, and unsafe cleanup.

Skill for Claude CodeCodex

Part of the dev plugin — 47 skills, 12 commands, 14 agents 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/madappgang/claude-code/worktree-lifecycle
Any agent
npx skills add MadAppGang/claude-code --skill worktree-lifecycle
Clone the repo
git clone --depth 1 https://github.com/MadAppGang/claude-code

Made for: Claude Code, Codex.

Or install dev, the plugin that ships this one along with the rest of its 47 skills, 12 commands, 14 agents.

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 worktree-lifecycle

README.md
[![agentmods](https://agentmods.dev/badge/skills/madappgang/claude-code/worktree-lifecycle.svg)](https://agentmods.dev/skills/madappgang/claude-code/worktree-lifecycle)
Your own site
<a href="https://agentmods.dev/skills/madappgang/claude-code/worktree-lifecycle"><img src="https://agentmods.dev/badge/skills/madappgang/claude-code/worktree-lifecycle.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,715 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 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.00034 $0.03715
Opus 5 $0.00017 $0.01858
Sonnet 5 $0.00007 $0.00743
Haiku 4.5 $0.00003 $0.00371

Measured yesterday against content hash ec1f9f7502f4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade D, and why

worktree-lifecycle scanned grade D with 2 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 yesterday.

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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

cat > "$HOME/.claude/.statusline-worktree-${SESSION_ID}" <<MARKER_EOF

Recursive force deletehighDestructive command

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

- [ ] Manually deleting worktree with `rm -rf` (use `git worktree remove`)
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

plugins/dev/skills/discipline/worktree-lifecycle/SKILL.md · 458 lines

How it starts

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

Worktree Lifecycle

Purpose: Manage git worktrees for isolated feature work with safety checks, multi-stack setup, and clean lifecycle management.

When to Use

This skill applies whenever you:

  • Start a new feature that requires isolated workspace
  • Execute risky or experimental changes
  • Need to keep current work untouched while testing alternatives
  • Coordinate parallel agent work (each agent in separate worktree)
  • Follow an implementation plan requiring clean environment
  • Preserve long-running feature work across sessions

Trigger keywords: experiment, prototype, risky, breaking, parallel, isolate, worktree, workspace

Red Flags (Anti-Patterns)

  • Creating worktree without checking if branch already exists
  • Creating worktree without checking if directory path is available
  • Forgetting to add worktree directory to .gitignore
  • Manually deleting worktree with rm -rf (use git worktree remove)
  • Removing worktree with uncommitted changes without user confirmation
  • Using same branch in multiple worktrees simultaneously
  • Working in worktree after returning to main directory (stale CWD)
  • Not storing original CWD before entering worktree
  • Skipping dependency installation in new worktree
  • Not running baseline tests before starting work

6-Phase Lifecycle

Phase 1: Pre-flight Checks

Purpose: Verify all prerequisites before creating anything.

Required checks (all must pass):

# 1. Verify git repository
git rev-parse --git-dir &>/dev/null
if [ $? -ne 0 ]; then
  ERROR: "Not a git repository"
  RECOVERY: Abort with clear error message
fi

# 2. Detect detached HEAD state
if ! git symbolic-ref HEAD &>/dev/null; then
  WARNING: "Currently in detached HEAD state"
  RECOVERY: Ask user if they want to create branch from current commit
fi

# 3. Check if branch already in a worktree
if git worktree list | grep -q "$BRANCH"; then
  ERROR: "Branch $BRANCH already checked out in a worktree"
  RECOVERY: Ask user - reuse existing, rename branch, or cancel
fi

# 4. Check if branch exists (but not in worktree)
if git branch --list "$BRANCH" | grep -q .; then
  WARNING: "Branch $BRANCH already exists"
  RECOVERY: Ask user - use existing branch or create new with different name
fi

# 5. Check if target path is available
# IMPORTANT: Create directory first before checking (git check-ignore needs path to exist)
mkdir -p "$WORKTREE_DIR"
if [ -d "$WORKTREE_PATH" ]; then
  ERROR: "Directory $WORKTREE_PATH already exists"
  RECOVERY: Ask user - choose different path or remove existing
fi

Read the full file on GitHub · 458 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. yesterday First seen · 458 lines · 34 tokens per session scan D ec1f9f7502f4

Subscribe to this mod's changes

worktree-lifecycle is a skill published in the GitHub repository MadAppGang/claude-code (279 stars, last pushed 5mo ago), licensed MIT. It adds 34 tokens to every session and 3,715 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 2 findings (reads agent configuration directories, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

worktree-agent

Mandatory rules for agents in git worktree isolation.

notque/vexjoy-agent · 14 tokens

cis-aws-compute-2.11

Ensure instances stopped for over 90 days are removed.

CyberStrikeus/CyberStrike · 20 tokens

git-worktree

Manage isolated Git worktrees under one repository convention root. Create a new-branch worktree, list trees, remove an owned tree, or show prune candidates after authorization. Before any git worktree add, ensure the repo .gitignore excludes the convention root, appending the planned line when it is missing. Use for…

bahayonghang/my-ai-cli-toolkit · 135 tokens

using-git-worktrees

Isolates each task in its own git worktree off main.

andreaswasita/copilot-agents-dojo · 20 tokens

spawnpoint

This skill should be used when an agent needs to create, list, extend, or remove multi-repo git worktree workspaces using the spawnpoint CLI (binary spawnpoint, shell wrapper sp). Use it when a task involves spinning up isolated worktrees for a feature branch across one or more repos, finding existing workspaces…

mihirgupta0900/spawnpoint · 118 tokens

repository-manager-development-lifecycle

The default entrypoint for one unit of work — plan, start, work with a live heartbeat, check, submit, watch status, and abort — composed entirely from the repository-manager MCP/CLI surface (rmlane, rmworktree, rmmergequeue, and rmconcepts). It never opens a raw shell, runs a direct compiler, hand-merges, or writes an…

Knuckles-Team/repository-manager · 176 tokens