worktree-launcher 1.2.1 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -8
- package/dist/index.js +682 -243
- package/package.json +4 -1
- package/dist/chunk-KGMGW33P.js +0 -386
- package/dist/new-DHGI74HT.js +0 -6
package/README.md
CHANGED
|
@@ -36,21 +36,28 @@ npm install -g worktree-launcher
|
|
|
36
36
|
|
|
37
37
|
Requires Node.js 18+ and git.
|
|
38
38
|
|
|
39
|
-
## Interactive Mode
|
|
39
|
+
## Interactive Mode (TUI)
|
|
40
40
|
|
|
41
|
-
Run `wt` with no arguments to
|
|
41
|
+
Run `wt` with no arguments to open a terminal UI similar to lazygit:
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
44
|
wt
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
- Select a worktree to see actions
|
|
49
|
-
- Launch an AI assistant in any worktree
|
|
50
|
-
- Delete worktrees
|
|
51
|
-
- Create new worktrees
|
|
47
|
+
The TUI displays all worktrees in a navigable list with keyboard shortcuts:
|
|
52
48
|
|
|
53
|
-
|
|
49
|
+
| Key | Action |
|
|
50
|
+
|-----|--------|
|
|
51
|
+
| `n` | Create new worktree |
|
|
52
|
+
| `d` | Delete selected worktree |
|
|
53
|
+
| `c` | Launch Claude Code in selected worktree |
|
|
54
|
+
| `x` | Launch Codex in selected worktree |
|
|
55
|
+
| `p` | Push branch to remote |
|
|
56
|
+
| `Enter` | Print cd command for selected worktree |
|
|
57
|
+
| `r` | Refresh worktree list |
|
|
58
|
+
| `q` | Quit |
|
|
59
|
+
|
|
60
|
+
Navigate with arrow keys or vim-style `j`/`k`. The status bar shows the full path of the selected worktree.
|
|
54
61
|
|
|
55
62
|
## Commands
|
|
56
63
|
|