codeaholicguy/dev-worktree
AI DevKit · Worktree setup and resume guidance for isolated feature work. Use when starting, resuming, switching, or verifying a feature branch/worktree for lifecycle, debugging, implementation, review, or multi-agent workflows.
npx skills add https://github.com/codeaholicguy/ai-devkit --skill dev-worktree
Set up or resume the correct workspace before feature work. Keep this skill focused on repository context, worktree isolation, and dependency bootstrap. Do not perform requirements, design, planning, implementation, testing, or review work here.
feature-<name> for branch and worktree names, where <name> is normalized kebab-case without the prefix.<project-root>/.worktrees/feature-<name>.Use for a new feature start.
<name>..git.feature-<name>..worktrees is listed in the project .gitignore; if not, add it.git worktree add -b feature-<name> .worktrees/feature-<name>.git worktree add .worktrees/feature-<name> feature-<name>.git -C .worktrees/feature-<name> branch --show-current; it must equal feature-<name>.10. Return the active workdir path for the next phase.
Use when continuing an existing feature.
git branch --show-current.git worktree list.<project-root>/.worktrees/feature-<name> when it exists.feature-<name> in the current repository.After selecting the target context:
npm ci, pnpm install --frozen-lockfile, yarn install --frozen-lockfile, or bun install --frozen-lockfile.uv sync, poetry install --no-interaction, pipenv sync, or pip install -r requirements.txt.bundle install.cargo fetch, or cargo build when fetch-only is insufficient.go mod download../gradlew dependencies, ./gradlew build, or Maven equivalent.End with:
Take codeaholicguy/dev-worktree from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference pip, npm.
Without those the skill loads but fails at the first command.