Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:189
forks:14
updated:20 de marzo de 2026, 20:10
SKILL.md
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.
| 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>