@proletariat/cli 0.3.87 → 0.3.89
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/dist/commands/db/repair.d.ts +14 -0
- package/dist/commands/db/repair.js +186 -0
- package/dist/commands/db/repair.js.map +1 -0
- package/dist/commands/init.d.ts +6 -1
- package/dist/commands/init.js +44 -89
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/new.d.ts +30 -2
- package/dist/commands/new.js +141 -9
- package/dist/commands/new.js.map +1 -1
- package/dist/commands/session/list.js +42 -0
- package/dist/commands/session/list.js.map +1 -1
- package/dist/commands/session/poke.d.ts +6 -0
- package/dist/commands/session/poke.js +40 -0
- package/dist/commands/session/poke.js.map +1 -1
- package/dist/commands/work/start.d.ts +1 -0
- package/dist/commands/work/start.js +20 -1
- package/dist/commands/work/start.js.map +1 -1
- package/dist/hooks/init.js +3 -6
- package/dist/hooks/init.js.map +1 -1
- package/dist/lib/asana/config.d.ts +1 -1
- package/dist/lib/asana/config.js +18 -30
- package/dist/lib/asana/config.js.map +1 -1
- package/dist/lib/asana/mapper.d.ts +4 -3
- package/dist/lib/asana/mapper.js +17 -10
- package/dist/lib/asana/mapper.js.map +1 -1
- package/dist/lib/dashboard/data.js +2 -2
- package/dist/lib/dashboard/data.js.map +1 -1
- package/dist/lib/database/agents.d.ts +73 -0
- package/dist/lib/database/agents.js +341 -0
- package/dist/lib/database/agents.js.map +1 -0
- package/dist/lib/database/db-safety.d.ts +59 -0
- package/dist/lib/database/db-safety.js +295 -0
- package/dist/lib/database/db-safety.js.map +1 -0
- package/dist/lib/database/driver.d.ts +115 -0
- package/dist/lib/database/driver.js +110 -0
- package/dist/lib/database/driver.js.map +1 -0
- package/dist/lib/database/index.d.ts +26 -287
- package/dist/lib/database/index.js +37 -1067
- package/dist/lib/database/index.js.map +1 -1
- package/dist/lib/database/media.d.ts +53 -0
- package/dist/lib/database/media.js +118 -0
- package/dist/lib/database/media.js.map +1 -0
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.d.ts +9 -0
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.js +22 -0
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.js.map +1 -0
- package/dist/lib/database/migrations/index.js +2 -0
- package/dist/lib/database/migrations/index.js.map +1 -1
- package/dist/lib/database/pmo-bootstrap.d.ts +30 -0
- package/dist/lib/database/pmo-bootstrap.js +105 -0
- package/dist/lib/database/pmo-bootstrap.js.map +1 -0
- package/dist/lib/database/repositories.d.ts +26 -0
- package/dist/lib/database/repositories.js +56 -0
- package/dist/lib/database/repositories.js.map +1 -0
- package/dist/lib/database/settings-store.d.ts +60 -0
- package/dist/lib/database/settings-store.js +87 -0
- package/dist/lib/database/settings-store.js.map +1 -0
- package/dist/lib/database/themes.d.ts +59 -0
- package/dist/lib/database/themes.js +212 -0
- package/dist/lib/database/themes.js.map +1 -0
- package/dist/lib/database/workspace.d.ts +51 -0
- package/dist/lib/database/workspace.js +194 -0
- package/dist/lib/database/workspace.js.map +1 -0
- package/dist/lib/database/worktrees.d.ts +33 -0
- package/dist/lib/database/worktrees.js +60 -0
- package/dist/lib/database/worktrees.js.map +1 -0
- package/dist/lib/execution/config.d.ts +14 -1
- package/dist/lib/execution/config.js +67 -17
- package/dist/lib/execution/config.js.map +1 -1
- package/dist/lib/execution/devcontainer.d.ts +2 -0
- package/dist/lib/execution/devcontainer.js +6 -1
- package/dist/lib/execution/devcontainer.js.map +1 -1
- package/dist/lib/execution/runners/docker-management.d.ts +6 -0
- package/dist/lib/execution/runners/docker-management.js +28 -12
- package/dist/lib/execution/runners/docker-management.js.map +1 -1
- package/dist/lib/execution/runners/sandbox.js +2 -1
- package/dist/lib/execution/runners/sandbox.js.map +1 -1
- package/dist/lib/execution/spawner.d.ts +3 -1
- package/dist/lib/execution/spawner.js +1 -0
- package/dist/lib/execution/spawner.js.map +1 -1
- package/dist/lib/execution/storage.d.ts +47 -12
- package/dist/lib/execution/storage.js +69 -47
- package/dist/lib/execution/storage.js.map +1 -1
- package/dist/lib/execution/types.d.ts +1 -0
- package/dist/lib/execution/types.js.map +1 -1
- package/dist/lib/external-issues/mapping-store.d.ts +4 -3
- package/dist/lib/external-issues/mapping-store.js +21 -13
- package/dist/lib/external-issues/mapping-store.js.map +1 -1
- package/dist/lib/external-issues/outbound-sync.d.ts +1 -1
- package/dist/lib/jira/config.d.ts +1 -6
- package/dist/lib/jira/config.js +16 -33
- package/dist/lib/jira/config.js.map +1 -1
- package/dist/lib/linear/config.d.ts +1 -1
- package/dist/lib/linear/config.js +16 -38
- package/dist/lib/linear/config.js.map +1 -1
- package/dist/lib/linear/mapper.d.ts +4 -3
- package/dist/lib/linear/mapper.js +20 -13
- package/dist/lib/linear/mapper.js.map +1 -1
- package/dist/lib/monday/config.d.ts +1 -1
- package/dist/lib/monday/config.js +16 -32
- package/dist/lib/monday/config.js.map +1 -1
- package/dist/lib/monday/mapper.d.ts +4 -3
- package/dist/lib/monday/mapper.js +19 -12
- package/dist/lib/monday/mapper.js.map +1 -1
- package/dist/lib/onboarding/wizard.d.ts +2 -2
- package/dist/lib/onboarding/wizard.js +32 -24
- package/dist/lib/onboarding/wizard.js.map +1 -1
- package/dist/lib/pmo/diet.d.ts +1 -1
- package/dist/lib/pmo/find-pmo.js +10 -10
- package/dist/lib/pmo/find-pmo.js.map +1 -1
- package/dist/lib/pmo/schema.d.ts +1 -1
- package/dist/lib/pmo/schema.js +1 -0
- package/dist/lib/pmo/schema.js.map +1 -1
- package/dist/lib/pmo/storage/actions.js +9 -3
- package/dist/lib/pmo/storage/actions.js.map +1 -1
- package/dist/lib/pmo/storage/index.d.ts +8 -0
- package/dist/lib/pmo/storage/index.js +13 -1
- package/dist/lib/pmo/storage/index.js.map +1 -1
- package/dist/lib/pmo/storage/types.d.ts +5 -1
- package/dist/lib/pmo/types.d.ts +1 -0
- package/dist/lib/pmo/types.js.map +1 -1
- package/dist/lib/registry/index.d.ts +2 -2
- package/dist/lib/registry/index.js +5 -6
- package/dist/lib/registry/index.js.map +1 -1
- package/dist/lib/session-store.js +2 -2
- package/dist/lib/session-store.js.map +1 -1
- package/dist/lib/shortcut/config.d.ts +1 -7
- package/dist/lib/shortcut/config.js +13 -32
- package/dist/lib/shortcut/config.js.map +1 -1
- package/dist/lib/trello/config.d.ts +1 -26
- package/dist/lib/trello/config.js +23 -64
- package/dist/lib/trello/config.js.map +1 -1
- package/dist/lib/trello/mapper.d.ts +4 -3
- package/dist/lib/trello/mapper.js +17 -10
- package/dist/lib/trello/mapper.js.map +1 -1
- package/dist/lib/work-lifecycle/action-chaining.js +4 -0
- package/dist/lib/work-lifecycle/action-chaining.js.map +1 -1
- package/dist/lib/work-lifecycle/post-execution.d.ts +1 -1
- package/dist/lib/work-source/config.d.ts +1 -1
- package/dist/lib/work-source/config.js +14 -24
- package/dist/lib/work-source/config.js.map +1 -1
- package/dist/lib/work-source/provider-sources.d.ts +1 -1
- package/dist/lib/work-source/provider-sources.js +8 -20
- package/dist/lib/work-source/provider-sources.js.map +1 -1
- package/oclif.manifest.json +1111 -1001
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -322,11 +322,9 @@
|
|
|
322
322
|
"init": {
|
|
323
323
|
"aliases": [],
|
|
324
324
|
"args": {},
|
|
325
|
-
"description": "Initialize
|
|
325
|
+
"description": "Initialize a new headquarters (deprecated — use `prlt new` instead)",
|
|
326
326
|
"examples": [
|
|
327
|
-
"<%= config.bin %>
|
|
328
|
-
"<%= config.bin %> <%= command.id %> --json",
|
|
329
|
-
"<%= config.bin %> <%= command.id %> --json --setup claude-code"
|
|
327
|
+
"<%= config.bin %> new"
|
|
330
328
|
],
|
|
331
329
|
"flags": {
|
|
332
330
|
"json": {
|
|
@@ -342,6 +340,44 @@
|
|
|
342
340
|
"allowNo": false,
|
|
343
341
|
"type": "boolean"
|
|
344
342
|
},
|
|
343
|
+
"name": {
|
|
344
|
+
"char": "n",
|
|
345
|
+
"description": "HQ name",
|
|
346
|
+
"name": "name",
|
|
347
|
+
"hasDynamicHelp": false,
|
|
348
|
+
"multiple": false,
|
|
349
|
+
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"path": {
|
|
352
|
+
"char": "p",
|
|
353
|
+
"description": "HQ path (defaults to ./{name}-hq)",
|
|
354
|
+
"name": "path",
|
|
355
|
+
"hasDynamicHelp": false,
|
|
356
|
+
"multiple": false,
|
|
357
|
+
"type": "option"
|
|
358
|
+
},
|
|
359
|
+
"agents": {
|
|
360
|
+
"char": "a",
|
|
361
|
+
"description": "Comma-separated list of agent names",
|
|
362
|
+
"name": "agents",
|
|
363
|
+
"hasDynamicHelp": false,
|
|
364
|
+
"multiple": false,
|
|
365
|
+
"type": "option"
|
|
366
|
+
},
|
|
367
|
+
"repos": {
|
|
368
|
+
"char": "r",
|
|
369
|
+
"description": "Comma-separated list of repository paths to clone/move",
|
|
370
|
+
"name": "repos",
|
|
371
|
+
"hasDynamicHelp": false,
|
|
372
|
+
"multiple": false,
|
|
373
|
+
"type": "option"
|
|
374
|
+
},
|
|
375
|
+
"pmo": {
|
|
376
|
+
"description": "Include PMO (Project Management Org)",
|
|
377
|
+
"name": "pmo",
|
|
378
|
+
"allowNo": true,
|
|
379
|
+
"type": "boolean"
|
|
380
|
+
},
|
|
345
381
|
"setup": {
|
|
346
382
|
"description": "Setup method for agent-driven onboarding (claude-code, codex, or manual)",
|
|
347
383
|
"name": "setup",
|
|
@@ -356,6 +392,7 @@
|
|
|
356
392
|
}
|
|
357
393
|
},
|
|
358
394
|
"hasDynamicHelp": false,
|
|
395
|
+
"hidden": true,
|
|
359
396
|
"hiddenAliases": [],
|
|
360
397
|
"id": "init",
|
|
361
398
|
"pluginAlias": "@proletariat/cli",
|
|
@@ -507,6 +544,18 @@
|
|
|
507
544
|
"name": "pmo",
|
|
508
545
|
"allowNo": true,
|
|
509
546
|
"type": "boolean"
|
|
547
|
+
},
|
|
548
|
+
"setup": {
|
|
549
|
+
"description": "Setup method for agent-driven onboarding (claude-code, codex, or manual)",
|
|
550
|
+
"name": "setup",
|
|
551
|
+
"hasDynamicHelp": false,
|
|
552
|
+
"multiple": false,
|
|
553
|
+
"options": [
|
|
554
|
+
"claude-code",
|
|
555
|
+
"codex",
|
|
556
|
+
"manual"
|
|
557
|
+
],
|
|
558
|
+
"type": "option"
|
|
510
559
|
}
|
|
511
560
|
},
|
|
512
561
|
"hasDynamicHelp": false,
|
|
@@ -1529,66 +1578,6 @@
|
|
|
1529
1578
|
"update.js"
|
|
1530
1579
|
]
|
|
1531
1580
|
},
|
|
1532
|
-
"autocomplete:setup": {
|
|
1533
|
-
"aliases": [],
|
|
1534
|
-
"args": {},
|
|
1535
|
-
"description": "Auto-detect shell and set up autocomplete",
|
|
1536
|
-
"examples": [
|
|
1537
|
-
"<%= config.bin %> <%= command.id %>",
|
|
1538
|
-
"<%= config.bin %> <%= command.id %> --install",
|
|
1539
|
-
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
1540
|
-
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
1541
|
-
],
|
|
1542
|
-
"flags": {
|
|
1543
|
-
"json": {
|
|
1544
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
1545
|
-
"name": "json",
|
|
1546
|
-
"allowNo": false,
|
|
1547
|
-
"type": "boolean"
|
|
1548
|
-
},
|
|
1549
|
-
"machine": {
|
|
1550
|
-
"char": "m",
|
|
1551
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
1552
|
-
"name": "machine",
|
|
1553
|
-
"allowNo": false,
|
|
1554
|
-
"type": "boolean"
|
|
1555
|
-
},
|
|
1556
|
-
"install": {
|
|
1557
|
-
"char": "i",
|
|
1558
|
-
"description": "Automatically install to shell config file",
|
|
1559
|
-
"name": "install",
|
|
1560
|
-
"allowNo": false,
|
|
1561
|
-
"type": "boolean"
|
|
1562
|
-
},
|
|
1563
|
-
"shell": {
|
|
1564
|
-
"char": "s",
|
|
1565
|
-
"description": "Override shell detection (zsh, bash, powershell)",
|
|
1566
|
-
"name": "shell",
|
|
1567
|
-
"hasDynamicHelp": false,
|
|
1568
|
-
"multiple": false,
|
|
1569
|
-
"options": [
|
|
1570
|
-
"zsh",
|
|
1571
|
-
"bash",
|
|
1572
|
-
"powershell"
|
|
1573
|
-
],
|
|
1574
|
-
"type": "option"
|
|
1575
|
-
}
|
|
1576
|
-
},
|
|
1577
|
-
"hasDynamicHelp": false,
|
|
1578
|
-
"hiddenAliases": [],
|
|
1579
|
-
"id": "autocomplete:setup",
|
|
1580
|
-
"pluginAlias": "@proletariat/cli",
|
|
1581
|
-
"pluginName": "@proletariat/cli",
|
|
1582
|
-
"pluginType": "core",
|
|
1583
|
-
"strict": true,
|
|
1584
|
-
"isESM": true,
|
|
1585
|
-
"relativePath": [
|
|
1586
|
-
"dist",
|
|
1587
|
-
"commands",
|
|
1588
|
-
"autocomplete",
|
|
1589
|
-
"setup.js"
|
|
1590
|
-
]
|
|
1591
|
-
},
|
|
1592
1581
|
"agent:auth": {
|
|
1593
1582
|
"aliases": [],
|
|
1594
1583
|
"args": {},
|
|
@@ -2292,6 +2281,66 @@
|
|
|
2292
2281
|
"visit.js"
|
|
2293
2282
|
]
|
|
2294
2283
|
},
|
|
2284
|
+
"autocomplete:setup": {
|
|
2285
|
+
"aliases": [],
|
|
2286
|
+
"args": {},
|
|
2287
|
+
"description": "Auto-detect shell and set up autocomplete",
|
|
2288
|
+
"examples": [
|
|
2289
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2290
|
+
"<%= config.bin %> <%= command.id %> --install",
|
|
2291
|
+
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
2292
|
+
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
2293
|
+
],
|
|
2294
|
+
"flags": {
|
|
2295
|
+
"json": {
|
|
2296
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2297
|
+
"name": "json",
|
|
2298
|
+
"allowNo": false,
|
|
2299
|
+
"type": "boolean"
|
|
2300
|
+
},
|
|
2301
|
+
"machine": {
|
|
2302
|
+
"char": "m",
|
|
2303
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2304
|
+
"name": "machine",
|
|
2305
|
+
"allowNo": false,
|
|
2306
|
+
"type": "boolean"
|
|
2307
|
+
},
|
|
2308
|
+
"install": {
|
|
2309
|
+
"char": "i",
|
|
2310
|
+
"description": "Automatically install to shell config file",
|
|
2311
|
+
"name": "install",
|
|
2312
|
+
"allowNo": false,
|
|
2313
|
+
"type": "boolean"
|
|
2314
|
+
},
|
|
2315
|
+
"shell": {
|
|
2316
|
+
"char": "s",
|
|
2317
|
+
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2318
|
+
"name": "shell",
|
|
2319
|
+
"hasDynamicHelp": false,
|
|
2320
|
+
"multiple": false,
|
|
2321
|
+
"options": [
|
|
2322
|
+
"zsh",
|
|
2323
|
+
"bash",
|
|
2324
|
+
"powershell"
|
|
2325
|
+
],
|
|
2326
|
+
"type": "option"
|
|
2327
|
+
}
|
|
2328
|
+
},
|
|
2329
|
+
"hasDynamicHelp": false,
|
|
2330
|
+
"hiddenAliases": [],
|
|
2331
|
+
"id": "autocomplete:setup",
|
|
2332
|
+
"pluginAlias": "@proletariat/cli",
|
|
2333
|
+
"pluginName": "@proletariat/cli",
|
|
2334
|
+
"pluginType": "core",
|
|
2335
|
+
"strict": true,
|
|
2336
|
+
"isESM": true,
|
|
2337
|
+
"relativePath": [
|
|
2338
|
+
"dist",
|
|
2339
|
+
"commands",
|
|
2340
|
+
"autocomplete",
|
|
2341
|
+
"setup.js"
|
|
2342
|
+
]
|
|
2343
|
+
},
|
|
2295
2344
|
"asana:connect": {
|
|
2296
2345
|
"aliases": [],
|
|
2297
2346
|
"args": {},
|
|
@@ -3564,28 +3613,16 @@
|
|
|
3564
3613
|
"index.js"
|
|
3565
3614
|
]
|
|
3566
3615
|
},
|
|
3567
|
-
"
|
|
3616
|
+
"db:repair": {
|
|
3568
3617
|
"aliases": [],
|
|
3569
3618
|
"args": {},
|
|
3570
|
-
"description": "
|
|
3619
|
+
"description": "Check database integrity and repair corruption",
|
|
3571
3620
|
"examples": [
|
|
3572
|
-
"<%= config.bin %>
|
|
3573
|
-
"<%= config.bin %>
|
|
3574
|
-
"<%= config.bin %>
|
|
3575
|
-
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3576
|
-
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3577
|
-
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3578
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3621
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3622
|
+
"<%= config.bin %> <%= command.id %> --check-only",
|
|
3623
|
+
"<%= config.bin %> <%= command.id %> --workspace /path/to/hq"
|
|
3579
3624
|
],
|
|
3580
3625
|
"flags": {
|
|
3581
|
-
"project": {
|
|
3582
|
-
"char": "P",
|
|
3583
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
3584
|
-
"name": "project",
|
|
3585
|
-
"hasDynamicHelp": false,
|
|
3586
|
-
"multiple": false,
|
|
3587
|
-
"type": "option"
|
|
3588
|
-
},
|
|
3589
3626
|
"json": {
|
|
3590
3627
|
"description": "Output as JSON for AI agents/scripts",
|
|
3591
3628
|
"name": "json",
|
|
@@ -3599,24 +3636,16 @@
|
|
|
3599
3636
|
"allowNo": false,
|
|
3600
3637
|
"type": "boolean"
|
|
3601
3638
|
},
|
|
3602
|
-
"
|
|
3603
|
-
"
|
|
3604
|
-
"
|
|
3605
|
-
"name": "set",
|
|
3606
|
-
"hasDynamicHelp": false,
|
|
3607
|
-
"multiple": true,
|
|
3608
|
-
"type": "option"
|
|
3609
|
-
},
|
|
3610
|
-
"list": {
|
|
3611
|
-
"char": "l",
|
|
3612
|
-
"description": "List all configuration values",
|
|
3613
|
-
"name": "list",
|
|
3639
|
+
"check-only": {
|
|
3640
|
+
"description": "Only check integrity, do not attempt repair",
|
|
3641
|
+
"name": "check-only",
|
|
3614
3642
|
"allowNo": false,
|
|
3615
3643
|
"type": "boolean"
|
|
3616
3644
|
},
|
|
3617
|
-
"
|
|
3618
|
-
"
|
|
3619
|
-
"
|
|
3645
|
+
"workspace": {
|
|
3646
|
+
"char": "w",
|
|
3647
|
+
"description": "Path to workspace (defaults to active workspace)",
|
|
3648
|
+
"name": "workspace",
|
|
3620
3649
|
"hasDynamicHelp": false,
|
|
3621
3650
|
"multiple": false,
|
|
3622
3651
|
"type": "option"
|
|
@@ -3624,37 +3653,54 @@
|
|
|
3624
3653
|
},
|
|
3625
3654
|
"hasDynamicHelp": false,
|
|
3626
3655
|
"hiddenAliases": [],
|
|
3627
|
-
"id": "
|
|
3656
|
+
"id": "db:repair",
|
|
3628
3657
|
"pluginAlias": "@proletariat/cli",
|
|
3629
3658
|
"pluginName": "@proletariat/cli",
|
|
3630
3659
|
"pluginType": "core",
|
|
3631
3660
|
"strict": true,
|
|
3661
|
+
"enableJsonFlag": false,
|
|
3632
3662
|
"isESM": true,
|
|
3633
3663
|
"relativePath": [
|
|
3634
3664
|
"dist",
|
|
3635
3665
|
"commands",
|
|
3636
|
-
"
|
|
3637
|
-
"
|
|
3666
|
+
"db",
|
|
3667
|
+
"repair.js"
|
|
3638
3668
|
]
|
|
3639
3669
|
},
|
|
3640
|
-
"
|
|
3670
|
+
"docker:clean": {
|
|
3641
3671
|
"aliases": [],
|
|
3642
3672
|
"args": {},
|
|
3643
|
-
"description": "
|
|
3673
|
+
"description": "Remove orphaned containers (containers without running agents)",
|
|
3644
3674
|
"examples": [
|
|
3645
3675
|
"<%= config.bin %> <%= command.id %>",
|
|
3646
|
-
"<%= config.bin %> <%= command.id %>
|
|
3647
|
-
"<%= config.bin %> <%= command.id %>
|
|
3648
|
-
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
3676
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
3677
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3649
3678
|
],
|
|
3650
3679
|
"flags": {
|
|
3651
|
-
"
|
|
3652
|
-
"
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
"
|
|
3657
|
-
"
|
|
3680
|
+
"force": {
|
|
3681
|
+
"aliases": [
|
|
3682
|
+
"yes",
|
|
3683
|
+
"y"
|
|
3684
|
+
],
|
|
3685
|
+
"char": "f",
|
|
3686
|
+
"description": "Skip confirmation prompt",
|
|
3687
|
+
"name": "force",
|
|
3688
|
+
"allowNo": false,
|
|
3689
|
+
"type": "boolean"
|
|
3690
|
+
},
|
|
3691
|
+
"dry-run": {
|
|
3692
|
+
"char": "d",
|
|
3693
|
+
"description": "Show what would be removed without removing",
|
|
3694
|
+
"name": "dry-run",
|
|
3695
|
+
"allowNo": false,
|
|
3696
|
+
"type": "boolean"
|
|
3697
|
+
},
|
|
3698
|
+
"all": {
|
|
3699
|
+
"char": "a",
|
|
3700
|
+
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3701
|
+
"name": "all",
|
|
3702
|
+
"allowNo": false,
|
|
3703
|
+
"type": "boolean"
|
|
3658
3704
|
},
|
|
3659
3705
|
"json": {
|
|
3660
3706
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -3672,354 +3718,12 @@
|
|
|
3672
3718
|
},
|
|
3673
3719
|
"hasDynamicHelp": false,
|
|
3674
3720
|
"hiddenAliases": [],
|
|
3675
|
-
"id": "
|
|
3721
|
+
"id": "docker:clean",
|
|
3676
3722
|
"pluginAlias": "@proletariat/cli",
|
|
3677
3723
|
"pluginName": "@proletariat/cli",
|
|
3678
3724
|
"pluginType": "core",
|
|
3679
3725
|
"strict": true,
|
|
3680
|
-
"
|
|
3681
|
-
"relativePath": [
|
|
3682
|
-
"dist",
|
|
3683
|
-
"commands",
|
|
3684
|
-
"execution",
|
|
3685
|
-
"index.js"
|
|
3686
|
-
]
|
|
3687
|
-
},
|
|
3688
|
-
"execution:list": {
|
|
3689
|
-
"aliases": [],
|
|
3690
|
-
"args": {},
|
|
3691
|
-
"description": "List running and recent executions",
|
|
3692
|
-
"examples": [
|
|
3693
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3694
|
-
"<%= config.bin %> <%= command.id %> --status running",
|
|
3695
|
-
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
3696
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3697
|
-
],
|
|
3698
|
-
"flags": {
|
|
3699
|
-
"project": {
|
|
3700
|
-
"char": "P",
|
|
3701
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
3702
|
-
"name": "project",
|
|
3703
|
-
"hasDynamicHelp": false,
|
|
3704
|
-
"multiple": false,
|
|
3705
|
-
"type": "option"
|
|
3706
|
-
},
|
|
3707
|
-
"json": {
|
|
3708
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3709
|
-
"name": "json",
|
|
3710
|
-
"allowNo": false,
|
|
3711
|
-
"type": "boolean"
|
|
3712
|
-
},
|
|
3713
|
-
"machine": {
|
|
3714
|
-
"char": "m",
|
|
3715
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3716
|
-
"name": "machine",
|
|
3717
|
-
"allowNo": false,
|
|
3718
|
-
"type": "boolean"
|
|
3719
|
-
},
|
|
3720
|
-
"status": {
|
|
3721
|
-
"char": "s",
|
|
3722
|
-
"description": "Filter by status",
|
|
3723
|
-
"name": "status",
|
|
3724
|
-
"hasDynamicHelp": false,
|
|
3725
|
-
"multiple": false,
|
|
3726
|
-
"options": [
|
|
3727
|
-
"starting",
|
|
3728
|
-
"running",
|
|
3729
|
-
"completed",
|
|
3730
|
-
"failed",
|
|
3731
|
-
"stopped"
|
|
3732
|
-
],
|
|
3733
|
-
"type": "option"
|
|
3734
|
-
},
|
|
3735
|
-
"agent": {
|
|
3736
|
-
"char": "a",
|
|
3737
|
-
"description": "Filter by agent name",
|
|
3738
|
-
"name": "agent",
|
|
3739
|
-
"hasDynamicHelp": false,
|
|
3740
|
-
"multiple": false,
|
|
3741
|
-
"type": "option"
|
|
3742
|
-
},
|
|
3743
|
-
"limit": {
|
|
3744
|
-
"char": "l",
|
|
3745
|
-
"description": "Number of results",
|
|
3746
|
-
"name": "limit",
|
|
3747
|
-
"default": 20,
|
|
3748
|
-
"hasDynamicHelp": false,
|
|
3749
|
-
"multiple": false,
|
|
3750
|
-
"type": "option"
|
|
3751
|
-
}
|
|
3752
|
-
},
|
|
3753
|
-
"hasDynamicHelp": false,
|
|
3754
|
-
"hiddenAliases": [],
|
|
3755
|
-
"id": "execution:list",
|
|
3756
|
-
"pluginAlias": "@proletariat/cli",
|
|
3757
|
-
"pluginName": "@proletariat/cli",
|
|
3758
|
-
"pluginType": "core",
|
|
3759
|
-
"strict": true,
|
|
3760
|
-
"isESM": true,
|
|
3761
|
-
"relativePath": [
|
|
3762
|
-
"dist",
|
|
3763
|
-
"commands",
|
|
3764
|
-
"execution",
|
|
3765
|
-
"list.js"
|
|
3766
|
-
]
|
|
3767
|
-
},
|
|
3768
|
-
"execution:logs": {
|
|
3769
|
-
"aliases": [],
|
|
3770
|
-
"args": {
|
|
3771
|
-
"id": {
|
|
3772
|
-
"description": "Execution ID - prompts if not provided",
|
|
3773
|
-
"name": "id",
|
|
3774
|
-
"required": false
|
|
3775
|
-
}
|
|
3776
|
-
},
|
|
3777
|
-
"description": "View execution logs",
|
|
3778
|
-
"examples": [
|
|
3779
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3780
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
3781
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
3782
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3783
|
-
],
|
|
3784
|
-
"flags": {
|
|
3785
|
-
"project": {
|
|
3786
|
-
"char": "P",
|
|
3787
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
3788
|
-
"name": "project",
|
|
3789
|
-
"hasDynamicHelp": false,
|
|
3790
|
-
"multiple": false,
|
|
3791
|
-
"type": "option"
|
|
3792
|
-
},
|
|
3793
|
-
"json": {
|
|
3794
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3795
|
-
"name": "json",
|
|
3796
|
-
"allowNo": false,
|
|
3797
|
-
"type": "boolean"
|
|
3798
|
-
},
|
|
3799
|
-
"machine": {
|
|
3800
|
-
"char": "m",
|
|
3801
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3802
|
-
"name": "machine",
|
|
3803
|
-
"allowNo": false,
|
|
3804
|
-
"type": "boolean"
|
|
3805
|
-
},
|
|
3806
|
-
"follow": {
|
|
3807
|
-
"char": "f",
|
|
3808
|
-
"description": "Stream logs in real-time",
|
|
3809
|
-
"name": "follow",
|
|
3810
|
-
"allowNo": false,
|
|
3811
|
-
"type": "boolean"
|
|
3812
|
-
},
|
|
3813
|
-
"tail": {
|
|
3814
|
-
"char": "n",
|
|
3815
|
-
"description": "Show last n lines",
|
|
3816
|
-
"name": "tail",
|
|
3817
|
-
"hasDynamicHelp": false,
|
|
3818
|
-
"multiple": false,
|
|
3819
|
-
"type": "option"
|
|
3820
|
-
}
|
|
3821
|
-
},
|
|
3822
|
-
"hasDynamicHelp": false,
|
|
3823
|
-
"hiddenAliases": [],
|
|
3824
|
-
"id": "execution:logs",
|
|
3825
|
-
"pluginAlias": "@proletariat/cli",
|
|
3826
|
-
"pluginName": "@proletariat/cli",
|
|
3827
|
-
"pluginType": "core",
|
|
3828
|
-
"strict": true,
|
|
3829
|
-
"isESM": true,
|
|
3830
|
-
"relativePath": [
|
|
3831
|
-
"dist",
|
|
3832
|
-
"commands",
|
|
3833
|
-
"execution",
|
|
3834
|
-
"logs.js"
|
|
3835
|
-
]
|
|
3836
|
-
},
|
|
3837
|
-
"execution:stop": {
|
|
3838
|
-
"aliases": [],
|
|
3839
|
-
"args": {
|
|
3840
|
-
"id": {
|
|
3841
|
-
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
3842
|
-
"name": "id",
|
|
3843
|
-
"required": false
|
|
3844
|
-
}
|
|
3845
|
-
},
|
|
3846
|
-
"description": "Stop running execution(s)",
|
|
3847
|
-
"examples": [
|
|
3848
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3849
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
3850
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
3851
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
3852
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
3853
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
3854
|
-
],
|
|
3855
|
-
"flags": {
|
|
3856
|
-
"project": {
|
|
3857
|
-
"char": "P",
|
|
3858
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
3859
|
-
"name": "project",
|
|
3860
|
-
"hasDynamicHelp": false,
|
|
3861
|
-
"multiple": false,
|
|
3862
|
-
"type": "option"
|
|
3863
|
-
},
|
|
3864
|
-
"json": {
|
|
3865
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3866
|
-
"name": "json",
|
|
3867
|
-
"allowNo": false,
|
|
3868
|
-
"type": "boolean"
|
|
3869
|
-
},
|
|
3870
|
-
"machine": {
|
|
3871
|
-
"char": "m",
|
|
3872
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3873
|
-
"name": "machine",
|
|
3874
|
-
"allowNo": false,
|
|
3875
|
-
"type": "boolean"
|
|
3876
|
-
},
|
|
3877
|
-
"force": {
|
|
3878
|
-
"char": "f",
|
|
3879
|
-
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
3880
|
-
"name": "force",
|
|
3881
|
-
"allowNo": false,
|
|
3882
|
-
"type": "boolean"
|
|
3883
|
-
},
|
|
3884
|
-
"all": {
|
|
3885
|
-
"description": "Stop all running executions",
|
|
3886
|
-
"name": "all",
|
|
3887
|
-
"allowNo": false,
|
|
3888
|
-
"type": "boolean"
|
|
3889
|
-
},
|
|
3890
|
-
"agent": {
|
|
3891
|
-
"char": "a",
|
|
3892
|
-
"description": "Stop all executions for a specific agent",
|
|
3893
|
-
"name": "agent",
|
|
3894
|
-
"hasDynamicHelp": false,
|
|
3895
|
-
"multiple": false,
|
|
3896
|
-
"type": "option"
|
|
3897
|
-
}
|
|
3898
|
-
},
|
|
3899
|
-
"hasDynamicHelp": false,
|
|
3900
|
-
"hiddenAliases": [],
|
|
3901
|
-
"id": "execution:stop",
|
|
3902
|
-
"pluginAlias": "@proletariat/cli",
|
|
3903
|
-
"pluginName": "@proletariat/cli",
|
|
3904
|
-
"pluginType": "core",
|
|
3905
|
-
"strict": true,
|
|
3906
|
-
"isESM": true,
|
|
3907
|
-
"relativePath": [
|
|
3908
|
-
"dist",
|
|
3909
|
-
"commands",
|
|
3910
|
-
"execution",
|
|
3911
|
-
"stop.js"
|
|
3912
|
-
]
|
|
3913
|
-
},
|
|
3914
|
-
"execution:view": {
|
|
3915
|
-
"aliases": [],
|
|
3916
|
-
"args": {
|
|
3917
|
-
"id": {
|
|
3918
|
-
"description": "Execution ID - prompts if not provided",
|
|
3919
|
-
"name": "id",
|
|
3920
|
-
"required": false
|
|
3921
|
-
}
|
|
3922
|
-
},
|
|
3923
|
-
"description": "View details of a specific execution",
|
|
3924
|
-
"examples": [
|
|
3925
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3926
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3927
|
-
],
|
|
3928
|
-
"flags": {
|
|
3929
|
-
"project": {
|
|
3930
|
-
"char": "P",
|
|
3931
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
3932
|
-
"name": "project",
|
|
3933
|
-
"hasDynamicHelp": false,
|
|
3934
|
-
"multiple": false,
|
|
3935
|
-
"type": "option"
|
|
3936
|
-
},
|
|
3937
|
-
"json": {
|
|
3938
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3939
|
-
"name": "json",
|
|
3940
|
-
"allowNo": false,
|
|
3941
|
-
"type": "boolean"
|
|
3942
|
-
},
|
|
3943
|
-
"machine": {
|
|
3944
|
-
"char": "m",
|
|
3945
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3946
|
-
"name": "machine",
|
|
3947
|
-
"allowNo": false,
|
|
3948
|
-
"type": "boolean"
|
|
3949
|
-
}
|
|
3950
|
-
},
|
|
3951
|
-
"hasDynamicHelp": false,
|
|
3952
|
-
"hiddenAliases": [],
|
|
3953
|
-
"id": "execution:view",
|
|
3954
|
-
"pluginAlias": "@proletariat/cli",
|
|
3955
|
-
"pluginName": "@proletariat/cli",
|
|
3956
|
-
"pluginType": "core",
|
|
3957
|
-
"strict": true,
|
|
3958
|
-
"isESM": true,
|
|
3959
|
-
"relativePath": [
|
|
3960
|
-
"dist",
|
|
3961
|
-
"commands",
|
|
3962
|
-
"execution",
|
|
3963
|
-
"view.js"
|
|
3964
|
-
]
|
|
3965
|
-
},
|
|
3966
|
-
"docker:clean": {
|
|
3967
|
-
"aliases": [],
|
|
3968
|
-
"args": {},
|
|
3969
|
-
"description": "Remove orphaned containers (containers without running agents)",
|
|
3970
|
-
"examples": [
|
|
3971
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3972
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
3973
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3974
|
-
],
|
|
3975
|
-
"flags": {
|
|
3976
|
-
"force": {
|
|
3977
|
-
"aliases": [
|
|
3978
|
-
"yes",
|
|
3979
|
-
"y"
|
|
3980
|
-
],
|
|
3981
|
-
"char": "f",
|
|
3982
|
-
"description": "Skip confirmation prompt",
|
|
3983
|
-
"name": "force",
|
|
3984
|
-
"allowNo": false,
|
|
3985
|
-
"type": "boolean"
|
|
3986
|
-
},
|
|
3987
|
-
"dry-run": {
|
|
3988
|
-
"char": "d",
|
|
3989
|
-
"description": "Show what would be removed without removing",
|
|
3990
|
-
"name": "dry-run",
|
|
3991
|
-
"allowNo": false,
|
|
3992
|
-
"type": "boolean"
|
|
3993
|
-
},
|
|
3994
|
-
"all": {
|
|
3995
|
-
"char": "a",
|
|
3996
|
-
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3997
|
-
"name": "all",
|
|
3998
|
-
"allowNo": false,
|
|
3999
|
-
"type": "boolean"
|
|
4000
|
-
},
|
|
4001
|
-
"json": {
|
|
4002
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4003
|
-
"name": "json",
|
|
4004
|
-
"allowNo": false,
|
|
4005
|
-
"type": "boolean"
|
|
4006
|
-
},
|
|
4007
|
-
"machine": {
|
|
4008
|
-
"char": "m",
|
|
4009
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4010
|
-
"name": "machine",
|
|
4011
|
-
"allowNo": false,
|
|
4012
|
-
"type": "boolean"
|
|
4013
|
-
}
|
|
4014
|
-
},
|
|
4015
|
-
"hasDynamicHelp": false,
|
|
4016
|
-
"hiddenAliases": [],
|
|
4017
|
-
"id": "docker:clean",
|
|
4018
|
-
"pluginAlias": "@proletariat/cli",
|
|
4019
|
-
"pluginName": "@proletariat/cli",
|
|
4020
|
-
"pluginType": "core",
|
|
4021
|
-
"strict": true,
|
|
4022
|
-
"enableJsonFlag": false,
|
|
3726
|
+
"enableJsonFlag": false,
|
|
4023
3727
|
"isESM": true,
|
|
4024
3728
|
"relativePath": [
|
|
4025
3729
|
"dist",
|
|
@@ -4603,17 +4307,98 @@
|
|
|
4603
4307
|
"sync.js"
|
|
4604
4308
|
]
|
|
4605
4309
|
},
|
|
4606
|
-
"
|
|
4310
|
+
"execution:config": {
|
|
4607
4311
|
"aliases": [],
|
|
4608
4312
|
"args": {},
|
|
4609
|
-
"description": "
|
|
4313
|
+
"description": "View and update execution preferences",
|
|
4314
|
+
"examples": [
|
|
4315
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
4316
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
4317
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
4318
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
4319
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
4320
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
4321
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
4322
|
+
],
|
|
4323
|
+
"flags": {
|
|
4324
|
+
"project": {
|
|
4325
|
+
"char": "P",
|
|
4326
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4327
|
+
"name": "project",
|
|
4328
|
+
"hasDynamicHelp": false,
|
|
4329
|
+
"multiple": false,
|
|
4330
|
+
"type": "option"
|
|
4331
|
+
},
|
|
4332
|
+
"json": {
|
|
4333
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4334
|
+
"name": "json",
|
|
4335
|
+
"allowNo": false,
|
|
4336
|
+
"type": "boolean"
|
|
4337
|
+
},
|
|
4338
|
+
"machine": {
|
|
4339
|
+
"char": "m",
|
|
4340
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4341
|
+
"name": "machine",
|
|
4342
|
+
"allowNo": false,
|
|
4343
|
+
"type": "boolean"
|
|
4344
|
+
},
|
|
4345
|
+
"set": {
|
|
4346
|
+
"char": "s",
|
|
4347
|
+
"description": "Set a config value (format: key value)",
|
|
4348
|
+
"name": "set",
|
|
4349
|
+
"hasDynamicHelp": false,
|
|
4350
|
+
"multiple": true,
|
|
4351
|
+
"type": "option"
|
|
4352
|
+
},
|
|
4353
|
+
"list": {
|
|
4354
|
+
"char": "l",
|
|
4355
|
+
"description": "List all configuration values",
|
|
4356
|
+
"name": "list",
|
|
4357
|
+
"allowNo": false,
|
|
4358
|
+
"type": "boolean"
|
|
4359
|
+
},
|
|
4360
|
+
"setting": {
|
|
4361
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
4362
|
+
"name": "setting",
|
|
4363
|
+
"hasDynamicHelp": false,
|
|
4364
|
+
"multiple": false,
|
|
4365
|
+
"type": "option"
|
|
4366
|
+
}
|
|
4367
|
+
},
|
|
4368
|
+
"hasDynamicHelp": false,
|
|
4369
|
+
"hiddenAliases": [],
|
|
4370
|
+
"id": "execution:config",
|
|
4371
|
+
"pluginAlias": "@proletariat/cli",
|
|
4372
|
+
"pluginName": "@proletariat/cli",
|
|
4373
|
+
"pluginType": "core",
|
|
4374
|
+
"strict": true,
|
|
4375
|
+
"isESM": true,
|
|
4376
|
+
"relativePath": [
|
|
4377
|
+
"dist",
|
|
4378
|
+
"commands",
|
|
4379
|
+
"execution",
|
|
4380
|
+
"config.js"
|
|
4381
|
+
]
|
|
4382
|
+
},
|
|
4383
|
+
"execution": {
|
|
4384
|
+
"aliases": [],
|
|
4385
|
+
"args": {},
|
|
4386
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
4610
4387
|
"examples": [
|
|
4611
4388
|
"<%= config.bin %> <%= command.id %>",
|
|
4612
|
-
"<%= config.bin %> <%= command.id %>
|
|
4613
|
-
"<%= config.bin %> <%= command.id %>
|
|
4614
|
-
"<%= config.bin %> <%= command.id %>
|
|
4389
|
+
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
4390
|
+
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
4391
|
+
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
4615
4392
|
],
|
|
4616
4393
|
"flags": {
|
|
4394
|
+
"project": {
|
|
4395
|
+
"char": "P",
|
|
4396
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4397
|
+
"name": "project",
|
|
4398
|
+
"hasDynamicHelp": false,
|
|
4399
|
+
"multiple": false,
|
|
4400
|
+
"type": "option"
|
|
4401
|
+
},
|
|
4617
4402
|
"json": {
|
|
4618
4403
|
"description": "Output as JSON for AI agents/scripts",
|
|
4619
4404
|
"name": "json",
|
|
@@ -4630,66 +4415,195 @@
|
|
|
4630
4415
|
},
|
|
4631
4416
|
"hasDynamicHelp": false,
|
|
4632
4417
|
"hiddenAliases": [],
|
|
4633
|
-
"id": "
|
|
4418
|
+
"id": "execution",
|
|
4634
4419
|
"pluginAlias": "@proletariat/cli",
|
|
4635
4420
|
"pluginName": "@proletariat/cli",
|
|
4636
4421
|
"pluginType": "core",
|
|
4637
4422
|
"strict": true,
|
|
4638
|
-
"enableJsonFlag": false,
|
|
4639
4423
|
"isESM": true,
|
|
4640
4424
|
"relativePath": [
|
|
4641
4425
|
"dist",
|
|
4642
4426
|
"commands",
|
|
4643
|
-
"
|
|
4427
|
+
"execution",
|
|
4644
4428
|
"index.js"
|
|
4645
4429
|
]
|
|
4646
4430
|
},
|
|
4647
|
-
"
|
|
4431
|
+
"execution:list": {
|
|
4648
4432
|
"aliases": [],
|
|
4649
4433
|
"args": {},
|
|
4650
|
-
"description": "
|
|
4434
|
+
"description": "List running and recent executions",
|
|
4651
4435
|
"examples": [
|
|
4652
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4436
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4437
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
4438
|
+
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
4439
|
+
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4440
|
+
],
|
|
4441
|
+
"flags": {
|
|
4442
|
+
"project": {
|
|
4443
|
+
"char": "P",
|
|
4444
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4445
|
+
"name": "project",
|
|
4446
|
+
"hasDynamicHelp": false,
|
|
4447
|
+
"multiple": false,
|
|
4448
|
+
"type": "option"
|
|
4449
|
+
},
|
|
4450
|
+
"json": {
|
|
4451
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4452
|
+
"name": "json",
|
|
4453
|
+
"allowNo": false,
|
|
4454
|
+
"type": "boolean"
|
|
4455
|
+
},
|
|
4456
|
+
"machine": {
|
|
4457
|
+
"char": "m",
|
|
4458
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4459
|
+
"name": "machine",
|
|
4460
|
+
"allowNo": false,
|
|
4461
|
+
"type": "boolean"
|
|
4462
|
+
},
|
|
4463
|
+
"status": {
|
|
4464
|
+
"char": "s",
|
|
4465
|
+
"description": "Filter by status",
|
|
4466
|
+
"name": "status",
|
|
4467
|
+
"hasDynamicHelp": false,
|
|
4468
|
+
"multiple": false,
|
|
4469
|
+
"options": [
|
|
4470
|
+
"starting",
|
|
4471
|
+
"running",
|
|
4472
|
+
"completed",
|
|
4473
|
+
"failed",
|
|
4474
|
+
"stopped"
|
|
4475
|
+
],
|
|
4476
|
+
"type": "option"
|
|
4477
|
+
},
|
|
4478
|
+
"agent": {
|
|
4479
|
+
"char": "a",
|
|
4480
|
+
"description": "Filter by agent name",
|
|
4481
|
+
"name": "agent",
|
|
4482
|
+
"hasDynamicHelp": false,
|
|
4483
|
+
"multiple": false,
|
|
4484
|
+
"type": "option"
|
|
4485
|
+
},
|
|
4486
|
+
"limit": {
|
|
4487
|
+
"char": "l",
|
|
4488
|
+
"description": "Number of results",
|
|
4489
|
+
"name": "limit",
|
|
4490
|
+
"default": 20,
|
|
4491
|
+
"hasDynamicHelp": false,
|
|
4492
|
+
"multiple": false,
|
|
4493
|
+
"type": "option"
|
|
4494
|
+
}
|
|
4495
|
+
},
|
|
4496
|
+
"hasDynamicHelp": false,
|
|
4497
|
+
"hiddenAliases": [],
|
|
4498
|
+
"id": "execution:list",
|
|
4499
|
+
"pluginAlias": "@proletariat/cli",
|
|
4500
|
+
"pluginName": "@proletariat/cli",
|
|
4501
|
+
"pluginType": "core",
|
|
4502
|
+
"strict": true,
|
|
4503
|
+
"isESM": true,
|
|
4504
|
+
"relativePath": [
|
|
4505
|
+
"dist",
|
|
4506
|
+
"commands",
|
|
4507
|
+
"execution",
|
|
4508
|
+
"list.js"
|
|
4509
|
+
]
|
|
4510
|
+
},
|
|
4511
|
+
"execution:logs": {
|
|
4512
|
+
"aliases": [],
|
|
4513
|
+
"args": {
|
|
4514
|
+
"id": {
|
|
4515
|
+
"description": "Execution ID - prompts if not provided",
|
|
4516
|
+
"name": "id",
|
|
4517
|
+
"required": false
|
|
4518
|
+
}
|
|
4519
|
+
},
|
|
4520
|
+
"description": "View execution logs",
|
|
4521
|
+
"examples": [
|
|
4522
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4523
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
4524
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
4525
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4653
4526
|
],
|
|
4654
4527
|
"flags": {
|
|
4528
|
+
"project": {
|
|
4529
|
+
"char": "P",
|
|
4530
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4531
|
+
"name": "project",
|
|
4532
|
+
"hasDynamicHelp": false,
|
|
4533
|
+
"multiple": false,
|
|
4534
|
+
"type": "option"
|
|
4535
|
+
},
|
|
4655
4536
|
"json": {
|
|
4656
4537
|
"description": "Output as JSON for AI agents/scripts",
|
|
4657
4538
|
"name": "json",
|
|
4658
4539
|
"allowNo": false,
|
|
4659
4540
|
"type": "boolean"
|
|
4660
4541
|
},
|
|
4661
|
-
"machine": {
|
|
4662
|
-
"char": "m",
|
|
4663
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4664
|
-
"name": "machine",
|
|
4665
|
-
"allowNo": false,
|
|
4666
|
-
"type": "boolean"
|
|
4542
|
+
"machine": {
|
|
4543
|
+
"char": "m",
|
|
4544
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4545
|
+
"name": "machine",
|
|
4546
|
+
"allowNo": false,
|
|
4547
|
+
"type": "boolean"
|
|
4548
|
+
},
|
|
4549
|
+
"follow": {
|
|
4550
|
+
"char": "f",
|
|
4551
|
+
"description": "Stream logs in real-time",
|
|
4552
|
+
"name": "follow",
|
|
4553
|
+
"allowNo": false,
|
|
4554
|
+
"type": "boolean"
|
|
4555
|
+
},
|
|
4556
|
+
"tail": {
|
|
4557
|
+
"char": "n",
|
|
4558
|
+
"description": "Show last n lines",
|
|
4559
|
+
"name": "tail",
|
|
4560
|
+
"hasDynamicHelp": false,
|
|
4561
|
+
"multiple": false,
|
|
4562
|
+
"type": "option"
|
|
4667
4563
|
}
|
|
4668
4564
|
},
|
|
4669
4565
|
"hasDynamicHelp": false,
|
|
4670
4566
|
"hiddenAliases": [],
|
|
4671
|
-
"id": "
|
|
4567
|
+
"id": "execution:logs",
|
|
4672
4568
|
"pluginAlias": "@proletariat/cli",
|
|
4673
4569
|
"pluginName": "@proletariat/cli",
|
|
4674
4570
|
"pluginType": "core",
|
|
4675
4571
|
"strict": true,
|
|
4676
|
-
"enableJsonFlag": false,
|
|
4677
4572
|
"isESM": true,
|
|
4678
4573
|
"relativePath": [
|
|
4679
4574
|
"dist",
|
|
4680
4575
|
"commands",
|
|
4681
|
-
"
|
|
4682
|
-
"
|
|
4576
|
+
"execution",
|
|
4577
|
+
"logs.js"
|
|
4683
4578
|
]
|
|
4684
4579
|
},
|
|
4685
|
-
"
|
|
4580
|
+
"execution:stop": {
|
|
4686
4581
|
"aliases": [],
|
|
4687
|
-
"args": {
|
|
4688
|
-
|
|
4582
|
+
"args": {
|
|
4583
|
+
"id": {
|
|
4584
|
+
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
4585
|
+
"name": "id",
|
|
4586
|
+
"required": false
|
|
4587
|
+
}
|
|
4588
|
+
},
|
|
4589
|
+
"description": "Stop running execution(s)",
|
|
4689
4590
|
"examples": [
|
|
4690
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4591
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4592
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
4593
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
4594
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
4595
|
+
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4596
|
+
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4691
4597
|
],
|
|
4692
4598
|
"flags": {
|
|
4599
|
+
"project": {
|
|
4600
|
+
"char": "P",
|
|
4601
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4602
|
+
"name": "project",
|
|
4603
|
+
"hasDynamicHelp": false,
|
|
4604
|
+
"multiple": false,
|
|
4605
|
+
"type": "option"
|
|
4606
|
+
},
|
|
4693
4607
|
"json": {
|
|
4694
4608
|
"description": "Output as JSON for AI agents/scripts",
|
|
4695
4609
|
"name": "json",
|
|
@@ -4702,32 +4616,67 @@
|
|
|
4702
4616
|
"name": "machine",
|
|
4703
4617
|
"allowNo": false,
|
|
4704
4618
|
"type": "boolean"
|
|
4619
|
+
},
|
|
4620
|
+
"force": {
|
|
4621
|
+
"char": "f",
|
|
4622
|
+
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
4623
|
+
"name": "force",
|
|
4624
|
+
"allowNo": false,
|
|
4625
|
+
"type": "boolean"
|
|
4626
|
+
},
|
|
4627
|
+
"all": {
|
|
4628
|
+
"description": "Stop all running executions",
|
|
4629
|
+
"name": "all",
|
|
4630
|
+
"allowNo": false,
|
|
4631
|
+
"type": "boolean"
|
|
4632
|
+
},
|
|
4633
|
+
"agent": {
|
|
4634
|
+
"char": "a",
|
|
4635
|
+
"description": "Stop all executions for a specific agent",
|
|
4636
|
+
"name": "agent",
|
|
4637
|
+
"hasDynamicHelp": false,
|
|
4638
|
+
"multiple": false,
|
|
4639
|
+
"type": "option"
|
|
4705
4640
|
}
|
|
4706
4641
|
},
|
|
4707
4642
|
"hasDynamicHelp": false,
|
|
4708
4643
|
"hiddenAliases": [],
|
|
4709
|
-
"id": "
|
|
4644
|
+
"id": "execution:stop",
|
|
4710
4645
|
"pluginAlias": "@proletariat/cli",
|
|
4711
4646
|
"pluginName": "@proletariat/cli",
|
|
4712
4647
|
"pluginType": "core",
|
|
4713
4648
|
"strict": true,
|
|
4714
|
-
"enableJsonFlag": false,
|
|
4715
4649
|
"isESM": true,
|
|
4716
4650
|
"relativePath": [
|
|
4717
4651
|
"dist",
|
|
4718
4652
|
"commands",
|
|
4719
|
-
"
|
|
4720
|
-
"
|
|
4653
|
+
"execution",
|
|
4654
|
+
"stop.js"
|
|
4721
4655
|
]
|
|
4722
4656
|
},
|
|
4723
|
-
"
|
|
4657
|
+
"execution:view": {
|
|
4724
4658
|
"aliases": [],
|
|
4725
|
-
"args": {
|
|
4726
|
-
|
|
4659
|
+
"args": {
|
|
4660
|
+
"id": {
|
|
4661
|
+
"description": "Execution ID - prompts if not provided",
|
|
4662
|
+
"name": "id",
|
|
4663
|
+
"required": false
|
|
4664
|
+
}
|
|
4665
|
+
},
|
|
4666
|
+
"description": "View details of a specific execution",
|
|
4727
4667
|
"examples": [
|
|
4728
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4668
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4669
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4729
4670
|
],
|
|
4730
4671
|
"flags": {
|
|
4672
|
+
"project": {
|
|
4673
|
+
"char": "P",
|
|
4674
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4675
|
+
"name": "project",
|
|
4676
|
+
"hasDynamicHelp": false,
|
|
4677
|
+
"multiple": false,
|
|
4678
|
+
"type": "option"
|
|
4679
|
+
},
|
|
4731
4680
|
"json": {
|
|
4732
4681
|
"description": "Output as JSON for AI agents/scripts",
|
|
4733
4682
|
"name": "json",
|
|
@@ -4744,18 +4693,17 @@
|
|
|
4744
4693
|
},
|
|
4745
4694
|
"hasDynamicHelp": false,
|
|
4746
4695
|
"hiddenAliases": [],
|
|
4747
|
-
"id": "
|
|
4696
|
+
"id": "execution:view",
|
|
4748
4697
|
"pluginAlias": "@proletariat/cli",
|
|
4749
4698
|
"pluginName": "@proletariat/cli",
|
|
4750
4699
|
"pluginType": "core",
|
|
4751
4700
|
"strict": true,
|
|
4752
|
-
"enableJsonFlag": false,
|
|
4753
4701
|
"isESM": true,
|
|
4754
4702
|
"relativePath": [
|
|
4755
4703
|
"dist",
|
|
4756
4704
|
"commands",
|
|
4757
|
-
"
|
|
4758
|
-
"
|
|
4705
|
+
"execution",
|
|
4706
|
+
"view.js"
|
|
4759
4707
|
]
|
|
4760
4708
|
},
|
|
4761
4709
|
"feedback": {
|
|
@@ -4942,32 +4890,187 @@
|
|
|
4942
4890
|
},
|
|
4943
4891
|
"hasDynamicHelp": false,
|
|
4944
4892
|
"hiddenAliases": [],
|
|
4945
|
-
"id": "feedback:submit",
|
|
4893
|
+
"id": "feedback:submit",
|
|
4894
|
+
"pluginAlias": "@proletariat/cli",
|
|
4895
|
+
"pluginName": "@proletariat/cli",
|
|
4896
|
+
"pluginType": "core",
|
|
4897
|
+
"strict": true,
|
|
4898
|
+
"isESM": true,
|
|
4899
|
+
"relativePath": [
|
|
4900
|
+
"dist",
|
|
4901
|
+
"commands",
|
|
4902
|
+
"feedback",
|
|
4903
|
+
"submit.js"
|
|
4904
|
+
]
|
|
4905
|
+
},
|
|
4906
|
+
"feedback:view": {
|
|
4907
|
+
"aliases": [],
|
|
4908
|
+
"args": {
|
|
4909
|
+
"number": {
|
|
4910
|
+
"description": "Issue number to view",
|
|
4911
|
+
"name": "number",
|
|
4912
|
+
"required": true
|
|
4913
|
+
}
|
|
4914
|
+
},
|
|
4915
|
+
"description": "View details of a specific feedback issue",
|
|
4916
|
+
"examples": [
|
|
4917
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
4918
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4919
|
+
],
|
|
4920
|
+
"flags": {
|
|
4921
|
+
"json": {
|
|
4922
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4923
|
+
"name": "json",
|
|
4924
|
+
"allowNo": false,
|
|
4925
|
+
"type": "boolean"
|
|
4926
|
+
},
|
|
4927
|
+
"machine": {
|
|
4928
|
+
"char": "m",
|
|
4929
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4930
|
+
"name": "machine",
|
|
4931
|
+
"allowNo": false,
|
|
4932
|
+
"type": "boolean"
|
|
4933
|
+
}
|
|
4934
|
+
},
|
|
4935
|
+
"hasDynamicHelp": false,
|
|
4936
|
+
"hiddenAliases": [],
|
|
4937
|
+
"id": "feedback:view",
|
|
4938
|
+
"pluginAlias": "@proletariat/cli",
|
|
4939
|
+
"pluginName": "@proletariat/cli",
|
|
4940
|
+
"pluginType": "core",
|
|
4941
|
+
"strict": true,
|
|
4942
|
+
"enableJsonFlag": false,
|
|
4943
|
+
"isESM": true,
|
|
4944
|
+
"relativePath": [
|
|
4945
|
+
"dist",
|
|
4946
|
+
"commands",
|
|
4947
|
+
"feedback",
|
|
4948
|
+
"view.js"
|
|
4949
|
+
]
|
|
4950
|
+
},
|
|
4951
|
+
"gh": {
|
|
4952
|
+
"aliases": [],
|
|
4953
|
+
"args": {},
|
|
4954
|
+
"description": "GitHub CLI setup and status for PR workflow",
|
|
4955
|
+
"examples": [
|
|
4956
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4957
|
+
"<%= config.bin %> <%= command.id %> status",
|
|
4958
|
+
"<%= config.bin %> <%= command.id %> login",
|
|
4959
|
+
"<%= config.bin %> <%= command.id %> token"
|
|
4960
|
+
],
|
|
4961
|
+
"flags": {
|
|
4962
|
+
"json": {
|
|
4963
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4964
|
+
"name": "json",
|
|
4965
|
+
"allowNo": false,
|
|
4966
|
+
"type": "boolean"
|
|
4967
|
+
},
|
|
4968
|
+
"machine": {
|
|
4969
|
+
"char": "m",
|
|
4970
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4971
|
+
"name": "machine",
|
|
4972
|
+
"allowNo": false,
|
|
4973
|
+
"type": "boolean"
|
|
4974
|
+
}
|
|
4975
|
+
},
|
|
4976
|
+
"hasDynamicHelp": false,
|
|
4977
|
+
"hiddenAliases": [],
|
|
4978
|
+
"id": "gh",
|
|
4979
|
+
"pluginAlias": "@proletariat/cli",
|
|
4980
|
+
"pluginName": "@proletariat/cli",
|
|
4981
|
+
"pluginType": "core",
|
|
4982
|
+
"strict": true,
|
|
4983
|
+
"enableJsonFlag": false,
|
|
4984
|
+
"isESM": true,
|
|
4985
|
+
"relativePath": [
|
|
4986
|
+
"dist",
|
|
4987
|
+
"commands",
|
|
4988
|
+
"gh",
|
|
4989
|
+
"index.js"
|
|
4990
|
+
]
|
|
4991
|
+
},
|
|
4992
|
+
"gh:login": {
|
|
4993
|
+
"aliases": [],
|
|
4994
|
+
"args": {},
|
|
4995
|
+
"description": "Login to GitHub CLI for PR workflow",
|
|
4996
|
+
"examples": [
|
|
4997
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4998
|
+
],
|
|
4999
|
+
"flags": {
|
|
5000
|
+
"json": {
|
|
5001
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5002
|
+
"name": "json",
|
|
5003
|
+
"allowNo": false,
|
|
5004
|
+
"type": "boolean"
|
|
5005
|
+
},
|
|
5006
|
+
"machine": {
|
|
5007
|
+
"char": "m",
|
|
5008
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5009
|
+
"name": "machine",
|
|
5010
|
+
"allowNo": false,
|
|
5011
|
+
"type": "boolean"
|
|
5012
|
+
}
|
|
5013
|
+
},
|
|
5014
|
+
"hasDynamicHelp": false,
|
|
5015
|
+
"hiddenAliases": [],
|
|
5016
|
+
"id": "gh:login",
|
|
5017
|
+
"pluginAlias": "@proletariat/cli",
|
|
5018
|
+
"pluginName": "@proletariat/cli",
|
|
5019
|
+
"pluginType": "core",
|
|
5020
|
+
"strict": true,
|
|
5021
|
+
"enableJsonFlag": false,
|
|
5022
|
+
"isESM": true,
|
|
5023
|
+
"relativePath": [
|
|
5024
|
+
"dist",
|
|
5025
|
+
"commands",
|
|
5026
|
+
"gh",
|
|
5027
|
+
"login.js"
|
|
5028
|
+
]
|
|
5029
|
+
},
|
|
5030
|
+
"gh:status": {
|
|
5031
|
+
"aliases": [],
|
|
5032
|
+
"args": {},
|
|
5033
|
+
"description": "Check GitHub CLI status for PR workflow",
|
|
5034
|
+
"examples": [
|
|
5035
|
+
"<%= config.bin %> <%= command.id %>"
|
|
5036
|
+
],
|
|
5037
|
+
"flags": {
|
|
5038
|
+
"json": {
|
|
5039
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5040
|
+
"name": "json",
|
|
5041
|
+
"allowNo": false,
|
|
5042
|
+
"type": "boolean"
|
|
5043
|
+
},
|
|
5044
|
+
"machine": {
|
|
5045
|
+
"char": "m",
|
|
5046
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5047
|
+
"name": "machine",
|
|
5048
|
+
"allowNo": false,
|
|
5049
|
+
"type": "boolean"
|
|
5050
|
+
}
|
|
5051
|
+
},
|
|
5052
|
+
"hasDynamicHelp": false,
|
|
5053
|
+
"hiddenAliases": [],
|
|
5054
|
+
"id": "gh:status",
|
|
4946
5055
|
"pluginAlias": "@proletariat/cli",
|
|
4947
5056
|
"pluginName": "@proletariat/cli",
|
|
4948
5057
|
"pluginType": "core",
|
|
4949
5058
|
"strict": true,
|
|
5059
|
+
"enableJsonFlag": false,
|
|
4950
5060
|
"isESM": true,
|
|
4951
5061
|
"relativePath": [
|
|
4952
5062
|
"dist",
|
|
4953
5063
|
"commands",
|
|
4954
|
-
"
|
|
4955
|
-
"
|
|
5064
|
+
"gh",
|
|
5065
|
+
"status.js"
|
|
4956
5066
|
]
|
|
4957
5067
|
},
|
|
4958
|
-
"
|
|
5068
|
+
"gh:token": {
|
|
4959
5069
|
"aliases": [],
|
|
4960
|
-
"args": {
|
|
4961
|
-
|
|
4962
|
-
"description": "Issue number to view",
|
|
4963
|
-
"name": "number",
|
|
4964
|
-
"required": true
|
|
4965
|
-
}
|
|
4966
|
-
},
|
|
4967
|
-
"description": "View details of a specific feedback issue",
|
|
5070
|
+
"args": {},
|
|
5071
|
+
"description": "Show GH_TOKEN setup for devcontainer PR creation",
|
|
4968
5072
|
"examples": [
|
|
4969
|
-
"<%= config.bin %> <%= command.id %>
|
|
4970
|
-
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
5073
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4971
5074
|
],
|
|
4972
5075
|
"flags": {
|
|
4973
5076
|
"json": {
|
|
@@ -4986,7 +5089,7 @@
|
|
|
4986
5089
|
},
|
|
4987
5090
|
"hasDynamicHelp": false,
|
|
4988
5091
|
"hiddenAliases": [],
|
|
4989
|
-
"id": "
|
|
5092
|
+
"id": "gh:token",
|
|
4990
5093
|
"pluginAlias": "@proletariat/cli",
|
|
4991
5094
|
"pluginName": "@proletariat/cli",
|
|
4992
5095
|
"pluginType": "core",
|
|
@@ -4996,8 +5099,8 @@
|
|
|
4996
5099
|
"relativePath": [
|
|
4997
5100
|
"dist",
|
|
4998
5101
|
"commands",
|
|
4999
|
-
"
|
|
5000
|
-
"
|
|
5102
|
+
"gh",
|
|
5103
|
+
"token.js"
|
|
5001
5104
|
]
|
|
5002
5105
|
},
|
|
5003
5106
|
"linear:auth": {
|
|
@@ -9056,242 +9159,16 @@
|
|
|
9056
9159
|
"relativePath": [
|
|
9057
9160
|
"dist",
|
|
9058
9161
|
"commands",
|
|
9059
|
-
"telemetry",
|
|
9060
|
-
"disable.js"
|
|
9061
|
-
]
|
|
9062
|
-
},
|
|
9063
|
-
"telemetry:enable": {
|
|
9064
|
-
"aliases": [],
|
|
9065
|
-
"args": {},
|
|
9066
|
-
"description": "Enable anonymous telemetry",
|
|
9067
|
-
"examples": [
|
|
9068
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9069
|
-
],
|
|
9070
|
-
"flags": {
|
|
9071
|
-
"json": {
|
|
9072
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9073
|
-
"name": "json",
|
|
9074
|
-
"allowNo": false,
|
|
9075
|
-
"type": "boolean"
|
|
9076
|
-
},
|
|
9077
|
-
"machine": {
|
|
9078
|
-
"char": "m",
|
|
9079
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9080
|
-
"name": "machine",
|
|
9081
|
-
"allowNo": false,
|
|
9082
|
-
"type": "boolean"
|
|
9083
|
-
}
|
|
9084
|
-
},
|
|
9085
|
-
"hasDynamicHelp": false,
|
|
9086
|
-
"hiddenAliases": [],
|
|
9087
|
-
"id": "telemetry:enable",
|
|
9088
|
-
"pluginAlias": "@proletariat/cli",
|
|
9089
|
-
"pluginName": "@proletariat/cli",
|
|
9090
|
-
"pluginType": "core",
|
|
9091
|
-
"strict": true,
|
|
9092
|
-
"enableJsonFlag": false,
|
|
9093
|
-
"isESM": true,
|
|
9094
|
-
"relativePath": [
|
|
9095
|
-
"dist",
|
|
9096
|
-
"commands",
|
|
9097
|
-
"telemetry",
|
|
9098
|
-
"enable.js"
|
|
9099
|
-
]
|
|
9100
|
-
},
|
|
9101
|
-
"telemetry": {
|
|
9102
|
-
"aliases": [],
|
|
9103
|
-
"args": {},
|
|
9104
|
-
"description": "Show telemetry status",
|
|
9105
|
-
"examples": [
|
|
9106
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9107
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
9108
|
-
],
|
|
9109
|
-
"flags": {
|
|
9110
|
-
"json": {
|
|
9111
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9112
|
-
"name": "json",
|
|
9113
|
-
"allowNo": false,
|
|
9114
|
-
"type": "boolean"
|
|
9115
|
-
},
|
|
9116
|
-
"machine": {
|
|
9117
|
-
"char": "m",
|
|
9118
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9119
|
-
"name": "machine",
|
|
9120
|
-
"allowNo": false,
|
|
9121
|
-
"type": "boolean"
|
|
9122
|
-
}
|
|
9123
|
-
},
|
|
9124
|
-
"hasDynamicHelp": false,
|
|
9125
|
-
"hiddenAliases": [],
|
|
9126
|
-
"id": "telemetry",
|
|
9127
|
-
"pluginAlias": "@proletariat/cli",
|
|
9128
|
-
"pluginName": "@proletariat/cli",
|
|
9129
|
-
"pluginType": "core",
|
|
9130
|
-
"strict": true,
|
|
9131
|
-
"enableJsonFlag": false,
|
|
9132
|
-
"isESM": true,
|
|
9133
|
-
"relativePath": [
|
|
9134
|
-
"dist",
|
|
9135
|
-
"commands",
|
|
9136
|
-
"telemetry",
|
|
9137
|
-
"index.js"
|
|
9138
|
-
]
|
|
9139
|
-
},
|
|
9140
|
-
"telemetry:status": {
|
|
9141
|
-
"aliases": [],
|
|
9142
|
-
"args": {},
|
|
9143
|
-
"description": "Show telemetry status",
|
|
9144
|
-
"examples": [
|
|
9145
|
-
"<%= config.bin %> telemetry status"
|
|
9146
|
-
],
|
|
9147
|
-
"flags": {
|
|
9148
|
-
"json": {
|
|
9149
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9150
|
-
"name": "json",
|
|
9151
|
-
"allowNo": false,
|
|
9152
|
-
"type": "boolean"
|
|
9153
|
-
},
|
|
9154
|
-
"machine": {
|
|
9155
|
-
"char": "m",
|
|
9156
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9157
|
-
"name": "machine",
|
|
9158
|
-
"allowNo": false,
|
|
9159
|
-
"type": "boolean"
|
|
9160
|
-
}
|
|
9161
|
-
},
|
|
9162
|
-
"hasDynamicHelp": false,
|
|
9163
|
-
"hiddenAliases": [],
|
|
9164
|
-
"id": "telemetry:status",
|
|
9165
|
-
"pluginAlias": "@proletariat/cli",
|
|
9166
|
-
"pluginName": "@proletariat/cli",
|
|
9167
|
-
"pluginType": "core",
|
|
9168
|
-
"strict": true,
|
|
9169
|
-
"enableJsonFlag": false,
|
|
9170
|
-
"isESM": true,
|
|
9171
|
-
"relativePath": [
|
|
9172
|
-
"dist",
|
|
9173
|
-
"commands",
|
|
9174
|
-
"telemetry",
|
|
9175
|
-
"status.js"
|
|
9176
|
-
]
|
|
9177
|
-
},
|
|
9178
|
-
"terminal:title": {
|
|
9179
|
-
"aliases": [],
|
|
9180
|
-
"args": {
|
|
9181
|
-
"title": {
|
|
9182
|
-
"description": "Title to set for the terminal tab/window",
|
|
9183
|
-
"name": "title",
|
|
9184
|
-
"required": false
|
|
9185
|
-
}
|
|
9186
|
-
},
|
|
9187
|
-
"description": "Set the terminal tab/window title",
|
|
9188
|
-
"examples": [
|
|
9189
|
-
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
9190
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
9191
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
9192
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9193
|
-
],
|
|
9194
|
-
"flags": {
|
|
9195
|
-
"reset": {
|
|
9196
|
-
"char": "r",
|
|
9197
|
-
"description": "Reset terminal title to default",
|
|
9198
|
-
"name": "reset",
|
|
9199
|
-
"allowNo": false,
|
|
9200
|
-
"type": "boolean"
|
|
9201
|
-
},
|
|
9202
|
-
"json": {
|
|
9203
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9204
|
-
"name": "json",
|
|
9205
|
-
"allowNo": false,
|
|
9206
|
-
"type": "boolean"
|
|
9207
|
-
},
|
|
9208
|
-
"machine": {
|
|
9209
|
-
"char": "m",
|
|
9210
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9211
|
-
"name": "machine",
|
|
9212
|
-
"allowNo": false,
|
|
9213
|
-
"type": "boolean"
|
|
9214
|
-
}
|
|
9215
|
-
},
|
|
9216
|
-
"hasDynamicHelp": false,
|
|
9217
|
-
"hiddenAliases": [],
|
|
9218
|
-
"id": "terminal:title",
|
|
9219
|
-
"pluginAlias": "@proletariat/cli",
|
|
9220
|
-
"pluginName": "@proletariat/cli",
|
|
9221
|
-
"pluginType": "core",
|
|
9222
|
-
"strict": true,
|
|
9223
|
-
"isESM": true,
|
|
9224
|
-
"relativePath": [
|
|
9225
|
-
"dist",
|
|
9226
|
-
"commands",
|
|
9227
|
-
"terminal",
|
|
9228
|
-
"title.js"
|
|
9229
|
-
]
|
|
9230
|
-
},
|
|
9231
|
-
"theme:add-names": {
|
|
9232
|
-
"aliases": [],
|
|
9233
|
-
"args": {
|
|
9234
|
-
"theme": {
|
|
9235
|
-
"description": "Theme ID",
|
|
9236
|
-
"name": "theme",
|
|
9237
|
-
"required": true
|
|
9238
|
-
},
|
|
9239
|
-
"names": {
|
|
9240
|
-
"description": "Names to add to the theme (space-separated)",
|
|
9241
|
-
"name": "names",
|
|
9242
|
-
"required": false
|
|
9243
|
-
}
|
|
9244
|
-
},
|
|
9245
|
-
"description": "Add names to a theme",
|
|
9246
|
-
"examples": [
|
|
9247
|
-
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
9248
|
-
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
9249
|
-
],
|
|
9250
|
-
"flags": {
|
|
9251
|
-
"json": {
|
|
9252
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9253
|
-
"name": "json",
|
|
9254
|
-
"allowNo": false,
|
|
9255
|
-
"type": "boolean"
|
|
9256
|
-
},
|
|
9257
|
-
"machine": {
|
|
9258
|
-
"char": "m",
|
|
9259
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9260
|
-
"name": "machine",
|
|
9261
|
-
"allowNo": false,
|
|
9262
|
-
"type": "boolean"
|
|
9263
|
-
}
|
|
9264
|
-
},
|
|
9265
|
-
"hasDynamicHelp": false,
|
|
9266
|
-
"hiddenAliases": [],
|
|
9267
|
-
"id": "theme:add-names",
|
|
9268
|
-
"pluginAlias": "@proletariat/cli",
|
|
9269
|
-
"pluginName": "@proletariat/cli",
|
|
9270
|
-
"pluginType": "core",
|
|
9271
|
-
"strict": false,
|
|
9272
|
-
"enableJsonFlag": false,
|
|
9273
|
-
"isESM": true,
|
|
9274
|
-
"relativePath": [
|
|
9275
|
-
"dist",
|
|
9276
|
-
"commands",
|
|
9277
|
-
"theme",
|
|
9278
|
-
"add-names.js"
|
|
9162
|
+
"telemetry",
|
|
9163
|
+
"disable.js"
|
|
9279
9164
|
]
|
|
9280
9165
|
},
|
|
9281
|
-
"
|
|
9166
|
+
"telemetry:enable": {
|
|
9282
9167
|
"aliases": [],
|
|
9283
|
-
"args": {
|
|
9284
|
-
|
|
9285
|
-
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
9286
|
-
"name": "name",
|
|
9287
|
-
"required": true
|
|
9288
|
-
}
|
|
9289
|
-
},
|
|
9290
|
-
"description": "Create a custom agent theme",
|
|
9168
|
+
"args": {},
|
|
9169
|
+
"description": "Enable anonymous telemetry",
|
|
9291
9170
|
"examples": [
|
|
9292
|
-
"<%= config.bin %> <%= command.id %>
|
|
9293
|
-
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
9294
|
-
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
9171
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9295
9172
|
],
|
|
9296
9173
|
"flags": {
|
|
9297
9174
|
"json": {
|
|
@@ -9306,26 +9183,11 @@
|
|
|
9306
9183
|
"name": "machine",
|
|
9307
9184
|
"allowNo": false,
|
|
9308
9185
|
"type": "boolean"
|
|
9309
|
-
},
|
|
9310
|
-
"description": {
|
|
9311
|
-
"char": "d",
|
|
9312
|
-
"description": "Theme description",
|
|
9313
|
-
"name": "description",
|
|
9314
|
-
"hasDynamicHelp": false,
|
|
9315
|
-
"multiple": false,
|
|
9316
|
-
"type": "option"
|
|
9317
|
-
},
|
|
9318
|
-
"display-name": {
|
|
9319
|
-
"description": "Display name (defaults to formatted name)",
|
|
9320
|
-
"name": "display-name",
|
|
9321
|
-
"hasDynamicHelp": false,
|
|
9322
|
-
"multiple": false,
|
|
9323
|
-
"type": "option"
|
|
9324
9186
|
}
|
|
9325
9187
|
},
|
|
9326
9188
|
"hasDynamicHelp": false,
|
|
9327
9189
|
"hiddenAliases": [],
|
|
9328
|
-
"id": "
|
|
9190
|
+
"id": "telemetry:enable",
|
|
9329
9191
|
"pluginAlias": "@proletariat/cli",
|
|
9330
9192
|
"pluginName": "@proletariat/cli",
|
|
9331
9193
|
"pluginType": "core",
|
|
@@ -9335,18 +9197,17 @@
|
|
|
9335
9197
|
"relativePath": [
|
|
9336
9198
|
"dist",
|
|
9337
9199
|
"commands",
|
|
9338
|
-
"
|
|
9339
|
-
"
|
|
9200
|
+
"telemetry",
|
|
9201
|
+
"enable.js"
|
|
9340
9202
|
]
|
|
9341
9203
|
},
|
|
9342
|
-
"
|
|
9204
|
+
"telemetry": {
|
|
9343
9205
|
"aliases": [],
|
|
9344
9206
|
"args": {},
|
|
9345
|
-
"description": "
|
|
9207
|
+
"description": "Show telemetry status",
|
|
9346
9208
|
"examples": [
|
|
9347
|
-
"<%= config.bin %> <%= command.id %>
|
|
9348
|
-
"<%= config.bin %> <%= command.id %>
|
|
9349
|
-
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
9209
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9210
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9350
9211
|
],
|
|
9351
9212
|
"flags": {
|
|
9352
9213
|
"json": {
|
|
@@ -9365,25 +9226,26 @@
|
|
|
9365
9226
|
},
|
|
9366
9227
|
"hasDynamicHelp": false,
|
|
9367
9228
|
"hiddenAliases": [],
|
|
9368
|
-
"id": "
|
|
9229
|
+
"id": "telemetry",
|
|
9369
9230
|
"pluginAlias": "@proletariat/cli",
|
|
9370
9231
|
"pluginName": "@proletariat/cli",
|
|
9371
9232
|
"pluginType": "core",
|
|
9372
9233
|
"strict": true,
|
|
9234
|
+
"enableJsonFlag": false,
|
|
9373
9235
|
"isESM": true,
|
|
9374
9236
|
"relativePath": [
|
|
9375
9237
|
"dist",
|
|
9376
9238
|
"commands",
|
|
9377
|
-
"
|
|
9239
|
+
"telemetry",
|
|
9378
9240
|
"index.js"
|
|
9379
9241
|
]
|
|
9380
9242
|
},
|
|
9381
|
-
"
|
|
9243
|
+
"telemetry:status": {
|
|
9382
9244
|
"aliases": [],
|
|
9383
9245
|
"args": {},
|
|
9384
|
-
"description": "
|
|
9246
|
+
"description": "Show telemetry status",
|
|
9385
9247
|
"examples": [
|
|
9386
|
-
"<%= config.bin %>
|
|
9248
|
+
"<%= config.bin %> telemetry status"
|
|
9387
9249
|
],
|
|
9388
9250
|
"flags": {
|
|
9389
9251
|
"json": {
|
|
@@ -9402,7 +9264,7 @@
|
|
|
9402
9264
|
},
|
|
9403
9265
|
"hasDynamicHelp": false,
|
|
9404
9266
|
"hiddenAliases": [],
|
|
9405
|
-
"id": "
|
|
9267
|
+
"id": "telemetry:status",
|
|
9406
9268
|
"pluginAlias": "@proletariat/cli",
|
|
9407
9269
|
"pluginName": "@proletariat/cli",
|
|
9408
9270
|
"pluginType": "core",
|
|
@@ -9412,25 +9274,34 @@
|
|
|
9412
9274
|
"relativePath": [
|
|
9413
9275
|
"dist",
|
|
9414
9276
|
"commands",
|
|
9415
|
-
"
|
|
9416
|
-
"
|
|
9277
|
+
"telemetry",
|
|
9278
|
+
"status.js"
|
|
9417
9279
|
]
|
|
9418
9280
|
},
|
|
9419
|
-
"
|
|
9281
|
+
"terminal:title": {
|
|
9420
9282
|
"aliases": [],
|
|
9421
9283
|
"args": {
|
|
9422
|
-
"
|
|
9423
|
-
"description": "
|
|
9424
|
-
"name": "
|
|
9284
|
+
"title": {
|
|
9285
|
+
"description": "Title to set for the terminal tab/window",
|
|
9286
|
+
"name": "title",
|
|
9425
9287
|
"required": false
|
|
9426
9288
|
}
|
|
9427
9289
|
},
|
|
9428
|
-
"description": "Set the
|
|
9290
|
+
"description": "Set the terminal tab/window title",
|
|
9429
9291
|
"examples": [
|
|
9430
|
-
"<%= config.bin %> <%= command.id %>
|
|
9431
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9292
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
9293
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
9294
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
9295
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9432
9296
|
],
|
|
9433
9297
|
"flags": {
|
|
9298
|
+
"reset": {
|
|
9299
|
+
"char": "r",
|
|
9300
|
+
"description": "Reset terminal title to default",
|
|
9301
|
+
"name": "reset",
|
|
9302
|
+
"allowNo": false,
|
|
9303
|
+
"type": "boolean"
|
|
9304
|
+
},
|
|
9434
9305
|
"json": {
|
|
9435
9306
|
"description": "Output as JSON for AI agents/scripts",
|
|
9436
9307
|
"name": "json",
|
|
@@ -9447,7 +9318,7 @@
|
|
|
9447
9318
|
},
|
|
9448
9319
|
"hasDynamicHelp": false,
|
|
9449
9320
|
"hiddenAliases": [],
|
|
9450
|
-
"id": "
|
|
9321
|
+
"id": "terminal:title",
|
|
9451
9322
|
"pluginAlias": "@proletariat/cli",
|
|
9452
9323
|
"pluginName": "@proletariat/cli",
|
|
9453
9324
|
"pluginType": "core",
|
|
@@ -9456,33 +9327,28 @@
|
|
|
9456
9327
|
"relativePath": [
|
|
9457
9328
|
"dist",
|
|
9458
9329
|
"commands",
|
|
9459
|
-
"
|
|
9460
|
-
"
|
|
9461
|
-
"set.js"
|
|
9330
|
+
"terminal",
|
|
9331
|
+
"title.js"
|
|
9462
9332
|
]
|
|
9463
9333
|
},
|
|
9464
|
-
"
|
|
9334
|
+
"theme:add-names": {
|
|
9465
9335
|
"aliases": [],
|
|
9466
9336
|
"args": {
|
|
9467
|
-
"
|
|
9468
|
-
"description": "
|
|
9469
|
-
"name": "
|
|
9470
|
-
"options": [
|
|
9471
|
-
"mcp",
|
|
9472
|
-
"cli"
|
|
9473
|
-
],
|
|
9337
|
+
"theme": {
|
|
9338
|
+
"description": "Theme ID",
|
|
9339
|
+
"name": "theme",
|
|
9474
9340
|
"required": true
|
|
9475
9341
|
},
|
|
9476
|
-
"
|
|
9477
|
-
"description": "
|
|
9478
|
-
"name": "
|
|
9479
|
-
"required":
|
|
9342
|
+
"names": {
|
|
9343
|
+
"description": "Names to add to the theme (space-separated)",
|
|
9344
|
+
"name": "names",
|
|
9345
|
+
"required": false
|
|
9480
9346
|
}
|
|
9481
9347
|
},
|
|
9482
|
-
"description": "
|
|
9348
|
+
"description": "Add names to a theme",
|
|
9483
9349
|
"examples": [
|
|
9484
|
-
"<%= config.bin %>
|
|
9485
|
-
"<%= config.bin %>
|
|
9350
|
+
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
9351
|
+
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
9486
9352
|
],
|
|
9487
9353
|
"flags": {
|
|
9488
9354
|
"json": {
|
|
@@ -9497,74 +9363,38 @@
|
|
|
9497
9363
|
"name": "machine",
|
|
9498
9364
|
"allowNo": false,
|
|
9499
9365
|
"type": "boolean"
|
|
9500
|
-
},
|
|
9501
|
-
"url": {
|
|
9502
|
-
"description": "MCP server URL (for remote servers)",
|
|
9503
|
-
"name": "url",
|
|
9504
|
-
"hasDynamicHelp": false,
|
|
9505
|
-
"multiple": false,
|
|
9506
|
-
"type": "option"
|
|
9507
|
-
},
|
|
9508
|
-
"command": {
|
|
9509
|
-
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
9510
|
-
"name": "command",
|
|
9511
|
-
"hasDynamicHelp": false,
|
|
9512
|
-
"multiple": false,
|
|
9513
|
-
"type": "option"
|
|
9514
|
-
},
|
|
9515
|
-
"auth": {
|
|
9516
|
-
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
9517
|
-
"name": "auth",
|
|
9518
|
-
"hasDynamicHelp": false,
|
|
9519
|
-
"multiple": false,
|
|
9520
|
-
"type": "option"
|
|
9521
|
-
},
|
|
9522
|
-
"detect": {
|
|
9523
|
-
"description": "Shell command to detect if CLI tool is installed",
|
|
9524
|
-
"name": "detect",
|
|
9525
|
-
"hasDynamicHelp": false,
|
|
9526
|
-
"multiple": false,
|
|
9527
|
-
"type": "option"
|
|
9528
|
-
},
|
|
9529
|
-
"install": {
|
|
9530
|
-
"description": "Shell command to install the CLI tool",
|
|
9531
|
-
"name": "install",
|
|
9532
|
-
"hasDynamicHelp": false,
|
|
9533
|
-
"multiple": false,
|
|
9534
|
-
"type": "option"
|
|
9535
|
-
},
|
|
9536
|
-
"description": {
|
|
9537
|
-
"char": "d",
|
|
9538
|
-
"description": "Human-readable description",
|
|
9539
|
-
"name": "description",
|
|
9540
|
-
"required": true,
|
|
9541
|
-
"hasDynamicHelp": false,
|
|
9542
|
-
"multiple": false,
|
|
9543
|
-
"type": "option"
|
|
9544
9366
|
}
|
|
9545
9367
|
},
|
|
9546
9368
|
"hasDynamicHelp": false,
|
|
9547
9369
|
"hiddenAliases": [],
|
|
9548
|
-
"id": "
|
|
9370
|
+
"id": "theme:add-names",
|
|
9549
9371
|
"pluginAlias": "@proletariat/cli",
|
|
9550
9372
|
"pluginName": "@proletariat/cli",
|
|
9551
9373
|
"pluginType": "core",
|
|
9552
|
-
"strict":
|
|
9374
|
+
"strict": false,
|
|
9375
|
+
"enableJsonFlag": false,
|
|
9553
9376
|
"isESM": true,
|
|
9554
9377
|
"relativePath": [
|
|
9555
9378
|
"dist",
|
|
9556
9379
|
"commands",
|
|
9557
|
-
"
|
|
9558
|
-
"add.js"
|
|
9380
|
+
"theme",
|
|
9381
|
+
"add-names.js"
|
|
9559
9382
|
]
|
|
9560
9383
|
},
|
|
9561
|
-
"
|
|
9384
|
+
"theme:create": {
|
|
9562
9385
|
"aliases": [],
|
|
9563
|
-
"args": {
|
|
9564
|
-
|
|
9386
|
+
"args": {
|
|
9387
|
+
"name": {
|
|
9388
|
+
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
9389
|
+
"name": "name",
|
|
9390
|
+
"required": true
|
|
9391
|
+
}
|
|
9392
|
+
},
|
|
9393
|
+
"description": "Create a custom agent theme",
|
|
9565
9394
|
"examples": [
|
|
9566
|
-
"<%= config.bin %>
|
|
9567
|
-
"<%= config.bin %>
|
|
9395
|
+
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
9396
|
+
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
9397
|
+
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
9568
9398
|
],
|
|
9569
9399
|
"flags": {
|
|
9570
9400
|
"json": {
|
|
@@ -9579,11 +9409,26 @@
|
|
|
9579
9409
|
"name": "machine",
|
|
9580
9410
|
"allowNo": false,
|
|
9581
9411
|
"type": "boolean"
|
|
9412
|
+
},
|
|
9413
|
+
"description": {
|
|
9414
|
+
"char": "d",
|
|
9415
|
+
"description": "Theme description",
|
|
9416
|
+
"name": "description",
|
|
9417
|
+
"hasDynamicHelp": false,
|
|
9418
|
+
"multiple": false,
|
|
9419
|
+
"type": "option"
|
|
9420
|
+
},
|
|
9421
|
+
"display-name": {
|
|
9422
|
+
"description": "Display name (defaults to formatted name)",
|
|
9423
|
+
"name": "display-name",
|
|
9424
|
+
"hasDynamicHelp": false,
|
|
9425
|
+
"multiple": false,
|
|
9426
|
+
"type": "option"
|
|
9582
9427
|
}
|
|
9583
9428
|
},
|
|
9584
9429
|
"hasDynamicHelp": false,
|
|
9585
9430
|
"hiddenAliases": [],
|
|
9586
|
-
"id": "
|
|
9431
|
+
"id": "theme:create",
|
|
9587
9432
|
"pluginAlias": "@proletariat/cli",
|
|
9588
9433
|
"pluginName": "@proletariat/cli",
|
|
9589
9434
|
"pluginType": "core",
|
|
@@ -9593,18 +9438,18 @@
|
|
|
9593
9438
|
"relativePath": [
|
|
9594
9439
|
"dist",
|
|
9595
9440
|
"commands",
|
|
9596
|
-
"
|
|
9597
|
-
"
|
|
9441
|
+
"theme",
|
|
9442
|
+
"create.js"
|
|
9598
9443
|
]
|
|
9599
9444
|
},
|
|
9600
|
-
"
|
|
9445
|
+
"theme": {
|
|
9601
9446
|
"aliases": [],
|
|
9602
9447
|
"args": {},
|
|
9603
|
-
"description": "
|
|
9448
|
+
"description": "Manage agent naming themes",
|
|
9604
9449
|
"examples": [
|
|
9605
|
-
"<%= config.bin %>
|
|
9606
|
-
"<%= config.bin %>
|
|
9607
|
-
"<%= config.bin %>
|
|
9450
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
9451
|
+
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
9452
|
+
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
9608
9453
|
],
|
|
9609
9454
|
"flags": {
|
|
9610
9455
|
"json": {
|
|
@@ -9619,39 +9464,29 @@
|
|
|
9619
9464
|
"name": "machine",
|
|
9620
9465
|
"allowNo": false,
|
|
9621
9466
|
"type": "boolean"
|
|
9622
|
-
},
|
|
9623
|
-
"auto": {
|
|
9624
|
-
"description": "Automatically register all detected tools without prompting",
|
|
9625
|
-
"name": "auto",
|
|
9626
|
-
"allowNo": false,
|
|
9627
|
-
"type": "boolean"
|
|
9628
9467
|
}
|
|
9629
9468
|
},
|
|
9630
9469
|
"hasDynamicHelp": false,
|
|
9631
9470
|
"hiddenAliases": [],
|
|
9632
|
-
"id": "
|
|
9471
|
+
"id": "theme",
|
|
9633
9472
|
"pluginAlias": "@proletariat/cli",
|
|
9634
9473
|
"pluginName": "@proletariat/cli",
|
|
9635
9474
|
"pluginType": "core",
|
|
9636
9475
|
"strict": true,
|
|
9637
|
-
"enableJsonFlag": false,
|
|
9638
9476
|
"isESM": true,
|
|
9639
9477
|
"relativePath": [
|
|
9640
9478
|
"dist",
|
|
9641
9479
|
"commands",
|
|
9642
|
-
"
|
|
9643
|
-
"
|
|
9480
|
+
"theme",
|
|
9481
|
+
"index.js"
|
|
9644
9482
|
]
|
|
9645
9483
|
},
|
|
9646
|
-
"
|
|
9647
|
-
"aliases": [
|
|
9648
|
-
"tools:list"
|
|
9649
|
-
],
|
|
9484
|
+
"theme:list": {
|
|
9485
|
+
"aliases": [],
|
|
9650
9486
|
"args": {},
|
|
9651
|
-
"description": "
|
|
9487
|
+
"description": "List available agent themes",
|
|
9652
9488
|
"examples": [
|
|
9653
|
-
"<%= config.bin %>
|
|
9654
|
-
"<%= config.bin %> tools --json"
|
|
9489
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9655
9490
|
],
|
|
9656
9491
|
"flags": {
|
|
9657
9492
|
"json": {
|
|
@@ -9670,7 +9505,7 @@
|
|
|
9670
9505
|
},
|
|
9671
9506
|
"hasDynamicHelp": false,
|
|
9672
9507
|
"hiddenAliases": [],
|
|
9673
|
-
"id": "
|
|
9508
|
+
"id": "theme:list",
|
|
9674
9509
|
"pluginAlias": "@proletariat/cli",
|
|
9675
9510
|
"pluginName": "@proletariat/cli",
|
|
9676
9511
|
"pluginType": "core",
|
|
@@ -9680,23 +9515,23 @@
|
|
|
9680
9515
|
"relativePath": [
|
|
9681
9516
|
"dist",
|
|
9682
9517
|
"commands",
|
|
9683
|
-
"
|
|
9684
|
-
"
|
|
9518
|
+
"theme",
|
|
9519
|
+
"list.js"
|
|
9685
9520
|
]
|
|
9686
9521
|
},
|
|
9687
|
-
"
|
|
9522
|
+
"theme:set": {
|
|
9688
9523
|
"aliases": [],
|
|
9689
9524
|
"args": {
|
|
9690
|
-
"
|
|
9691
|
-
"description": "
|
|
9692
|
-
"name": "
|
|
9693
|
-
"required":
|
|
9525
|
+
"theme": {
|
|
9526
|
+
"description": "Theme ID to set as active",
|
|
9527
|
+
"name": "theme",
|
|
9528
|
+
"required": false
|
|
9694
9529
|
}
|
|
9695
9530
|
},
|
|
9696
|
-
"description": "
|
|
9531
|
+
"description": "Set the active theme for this workspace",
|
|
9697
9532
|
"examples": [
|
|
9698
|
-
"<%= config.bin %>
|
|
9699
|
-
"<%= config.bin %>
|
|
9533
|
+
"<%= config.bin %> <%= command.id %> billionaires",
|
|
9534
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9700
9535
|
],
|
|
9701
9536
|
"flags": {
|
|
9702
9537
|
"json": {
|
|
@@ -9715,18 +9550,18 @@
|
|
|
9715
9550
|
},
|
|
9716
9551
|
"hasDynamicHelp": false,
|
|
9717
9552
|
"hiddenAliases": [],
|
|
9718
|
-
"id": "
|
|
9553
|
+
"id": "theme:set",
|
|
9719
9554
|
"pluginAlias": "@proletariat/cli",
|
|
9720
9555
|
"pluginName": "@proletariat/cli",
|
|
9721
9556
|
"pluginType": "core",
|
|
9722
9557
|
"strict": true,
|
|
9723
|
-
"enableJsonFlag": false,
|
|
9724
9558
|
"isESM": true,
|
|
9725
9559
|
"relativePath": [
|
|
9726
9560
|
"dist",
|
|
9727
9561
|
"commands",
|
|
9728
|
-
"
|
|
9729
|
-
"
|
|
9562
|
+
"agent",
|
|
9563
|
+
"themes",
|
|
9564
|
+
"set.js"
|
|
9730
9565
|
]
|
|
9731
9566
|
},
|
|
9732
9567
|
"trello:configure": {
|
|
@@ -9955,58 +9790,6 @@
|
|
|
9955
9790
|
"sync.js"
|
|
9956
9791
|
]
|
|
9957
9792
|
},
|
|
9958
|
-
"version:bump": {
|
|
9959
|
-
"aliases": [],
|
|
9960
|
-
"args": {
|
|
9961
|
-
"type": {
|
|
9962
|
-
"description": "Version bump type",
|
|
9963
|
-
"name": "type",
|
|
9964
|
-
"options": [
|
|
9965
|
-
"major",
|
|
9966
|
-
"minor",
|
|
9967
|
-
"patch"
|
|
9968
|
-
],
|
|
9969
|
-
"required": true
|
|
9970
|
-
}
|
|
9971
|
-
},
|
|
9972
|
-
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
9973
|
-
"examples": [
|
|
9974
|
-
"<%= config.bin %> version bump patch",
|
|
9975
|
-
"<%= config.bin %> version bump minor",
|
|
9976
|
-
"<%= config.bin %> version bump major",
|
|
9977
|
-
"<%= config.bin %> version bump patch --json"
|
|
9978
|
-
],
|
|
9979
|
-
"flags": {
|
|
9980
|
-
"json": {
|
|
9981
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9982
|
-
"name": "json",
|
|
9983
|
-
"allowNo": false,
|
|
9984
|
-
"type": "boolean"
|
|
9985
|
-
},
|
|
9986
|
-
"machine": {
|
|
9987
|
-
"char": "m",
|
|
9988
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9989
|
-
"name": "machine",
|
|
9990
|
-
"allowNo": false,
|
|
9991
|
-
"type": "boolean"
|
|
9992
|
-
}
|
|
9993
|
-
},
|
|
9994
|
-
"hasDynamicHelp": false,
|
|
9995
|
-
"hiddenAliases": [],
|
|
9996
|
-
"id": "version:bump",
|
|
9997
|
-
"pluginAlias": "@proletariat/cli",
|
|
9998
|
-
"pluginName": "@proletariat/cli",
|
|
9999
|
-
"pluginType": "core",
|
|
10000
|
-
"strict": true,
|
|
10001
|
-
"enableJsonFlag": false,
|
|
10002
|
-
"isESM": true,
|
|
10003
|
-
"relativePath": [
|
|
10004
|
-
"dist",
|
|
10005
|
-
"commands",
|
|
10006
|
-
"version",
|
|
10007
|
-
"bump.js"
|
|
10008
|
-
]
|
|
10009
|
-
},
|
|
10010
9793
|
"ticket:bulk": {
|
|
10011
9794
|
"aliases": [],
|
|
10012
9795
|
"args": {},
|
|
@@ -11618,20 +11401,28 @@
|
|
|
11618
11401
|
"view.js"
|
|
11619
11402
|
]
|
|
11620
11403
|
},
|
|
11621
|
-
"
|
|
11404
|
+
"tools:add": {
|
|
11622
11405
|
"aliases": [],
|
|
11623
11406
|
"args": {
|
|
11624
|
-
"
|
|
11625
|
-
"description": "
|
|
11626
|
-
"name": "
|
|
11407
|
+
"type": {
|
|
11408
|
+
"description": "Tool type (mcp or cli)",
|
|
11409
|
+
"name": "type",
|
|
11410
|
+
"options": [
|
|
11411
|
+
"mcp",
|
|
11412
|
+
"cli"
|
|
11413
|
+
],
|
|
11414
|
+
"required": true
|
|
11415
|
+
},
|
|
11416
|
+
"name": {
|
|
11417
|
+
"description": "Tool name (unique identifier)",
|
|
11418
|
+
"name": "name",
|
|
11627
11419
|
"required": true
|
|
11628
11420
|
}
|
|
11629
11421
|
},
|
|
11630
|
-
"description": "Register an
|
|
11422
|
+
"description": "Register an MCP server or CLI tool",
|
|
11631
11423
|
"examples": [
|
|
11632
|
-
"<%= config.bin %>
|
|
11633
|
-
"<%= config.bin %>
|
|
11634
|
-
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
11424
|
+
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
11425
|
+
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
11635
11426
|
],
|
|
11636
11427
|
"flags": {
|
|
11637
11428
|
"json": {
|
|
@@ -11647,10 +11438,46 @@
|
|
|
11647
11438
|
"allowNo": false,
|
|
11648
11439
|
"type": "boolean"
|
|
11649
11440
|
},
|
|
11650
|
-
"
|
|
11651
|
-
"
|
|
11652
|
-
"
|
|
11653
|
-
"
|
|
11441
|
+
"url": {
|
|
11442
|
+
"description": "MCP server URL (for remote servers)",
|
|
11443
|
+
"name": "url",
|
|
11444
|
+
"hasDynamicHelp": false,
|
|
11445
|
+
"multiple": false,
|
|
11446
|
+
"type": "option"
|
|
11447
|
+
},
|
|
11448
|
+
"command": {
|
|
11449
|
+
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
11450
|
+
"name": "command",
|
|
11451
|
+
"hasDynamicHelp": false,
|
|
11452
|
+
"multiple": false,
|
|
11453
|
+
"type": "option"
|
|
11454
|
+
},
|
|
11455
|
+
"auth": {
|
|
11456
|
+
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
11457
|
+
"name": "auth",
|
|
11458
|
+
"hasDynamicHelp": false,
|
|
11459
|
+
"multiple": false,
|
|
11460
|
+
"type": "option"
|
|
11461
|
+
},
|
|
11462
|
+
"detect": {
|
|
11463
|
+
"description": "Shell command to detect if CLI tool is installed",
|
|
11464
|
+
"name": "detect",
|
|
11465
|
+
"hasDynamicHelp": false,
|
|
11466
|
+
"multiple": false,
|
|
11467
|
+
"type": "option"
|
|
11468
|
+
},
|
|
11469
|
+
"install": {
|
|
11470
|
+
"description": "Shell command to install the CLI tool",
|
|
11471
|
+
"name": "install",
|
|
11472
|
+
"hasDynamicHelp": false,
|
|
11473
|
+
"multiple": false,
|
|
11474
|
+
"type": "option"
|
|
11475
|
+
},
|
|
11476
|
+
"description": {
|
|
11477
|
+
"char": "d",
|
|
11478
|
+
"description": "Human-readable description",
|
|
11479
|
+
"name": "description",
|
|
11480
|
+
"required": true,
|
|
11654
11481
|
"hasDynamicHelp": false,
|
|
11655
11482
|
"multiple": false,
|
|
11656
11483
|
"type": "option"
|
|
@@ -11658,27 +11485,26 @@
|
|
|
11658
11485
|
},
|
|
11659
11486
|
"hasDynamicHelp": false,
|
|
11660
11487
|
"hiddenAliases": [],
|
|
11661
|
-
"id": "
|
|
11488
|
+
"id": "tools:add",
|
|
11662
11489
|
"pluginAlias": "@proletariat/cli",
|
|
11663
11490
|
"pluginName": "@proletariat/cli",
|
|
11664
11491
|
"pluginType": "core",
|
|
11665
11492
|
"strict": true,
|
|
11666
|
-
"enableJsonFlag": false,
|
|
11667
11493
|
"isESM": true,
|
|
11668
11494
|
"relativePath": [
|
|
11669
11495
|
"dist",
|
|
11670
11496
|
"commands",
|
|
11671
|
-
"
|
|
11497
|
+
"tools",
|
|
11672
11498
|
"add.js"
|
|
11673
11499
|
]
|
|
11674
11500
|
},
|
|
11675
|
-
"
|
|
11501
|
+
"tools:check": {
|
|
11676
11502
|
"aliases": [],
|
|
11677
11503
|
"args": {},
|
|
11678
|
-
"description": "
|
|
11504
|
+
"description": "Verify all registered tools are available and healthy",
|
|
11679
11505
|
"examples": [
|
|
11680
|
-
"<%= config.bin %>
|
|
11681
|
-
"<%= config.bin %>
|
|
11506
|
+
"<%= config.bin %> tools check",
|
|
11507
|
+
"<%= config.bin %> tools check --json"
|
|
11682
11508
|
],
|
|
11683
11509
|
"flags": {
|
|
11684
11510
|
"json": {
|
|
@@ -11697,7 +11523,7 @@
|
|
|
11697
11523
|
},
|
|
11698
11524
|
"hasDynamicHelp": false,
|
|
11699
11525
|
"hiddenAliases": [],
|
|
11700
|
-
"id": "
|
|
11526
|
+
"id": "tools:check",
|
|
11701
11527
|
"pluginAlias": "@proletariat/cli",
|
|
11702
11528
|
"pluginName": "@proletariat/cli",
|
|
11703
11529
|
"pluginType": "core",
|
|
@@ -11707,18 +11533,18 @@
|
|
|
11707
11533
|
"relativePath": [
|
|
11708
11534
|
"dist",
|
|
11709
11535
|
"commands",
|
|
11710
|
-
"
|
|
11711
|
-
"
|
|
11536
|
+
"tools",
|
|
11537
|
+
"check.js"
|
|
11712
11538
|
]
|
|
11713
11539
|
},
|
|
11714
|
-
"
|
|
11540
|
+
"tools:detect": {
|
|
11715
11541
|
"aliases": [],
|
|
11716
11542
|
"args": {},
|
|
11717
|
-
"description": "
|
|
11543
|
+
"description": "Auto-detect common CLI tools on the system and register them",
|
|
11718
11544
|
"examples": [
|
|
11719
|
-
"<%= config.bin %>
|
|
11720
|
-
"<%= config.bin %>
|
|
11721
|
-
"<%= config.bin %>
|
|
11545
|
+
"<%= config.bin %> tools detect",
|
|
11546
|
+
"<%= config.bin %> tools detect --auto",
|
|
11547
|
+
"<%= config.bin %> tools detect --json"
|
|
11722
11548
|
],
|
|
11723
11549
|
"flags": {
|
|
11724
11550
|
"json": {
|
|
@@ -11734,49 +11560,83 @@
|
|
|
11734
11560
|
"allowNo": false,
|
|
11735
11561
|
"type": "boolean"
|
|
11736
11562
|
},
|
|
11737
|
-
"
|
|
11738
|
-
"
|
|
11739
|
-
"
|
|
11740
|
-
"
|
|
11563
|
+
"auto": {
|
|
11564
|
+
"description": "Automatically register all detected tools without prompting",
|
|
11565
|
+
"name": "auto",
|
|
11566
|
+
"allowNo": false,
|
|
11567
|
+
"type": "boolean"
|
|
11568
|
+
}
|
|
11569
|
+
},
|
|
11570
|
+
"hasDynamicHelp": false,
|
|
11571
|
+
"hiddenAliases": [],
|
|
11572
|
+
"id": "tools:detect",
|
|
11573
|
+
"pluginAlias": "@proletariat/cli",
|
|
11574
|
+
"pluginName": "@proletariat/cli",
|
|
11575
|
+
"pluginType": "core",
|
|
11576
|
+
"strict": true,
|
|
11577
|
+
"enableJsonFlag": false,
|
|
11578
|
+
"isESM": true,
|
|
11579
|
+
"relativePath": [
|
|
11580
|
+
"dist",
|
|
11581
|
+
"commands",
|
|
11582
|
+
"tools",
|
|
11583
|
+
"detect.js"
|
|
11584
|
+
]
|
|
11585
|
+
},
|
|
11586
|
+
"tools": {
|
|
11587
|
+
"aliases": [
|
|
11588
|
+
"tools:list"
|
|
11589
|
+
],
|
|
11590
|
+
"args": {},
|
|
11591
|
+
"description": "Show all registered MCP servers and CLI tools",
|
|
11592
|
+
"examples": [
|
|
11593
|
+
"<%= config.bin %> tools",
|
|
11594
|
+
"<%= config.bin %> tools --json"
|
|
11595
|
+
],
|
|
11596
|
+
"flags": {
|
|
11597
|
+
"json": {
|
|
11598
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11599
|
+
"name": "json",
|
|
11741
11600
|
"allowNo": false,
|
|
11742
11601
|
"type": "boolean"
|
|
11743
11602
|
},
|
|
11744
|
-
"
|
|
11745
|
-
"char": "
|
|
11746
|
-
"description": "
|
|
11747
|
-
"name": "
|
|
11603
|
+
"machine": {
|
|
11604
|
+
"char": "m",
|
|
11605
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11606
|
+
"name": "machine",
|
|
11748
11607
|
"allowNo": false,
|
|
11749
11608
|
"type": "boolean"
|
|
11750
11609
|
}
|
|
11751
11610
|
},
|
|
11752
11611
|
"hasDynamicHelp": false,
|
|
11753
11612
|
"hiddenAliases": [],
|
|
11754
|
-
"id": "
|
|
11613
|
+
"id": "tools",
|
|
11755
11614
|
"pluginAlias": "@proletariat/cli",
|
|
11756
11615
|
"pluginName": "@proletariat/cli",
|
|
11757
11616
|
"pluginType": "core",
|
|
11758
11617
|
"strict": true,
|
|
11618
|
+
"enableJsonFlag": false,
|
|
11759
11619
|
"isESM": true,
|
|
11760
11620
|
"relativePath": [
|
|
11761
11621
|
"dist",
|
|
11762
11622
|
"commands",
|
|
11763
|
-
"
|
|
11764
|
-
"
|
|
11623
|
+
"tools",
|
|
11624
|
+
"index.js"
|
|
11765
11625
|
]
|
|
11766
11626
|
},
|
|
11767
|
-
"
|
|
11627
|
+
"tools:remove": {
|
|
11768
11628
|
"aliases": [],
|
|
11769
11629
|
"args": {
|
|
11770
|
-
"
|
|
11771
|
-
"description": "
|
|
11772
|
-
"name": "
|
|
11630
|
+
"name": {
|
|
11631
|
+
"description": "Tool name to remove",
|
|
11632
|
+
"name": "name",
|
|
11773
11633
|
"required": true
|
|
11774
11634
|
}
|
|
11775
11635
|
},
|
|
11776
|
-
"description": "
|
|
11636
|
+
"description": "Remove a tool from the registry",
|
|
11777
11637
|
"examples": [
|
|
11778
|
-
"<%= config.bin %>
|
|
11779
|
-
"<%= config.bin %>
|
|
11638
|
+
"<%= config.bin %> tools remove arcade",
|
|
11639
|
+
"<%= config.bin %> tools remove ffmpeg"
|
|
11780
11640
|
],
|
|
11781
11641
|
"flags": {
|
|
11782
11642
|
"json": {
|
|
@@ -11795,32 +11655,40 @@
|
|
|
11795
11655
|
},
|
|
11796
11656
|
"hasDynamicHelp": false,
|
|
11797
11657
|
"hiddenAliases": [],
|
|
11798
|
-
"id": "
|
|
11658
|
+
"id": "tools:remove",
|
|
11799
11659
|
"pluginAlias": "@proletariat/cli",
|
|
11800
11660
|
"pluginName": "@proletariat/cli",
|
|
11801
11661
|
"pluginType": "core",
|
|
11802
11662
|
"strict": true,
|
|
11663
|
+
"enableJsonFlag": false,
|
|
11803
11664
|
"isESM": true,
|
|
11804
11665
|
"relativePath": [
|
|
11805
11666
|
"dist",
|
|
11806
11667
|
"commands",
|
|
11807
|
-
"
|
|
11668
|
+
"tools",
|
|
11808
11669
|
"remove.js"
|
|
11809
11670
|
]
|
|
11810
11671
|
},
|
|
11811
|
-
"
|
|
11672
|
+
"version:bump": {
|
|
11812
11673
|
"aliases": [],
|
|
11813
11674
|
"args": {
|
|
11814
|
-
"
|
|
11815
|
-
"description": "
|
|
11816
|
-
"name": "
|
|
11675
|
+
"type": {
|
|
11676
|
+
"description": "Version bump type",
|
|
11677
|
+
"name": "type",
|
|
11678
|
+
"options": [
|
|
11679
|
+
"major",
|
|
11680
|
+
"minor",
|
|
11681
|
+
"patch"
|
|
11682
|
+
],
|
|
11817
11683
|
"required": true
|
|
11818
11684
|
}
|
|
11819
11685
|
},
|
|
11820
|
-
"description": "
|
|
11686
|
+
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
11821
11687
|
"examples": [
|
|
11822
|
-
"<%= config.bin %>
|
|
11823
|
-
"<%= config.bin %>
|
|
11688
|
+
"<%= config.bin %> version bump patch",
|
|
11689
|
+
"<%= config.bin %> version bump minor",
|
|
11690
|
+
"<%= config.bin %> version bump major",
|
|
11691
|
+
"<%= config.bin %> version bump patch --json"
|
|
11824
11692
|
],
|
|
11825
11693
|
"flags": {
|
|
11826
11694
|
"json": {
|
|
@@ -11839,17 +11707,18 @@
|
|
|
11839
11707
|
},
|
|
11840
11708
|
"hasDynamicHelp": false,
|
|
11841
11709
|
"hiddenAliases": [],
|
|
11842
|
-
"id": "
|
|
11710
|
+
"id": "version:bump",
|
|
11843
11711
|
"pluginAlias": "@proletariat/cli",
|
|
11844
11712
|
"pluginName": "@proletariat/cli",
|
|
11845
11713
|
"pluginType": "core",
|
|
11846
11714
|
"strict": true,
|
|
11715
|
+
"enableJsonFlag": false,
|
|
11847
11716
|
"isESM": true,
|
|
11848
11717
|
"relativePath": [
|
|
11849
11718
|
"dist",
|
|
11850
11719
|
"commands",
|
|
11851
|
-
"
|
|
11852
|
-
"
|
|
11720
|
+
"version",
|
|
11721
|
+
"bump.js"
|
|
11853
11722
|
]
|
|
11854
11723
|
},
|
|
11855
11724
|
"work:asana": {
|
|
@@ -13711,6 +13580,13 @@
|
|
|
13711
13580
|
"on-error-keep"
|
|
13712
13581
|
],
|
|
13713
13582
|
"type": "option"
|
|
13583
|
+
},
|
|
13584
|
+
"allow-network": {
|
|
13585
|
+
"description": "Extra domains to allow in container firewall (comma-separated, e.g., api.linear.app,api.slack.com)",
|
|
13586
|
+
"name": "allow-network",
|
|
13587
|
+
"hasDynamicHelp": false,
|
|
13588
|
+
"multiple": false,
|
|
13589
|
+
"type": "option"
|
|
13714
13590
|
}
|
|
13715
13591
|
},
|
|
13716
13592
|
"hasDynamicHelp": false,
|
|
@@ -13956,6 +13832,240 @@
|
|
|
13956
13832
|
"watch.js"
|
|
13957
13833
|
]
|
|
13958
13834
|
},
|
|
13835
|
+
"workspace:add": {
|
|
13836
|
+
"aliases": [],
|
|
13837
|
+
"args": {
|
|
13838
|
+
"path": {
|
|
13839
|
+
"description": "Path to the workspace to register",
|
|
13840
|
+
"name": "path",
|
|
13841
|
+
"required": true
|
|
13842
|
+
}
|
|
13843
|
+
},
|
|
13844
|
+
"description": "Register an existing workspace in the machine config",
|
|
13845
|
+
"examples": [
|
|
13846
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
13847
|
+
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
13848
|
+
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
13849
|
+
],
|
|
13850
|
+
"flags": {
|
|
13851
|
+
"json": {
|
|
13852
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13853
|
+
"name": "json",
|
|
13854
|
+
"allowNo": false,
|
|
13855
|
+
"type": "boolean"
|
|
13856
|
+
},
|
|
13857
|
+
"machine": {
|
|
13858
|
+
"char": "m",
|
|
13859
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13860
|
+
"name": "machine",
|
|
13861
|
+
"allowNo": false,
|
|
13862
|
+
"type": "boolean"
|
|
13863
|
+
},
|
|
13864
|
+
"name": {
|
|
13865
|
+
"char": "n",
|
|
13866
|
+
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
13867
|
+
"name": "name",
|
|
13868
|
+
"hasDynamicHelp": false,
|
|
13869
|
+
"multiple": false,
|
|
13870
|
+
"type": "option"
|
|
13871
|
+
}
|
|
13872
|
+
},
|
|
13873
|
+
"hasDynamicHelp": false,
|
|
13874
|
+
"hiddenAliases": [],
|
|
13875
|
+
"id": "workspace:add",
|
|
13876
|
+
"pluginAlias": "@proletariat/cli",
|
|
13877
|
+
"pluginName": "@proletariat/cli",
|
|
13878
|
+
"pluginType": "core",
|
|
13879
|
+
"strict": true,
|
|
13880
|
+
"enableJsonFlag": false,
|
|
13881
|
+
"isESM": true,
|
|
13882
|
+
"relativePath": [
|
|
13883
|
+
"dist",
|
|
13884
|
+
"commands",
|
|
13885
|
+
"workspace",
|
|
13886
|
+
"add.js"
|
|
13887
|
+
]
|
|
13888
|
+
},
|
|
13889
|
+
"workspace:list": {
|
|
13890
|
+
"aliases": [],
|
|
13891
|
+
"args": {},
|
|
13892
|
+
"description": "List all registered and discovered HQ workspaces",
|
|
13893
|
+
"examples": [
|
|
13894
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13895
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
13896
|
+
],
|
|
13897
|
+
"flags": {
|
|
13898
|
+
"json": {
|
|
13899
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13900
|
+
"name": "json",
|
|
13901
|
+
"allowNo": false,
|
|
13902
|
+
"type": "boolean"
|
|
13903
|
+
},
|
|
13904
|
+
"machine": {
|
|
13905
|
+
"char": "m",
|
|
13906
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13907
|
+
"name": "machine",
|
|
13908
|
+
"allowNo": false,
|
|
13909
|
+
"type": "boolean"
|
|
13910
|
+
}
|
|
13911
|
+
},
|
|
13912
|
+
"hasDynamicHelp": false,
|
|
13913
|
+
"hiddenAliases": [],
|
|
13914
|
+
"id": "workspace:list",
|
|
13915
|
+
"pluginAlias": "@proletariat/cli",
|
|
13916
|
+
"pluginName": "@proletariat/cli",
|
|
13917
|
+
"pluginType": "core",
|
|
13918
|
+
"strict": true,
|
|
13919
|
+
"enableJsonFlag": false,
|
|
13920
|
+
"isESM": true,
|
|
13921
|
+
"relativePath": [
|
|
13922
|
+
"dist",
|
|
13923
|
+
"commands",
|
|
13924
|
+
"workspace",
|
|
13925
|
+
"list.js"
|
|
13926
|
+
]
|
|
13927
|
+
},
|
|
13928
|
+
"workspace:prune": {
|
|
13929
|
+
"aliases": [],
|
|
13930
|
+
"args": {},
|
|
13931
|
+
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
13932
|
+
"examples": [
|
|
13933
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
13934
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13935
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
13936
|
+
],
|
|
13937
|
+
"flags": {
|
|
13938
|
+
"json": {
|
|
13939
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13940
|
+
"name": "json",
|
|
13941
|
+
"allowNo": false,
|
|
13942
|
+
"type": "boolean"
|
|
13943
|
+
},
|
|
13944
|
+
"machine": {
|
|
13945
|
+
"char": "m",
|
|
13946
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13947
|
+
"name": "machine",
|
|
13948
|
+
"allowNo": false,
|
|
13949
|
+
"type": "boolean"
|
|
13950
|
+
},
|
|
13951
|
+
"dry-run": {
|
|
13952
|
+
"char": "d",
|
|
13953
|
+
"description": "Show what would be removed without removing",
|
|
13954
|
+
"name": "dry-run",
|
|
13955
|
+
"allowNo": false,
|
|
13956
|
+
"type": "boolean"
|
|
13957
|
+
},
|
|
13958
|
+
"force": {
|
|
13959
|
+
"char": "f",
|
|
13960
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
13961
|
+
"name": "force",
|
|
13962
|
+
"allowNo": false,
|
|
13963
|
+
"type": "boolean"
|
|
13964
|
+
}
|
|
13965
|
+
},
|
|
13966
|
+
"hasDynamicHelp": false,
|
|
13967
|
+
"hiddenAliases": [],
|
|
13968
|
+
"id": "workspace:prune",
|
|
13969
|
+
"pluginAlias": "@proletariat/cli",
|
|
13970
|
+
"pluginName": "@proletariat/cli",
|
|
13971
|
+
"pluginType": "core",
|
|
13972
|
+
"strict": true,
|
|
13973
|
+
"isESM": true,
|
|
13974
|
+
"relativePath": [
|
|
13975
|
+
"dist",
|
|
13976
|
+
"commands",
|
|
13977
|
+
"workspace",
|
|
13978
|
+
"prune.js"
|
|
13979
|
+
]
|
|
13980
|
+
},
|
|
13981
|
+
"workspace:remove": {
|
|
13982
|
+
"aliases": [],
|
|
13983
|
+
"args": {
|
|
13984
|
+
"nameOrPath": {
|
|
13985
|
+
"description": "Workspace name or path to unregister",
|
|
13986
|
+
"name": "nameOrPath",
|
|
13987
|
+
"required": true
|
|
13988
|
+
}
|
|
13989
|
+
},
|
|
13990
|
+
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
13991
|
+
"examples": [
|
|
13992
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13993
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13994
|
+
],
|
|
13995
|
+
"flags": {
|
|
13996
|
+
"json": {
|
|
13997
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13998
|
+
"name": "json",
|
|
13999
|
+
"allowNo": false,
|
|
14000
|
+
"type": "boolean"
|
|
14001
|
+
},
|
|
14002
|
+
"machine": {
|
|
14003
|
+
"char": "m",
|
|
14004
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14005
|
+
"name": "machine",
|
|
14006
|
+
"allowNo": false,
|
|
14007
|
+
"type": "boolean"
|
|
14008
|
+
}
|
|
14009
|
+
},
|
|
14010
|
+
"hasDynamicHelp": false,
|
|
14011
|
+
"hiddenAliases": [],
|
|
14012
|
+
"id": "workspace:remove",
|
|
14013
|
+
"pluginAlias": "@proletariat/cli",
|
|
14014
|
+
"pluginName": "@proletariat/cli",
|
|
14015
|
+
"pluginType": "core",
|
|
14016
|
+
"strict": true,
|
|
14017
|
+
"isESM": true,
|
|
14018
|
+
"relativePath": [
|
|
14019
|
+
"dist",
|
|
14020
|
+
"commands",
|
|
14021
|
+
"workspace",
|
|
14022
|
+
"remove.js"
|
|
14023
|
+
]
|
|
14024
|
+
},
|
|
14025
|
+
"workspace:use": {
|
|
14026
|
+
"aliases": [],
|
|
14027
|
+
"args": {
|
|
14028
|
+
"nameOrPath": {
|
|
14029
|
+
"description": "Workspace name or path",
|
|
14030
|
+
"name": "nameOrPath",
|
|
14031
|
+
"required": true
|
|
14032
|
+
}
|
|
14033
|
+
},
|
|
14034
|
+
"description": "Set the active workspace",
|
|
14035
|
+
"examples": [
|
|
14036
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
14037
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
14038
|
+
],
|
|
14039
|
+
"flags": {
|
|
14040
|
+
"json": {
|
|
14041
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14042
|
+
"name": "json",
|
|
14043
|
+
"allowNo": false,
|
|
14044
|
+
"type": "boolean"
|
|
14045
|
+
},
|
|
14046
|
+
"machine": {
|
|
14047
|
+
"char": "m",
|
|
14048
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14049
|
+
"name": "machine",
|
|
14050
|
+
"allowNo": false,
|
|
14051
|
+
"type": "boolean"
|
|
14052
|
+
}
|
|
14053
|
+
},
|
|
14054
|
+
"hasDynamicHelp": false,
|
|
14055
|
+
"hiddenAliases": [],
|
|
14056
|
+
"id": "workspace:use",
|
|
14057
|
+
"pluginAlias": "@proletariat/cli",
|
|
14058
|
+
"pluginName": "@proletariat/cli",
|
|
14059
|
+
"pluginType": "core",
|
|
14060
|
+
"strict": true,
|
|
14061
|
+
"isESM": true,
|
|
14062
|
+
"relativePath": [
|
|
14063
|
+
"dist",
|
|
14064
|
+
"commands",
|
|
14065
|
+
"workspace",
|
|
14066
|
+
"use.js"
|
|
14067
|
+
]
|
|
14068
|
+
},
|
|
13959
14069
|
"agent:staff:add": {
|
|
13960
14070
|
"aliases": [],
|
|
13961
14071
|
"args": {
|
|
@@ -15021,5 +15131,5 @@
|
|
|
15021
15131
|
]
|
|
15022
15132
|
}
|
|
15023
15133
|
},
|
|
15024
|
-
"version": "0.3.
|
|
15134
|
+
"version": "0.3.89"
|
|
15025
15135
|
}
|