npx claudepluginhub v4-company/marsai --plugin marsai-default[branch-name]I'm using the marsai:using-git-worktrees skill to set up an isolated workspace for your feature work. **This command will:** 1. Ask you for the feature/branch name 2. Auto-detect or ask about worktree directory location 3. Create the isolated worktree 4. Set up dependencies 5. Verify baseline tests pass **The skill will systematically:** - Check for existing `.worktrees/` or `worktrees/` directories - Check CLAUDE.md for location preferences - Verify .gitignore (for project-local directories) - Auto-detect and run project setup (npm install, cargo build, etc.) - Run baseline tests to ensu...
/worktreeCreates git worktrees for parallel development on multiple branches: accepts branch/base args, copies configs, installs deps, lists existing, removes/prunes.
/worktreeCreates an isolated Git worktree for a new task, generating a task branch and directory with planning files for parallel development without affecting the main directory.
/worktreeManages git worktrees for isolated feature development: create new branch worktrees, list with status, switch directories, or remove after confirmation. Defaults to list.
/worktreeManages git worktrees for isolated feature development. List existing worktrees or cleanup unused ones using list or cleanup subcommands.
/worktreeCreates a git worktree for the specified feature, symlinking Rails credentials into the new worktree directory.
/worktreeCreates or removes git worktrees for isolated parallel development. Handles env files, dependency syncing, and project setup.
I'm using the marsai:using-git-worktrees skill to set up an isolated workspace for your feature work.
This command will:
The skill will systematically:
.worktrees/ or worktrees/ directoriesFirst, let me ask you about your feature:
Please use the AskUserQuestion tool to gather:
Question 1: "What is the name of your feature/branch?"
After getting the feature name, follow the complete marsai:using-git-worktrees skill process:
Check for existing directories (priority order):
.worktrees/ (preferred)worktrees/ (alternative).worktrees/Check CLAUDE.md for worktree directory preferences
If no directory exists and no CLAUDE.md preference, ask user:
.worktrees/ (project-local, hidden)~/.config/ring/worktrees/<project-name>/ (global location)Verify .gitignore (if project-local directory):
Create worktree:
basename "$(git rev-parse --show-toplevel)"git worktree add <path> -b <branch-name>cd <path>Run project setup (auto-detect):
npm install (if package.json exists)cargo build (if Cargo.toml exists)pip install -r requirements.txt or poetry installgo mod download (if go.mod exists)Verify clean baseline:
Report completion:
Worktree ready at <full-path>
Tests passing (N tests, 0 failures)
Ready to implement <feature-name>
Follow the complete process defined in skills/using-git-worktrees/SKILL.md.
This command MUST load the skill for complete workflow execution.
Use Skill tool: marsai:using-git-worktrees
The skill contains the complete workflow with: