@proletariat/cli 0.1.3 → 0.1.4
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 +156 -71
- package/dist/bin/prlt.js +66 -1
- package/dist/bin/prlt.js.map +1 -1
- package/dist/lib/config/index.d.ts +1 -0
- package/dist/lib/config/index.d.ts.map +1 -1
- package/dist/lib/config/index.js +29 -2
- package/dist/lib/config/index.js.map +1 -1
- package/dist/lib/config/upgrade.d.ts +2 -0
- package/dist/lib/config/upgrade.d.ts.map +1 -0
- package/dist/lib/config/upgrade.js +173 -0
- package/dist/lib/config/upgrade.js.map +1 -0
- package/dist/lib/themes/index.js +4 -4
- package/dist/lib/themes/index.js.map +1 -1
- package/dist/lib/workspace/index.d.ts +13 -0
- package/dist/lib/workspace/index.d.ts.map +1 -0
- package/dist/lib/workspace/index.js +116 -0
- package/dist/lib/workspace/index.js.map +1 -0
- package/dist/lib/worktree/index.d.ts +1 -0
- package/dist/lib/worktree/index.d.ts.map +1 -1
- package/dist/lib/worktree/index.js +8 -3
- package/dist/lib/worktree/index.js.map +1 -1
- package/dist/lib/worktree/migrate.d.ts +2 -0
- package/dist/lib/worktree/migrate.d.ts.map +1 -0
- package/dist/lib/worktree/migrate.js +212 -0
- package/dist/lib/worktree/migrate.js.map +1 -0
- package/dist/lib/worktree/repair.d.ts +3 -0
- package/dist/lib/worktree/repair.d.ts.map +1 -0
- package/dist/lib/worktree/repair.js +140 -0
- package/dist/lib/worktree/repair.js.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,26 +1,50 @@
|
|
|
1
1
|
# ⚒️ PROLETARIAT CLI
|
|
2
2
|
|
|
3
|
-
> **
|
|
4
|
-
> *
|
|
3
|
+
> **Workspace Manager for Parallel AI Development**
|
|
4
|
+
> *Run multiple Cursor sessions, Claude Code instances, or CLI agents simultaneously on one machine - each working on different features without conflicts*
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
**Scale your solo development: Multiple AI sessions, parallel workspaces, all on your local machine!**
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## What Is This?
|
|
11
11
|
|
|
12
|
-
**PROLETARIAT CLI**
|
|
12
|
+
**PROLETARIAT CLI** implements the design pattern for running multiple AI coding sessions in parallel on a single machine. Each "agent" is a persistent workspace (git worktree) where AI tools or developers can work continuously - not just for single features:
|
|
13
13
|
|
|
14
|
-
- 🤖 **
|
|
15
|
-
- 🔀 **
|
|
16
|
-
- 🎯 **
|
|
14
|
+
- 🤖 **Persistent AI workspaces** - Let Claude Code live in the "bezos" workspace for weeks, handling all auth tasks
|
|
15
|
+
- 🔀 **No constant branching** - Each workspace can handle multiple related features over time
|
|
16
|
+
- 🎯 **Domain-focused development** - One workspace for frontend, another for API, another for testing
|
|
17
17
|
|
|
18
18
|
Using memorable themes, you manage your agent workforce:
|
|
19
19
|
- 💰 **Billionaires** become your coding workforce (Bezos, Musk, Gates)
|
|
20
20
|
- 🚗 **Toyotas** drive your development forward (Prius, Tacoma, Tundra)
|
|
21
21
|
- 🏢 **Companies** form your development portfolio (Apple, Google, Microsoft)
|
|
22
22
|
|
|
23
|
-
Each
|
|
23
|
+
Each workspace is a dedicated git worktree on your local machine. Run 3 Cursor instances editing different features, or quickly switch between workspaces without losing context!
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## 💡 The Design Pattern
|
|
28
|
+
|
|
29
|
+
**Problem:** AI coding tools work in a single directory. Want to work on multiple features? You're stuck with stashing, branching, and context switching.
|
|
30
|
+
|
|
31
|
+
**Solution:** PROLETARIAT creates isolated agent directories on your machine where you can run multiple AI sessions:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
your-company-workspace/ (recommended layout)
|
|
35
|
+
├── your-repo/ # Your original repo
|
|
36
|
+
├── your-repo-staff/
|
|
37
|
+
│ ├── bezos/ → Claude Code 1: Building authentication
|
|
38
|
+
│ ├── musk/ → Claude Code 2: Implementing AI features
|
|
39
|
+
│ ├── gates/ → Cursor: Refactoring database
|
|
40
|
+
│ ├── jobs/ → Codex CLI 1: Writing test suite
|
|
41
|
+
│ └── cook/ → Codex CLI 2: Fixing security issues
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
**Result:** One developer, 5 agent directories, 0 conflicts. Work on multiple features simultaneously or let AI agents handle different tasks!
|
|
45
|
+
|
|
46
|
+

|
|
47
|
+
*Three Claude Code instances working in parallel: `andreesen` on Feature A, `jobs` on Feature B, and `zuck` fixing a reported bug (no musk, he was fired)*
|
|
24
48
|
|
|
25
49
|
---
|
|
26
50
|
|
|
@@ -29,13 +53,13 @@ Each agent operates independently via git worktrees, enabling true parallel deve
|
|
|
29
53
|
### ⚡ **Zero Configuration**
|
|
30
54
|
Just `prlt init` and you're ready to go. Zero configuration required.
|
|
31
55
|
|
|
32
|
-
### 🎨 **Three Fun Themes**
|
|
56
|
+
### 🎨 **Three Fun Themes** *(Custom themes coming soon!)*
|
|
33
57
|
- **💰 Billionaires**: Hire/fire billionaire workers in `../project-staff/`
|
|
34
58
|
- **🚗 Cars**: Drive/park cars in your `../project-garage/`
|
|
35
59
|
- **🏢 Companies**: Buy/sell companies in your `../project-portfolio/`
|
|
36
60
|
|
|
37
|
-
### 🔀 **Agent
|
|
38
|
-
Each
|
|
61
|
+
### 🔀 **Multiple Agent Directories in Your Workspace**
|
|
62
|
+
Each agent gets their own clean git worktree on your local filesystem. Run multiple Cursor windows, Claude Code instances, or just keep different features open - each agent in their own directory, no context switching needed.
|
|
39
63
|
|
|
40
64
|
---
|
|
41
65
|
|
|
@@ -51,7 +75,7 @@ prlt init # Prompts you to choose: billionaires, toyotas, or companies
|
|
|
51
75
|
|
|
52
76
|
# Create worktrees with themed commands
|
|
53
77
|
prlt hire bezos musk # Billionaires theme
|
|
54
|
-
prlt drive
|
|
78
|
+
prlt drive 4runner prius # Cars theme
|
|
55
79
|
prlt buy apple microsoft # Companies theme
|
|
56
80
|
|
|
57
81
|
# Check status
|
|
@@ -67,20 +91,50 @@ prlt sell nvidia # Companies theme
|
|
|
67
91
|
|
|
68
92
|
### 🏗️ Flexible Agent Workspace Layouts
|
|
69
93
|
|
|
70
|
-
**
|
|
94
|
+
**Workspace Layout (Recommended)** - Group repositories and agents under one parent directory:
|
|
95
|
+
```bash
|
|
96
|
+
# IMPORTANT: Run prlt init inside EACH repository you want to manage
|
|
97
|
+
cd frontend-repo && prlt init --workspace acme-corp
|
|
98
|
+
cd ../backend-repo && prlt init --workspace acme-corp
|
|
99
|
+
|
|
100
|
+
# Each repo needs its own initialization since worktrees are per-repository
|
|
71
101
|
```
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
102
|
+
|
|
103
|
+
Creates this organized structure to hold multi-repo projects:
|
|
104
|
+
```
|
|
105
|
+
acme-corp-workspace/ # Workspace containing all repos and agents
|
|
106
|
+
├── frontend-repo/ (main frontend repository)
|
|
107
|
+
├── frontend-repo-staff/ (frontend billionaire agents)
|
|
108
|
+
│ ├── bezos/ (e.g., Claude Code instance 1)
|
|
109
|
+
│ ├── musk/ (e.g., Claude Code instance 2)
|
|
110
|
+
│ └── gates/ (e.g., Cursor)
|
|
111
|
+
├── backend-repo/ (main backend repository)
|
|
112
|
+
└── backend-repo-staff/ (backend billionaire agents)
|
|
113
|
+
├── cook/ (e.g., Codex CLI 1)
|
|
114
|
+
├── jobs/ (e.g., Codex CLI 2)
|
|
115
|
+
└── buffett/ (e.g., Claude Code instance 2)
|
|
77
116
|
```
|
|
78
117
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
118
|
+
Each repository maintains its own `.proletariat/config.json` since worktrees are per-repository.
|
|
119
|
+
|
|
120
|
+
**Default Layout** - Agents as siblings to your repository:
|
|
121
|
+
```
|
|
122
|
+
parent-dir/
|
|
123
|
+
├── your-repo/ (main repository)
|
|
124
|
+
└── your-repo-staff/ (billionaire agents)
|
|
125
|
+
├── bezos/ (e.g., Claude Code instance 1)
|
|
126
|
+
├── musk/ (e.g., Claude Code instance 2)
|
|
127
|
+
└── gates/ (e.g., Cursor)
|
|
128
|
+
OR
|
|
129
|
+
└── your-repo-garage/ (toyota agents)
|
|
130
|
+
├── camry/ (e.g., Codex CLI 1)
|
|
131
|
+
├── prius/ (e.g., Codex CLI 2)
|
|
132
|
+
└── tacoma/ (e.g., Cursor)
|
|
133
|
+
OR
|
|
134
|
+
└── your-repo-portfolio/ (company agents)
|
|
135
|
+
├── apple/ (e.g., Claude Code)
|
|
136
|
+
├── google/ (e.g., Cursor instance 1)
|
|
137
|
+
└── microsoft/ (e.g., Cursor instance 2)
|
|
84
138
|
```
|
|
85
139
|
|
|
86
140
|
**Custom Location** - Point agents anywhere you want:
|
|
@@ -130,7 +184,7 @@ prlt fire zuckerberg # You're fired!
|
|
|
130
184
|
prlt staff # Check your workers
|
|
131
185
|
```
|
|
132
186
|
|
|
133
|
-
**Agents**: altman,
|
|
187
|
+
**Agents**: altman, daramodei, danamodei, andreesen, arnault, benioff, bezos, blakely, bloomberg, branson, brin, buffett, carmack, chesky, cook, dean, dorsey, ellison, gates, horowitz, huang, jobs, kalanick, karpathy, lecun, ma, murati, munger, musk, nadella, ng, oprah, page, perkins, sandberg, sutskever, swift, whitney, wojcicki, zuck
|
|
134
188
|
**Directory**: `../[project]-staff/`
|
|
135
189
|
|
|
136
190
|
### 🚗 Toyotas
|
|
@@ -143,7 +197,7 @@ prlt park 4runner # Back to the bay
|
|
|
143
197
|
prlt garage # Check your fleet
|
|
144
198
|
```
|
|
145
199
|
|
|
146
|
-
**Agents**:
|
|
200
|
+
**Agents**: 1stgen4runner, 2ndgen4runner, 3rdgen4runner, alltrac, camry, fj40, fj60, fj80, fzj80, hdj80, hdj81, highlander, hilux, ironpig, landcruiser, prius, rav4, sierra, tacoma, tercel, troopy, tundra
|
|
147
201
|
**Directory**: `../[project]-garage/`
|
|
148
202
|
|
|
149
203
|
### 🏢 Companies
|
|
@@ -175,108 +229,139 @@ prlt portfolio # Check your holdings
|
|
|
175
229
|
- `prlt init --workspace-root <path>` - Use a custom agent directory
|
|
176
230
|
- `prlt list [--theme=cars]` - List available agents
|
|
177
231
|
- `prlt themes` - Show all themes
|
|
232
|
+
- `prlt repair` - Fix broken worktree references after repo moves
|
|
233
|
+
- `prlt migrate <workspace-name>` - Move your repo into a workspace folder
|
|
234
|
+
- `prlt upgrade` - Upgrade config to latest format (backwards compatible)
|
|
235
|
+
- `prlt health` - Check worktree health status
|
|
178
236
|
|
|
179
237
|
---
|
|
180
238
|
|
|
181
239
|
## 🛠️ How It Works
|
|
182
240
|
|
|
183
|
-
1. **Initialize**: Choose your theme
|
|
184
|
-
2. **Create**: `
|
|
185
|
-
3. **
|
|
186
|
-
4. **
|
|
187
|
-
5. **
|
|
241
|
+
1. **Initialize**: `prlt init` - Choose your theme and workspace layout
|
|
242
|
+
2. **Create agents**: `prlt hire bezos` / `prlt drive camry` / `prlt buy apple` - Creates isolated git worktrees
|
|
243
|
+
3. **Work**: Each worktree is a persistent workspace where agents can work independently - switch AI tools or branches but the workspace persists
|
|
244
|
+
4. **Check status**: `prlt staff` / `prlt garage` / `prlt portfolio` - See your active agents
|
|
245
|
+
5. **Clean up**: `prlt fire bezos` / `prlt park camry` / `prlt sell apple` - Removes worktrees cleanly
|
|
188
246
|
|
|
189
|
-
**That's it!** Simple
|
|
247
|
+
**That's it!** Simple themed commands wrapping git worktrees.
|
|
190
248
|
|
|
191
|
-
|
|
249
|
+
Configuration is stored in `.proletariat/repo.json` (or `.proletariat/config.json` for backwards compatibility).
|
|
192
250
|
|
|
193
251
|
---
|
|
194
252
|
|
|
195
|
-
## 🎯
|
|
253
|
+
## 🎯 Parallel AI Development in Action
|
|
196
254
|
|
|
197
255
|
```bash
|
|
198
|
-
#
|
|
256
|
+
# Set up persistent workspaces
|
|
199
257
|
prlt hire bezos musk gates
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
Now open separate terminal panes/tabs or AI IDE windows (Cursor, Windsurf, etc.):
|
|
200
261
|
|
|
201
|
-
|
|
262
|
+
**Terminal Pane/Tab or AI IDE Window 1: Agent workspace (e.g., bezos)**
|
|
263
|
+
```bash
|
|
202
264
|
cd ../your-project-staff/bezos
|
|
203
|
-
|
|
204
|
-
#
|
|
265
|
+
claude-code . # Claude Code owns this workspace for weeks
|
|
266
|
+
# Monday: Implement login
|
|
267
|
+
# Tuesday: Add OAuth
|
|
268
|
+
# Wednesday: Fix auth bugs
|
|
269
|
+
# Thursday: Add 2FA
|
|
270
|
+
# All in the same workspace, different branches as needed
|
|
271
|
+
```
|
|
205
272
|
|
|
206
|
-
|
|
273
|
+
**Terminal Pane/Tab or AI IDE Window 2: Agent workspace (e.g., musk)**
|
|
274
|
+
```bash
|
|
207
275
|
cd ../your-project-staff/musk
|
|
208
|
-
|
|
209
|
-
#
|
|
276
|
+
cursor . # Cursor lives here, building feature after feature
|
|
277
|
+
# Week 1: User endpoints
|
|
278
|
+
# Week 2: Payment endpoints
|
|
279
|
+
# Week 3: Analytics endpoints
|
|
280
|
+
```
|
|
210
281
|
|
|
211
|
-
|
|
282
|
+
**Terminal Pane/Tab or AI IDE Window 3: Agent workspace (e.g., gates)**
|
|
283
|
+
```bash
|
|
212
284
|
cd ../your-project-staff/gates
|
|
213
|
-
|
|
214
|
-
#
|
|
285
|
+
# Your manual testing, experiments, debugging
|
|
286
|
+
# No AI needed - just your playground
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
Merge completed work from any workspace:
|
|
290
|
+
```bash
|
|
291
|
+
# Option 1: GitHub PR (recommended)
|
|
292
|
+
cd ../your-project-staff/bezos
|
|
293
|
+
gh pr create --title "Add login feature" --body "Authentication implementation"
|
|
215
294
|
|
|
216
|
-
#
|
|
295
|
+
# Option 2: Local merge
|
|
217
296
|
cd ../your-project
|
|
218
|
-
git merge
|
|
219
|
-
git merge
|
|
220
|
-
|
|
297
|
+
git merge bezos/feature-login
|
|
298
|
+
git merge musk/api-v2
|
|
299
|
+
# Each workspace keeps working independently!
|
|
221
300
|
```
|
|
222
301
|
|
|
223
302
|
---
|
|
224
303
|
|
|
225
|
-
## 🌟 Why
|
|
304
|
+
## 🌟 Why This Design Pattern?
|
|
226
305
|
|
|
227
|
-
### ❌ **Traditional Single
|
|
306
|
+
### ❌ **Traditional Single Workspace**
|
|
228
307
|
```bash
|
|
229
|
-
#
|
|
308
|
+
# One directory, constant context switching
|
|
230
309
|
git checkout -b feature-1
|
|
231
|
-
#
|
|
232
|
-
git
|
|
233
|
-
git checkout -b feature-2
|
|
234
|
-
#
|
|
310
|
+
# Work on feature 1...
|
|
311
|
+
git stash # Have to stash to switch
|
|
312
|
+
git checkout -b feature-2
|
|
313
|
+
# Lost context, files changed, AI confused...
|
|
235
314
|
```
|
|
236
315
|
|
|
237
|
-
### ✅ **
|
|
316
|
+
### ✅ **Multiple Workspaces, One Machine**
|
|
238
317
|
```bash
|
|
239
|
-
#
|
|
318
|
+
# Set up workspaces on your local machine
|
|
240
319
|
prlt hire bezos musk gates
|
|
241
320
|
|
|
242
|
-
#
|
|
321
|
+
# Each workspace ready for AI or manual work
|
|
243
322
|
prlt staff
|
|
244
|
-
# 💰 BEZOS: ✅
|
|
245
|
-
# 💰 MUSK: ✅
|
|
246
|
-
# 💰 GATES: ✅
|
|
323
|
+
# 💰 BEZOS: ✅ Cursor session 1 → ../project-staff/bezos
|
|
324
|
+
# 💰 MUSK: ✅ Claude Code session → ../project-staff/musk
|
|
325
|
+
# 💰 GATES: ✅ Your manual edits → ../project-staff/gates
|
|
326
|
+
|
|
327
|
+
# Three workspaces, three features, all on your machine!
|
|
247
328
|
```
|
|
248
329
|
|
|
249
|
-
**
|
|
330
|
+
**Scale your solo development: Multiple workspaces, parallel progress, zero stashing!** 🎉
|
|
250
331
|
|
|
251
332
|
---
|
|
252
333
|
|
|
253
334
|
|
|
254
335
|
## 🏆 Perfect For
|
|
255
336
|
|
|
256
|
-
- **
|
|
257
|
-
- **
|
|
258
|
-
- **
|
|
259
|
-
- **
|
|
260
|
-
- **
|
|
261
|
-
- **
|
|
337
|
+
- **Running Multiple Cursor Sessions** - Open 3+ Cursor windows, each editing a different workspace/feature
|
|
338
|
+
- **Parallel Claude Code Instances** - Launch multiple Claude Code sessions working on separate tasks
|
|
339
|
+
- **Concurrent CLI Agents** - Run Codex, Aider, or other CLI agents simultaneously in different workspaces
|
|
340
|
+
- **Mixed AI Tools** - Cursor in one workspace, Claude Code in another, Copilot in a third
|
|
341
|
+
- **Scaling Solo Development** - One developer running multiple AI sessions on their machine
|
|
342
|
+
- **Rapid Prototyping** - Each workspace explores different approaches without affecting others
|
|
262
343
|
|
|
263
344
|
---
|
|
264
345
|
|
|
346
|
+
## 🚀 Contributing & Releases
|
|
347
|
+
|
|
348
|
+
See [RELEASE.md](./RELEASE.md) for the release process.
|
|
349
|
+
|
|
265
350
|
## 📜 License
|
|
266
351
|
|
|
267
|
-
MIT License - Because
|
|
352
|
+
MIT License - Because the revolutions is open source.
|
|
268
353
|
|
|
269
354
|
---
|
|
270
355
|
|
|
271
356
|
<div align="center">
|
|
272
357
|
|
|
273
|
-
|
|
358
|
+
**✊ WORKERS OF THE CODEBASE, UNITE! ✊**
|
|
274
359
|
|
|
275
360
|
*The simplest, most fun git worktree manager in existence!*
|
|
276
361
|
|
|
277
362
|
[](https://www.npmjs.com/package/@proletariat/cli)
|
|
278
363
|
[](https://npmjs.org/package/@proletariat/cli)
|
|
279
|
-
[](https://github.com/chrismcdermut/proletariat-cli)
|
|
280
365
|
|
|
281
366
|
**[⭐ Star on GitHub](https://github.com/chrismcdermut/proletariat-cli) • [📦 Install from NPM](https://www.npmjs.com/package/@proletariat/cli) • [🐛 Report Issues](https://github.com/chrismcdermut/proletariat-cli/issues)**
|
|
282
367
|
|
package/dist/bin/prlt.js
CHANGED
|
@@ -8,25 +8,74 @@
|
|
|
8
8
|
* Cars: "Start your engines!"
|
|
9
9
|
* Companies: "Time to make some acquisitions!"
|
|
10
10
|
*/
|
|
11
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
14
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
15
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
16
|
+
}
|
|
17
|
+
Object.defineProperty(o, k2, desc);
|
|
18
|
+
}) : (function(o, m, k, k2) {
|
|
19
|
+
if (k2 === undefined) k2 = k;
|
|
20
|
+
o[k2] = m[k];
|
|
21
|
+
}));
|
|
22
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
23
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
24
|
+
}) : function(o, v) {
|
|
25
|
+
o["default"] = v;
|
|
26
|
+
});
|
|
27
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
28
|
+
var ownKeys = function(o) {
|
|
29
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
30
|
+
var ar = [];
|
|
31
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
32
|
+
return ar;
|
|
33
|
+
};
|
|
34
|
+
return ownKeys(o);
|
|
35
|
+
};
|
|
36
|
+
return function (mod) {
|
|
37
|
+
if (mod && mod.__esModule) return mod;
|
|
38
|
+
var result = {};
|
|
39
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
40
|
+
__setModuleDefault(result, mod);
|
|
41
|
+
return result;
|
|
42
|
+
};
|
|
43
|
+
})();
|
|
11
44
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
45
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
46
|
};
|
|
14
47
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
48
|
const commander_1 = require("commander");
|
|
16
49
|
const chalk_1 = __importDefault(require("chalk"));
|
|
50
|
+
const fs = __importStar(require("fs"));
|
|
51
|
+
const path = __importStar(require("path"));
|
|
17
52
|
// Import modules
|
|
18
53
|
const index_js_1 = require("../lib/themes/index.js");
|
|
19
54
|
const index_js_2 = require("../lib/worktree/index.js");
|
|
55
|
+
const repair_js_1 = require("../lib/worktree/repair.js");
|
|
56
|
+
const migrate_js_1 = require("../lib/worktree/migrate.js");
|
|
57
|
+
const upgrade_js_1 = require("../lib/config/upgrade.js");
|
|
20
58
|
const helpers_js_1 = require("../lib/utils/helpers.js");
|
|
21
59
|
const logger_js_1 = require("../lib/utils/logger.js");
|
|
22
60
|
const program = new commander_1.Command();
|
|
61
|
+
// Get version from package.json dynamically
|
|
62
|
+
function getVersion() {
|
|
63
|
+
try {
|
|
64
|
+
const packageJsonPath = path.join(__dirname, '../../package.json');
|
|
65
|
+
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8'));
|
|
66
|
+
return packageJson.version;
|
|
67
|
+
}
|
|
68
|
+
catch {
|
|
69
|
+
return '0.0.0'; // Fallback version if package.json can't be read
|
|
70
|
+
}
|
|
71
|
+
}
|
|
23
72
|
// Get themes for CLI setup
|
|
24
73
|
const THEMES = (0, index_js_1.getAllThemes)();
|
|
25
74
|
// CLI Program setup
|
|
26
75
|
program
|
|
27
76
|
.name('prlt')
|
|
28
77
|
.description('⚒️ Simple Themed Git Worktree Manager')
|
|
29
|
-
.version(
|
|
78
|
+
.version(getVersion());
|
|
30
79
|
program
|
|
31
80
|
.command('init')
|
|
32
81
|
.description('🚩 Initialize themed worktree management')
|
|
@@ -66,6 +115,22 @@ program
|
|
|
66
115
|
.command('themes')
|
|
67
116
|
.description('🎨 List available themes')
|
|
68
117
|
.action(() => (0, helpers_js_1.listThemes)());
|
|
118
|
+
program
|
|
119
|
+
.command('repair')
|
|
120
|
+
.description('🔧 Repair broken worktree references (e.g., after moving the repository)')
|
|
121
|
+
.action(() => (0, repair_js_1.repairWorktrees)());
|
|
122
|
+
program
|
|
123
|
+
.command('health')
|
|
124
|
+
.description('🏥 Check health of all worktrees')
|
|
125
|
+
.action(() => (0, repair_js_1.checkWorktreeHealth)());
|
|
126
|
+
program
|
|
127
|
+
.command('migrate')
|
|
128
|
+
.description('📦 Migrate repository into workspace folder alongside worktrees')
|
|
129
|
+
.action(() => (0, migrate_js_1.migrateToWorkspace)());
|
|
130
|
+
program
|
|
131
|
+
.command('upgrade')
|
|
132
|
+
.description('⬆️ Upgrade configuration to latest format')
|
|
133
|
+
.action(() => (0, upgrade_js_1.upgradeConfig)());
|
|
69
134
|
// Parse command line arguments
|
|
70
135
|
program.parse(process.argv);
|
|
71
136
|
// Show help if no command provided
|
package/dist/bin/prlt.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prlt.js","sourceRoot":"","sources":["../../src/bin/prlt.ts"],"names":[],"mappings":";;AAEA;;;;;;;GAOG
|
|
1
|
+
{"version":3,"file":"prlt.js","sourceRoot":"","sources":["../../src/bin/prlt.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,6 +8,7 @@ export interface WorkspaceResolution {
|
|
|
8
8
|
}
|
|
9
9
|
export declare function resolveWorkspace(theme: Theme, options?: InitOptions): WorkspaceResolution;
|
|
10
10
|
export declare function isInitialized(): boolean;
|
|
11
|
+
export declare function migrateConfigIfNeeded(): boolean;
|
|
11
12
|
export declare function loadConfig(): ProjectConfig;
|
|
12
13
|
export declare function saveConfig(configData: ProjectConfig): void;
|
|
13
14
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/config/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAE1F,wBAAgB,cAAc,IAAI,MAAM,CAMvC;AAED,wBAAgB,cAAc,IAAI,MAAM,CAGvC;AAED,wBAAgB,aAAa,IAAI,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/config/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAE1F,wBAAgB,cAAc,IAAI,MAAM,CAMvC;AAED,wBAAgB,cAAc,IAAI,MAAM,CAGvC;AAED,wBAAgB,aAAa,IAAI,MAAM,CActC;AAED,MAAM,WAAW,mBAAmB;IAClC,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,eAAe,CAAC;CACzB;AAED,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,GAAE,WAAgB,GAAG,mBAAmB,CA2B7F;AAED,wBAAgB,aAAa,IAAI,OAAO,CAMvC;AAED,wBAAgB,qBAAqB,IAAI,OAAO,CAa/C;AAED,wBAAgB,UAAU,IAAI,aAAa,CAW1C;AAED,wBAAgB,UAAU,CAAC,UAAU,EAAE,aAAa,GAAG,IAAI,CAS1D"}
|
package/dist/lib/config/index.js
CHANGED
|
@@ -38,6 +38,7 @@ exports.getProjectName = getProjectName;
|
|
|
38
38
|
exports.getConfigPath = getConfigPath;
|
|
39
39
|
exports.resolveWorkspace = resolveWorkspace;
|
|
40
40
|
exports.isInitialized = isInitialized;
|
|
41
|
+
exports.migrateConfigIfNeeded = migrateConfigIfNeeded;
|
|
41
42
|
exports.loadConfig = loadConfig;
|
|
42
43
|
exports.saveConfig = saveConfig;
|
|
43
44
|
const fs = __importStar(require("fs"));
|
|
@@ -58,7 +59,17 @@ function getProjectName() {
|
|
|
58
59
|
}
|
|
59
60
|
function getConfigPath() {
|
|
60
61
|
const projectRoot = getProjectRoot();
|
|
61
|
-
|
|
62
|
+
const newPath = path.join(projectRoot, '.proletariat', 'repo.json');
|
|
63
|
+
const oldPath = path.join(projectRoot, '.proletariat', 'config.json');
|
|
64
|
+
// Check for new repo.json first, then fall back to config.json
|
|
65
|
+
if (fs.existsSync(newPath)) {
|
|
66
|
+
return newPath;
|
|
67
|
+
}
|
|
68
|
+
else if (fs.existsSync(oldPath)) {
|
|
69
|
+
return oldPath;
|
|
70
|
+
}
|
|
71
|
+
// For new installations, use repo.json
|
|
72
|
+
return newPath;
|
|
62
73
|
}
|
|
63
74
|
function resolveWorkspace(theme, options = {}) {
|
|
64
75
|
const projectRoot = getProjectRoot();
|
|
@@ -88,7 +99,23 @@ function resolveWorkspace(theme, options = {}) {
|
|
|
88
99
|
};
|
|
89
100
|
}
|
|
90
101
|
function isInitialized() {
|
|
91
|
-
|
|
102
|
+
const projectRoot = getProjectRoot();
|
|
103
|
+
const newPath = path.join(projectRoot, '.proletariat', 'repo.json');
|
|
104
|
+
const oldPath = path.join(projectRoot, '.proletariat', 'config.json');
|
|
105
|
+
return fs.existsSync(newPath) || fs.existsSync(oldPath);
|
|
106
|
+
}
|
|
107
|
+
function migrateConfigIfNeeded() {
|
|
108
|
+
const projectRoot = getProjectRoot();
|
|
109
|
+
const newPath = path.join(projectRoot, '.proletariat', 'repo.json');
|
|
110
|
+
const oldPath = path.join(projectRoot, '.proletariat', 'config.json');
|
|
111
|
+
// If old config exists but new doesn't, copy to new location
|
|
112
|
+
if (fs.existsSync(oldPath) && !fs.existsSync(newPath)) {
|
|
113
|
+
const config = JSON.parse(fs.readFileSync(oldPath, 'utf8'));
|
|
114
|
+
fs.writeFileSync(newPath, JSON.stringify(config, null, 2));
|
|
115
|
+
// Keep old file for now to ensure compatibility
|
|
116
|
+
return true;
|
|
117
|
+
}
|
|
118
|
+
return false;
|
|
92
119
|
}
|
|
93
120
|
function loadConfig() {
|
|
94
121
|
if (!isInitialized()) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/config/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wCAMC;AAED,wCAGC;AAED,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/config/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wCAMC;AAED,wCAGC;AAED,sCAcC;AAOD,4CA2BC;AAED,sCAMC;AAED,sDAaC;AAED,gCAWC;AAED,gCASC;AAlHD,uCAAyB;AACzB,2CAA6B;AAC7B,iDAAyC;AACzC,iDAA8C;AAG9C,SAAgB,cAAc;IAC5B,IAAI,CAAC;QACH,OAAO,IAAA,wBAAQ,EAAC,+BAA+B,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;IAChF,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,MAAM,IAAI,KAAK,CAAC,gEAAgE,CAAC,CAAC;IACpF,CAAC;AACH,CAAC;AAED,SAAgB,cAAc;IAC5B,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;AACpC,CAAC;AAED,SAAgB,aAAa;IAC3B,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,EAAE,WAAW,CAAC,CAAC;IACpE,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,EAAE,aAAa,CAAC,CAAC;IAEtE,+DAA+D;IAC/D,IAAI,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,CAAC;QAC3B,OAAO,OAAO,CAAC;IACjB,CAAC;SAAM,IAAI,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,CAAC;QAClC,OAAO,OAAO,CAAC;IACjB,CAAC;IAED,uCAAuC;IACvC,OAAO,OAAO,CAAC;AACjB,CAAC;AAOD,SAAgB,gBAAgB,CAAC,KAAY,EAAE,UAAuB,EAAE;IACtE,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;IAE5C,IAAI,IAAI,GAA4B,SAAS,CAAC;IAC9C,IAAI,OAAO,GAAG,SAAS,CAAC;IACxB,IAAI,aAAiC,CAAC;IACtC,IAAI,YAAoB,CAAC;IAEzB,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC;QAC1B,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,WAAW,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;QAChE,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;QACrC,IAAI,GAAG,QAAQ,CAAC;IAClB,CAAC;SAAM,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC;QAC7B,aAAa,GAAG,OAAO,CAAC,SAAS,CAAC;QAClC,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;QAC9C,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,WAAW,IAAI,KAAK,CAAC,SAAS,EAAE,CAAC,CAAC;QACvE,IAAI,GAAG,WAAW,CAAC;IACrB,CAAC;SAAM,CAAC;QACN,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,GAAG,WAAW,IAAI,KAAK,CAAC,SAAS,EAAE,CAAC,CAAC;IAC3E,CAAC;IAED,OAAO;QACL,YAAY;QACZ,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,aAAa,EAAE;KACzC,CAAC;AACJ,CAAC;AAED,SAAgB,aAAa;IAC3B,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,EAAE,WAAW,CAAC,CAAC;IACpE,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,EAAE,aAAa,CAAC,CAAC;IAEtE,OAAO,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,qBAAqB;IACnC,MAAM,WAAW,GAAG,cAAc,EAAE,CAAC;IACrC,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,EAAE,WAAW,CAAC,CAAC;IACpE,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,EAAE,aAAa,CAAC,CAAC;IAEtE,6DAA6D;IAC7D,IAAI,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,CAAC;QACtD,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;QAC5D,EAAE,CAAC,aAAa,CAAC,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;QAC3D,gDAAgD;QAChD,OAAO,IAAI,CAAC;IACd,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC;AAED,SAAgB,UAAU;IACxB,IAAI,CAAC,aAAa,EAAE,EAAE,CAAC;QACrB,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;IACzE,CAAC;IAED,MAAM,UAAU,GAAG,aAAa,EAAE,CAAC;IACnC,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,UAAU,EAAE,MAAM,CAAC,CAAkB,CAAC;IACnF,OAAO;QACL,GAAG,SAAS;QACZ,KAAK,EAAE,IAAA,mBAAQ,EAAC,SAAS,CAAC,SAAS,CAAC;KACrC,CAAC;AACJ,CAAC;AAED,SAAgB,UAAU,CAAC,UAAyB;IAClD,MAAM,UAAU,GAAG,aAAa,EAAE,CAAC;IACnC,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;IAE3C,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;QAC9B,EAAE,CAAC,SAAS,CAAC,SAAS,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC/C,CAAC;IAED,EAAE,CAAC,aAAa,CAAC,UAAU,EAAE,IAAI,CAAC,SAAS,CAAC,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;AACpE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"upgrade.d.ts","sourceRoot":"","sources":["../../../src/lib/config/upgrade.ts"],"names":[],"mappings":"AAQA,wBAAsB,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC,CA4InD"}
|