Creates isolated Git worktrees for experimental or risky changes, isolating work from the current branch. Performs safety checks, project setup, and baseline tests.
npx claudepluginhub repozy/superpowers-optimizedThis skill uses the workspace's default tool permissions.
Create an isolated branch workspace with safe defaults.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Create an isolated branch workspace with safe defaults.
Announce: I'm using the using-git-worktrees skill to set up an isolated workspace.
.worktrees/worktrees/CLAUDE.md)For project-local worktree directories, verify ignore rules before creating:
git check-ignore -q .worktrees || git check-ignore -q worktrees
If not ignored, add ignore entry before proceeding.
git worktree add <path> -b <branch>
cd <path>
cd in step 2 does not persist across separate shell calls. Use absolute paths or cd <path> && <command> in every subsequent Bash call rather than assuming the working directory carried over.If baseline tests fail, report failures and ask whether to continue.
Report:
Use with:
writing-planssubagent-driven-developmentexecuting-plansCleanup is handled by finishing-a-development-branch.