From nx
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
npx claudepluginhub hellblazer/nexus --plugin nxThis skill uses the workspace's default tool permissions.
Git worktrees create isolated workspaces sharing the same repository.
Creates isolated git worktrees for feature branches with smart directory selection, .gitignore safety verification, automatic project setup (npm install, cargo build), and clean baseline checks.
Creates isolated git worktrees for feature branches with directory selection, gitignore safety checks, and auto-setup for Node.js, Rust, Python, Go projects. Use for workspace isolation.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Share bugs, ideas, or general feedback.
Git worktrees create isolated workspaces sharing the same repository.
.worktrees/ (preferred) or worktrees/.worktrees/ (project-local, hidden) or ~/.config/nexus/worktrees/<project>/ (global)Before creating project-local worktrees:
git check-ignore -q .worktrees 2>/dev/null
If NOT ignored: add to .gitignore and commit, then proceed.
project=$(basename "$(git rev-parse --show-toplevel)")
git worktree add "$path" -b "$BRANCH_NAME"
cd "$path"
[ -f pyproject.toml ] && { command -v uv &>/dev/null && uv sync || pip install -e .; }
[ -f requirements.txt ] && ! [ -f pyproject.toml ] && pip install -r requirements.txt
[ -f package.json ] && npm install
[ -f Cargo.toml ] && cargo build
[ -f go.mod ] && go mod download
Run project test suite. If tests fail: report failures, ask whether to proceed.
Follow project convention. For beads-tracked work: feature/<bead-id>-<description>.
The Agent tool supports isolation: "worktree" natively — it creates a temporary git worktree automatically and cleans up if no changes are made. Prefer this for parallel agent work over manual worktree management.
| Situation | Action |
|---|---|
.worktrees/ exists | Use it (verify ignored) |
worktrees/ exists | Use it (verify ignored) |
| Both exist | Use .worktrees/ |
| Neither exists | Check CLAUDE.md → ask user |
| Not ignored | Add to .gitignore + commit |
| Tests fail baseline | Report + ask |
| Parallel agents | Use isolation: "worktree" on Agent tool |
Pairs with: /nx:finishing-branch for merge/PR/cleanup after work is done.