AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Using Git Worktrees

skill-aaddrick-claude-pipeline-using-git-worktrees · by aaddrick

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees in .worktrees/

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-aaddrick-claude-pipeline-using-git-worktrees

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-aaddrick-claude-pipeline-using-git-worktrees)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Using Git Worktrees? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Using Git Worktrees

Overview

Git worktrees create isolated workspaces sharing the same repository, allowing work on multiple branches simultaneously without switching.

Location: Always use .worktrees/ (per CLAUDE.md)

Announce at start: "I'm using the using-git-worktrees skill to set up an isolated workspace."

Safety Verification

Verify .worktrees/ is ignored before creating worktree:

git check-ignore -q .worktrees 2>/dev/null

If NOT ignored: Add to .gitignore and commit before proceeding.

Why critical: Prevents accidentally committing worktree contents to repository.

Creation Steps

1. Create Worktree

git worktree add .worktrees/$BRANCH_NAME -b $BRANCH_NAME $BASE_BRANCH
cd .worktrees/$BRANCH_NAME

2. Run Project Setup

Laravel:

Fresh worktrees don't have vendor/ or node_modules/. Install dependencies first:

# 1. Create bootstrap/cache (required for composer)
mkdir -p bootstrap/cache

# 2. Install PHP dependencies
composer install --no-interaction

# 3. Run Laravel setup (migrations, seeds, caches)
php artisan migrate --seed

# 4. Build frontend assets (Vite manifest required for tests)
npm install && npm run build

Why this order matters:

  • bootstrap/cache must exist before composer runs post-install scripts
  • vendor/ must exist before artisan commands work
  • Vite manifest must exist or tests using views will fail

Other projects: Auto-detect from project files:

if [ -f package.json ]; then npm install; fi
if [ -f Cargo.toml ]; then cargo build; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f pyproject.toml ]; then poetry install; fi
if [ -f go.mod ]; then go mod download; fi

3. Verify Baseline

Run tests to ensure worktree starts clean:

# Laravel
php artisan test

# Other
npm test / cargo test / pytest / go test ./...

If tests fail: Verify setup completed correctly (vendor/, node_modules/, Vite manifest all exist). Compare with main worktree to identify if failures are pre-existing.

If tests pass: Report ready.

4. Report Location

Worktree ready at 
Branch: 
Tests:  passed ( pre-existing failures if any)
Ready to implement 

Quick Reference

| Situation | Action | |-----------|--------| | Creating worktree | git worktree add .worktrees/$BRANCH -b $BRANCH $BASE | | .worktrees/ not ignored | Add to .gitignore + commit first | | Laravel project | mkdir -p bootstrap/cachecomposer installphp artisan migrate --seednpm install && npm run build | | Other projects | Auto-detect from package.json, Cargo.toml, etc. | | Tests fail during baseline | Verify setup complete (vendor/, node_modules/, Vite manifest), compare with main |

Common Mistakes

Skipping ignore verification

  • Problem: Worktree contents get tracked, pollute git status
  • Fix: Always use git check-ignore before creating worktree

Running artisan commands before composer install

  • Problem: Fresh worktrees have no vendor/ directory - artisan commands fail
  • Fix: Run composer install first, then artisan commands

Missing bootstrap/cache directory

  • Problem: Composer post-install scripts fail with "directory must be present and writable"
  • Fix: Create mkdir -p bootstrap/cache before running composer install

Skipping npm build

  • Problem: Tests that render views fail with "Vite manifest not found"
  • Fix: Run npm install && npm run build after Laravel setup

Hardcoding setup commands

  • Problem: Breaks on projects using different tools
  • Fix: Use documented sequence for Laravel, auto-detect for others

Example Workflow

You: I'm using the using-git-worktrees skill to set up an isolated workspace.

[Verify ignored: git check-ignore .worktrees - confirmed]
[Create worktree: git worktree add .worktrees/issue-123 -b issue-123-feature aw-next]
[mkdir -p bootstrap/cache]
[composer install --no-interaction]
[php artisan migrate --seed]
[npm install && npm run build]
[php artisan test - all tests passed]

Worktree ready at /home/user/project/.worktrees/issue-123
Branch: issue-123-feature
Tests: 639 passed (0 failures)
Ready to implement feature

Red Flags

Never:

  • Create worktree without verifying .worktrees/ is ignored
  • Run artisan commands before composer install in fresh worktree
  • Skip npm run build - tests will fail on missing Vite manifest

Always:

  • Use .worktrees/ directory
  • Verify directory is ignored
  • Create bootstrap/cache before composer install
  • Follow setup order: composer → artisan migrate → npm build

Integration

Called by:

  • brainstorming (Phase 4) - when design is approved
  • implement-issue - for isolated feature work

Pairs with:

  • finishing-a-development-branch - cleanup after work complete
  • subagent-driven-development - work happens in this worktree

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.