with one click
setup-worktree
Set up a new git worktree and install dependencies.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Set up a new git worktree and install dependencies.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Merges completed work back to main through a protected-branch pull request workflow.
Set up a new git worktree and install dependencies.
Merges completed work back to main through a protected-branch pull request workflow.
Prepares a Python package for PyPI release by updating the version, building, and verifying the distribution.
Prepare a release by updating the version, building, and verifying the distribution.
Verify that the codebase matches the desired end state described in a design document.
| name | setup-worktree |
| description | Set up a new git worktree and install dependencies. |
Sets up a new git worktree for development, installing all dependencies. Takes the branch name as $ARGUMENTS.
$ARGUMENTS
Create a new worktree using the command git worktree add -b mekara/<branch-name> ../<branch-name>. If the branch already exists (error: "a branch named 'mekara/' already exists"), choose a different branch name.
Install project dependencies by running the appropriate commands for the project. For example:
poetry install --with devpip install -r requirements.txtnpm installpnpm installcargo buildgo mod downloadCheck the project's README or build configuration to determine the correct command. Run this from inside ../<branch-name>.
If there's multiple stacks used within the project, run the appropriate setup commands for all stacks.
../<branch-name>, not the current directory.