wt
Installation
SKILL.md
wt — git worktree pool manager
wt keeps a warm pool of pre-installed git worktrees per repo so you can get a
ready-to-work environment instantly (no waiting on checkout + install).
Install: npm install -g @lucleray/wt. Source & docs:
https://github.com/lucleray/wt (README + docs/).
A repo is identified by its path (e.g. ~/code/acme-app). An optional alias
name can be configured and used instead (e.g. app). Paths are first-class —
prefer passing a path; you don't need to pre-configure anything.
When to use this
- The user asks to work on a repo and you're starting from outside any checkout
(e.g. from
~) → usewt up <path>to get a worktree, thencdinto it. - The user is done with a worktree / the PR is merged → use
wt down. - You want to see what's available →
wt list(aliaswt ls).