
Safehouse Worktrees
- 30 installs
- 70 repo stars
- Updated July 12, 2026
- kucherenko/gangsta
Helps with ai & agent building tasks.
About
safehouse-worktrees is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- safehouse-worktrees
- AI & Agent Building
- AI-coding skill
Safehouse Worktrees by the numbers
- 30 all-time installs (skills.sh)
- +3 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #9,305 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/kucherenko/gangsta --skill safehouse-worktreesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 30 |
|---|---|
| repo stars | ★ 70 |
| Last updated | July 12, 2026 |
| Repository | kucherenko/gangsta ↗ |
What it does
Helps with ai & agent building tasks.
Files
The Safehouse: Git Worktrees
Overview
Git worktrees create isolated operational bases sharing the same repository. Work on multiple branches simultaneously without compromising the main workspace.
Core principle: Systematic directory selection + safety verification = reliable isolation.
Announce at start: "Setting up a safehouse for isolated operations."
Directory Selection Process
Follow this priority order:
1. Check Existing Safehouses
# Check in priority order
ls -d .worktrees 2>/dev/null # Preferred (hidden)
ls -d worktrees 2>/dev/null # AlternativeIf found: Use that directory. If both exist, .worktrees/ wins.
2. Check Project Config
grep -i "worktree.*director" AGENTS.md 2>/dev/nullIf preference specified: Use it without asking.
3. Ask the Don
If no directory exists and no config preference:
No safehouse directory found. Where should I set up?
1. .worktrees/ (project-local, hidden)
2. ~/.config/gangsta/worktrees/<project-name>/ (global location)
Which would you prefer?Safety Verification
For Project-Local Directories (.worktrees or worktrees)
MUST verify directory is gitignored before creating safehouse:
# Check if directory is ignored (respects local, global, and system gitignore)
git check-ignore -q .worktrees 2>/dev/null || git check-ignore -q worktrees 2>/dev/nullIf NOT ignored: 1. Add appropriate line to .gitignore 2. Commit the change immediately 3. Proceed with safehouse creation
Why critical: Prevents accidentally committing safehouse contents to repository.
For Global Directory (~/.config/gangsta/worktrees)
No .gitignore verification needed — outside project entirely.
Creation Steps
1. Detect Project Name
project=$(basename "$(git rev-parse --show-toplevel)")2. Create Safehouse
# Determine full path
case $LOCATION in
.worktrees|worktrees)
path="$LOCATION/$BRANCH_NAME"
;;
~/.config/gangsta/worktrees/*)
path="~/.config/gangsta/worktrees/$project/$BRANCH_NAME"
;;
esac
# Create worktree with new branch
git worktree add "$path" -b "$BRANCH_NAME"
cd "$path"3. Run Project Setup
Supply chain note: Package manager installs fetch untrusted third-party code. Where a lockfile exists, prefer lockfile-bound installs (npm ciovernpm install,pip installwith hash checking, etc.) to reduce supply chain risk.
Auto-detect and run appropriate setup:
# Node.js
if [ -f package.json ]; then npm install; fi
# Rust
if [ -f Cargo.toml ]; then cargo build; fi
# Python
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f pyproject.toml ]; then poetry install; fi
# Go
if [ -f go.mod ]; then go mod download; fi4. Verify Clean Baseline
Run tests to ensure safehouse starts clean:
# Use project-appropriate command
npm test / cargo test / pytest / go test ./...If tests fail: Report failures, ask the Don whether to proceed or investigate.
If tests pass: Report ready.
5. Report Location
Safehouse ready at <full-path>
Tests passing (<N> tests, 0 failures)
Ready for operations.Quick Reference
| Situation | Action |
|---|---|
.worktrees/ exists | Use it (verify ignored) |
worktrees/ exists | Use it (verify ignored) |
| Both exist | Use .worktrees/ |
| Neither exists | Check AGENTS.md → Ask the Don |
| Directory not ignored | Add to .gitignore + commit |
| Tests fail during baseline | Report failures + ask the Don |
| No package.json/Cargo.toml | Skip dependency install |
Common Mistakes
Skipping ignore verification
- Problem: Safehouse contents get tracked, pollute git status
- Fix: Always use
git check-ignorebefore creating project-local safehouse
Assuming directory location
- Problem: Creates inconsistency, violates project conventions
- Fix: Follow priority: existing > config > ask
Proceeding with failing tests
- Problem: Can't distinguish new bugs from pre-existing issues
- Fix: Report failures, get explicit permission from the Don
Hardcoding setup commands
- Problem: Breaks on projects using different tools
- Fix: Auto-detect from project files
Red Flags
Never:
- Create safehouse without verifying it's ignored (project-local)
- Skip baseline test verification
- Proceed with failing tests without asking the Don
- Assume directory location when ambiguous
Always:
- Follow directory priority: existing > config > ask
- Verify directory is ignored for project-local
- Auto-detect and run project setup
- Verify clean test baseline
Integration
Called by:
- Resource Development — When isolation is needed for implementation
- Any skill needing an isolated workspace
Pairs with:
- gangsta:exit-strategy — Cleans up the safehouse when the operation is complete
Omerta Compliance
- [ ] Rule of Availability: Safehouse location reported and checkpointed
- [ ] Rule of Truth: Baseline test results are actual output, not claims