create <branch> | list | analyze | remove [--force]
/plugin marketplace add jrc1883/popkit-claude/plugin install popkit-dev@popkit-marketplace<subcommand> [branch] [options]# /popkit:worktree - Git Worktree Management Create and manage isolated workspaces for parallel development. ## Usage ## Subcommands ### create Create new worktree with branch: Process: 1. Check worktree directory exists 2. Verify .gitignore includes worktrees 3. Create worktree: `git worktree add .worktrees/<name> -b <name>` 4. Run project setup (npm install, etc.) 5. Verify tests pass 6. Report location ### list List all worktrees: Output: ### analyze Find opportunities for worktrees: Checks for: - Multiple in-progress branches - Stale branches with uncommitted work -...