@jhorst11/wt 2.0.1 → 2.1.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 CHANGED
@@ -107,6 +107,9 @@ Create `<repo>/.wt/config.json`:
107
107
  "post-create": [
108
108
  "npm install",
109
109
  "cp $WT_SOURCE/.env .env"
110
+ ],
111
+ "pre-destroy": [
112
+ "npm run clean"
110
113
  ]
111
114
  }
112
115
  }
@@ -120,16 +123,49 @@ Create `<repo>/.wt/config.json`:
120
123
  | `worktreesDir` | `string` | `~/projects/worktrees` | Directory where worktrees are created |
121
124
  | `branchPrefix` | `string` | `""` | Prefix for branch names (e.g., "username/") |
122
125
  | `hooks.post-create` | `string[]` | `[]` | Shell commands to run after creating a worktree |
126
+ | `hooks.pre-destroy` | `string[]` | `[]` | Shell commands to run before removing a worktree |
123
127
 
124
128
  **Hook environment variables** (available in hook commands):
125
129
 
126
130
  | Variable | Description |
127
131
  |----------|-------------|
128
132
  | `WT_SOURCE` | Absolute path to the main repository |
129
- | `WT_BRANCH` | Branch name of the new worktree |
130
- | `WT_PATH` | Absolute path to the new worktree (also the cwd) |
133
+ | `WT_BRANCH` | Branch name of the worktree |
134
+ | `WT_PATH` | Absolute path to the worktree (also the cwd) |
135
+ | `WT_NAME` | Worktree name (directory name, e.g. `feature-a`) |
136
+ | `WT_COLOR` | Hex color assigned to this worktree (e.g. `#E53935`), for UI/theming |
131
137
 
132
- Hook commands run with cwd set to the new worktree path. If a hook command fails, a warning is shown but the worktree creation still succeeds.
138
+ Each new worktree is assigned a unique color from a fixed palette (stored in `<repo>/.wt/worktree-colors.json`). In supported terminals (iTerm2, WezTerm, Ghostty, Kitty, Windows Terminal, Alacritty), the tab color is set to that worktree's color when you create a worktree or run `wt go <name>`. Colors also appear as indicators (●) throughout the CLI UI.
139
+
140
+ Hook commands run with cwd set to the worktree path. To run a Node script that lives in the main repo (e.g. `<repo>/.wt/scripts/foo.js`), use `WT_SOURCE`: `node "$WT_SOURCE/.wt/scripts/foo.js"` — `./scripts/foo.js` would look inside the worktree, not the main repo. If a hook command fails, a warning is shown but the operation continues (worktree creation still succeeds; worktree removal still proceeds after pre-destroy).
141
+
142
+ #### Worktree Color Configuration
143
+
144
+ Override automatic colors or provide a custom palette:
145
+
146
+ **Manual color assignment** (`.wt/config.json`):
147
+
148
+ ```json
149
+ {
150
+ "worktreeColors": {
151
+ "feature-auth": "#FF5733",
152
+ "feature-payments": "#33FF57"
153
+ }
154
+ }
155
+ ```
156
+
157
+ **Custom color palette** (`.wt/config.json`):
158
+
159
+ ```json
160
+ {
161
+ "colorPalette": [
162
+ "#FF6B6B", "#4ECDC4", "#45B7D1", "#FFA07A",
163
+ "#98D8C8", "#F7DC6F", "#BB8FCE", "#85C1E2"
164
+ ]
165
+ }
166
+ ```
167
+
168
+ Colors are stored per-repository in `.wt/worktree-colors.json` and support hierarchical configuration (global → repo → directory overrides).
133
169
 
134
170
  ## How It Works
135
171
 
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=wt.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wt.d.ts","sourceRoot":"","sources":["../../bin/wt.ts"],"names":[],"mappings":""}
package/dist/bin/wt.js ADDED
@@ -0,0 +1,83 @@
1
+ #!/usr/bin/env node
2
+ import { createRequire } from 'module';
3
+ import { fileURLToPath } from 'url';
4
+ import { dirname, join } from 'path';
5
+ import { program } from 'commander';
6
+ import { mainMenu, createWorktreeFlow, listWorktrees, removeWorktreeFlow, mergeWorktreeFlow, goHome, goToWorktree, } from '../src/commands.js';
7
+ import { spacer, colors } from '../src/ui.js';
8
+ import { setupCommand } from '../src/setup.js';
9
+ const __filename = fileURLToPath(import.meta.url);
10
+ const __dirname = dirname(__filename);
11
+ const require = createRequire(import.meta.url);
12
+ // Resolve package.json relative to project root (one level up from bin/)
13
+ const packagePath = join(__dirname, '..', '..', 'package.json');
14
+ const { version } = require(packagePath);
15
+ program
16
+ .name('wt')
17
+ .description('🌳 Beautiful interactive git worktree manager')
18
+ .version(version)
19
+ .option('--verbose', 'Show full hook command output (default: show command name with spinner only)');
20
+ program
21
+ .command('new', { isDefault: false })
22
+ .description('Create a new worktree interactively')
23
+ .option('--no-hooks', 'Skip post-create hooks')
24
+ .action((args, cmd) => {
25
+ createWorktreeFlow({ verbose: !!cmd.parent?.opts?.()?.verbose, hooks: args.hooks });
26
+ });
27
+ program
28
+ .command('list')
29
+ .alias('ls')
30
+ .description('List all worktrees for the current repo')
31
+ .action(listWorktrees);
32
+ program
33
+ .command('remove')
34
+ .alias('rm')
35
+ .description('Remove a worktree interactively')
36
+ .action((_args, cmd) => {
37
+ removeWorktreeFlow({ verbose: !!cmd.parent?.opts?.()?.verbose });
38
+ });
39
+ program
40
+ .command('merge')
41
+ .description('Merge a worktree branch back to main')
42
+ .action((_args, cmd) => {
43
+ mergeWorktreeFlow({ verbose: !!cmd.parent?.opts?.()?.verbose });
44
+ });
45
+ program
46
+ .command('home')
47
+ .description('Return to the main repository')
48
+ .action(goHome);
49
+ program
50
+ .command('go [name]')
51
+ .alias('jump')
52
+ .description('Jump to a worktree (interactive if no name)')
53
+ .action((name) => {
54
+ goToWorktree(name);
55
+ });
56
+ program
57
+ .command('setup')
58
+ .description('Configure shell integration for directory jumping')
59
+ .action(setupCommand);
60
+ // Default action (no command = interactive menu)
61
+ program.action(async () => {
62
+ await mainMenu();
63
+ });
64
+ // Custom help
65
+ program.on('--help', () => {
66
+ spacer();
67
+ console.log('Examples:');
68
+ console.log(` ${colors.muted('$')} wt ${colors.muted('# Interactive menu')}`);
69
+ console.log(` ${colors.muted('$')} wt new ${colors.muted('# Create new worktree')}`);
70
+ console.log(` ${colors.muted('$')} wt list ${colors.muted('# List all worktrees')}`);
71
+ console.log(` ${colors.muted('$')} wt go feature-x ${colors.muted('# Jump to worktree')}`);
72
+ console.log(` ${colors.muted('$')} wt merge ${colors.muted('# Merge worktree to main')}`);
73
+ console.log(` ${colors.muted('$')} wt home ${colors.muted('# Return to main repo')}`);
74
+ console.log(` ${colors.muted('$')} wt setup ${colors.muted('# Configure shell integration')}`);
75
+ spacer();
76
+ });
77
+ // Handle graceful exit
78
+ process.on('SIGINT', () => {
79
+ console.log('\n');
80
+ process.exit(0);
81
+ });
82
+ program.parse();
83
+ //# sourceMappingURL=wt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wt.js","sourceRoot":"","sources":["../../bin/wt.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ import type { CommandOptions } from './types.js';
2
+ export declare function mainMenu(): Promise<void>;
3
+ export declare function createWorktreeFlow(options?: CommandOptions): Promise<void>;
4
+ export declare function listWorktrees(): Promise<void>;
5
+ export declare function removeWorktreeFlow(options?: CommandOptions): Promise<void>;
6
+ export declare function mergeWorktreeFlow(options?: CommandOptions): Promise<void>;
7
+ export declare function goHome(): Promise<void>;
8
+ export declare function goToWorktree(name?: string): Promise<void>;
9
+ //# sourceMappingURL=commands.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../src/commands.ts"],"names":[],"mappings":"AA8CA,OAAO,KAAK,EAAE,cAAc,EAAgB,MAAM,YAAY,CAAC;AAuB/D,wBAAsB,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC,CA+H9C;AAED,wBAAsB,kBAAkB,CAAC,OAAO,GAAE,cAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CA2QpF;AAED,wBAAsB,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC,CAyCnD;AAED,wBAAsB,kBAAkB,CAAC,OAAO,GAAE,cAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CA2KpF;AAED,wBAAsB,iBAAiB,CAAC,OAAO,GAAE,cAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAiQnF;AAED,wBAAsB,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC,CAuC5C;AAED,wBAAsB,YAAY,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAgG/D"}