with one click
trycycle-worktrees
Internal trycycle subskill — do not invoke directly.
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
Internal trycycle subskill — do not invoke directly.
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
| name | trycycle-worktrees |
| description | Internal trycycle subskill — do not invoke directly. |
Git worktrees create isolated workspaces sharing the same repository, allowing work on multiple branches simultaneously without switching. Trycycle repos use .worktrees/ as the standard worktree directory.
.worktrees/ is gitignoredgit check-ignore -q .worktrees
If NOT ignored: Add .worktrees to .gitignore and commit before proceeding.
git worktree add .worktrees/<branch-name> -b <branch-name>
cd .worktrees/<branch-name>
Auto-detect and run appropriate setup:
# Node.js
if [ -f package.json ]; then npm install; fi
# Rust
if [ -f Cargo.toml ]; then cargo build; fi
# Python (first match wins)
if [ -f poetry.lock ]; then
poetry install
elif [ -f uv.lock ]; then
uv sync
elif [ -f pyproject.toml ]; then
pip install -e .
elif [ -f requirements.txt ]; then
pip install -r requirements.txt
fi
# Go
if [ -f go.mod ]; then go mod download; fi
Worktree ready at <full-path>
Branch: <branch-name>
Invoke trycycle only when the user requests it by name.
Internal trycycle subskill — do not invoke directly.
Internal trycycle subskill — do not invoke directly.
Internal trycycle subskill — do not invoke directly.