com um clique
setup-worktree
Set up a new git worktree and install dependencies.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Set up a new git worktree and install dependencies.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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.