What problem does it solve?
This Skill prevents parallel AI agents from corrupting shared repositories, overwriting each other's changes, or committing work that does not belong to their assigned task.
Core Features & Use Cases
- Worktree Isolation: Creates and enforces one Git worktree and branch per agent, including read-only verifiers and auditors.
- Safe Change Management: Requires explicit-path staging, bans destructive repository-wide commands, and protects shared append-only artifacts.
- Mutation Verification: Confirms that edits actually landed, validates staged diffs, checks completed work, and halts when unexpected repository changes or HEAD movement are detected.
- Use Case: When multiple developers implement app features concurrently, use this Skill to give each agent an isolated workspace and verify that only its intended files reach the merge gate.
Quick Start
Use the agent-isolation skill before spawning parallel agents to create isolated worktrees, enforce safe staging, and verify their completed changes.