adversarial-reviewer
Review code through three hostile personas - the Saboteur, the New Hire, and the Security Auditor - each required to find at least one issue. Use when a…
Set up an isolated workspace for feature work so the current branch and working tree stay untouched — detecting existing isolation first, preferring the platform's native worktree tooling, and falling back to git worktrees only when nothing native exists. Use before starting
$ npx -y skills add KhaledSaeed18/dotclaude --skill git-worktrees --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/git-worktreesContext preview
The summary Claude sees to decide when to auto-load this skill.
Set up an isolated workspace for feature work so the current branch and working tree stay untouched — detecting existing isolation first, preferring the platform's native worktree tooling, and falling back to git worktrees only when nothing native exists. Use before starting
name: git-worktrees description: Set up an isolated workspace for feature work so the current branch and working tree stay untouched — detecting existing isolation first, preferring the platform's native worktree tooling, and falling back to git worktrees only when nothing native exists. Use before starting feature work that needs isolation, or before executing an implementation plan.
Make sure the work happens somewhere isolated, without fighting whatever isolation the environment already provides. The order matters: detect what you're already in, prefer native tooling, and only reach for raw `git worktree` as a last resort. Creating a worktree on top of an environment that already gave you one produces phantom state the harness can't see or clean up.
Before creating anything, check whether you're already isolated.
GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P) GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P) BRANCH=$(git branch --show-current)
If `GIT_DIR != GIT_COMMON`, you're likely already in a linked worktree — **but** the same is true inside a git submodule, so rule that out first:
git rev-parse --show-superproject-working-tree 2>/dev/null
If that prints a path, you're in a submodule: treat it as a normal repo. Otherwise, `GIT_DIR != GIT_COMMON` means you're already in a worktree — skip creation and go straight to setup (Step 3). Report it: "Already in an isolated workspace at `<path>` on branch `<name>`" (or note a detached HEAD, which will need a branch created at finish time).
If `GIT_DIR == GIT_COMMON` (or you're in a submodule), you're in a normal checkout. Unless the user has already stated a worktree preference, ask before creating one:
> "Want me to set up an isolated worktree? It keeps your current branch untouched while I work."
Honor an existing stated preference without re-asking. If the user declines, work in place and skip to Step 3.
Two mechanisms, tried in this order.
Do you already have a native way to create a worktree — a tool named something like `EnterWorktree` or `WorktreeCreate`, a `/worktree` command, a `--worktree` flag? If so, use it and skip to Step 3. Native tools handle placement, branch creation, and cleanup themselves; using raw `git worktree add` alongside them creates state the harness can't track. Only fall through to 1b if no native tool exists.
Only if there's no native tool. Pick the directory by this priority — an explicit user preference always wins over what's on disk:
1. A worktree directory the user already specified in their instructions. 2. An existing project-local directory: `.worktrees/` (preferred) or `worktrees/`. If both exist, `.worktrees/` wins. 3. Otherwise, default to `.worktrees/` at the repo root.
For any project-local directory, **verify it's git-ignored before creating the worktree** — otherwise the worktree's contents get tracked:
git check-ignore -q .worktrees 2>/dev/null || git check-ignore -q worktrees 2>/dev/null
If it isn't ignored, add it to `.gitignore` and commit that change first. Then create the worktree on a new branch and move into it:
git worktree add "$path/$BRANCH_NAME" -b "$BRANCH_NAME" cd "$path/$BRANCH_NAME"
If `git worktree add` fails on a permission/sandbox error, tell the user the sandbox blocked it and that you're working in the current directory instead, then continue in place.
Auto-detect the stack and install dependencies — for example `npm install` (or `pnpm`/`yarn`) for `package.json`, `cargo build` for `Cargo.toml`, `pip install -r requirements.txt` / `poetry install` for Python, `go mod download` for `go.mod`. Skip if there's nothing to install.
Run the project's tests so you know the workspace starts green:
# project-appropriate: npm test / cargo test / pytest / go test ./...
If they fail, report the failures and ask whether to proceed or investigate first — a dirty baseline makes it impossible to tell your new bugs from pre-existing ones. If they pass, report ready: worktree path, branch, and that the baseline is green.
Reusable Claude Code extension registry. skills, subagents, slash commands, and hooks for engineering, git, testing, and security workflows. Distributed as a shadcn GitHub registry and as installable plugins.
Repo: KhaledSaeed18/dotclaude
Review code through three hostile personas - the Saboteur, the New Hire, and the Security Auditor - each required to find at least one issue. Use when a…
Review an API contract (REST or GraphQL) before or while it is implemented, checking resource naming, HTTP semantics, status codes, error shape, pagination,…
Process code-review feedback with technical rigour — understand each point, check it against the actual codebase, and respond with reasoning or implementation…
Author a new subagent for this repository end to end by scaffolding it with pnpm new, curating its tool allowlist, setting model, color, and memory in…
Author a new slash command for this repository end to end by scaffolding it with pnpm new, writing the frontmatter and argument handling, drafting the prompt…
Author a new Claude Code hook for this repository end to end by scaffolding it with pnpm new, writing the hook script and its settings.json wiring, documenting…