isolate

Create and manage isolated Git worktrees with automated bootstrap and test workflows.

Updated Jan 2, 2026
One-click install
npx skills add https://github.com/SAZO-KR/sazo-toolkit --skill isolate
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: isolate
Source: https://github.com/SAZO-KR/sazo-toolkit/tree/main/packages/ai-harness/skills/isolate
Command: npx skills add https://github.com/SAZO-KR/sazo-toolkit --skill isolate

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Isolated workspaces remove the risk of contaminating the main repository when developing features or experimenting with risky changes.

Core Features & Use Cases

  • Create and manage isolated Git worktrees for feature development to keep the main branch clean.
  • Enforce project conventions by honoring CLAUDE.md / AGENTS.md worktree declarations and by selecting in-repo or default locations.
  • Auto bootstrap and validate a healthy baseline by installing dependencies and running tests inside the isolated workspace.

Quick Start

Create a new isolated worktree for your feature branch and run the project's bootstrap and tests to verify a clean baseline.

Frequently Asked Questions about isolate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is a Git worktree and when do I need isolated workspaces?

Git worktrees are isolated workspaces linked to a single repository, letting you develop features without contaminating the main branch. You need them to safely experiment with risky changes or manage multiple branches simultaneously without cloning.

How do I create an isolated Git worktree and verify a clean baseline?

To create a Git worktree and verify a baseline, the process discovers or creates a worktree, validates conventions via CLAUDE.md or AGENTS.md, then automatically installs dependencies and runs tests inside the isolated workspace.

Does Git worktree automation support polyglot projects?

Yes, Git worktree automation supports multi-language, polyglot projects. It ensures deterministic setups by applying .gitignore checks, branch handling, and automated bootstrap workflows across diverse project environments.

Can I use CLAUDE.md to enforce project conventions in Git worktrees?

Yes, you can use CLAUDE.md or AGENTS.md to enforce project conventions in Git worktrees. The creation process honors these worktree declarations and selects either in-repo or default locations for the isolated environment.

What is the best way to manage feature branches without contaminating the main repository?

The best way to manage feature branches without contaminating the main repository is using isolated Git worktrees. This approach ensures workspaces remain clean, reproducible, and completely separated from the main repository during development.