Creates isolated git worktrees or branches for feature development, detects current repo state, syncs with remote, and confirms isolation before proceeding.
npx claudepluginhub tmchow/tmc-marketplace --plugin iterative-engineeringThis skill uses the workspace's default tool permissions.
Ensures agent has an isolated workspace to avoid conflicts with human work.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Ensures agent has an isolated workspace to avoid conflicts with human work.
iterative:implementing skillgit rev-parse --git-dir contains /worktrees/), get current branch (git branch --show-current), get default branch (git remote show origin | grep "HEAD branch").git worktree add ../[repo]-[branch] -b [branch]. If new branch: git checkout -b [branch-name]. If continue: proceed.When creating a worktree:
git worktree add ../[repo]-[branch] -b [branch]Returns to calling skill: