@proletariat/cli 0.3.86 → 0.3.87
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/config/index.js +42 -0
- package/dist/commands/config/index.js.map +1 -1
- package/dist/commands/session/poke.d.ts +3 -7
- package/dist/commands/session/poke.js +5 -7
- package/dist/commands/session/poke.js.map +1 -1
- package/dist/commands/ticket/cancel.js +2 -0
- package/dist/commands/ticket/cancel.js.map +1 -1
- package/dist/commands/ticket/complete.js +2 -0
- package/dist/commands/ticket/complete.js.map +1 -1
- package/dist/commands/ticket/delete.js +2 -0
- package/dist/commands/ticket/delete.js.map +1 -1
- package/dist/commands/ticket/edit.js +5 -0
- package/dist/commands/ticket/edit.js.map +1 -1
- package/dist/commands/ticket/move.js +2 -0
- package/dist/commands/ticket/move.js.map +1 -1
- package/dist/commands/ticket/project.js +2 -0
- package/dist/commands/ticket/project.js.map +1 -1
- package/dist/commands/ticket/reassign.js +2 -0
- package/dist/commands/ticket/reassign.js.map +1 -1
- package/dist/commands/ticket/resolve.js +2 -0
- package/dist/commands/ticket/resolve.js.map +1 -1
- package/dist/commands/ticket/update.js +5 -0
- package/dist/commands/ticket/update.js.map +1 -1
- package/dist/commands/work/complete.js +2 -0
- package/dist/commands/work/complete.js.map +1 -1
- package/dist/commands/work/peek.js +4 -0
- package/dist/commands/work/peek.js.map +1 -1
- package/dist/commands/work/poke.d.ts +3 -4
- package/dist/commands/work/poke.js +9 -4
- package/dist/commands/work/poke.js.map +1 -1
- package/dist/commands/work/ready.js +2 -0
- package/dist/commands/work/ready.js.map +1 -1
- package/dist/commands/work/start.d.ts +1 -0
- package/dist/commands/work/start.js +46 -2
- package/dist/commands/work/start.js.map +1 -1
- package/dist/commands/work/stop.js +5 -0
- package/dist/commands/work/stop.js.map +1 -1
- package/dist/hooks/init.js +3 -0
- package/dist/hooks/init.js.map +1 -1
- package/dist/hooks/postrun.js +3 -0
- package/dist/hooks/postrun.js.map +1 -1
- package/dist/lib/database/drizzle-schema.d.ts +1 -1
- package/dist/lib/database/migrations/0011_add_review_gate.d.ts +8 -0
- package/dist/lib/database/migrations/0011_add_review_gate.js +21 -0
- package/dist/lib/database/migrations/0011_add_review_gate.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/execution/runners/prompt-builder.js +49 -15
- package/dist/lib/execution/runners/prompt-builder.js.map +1 -1
- package/dist/lib/execution/storage.d.ts +2 -1
- package/dist/lib/execution/storage.js +6 -5
- 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/mcp/tools/action.js +34 -0
- package/dist/lib/mcp/tools/action.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 +1 -0
- package/dist/lib/pmo/storage/index.js +3 -0
- package/dist/lib/pmo/storage/index.js.map +1 -1
- package/dist/lib/pmo/storage/tickets.d.ts +7 -0
- package/dist/lib/pmo/storage/tickets.js +33 -2
- package/dist/lib/pmo/storage/tickets.js.map +1 -1
- package/dist/lib/pmo/storage/types.d.ts +1 -0
- package/dist/lib/pmo/types.d.ts +10 -0
- package/dist/lib/pmo/types.js.map +1 -1
- package/dist/lib/pmo/utils.d.ts +38 -0
- package/dist/lib/pmo/utils.js +61 -0
- package/dist/lib/pmo/utils.js.map +1 -1
- package/dist/lib/providers/event-emitting-provider.js +13 -2
- package/dist/lib/providers/event-emitting-provider.js.map +1 -1
- package/dist/lib/telemetry/analytics.d.ts +47 -0
- package/dist/lib/telemetry/analytics.js +52 -0
- package/dist/lib/telemetry/analytics.js.map +1 -1
- package/dist/lib/telemetry/telemetry-bridge.d.ts +35 -0
- package/dist/lib/telemetry/telemetry-bridge.js +139 -0
- package/dist/lib/telemetry/telemetry-bridge.js.map +1 -0
- package/dist/lib/work-lifecycle/post-execution.d.ts +5 -1
- package/dist/lib/work-lifecycle/post-execution.js +30 -18
- package/dist/lib/work-lifecycle/post-execution.js.map +1 -1
- package/oclif.manifest.json +1208 -1209
- package/package.json +9 -9
package/oclif.manifest.json
CHANGED
|
@@ -1529,6 +1529,66 @@
|
|
|
1529
1529
|
"update.js"
|
|
1530
1530
|
]
|
|
1531
1531
|
},
|
|
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
|
+
},
|
|
1532
1592
|
"agent:auth": {
|
|
1533
1593
|
"aliases": [],
|
|
1534
1594
|
"args": {},
|
|
@@ -2232,66 +2292,6 @@
|
|
|
2232
2292
|
"visit.js"
|
|
2233
2293
|
]
|
|
2234
2294
|
},
|
|
2235
|
-
"autocomplete:setup": {
|
|
2236
|
-
"aliases": [],
|
|
2237
|
-
"args": {},
|
|
2238
|
-
"description": "Auto-detect shell and set up autocomplete",
|
|
2239
|
-
"examples": [
|
|
2240
|
-
"<%= config.bin %> <%= command.id %>",
|
|
2241
|
-
"<%= config.bin %> <%= command.id %> --install",
|
|
2242
|
-
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
2243
|
-
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
2244
|
-
],
|
|
2245
|
-
"flags": {
|
|
2246
|
-
"json": {
|
|
2247
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2248
|
-
"name": "json",
|
|
2249
|
-
"allowNo": false,
|
|
2250
|
-
"type": "boolean"
|
|
2251
|
-
},
|
|
2252
|
-
"machine": {
|
|
2253
|
-
"char": "m",
|
|
2254
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2255
|
-
"name": "machine",
|
|
2256
|
-
"allowNo": false,
|
|
2257
|
-
"type": "boolean"
|
|
2258
|
-
},
|
|
2259
|
-
"install": {
|
|
2260
|
-
"char": "i",
|
|
2261
|
-
"description": "Automatically install to shell config file",
|
|
2262
|
-
"name": "install",
|
|
2263
|
-
"allowNo": false,
|
|
2264
|
-
"type": "boolean"
|
|
2265
|
-
},
|
|
2266
|
-
"shell": {
|
|
2267
|
-
"char": "s",
|
|
2268
|
-
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2269
|
-
"name": "shell",
|
|
2270
|
-
"hasDynamicHelp": false,
|
|
2271
|
-
"multiple": false,
|
|
2272
|
-
"options": [
|
|
2273
|
-
"zsh",
|
|
2274
|
-
"bash",
|
|
2275
|
-
"powershell"
|
|
2276
|
-
],
|
|
2277
|
-
"type": "option"
|
|
2278
|
-
}
|
|
2279
|
-
},
|
|
2280
|
-
"hasDynamicHelp": false,
|
|
2281
|
-
"hiddenAliases": [],
|
|
2282
|
-
"id": "autocomplete:setup",
|
|
2283
|
-
"pluginAlias": "@proletariat/cli",
|
|
2284
|
-
"pluginName": "@proletariat/cli",
|
|
2285
|
-
"pluginType": "core",
|
|
2286
|
-
"strict": true,
|
|
2287
|
-
"isESM": true,
|
|
2288
|
-
"relativePath": [
|
|
2289
|
-
"dist",
|
|
2290
|
-
"commands",
|
|
2291
|
-
"autocomplete",
|
|
2292
|
-
"setup.js"
|
|
2293
|
-
]
|
|
2294
|
-
},
|
|
2295
2295
|
"asana:connect": {
|
|
2296
2296
|
"aliases": [],
|
|
2297
2297
|
"args": {},
|
|
@@ -3509,6 +3509,7 @@
|
|
|
3509
3509
|
"<%= config.bin %> <%= command.id %> --set terminal.app iTerm",
|
|
3510
3510
|
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
3511
3511
|
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
3512
|
+
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
3512
3513
|
"<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
|
|
3513
3514
|
],
|
|
3514
3515
|
"flags": {
|
|
@@ -3563,40 +3564,27 @@
|
|
|
3563
3564
|
"index.js"
|
|
3564
3565
|
]
|
|
3565
3566
|
},
|
|
3566
|
-
"
|
|
3567
|
+
"execution:config": {
|
|
3567
3568
|
"aliases": [],
|
|
3568
3569
|
"args": {},
|
|
3569
|
-
"description": "
|
|
3570
|
+
"description": "View and update execution preferences",
|
|
3570
3571
|
"examples": [
|
|
3571
|
-
"<%= config.bin %>
|
|
3572
|
-
"<%= config.bin %>
|
|
3573
|
-
"<%= config.bin %>
|
|
3572
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
3573
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3574
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
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"
|
|
3574
3579
|
],
|
|
3575
3580
|
"flags": {
|
|
3576
|
-
"
|
|
3577
|
-
"
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
"
|
|
3582
|
-
"
|
|
3583
|
-
"name": "force",
|
|
3584
|
-
"allowNo": false,
|
|
3585
|
-
"type": "boolean"
|
|
3586
|
-
},
|
|
3587
|
-
"dry-run": {
|
|
3588
|
-
"char": "d",
|
|
3589
|
-
"description": "Show what would be removed without removing",
|
|
3590
|
-
"name": "dry-run",
|
|
3591
|
-
"allowNo": false,
|
|
3592
|
-
"type": "boolean"
|
|
3593
|
-
},
|
|
3594
|
-
"all": {
|
|
3595
|
-
"char": "a",
|
|
3596
|
-
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3597
|
-
"name": "all",
|
|
3598
|
-
"allowNo": false,
|
|
3599
|
-
"type": "boolean"
|
|
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"
|
|
3600
3588
|
},
|
|
3601
3589
|
"json": {
|
|
3602
3590
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -3610,42 +3598,64 @@
|
|
|
3610
3598
|
"name": "machine",
|
|
3611
3599
|
"allowNo": false,
|
|
3612
3600
|
"type": "boolean"
|
|
3601
|
+
},
|
|
3602
|
+
"set": {
|
|
3603
|
+
"char": "s",
|
|
3604
|
+
"description": "Set a config value (format: key value)",
|
|
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",
|
|
3614
|
+
"allowNo": false,
|
|
3615
|
+
"type": "boolean"
|
|
3616
|
+
},
|
|
3617
|
+
"setting": {
|
|
3618
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
3619
|
+
"name": "setting",
|
|
3620
|
+
"hasDynamicHelp": false,
|
|
3621
|
+
"multiple": false,
|
|
3622
|
+
"type": "option"
|
|
3613
3623
|
}
|
|
3614
3624
|
},
|
|
3615
3625
|
"hasDynamicHelp": false,
|
|
3616
3626
|
"hiddenAliases": [],
|
|
3617
|
-
"id": "
|
|
3627
|
+
"id": "execution:config",
|
|
3618
3628
|
"pluginAlias": "@proletariat/cli",
|
|
3619
3629
|
"pluginName": "@proletariat/cli",
|
|
3620
3630
|
"pluginType": "core",
|
|
3621
3631
|
"strict": true,
|
|
3622
|
-
"enableJsonFlag": false,
|
|
3623
3632
|
"isESM": true,
|
|
3624
3633
|
"relativePath": [
|
|
3625
3634
|
"dist",
|
|
3626
3635
|
"commands",
|
|
3627
|
-
"
|
|
3628
|
-
"
|
|
3636
|
+
"execution",
|
|
3637
|
+
"config.js"
|
|
3629
3638
|
]
|
|
3630
3639
|
},
|
|
3631
|
-
"
|
|
3640
|
+
"execution": {
|
|
3632
3641
|
"aliases": [],
|
|
3633
3642
|
"args": {},
|
|
3634
|
-
"description": "
|
|
3643
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
3635
3644
|
"examples": [
|
|
3636
3645
|
"<%= config.bin %> <%= command.id %>",
|
|
3637
|
-
"<%= config.bin %>
|
|
3638
|
-
"<%= config.bin %>
|
|
3639
|
-
"<%= config.bin %>
|
|
3640
|
-
"<%= config.bin %> docker start WORK-001",
|
|
3641
|
-
"<%= config.bin %> docker stop kalanick",
|
|
3642
|
-
"<%= config.bin %> docker shell WORK-001",
|
|
3643
|
-
"<%= config.bin %> docker restart abc123",
|
|
3644
|
-
"<%= config.bin %> docker sync",
|
|
3645
|
-
"<%= config.bin %> docker clean",
|
|
3646
|
-
"<%= config.bin %> docker prune"
|
|
3646
|
+
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
3647
|
+
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
3648
|
+
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
3647
3649
|
],
|
|
3648
3650
|
"flags": {
|
|
3651
|
+
"project": {
|
|
3652
|
+
"char": "P",
|
|
3653
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
3654
|
+
"name": "project",
|
|
3655
|
+
"hasDynamicHelp": false,
|
|
3656
|
+
"multiple": false,
|
|
3657
|
+
"type": "option"
|
|
3658
|
+
},
|
|
3649
3659
|
"json": {
|
|
3650
3660
|
"description": "Output as JSON for AI agents/scripts",
|
|
3651
3661
|
"name": "json",
|
|
@@ -3662,7 +3672,7 @@
|
|
|
3662
3672
|
},
|
|
3663
3673
|
"hasDynamicHelp": false,
|
|
3664
3674
|
"hiddenAliases": [],
|
|
3665
|
-
"id": "
|
|
3675
|
+
"id": "execution",
|
|
3666
3676
|
"pluginAlias": "@proletariat/cli",
|
|
3667
3677
|
"pluginName": "@proletariat/cli",
|
|
3668
3678
|
"pluginType": "core",
|
|
@@ -3671,20 +3681,29 @@
|
|
|
3671
3681
|
"relativePath": [
|
|
3672
3682
|
"dist",
|
|
3673
3683
|
"commands",
|
|
3674
|
-
"
|
|
3684
|
+
"execution",
|
|
3675
3685
|
"index.js"
|
|
3676
3686
|
]
|
|
3677
3687
|
},
|
|
3678
|
-
"
|
|
3688
|
+
"execution:list": {
|
|
3679
3689
|
"aliases": [],
|
|
3680
3690
|
"args": {},
|
|
3681
|
-
"description": "
|
|
3691
|
+
"description": "List running and recent executions",
|
|
3682
3692
|
"examples": [
|
|
3683
3693
|
"<%= config.bin %> <%= command.id %>",
|
|
3684
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3685
|
-
"<%= 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"
|
|
3686
3697
|
],
|
|
3687
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
|
+
},
|
|
3688
3707
|
"json": {
|
|
3689
3708
|
"description": "Output as JSON for AI agents/scripts",
|
|
3690
3709
|
"name": "json",
|
|
@@ -3698,22 +3717,403 @@
|
|
|
3698
3717
|
"allowNo": false,
|
|
3699
3718
|
"type": "boolean"
|
|
3700
3719
|
},
|
|
3701
|
-
"
|
|
3702
|
-
"char": "
|
|
3703
|
-
"description": "
|
|
3704
|
-
"name": "
|
|
3705
|
-
"
|
|
3706
|
-
"
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
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,
|
|
4023
|
+
"isESM": true,
|
|
4024
|
+
"relativePath": [
|
|
4025
|
+
"dist",
|
|
4026
|
+
"commands",
|
|
4027
|
+
"docker",
|
|
4028
|
+
"clean.js"
|
|
4029
|
+
]
|
|
4030
|
+
},
|
|
4031
|
+
"docker": {
|
|
4032
|
+
"aliases": [],
|
|
4033
|
+
"args": {},
|
|
4034
|
+
"description": "Manage Docker containers used by agents",
|
|
4035
|
+
"examples": [
|
|
4036
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4037
|
+
"<%= config.bin %> docker status",
|
|
4038
|
+
"<%= config.bin %> docker list",
|
|
4039
|
+
"<%= config.bin %> docker logs WORK-001",
|
|
4040
|
+
"<%= config.bin %> docker start WORK-001",
|
|
4041
|
+
"<%= config.bin %> docker stop kalanick",
|
|
4042
|
+
"<%= config.bin %> docker shell WORK-001",
|
|
4043
|
+
"<%= config.bin %> docker restart abc123",
|
|
4044
|
+
"<%= config.bin %> docker sync",
|
|
4045
|
+
"<%= config.bin %> docker clean",
|
|
4046
|
+
"<%= config.bin %> docker prune"
|
|
4047
|
+
],
|
|
4048
|
+
"flags": {
|
|
4049
|
+
"json": {
|
|
4050
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4051
|
+
"name": "json",
|
|
4052
|
+
"allowNo": false,
|
|
4053
|
+
"type": "boolean"
|
|
4054
|
+
},
|
|
4055
|
+
"machine": {
|
|
4056
|
+
"char": "m",
|
|
4057
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4058
|
+
"name": "machine",
|
|
4059
|
+
"allowNo": false,
|
|
4060
|
+
"type": "boolean"
|
|
4061
|
+
}
|
|
4062
|
+
},
|
|
4063
|
+
"hasDynamicHelp": false,
|
|
4064
|
+
"hiddenAliases": [],
|
|
4065
|
+
"id": "docker",
|
|
4066
|
+
"pluginAlias": "@proletariat/cli",
|
|
4067
|
+
"pluginName": "@proletariat/cli",
|
|
4068
|
+
"pluginType": "core",
|
|
4069
|
+
"strict": true,
|
|
4070
|
+
"isESM": true,
|
|
4071
|
+
"relativePath": [
|
|
4072
|
+
"dist",
|
|
4073
|
+
"commands",
|
|
4074
|
+
"docker",
|
|
4075
|
+
"index.js"
|
|
4076
|
+
]
|
|
4077
|
+
},
|
|
4078
|
+
"docker:list": {
|
|
4079
|
+
"aliases": [],
|
|
4080
|
+
"args": {},
|
|
4081
|
+
"description": "Show Docker containers from agent_work table with status",
|
|
4082
|
+
"examples": [
|
|
4083
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4084
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
4085
|
+
"<%= config.bin %> <%= command.id %> --running"
|
|
4086
|
+
],
|
|
4087
|
+
"flags": {
|
|
4088
|
+
"json": {
|
|
4089
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4090
|
+
"name": "json",
|
|
4091
|
+
"allowNo": false,
|
|
4092
|
+
"type": "boolean"
|
|
4093
|
+
},
|
|
4094
|
+
"machine": {
|
|
4095
|
+
"char": "m",
|
|
4096
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4097
|
+
"name": "machine",
|
|
4098
|
+
"allowNo": false,
|
|
4099
|
+
"type": "boolean"
|
|
4100
|
+
},
|
|
4101
|
+
"all": {
|
|
4102
|
+
"char": "a",
|
|
4103
|
+
"description": "Show all containers (including non-devcontainer)",
|
|
4104
|
+
"name": "all",
|
|
4105
|
+
"allowNo": false,
|
|
4106
|
+
"type": "boolean"
|
|
4107
|
+
},
|
|
4108
|
+
"running": {
|
|
4109
|
+
"char": "r",
|
|
4110
|
+
"description": "Only show running containers",
|
|
4111
|
+
"name": "running",
|
|
4112
|
+
"allowNo": false,
|
|
4113
|
+
"type": "boolean"
|
|
4114
|
+
}
|
|
4115
|
+
},
|
|
4116
|
+
"hasDynamicHelp": false,
|
|
3717
4117
|
"hiddenAliases": [],
|
|
3718
4118
|
"id": "docker:list",
|
|
3719
4119
|
"pluginAlias": "@proletariat/cli",
|
|
@@ -4203,98 +4603,17 @@
|
|
|
4203
4603
|
"sync.js"
|
|
4204
4604
|
]
|
|
4205
4605
|
},
|
|
4206
|
-
"
|
|
4207
|
-
"aliases": [],
|
|
4208
|
-
"args": {},
|
|
4209
|
-
"description": "View and update execution preferences",
|
|
4210
|
-
"examples": [
|
|
4211
|
-
"<%= config.bin %> execution config # Interactive menu",
|
|
4212
|
-
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
4213
|
-
"<%= config.bin %> execution config --list # Show all settings",
|
|
4214
|
-
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
4215
|
-
"<%= config.bin %> execution config --set outputMode interactive",
|
|
4216
|
-
"<%= config.bin %> execution config --set permissionMode safe",
|
|
4217
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
4218
|
-
],
|
|
4219
|
-
"flags": {
|
|
4220
|
-
"project": {
|
|
4221
|
-
"char": "P",
|
|
4222
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4223
|
-
"name": "project",
|
|
4224
|
-
"hasDynamicHelp": false,
|
|
4225
|
-
"multiple": false,
|
|
4226
|
-
"type": "option"
|
|
4227
|
-
},
|
|
4228
|
-
"json": {
|
|
4229
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4230
|
-
"name": "json",
|
|
4231
|
-
"allowNo": false,
|
|
4232
|
-
"type": "boolean"
|
|
4233
|
-
},
|
|
4234
|
-
"machine": {
|
|
4235
|
-
"char": "m",
|
|
4236
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4237
|
-
"name": "machine",
|
|
4238
|
-
"allowNo": false,
|
|
4239
|
-
"type": "boolean"
|
|
4240
|
-
},
|
|
4241
|
-
"set": {
|
|
4242
|
-
"char": "s",
|
|
4243
|
-
"description": "Set a config value (format: key value)",
|
|
4244
|
-
"name": "set",
|
|
4245
|
-
"hasDynamicHelp": false,
|
|
4246
|
-
"multiple": true,
|
|
4247
|
-
"type": "option"
|
|
4248
|
-
},
|
|
4249
|
-
"list": {
|
|
4250
|
-
"char": "l",
|
|
4251
|
-
"description": "List all configuration values",
|
|
4252
|
-
"name": "list",
|
|
4253
|
-
"allowNo": false,
|
|
4254
|
-
"type": "boolean"
|
|
4255
|
-
},
|
|
4256
|
-
"setting": {
|
|
4257
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
4258
|
-
"name": "setting",
|
|
4259
|
-
"hasDynamicHelp": false,
|
|
4260
|
-
"multiple": false,
|
|
4261
|
-
"type": "option"
|
|
4262
|
-
}
|
|
4263
|
-
},
|
|
4264
|
-
"hasDynamicHelp": false,
|
|
4265
|
-
"hiddenAliases": [],
|
|
4266
|
-
"id": "execution:config",
|
|
4267
|
-
"pluginAlias": "@proletariat/cli",
|
|
4268
|
-
"pluginName": "@proletariat/cli",
|
|
4269
|
-
"pluginType": "core",
|
|
4270
|
-
"strict": true,
|
|
4271
|
-
"isESM": true,
|
|
4272
|
-
"relativePath": [
|
|
4273
|
-
"dist",
|
|
4274
|
-
"commands",
|
|
4275
|
-
"execution",
|
|
4276
|
-
"config.js"
|
|
4277
|
-
]
|
|
4278
|
-
},
|
|
4279
|
-
"execution": {
|
|
4606
|
+
"gh": {
|
|
4280
4607
|
"aliases": [],
|
|
4281
4608
|
"args": {},
|
|
4282
|
-
"description": "
|
|
4609
|
+
"description": "GitHub CLI setup and status for PR workflow",
|
|
4283
4610
|
"examples": [
|
|
4284
4611
|
"<%= config.bin %> <%= command.id %>",
|
|
4285
|
-
"<%= config.bin %> <%= command.id %>
|
|
4286
|
-
"<%= config.bin %> <%= command.id %>
|
|
4287
|
-
"<%= config.bin %> <%= command.id %>
|
|
4612
|
+
"<%= config.bin %> <%= command.id %> status",
|
|
4613
|
+
"<%= config.bin %> <%= command.id %> login",
|
|
4614
|
+
"<%= config.bin %> <%= command.id %> token"
|
|
4288
4615
|
],
|
|
4289
4616
|
"flags": {
|
|
4290
|
-
"project": {
|
|
4291
|
-
"char": "P",
|
|
4292
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4293
|
-
"name": "project",
|
|
4294
|
-
"hasDynamicHelp": false,
|
|
4295
|
-
"multiple": false,
|
|
4296
|
-
"type": "option"
|
|
4297
|
-
},
|
|
4298
4617
|
"json": {
|
|
4299
4618
|
"description": "Output as JSON for AI agents/scripts",
|
|
4300
4619
|
"name": "json",
|
|
@@ -4311,124 +4630,28 @@
|
|
|
4311
4630
|
},
|
|
4312
4631
|
"hasDynamicHelp": false,
|
|
4313
4632
|
"hiddenAliases": [],
|
|
4314
|
-
"id": "
|
|
4633
|
+
"id": "gh",
|
|
4315
4634
|
"pluginAlias": "@proletariat/cli",
|
|
4316
4635
|
"pluginName": "@proletariat/cli",
|
|
4317
4636
|
"pluginType": "core",
|
|
4318
4637
|
"strict": true,
|
|
4638
|
+
"enableJsonFlag": false,
|
|
4319
4639
|
"isESM": true,
|
|
4320
4640
|
"relativePath": [
|
|
4321
4641
|
"dist",
|
|
4322
4642
|
"commands",
|
|
4323
|
-
"
|
|
4643
|
+
"gh",
|
|
4324
4644
|
"index.js"
|
|
4325
4645
|
]
|
|
4326
4646
|
},
|
|
4327
|
-
"
|
|
4647
|
+
"gh:login": {
|
|
4328
4648
|
"aliases": [],
|
|
4329
4649
|
"args": {},
|
|
4330
|
-
"description": "
|
|
4331
|
-
"examples": [
|
|
4332
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4333
|
-
"<%= config.bin %> <%= command.id %> --status running",
|
|
4334
|
-
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
4335
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4336
|
-
],
|
|
4337
|
-
"flags": {
|
|
4338
|
-
"project": {
|
|
4339
|
-
"char": "P",
|
|
4340
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4341
|
-
"name": "project",
|
|
4342
|
-
"hasDynamicHelp": false,
|
|
4343
|
-
"multiple": false,
|
|
4344
|
-
"type": "option"
|
|
4345
|
-
},
|
|
4346
|
-
"json": {
|
|
4347
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4348
|
-
"name": "json",
|
|
4349
|
-
"allowNo": false,
|
|
4350
|
-
"type": "boolean"
|
|
4351
|
-
},
|
|
4352
|
-
"machine": {
|
|
4353
|
-
"char": "m",
|
|
4354
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4355
|
-
"name": "machine",
|
|
4356
|
-
"allowNo": false,
|
|
4357
|
-
"type": "boolean"
|
|
4358
|
-
},
|
|
4359
|
-
"status": {
|
|
4360
|
-
"char": "s",
|
|
4361
|
-
"description": "Filter by status",
|
|
4362
|
-
"name": "status",
|
|
4363
|
-
"hasDynamicHelp": false,
|
|
4364
|
-
"multiple": false,
|
|
4365
|
-
"options": [
|
|
4366
|
-
"starting",
|
|
4367
|
-
"running",
|
|
4368
|
-
"completed",
|
|
4369
|
-
"failed",
|
|
4370
|
-
"stopped"
|
|
4371
|
-
],
|
|
4372
|
-
"type": "option"
|
|
4373
|
-
},
|
|
4374
|
-
"agent": {
|
|
4375
|
-
"char": "a",
|
|
4376
|
-
"description": "Filter by agent name",
|
|
4377
|
-
"name": "agent",
|
|
4378
|
-
"hasDynamicHelp": false,
|
|
4379
|
-
"multiple": false,
|
|
4380
|
-
"type": "option"
|
|
4381
|
-
},
|
|
4382
|
-
"limit": {
|
|
4383
|
-
"char": "l",
|
|
4384
|
-
"description": "Number of results",
|
|
4385
|
-
"name": "limit",
|
|
4386
|
-
"default": 20,
|
|
4387
|
-
"hasDynamicHelp": false,
|
|
4388
|
-
"multiple": false,
|
|
4389
|
-
"type": "option"
|
|
4390
|
-
}
|
|
4391
|
-
},
|
|
4392
|
-
"hasDynamicHelp": false,
|
|
4393
|
-
"hiddenAliases": [],
|
|
4394
|
-
"id": "execution:list",
|
|
4395
|
-
"pluginAlias": "@proletariat/cli",
|
|
4396
|
-
"pluginName": "@proletariat/cli",
|
|
4397
|
-
"pluginType": "core",
|
|
4398
|
-
"strict": true,
|
|
4399
|
-
"isESM": true,
|
|
4400
|
-
"relativePath": [
|
|
4401
|
-
"dist",
|
|
4402
|
-
"commands",
|
|
4403
|
-
"execution",
|
|
4404
|
-
"list.js"
|
|
4405
|
-
]
|
|
4406
|
-
},
|
|
4407
|
-
"execution:logs": {
|
|
4408
|
-
"aliases": [],
|
|
4409
|
-
"args": {
|
|
4410
|
-
"id": {
|
|
4411
|
-
"description": "Execution ID - prompts if not provided",
|
|
4412
|
-
"name": "id",
|
|
4413
|
-
"required": false
|
|
4414
|
-
}
|
|
4415
|
-
},
|
|
4416
|
-
"description": "View execution logs",
|
|
4650
|
+
"description": "Login to GitHub CLI for PR workflow",
|
|
4417
4651
|
"examples": [
|
|
4418
|
-
"<%= config.bin %> <%= command.id %>
|
|
4419
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
4420
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
4421
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4652
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4422
4653
|
],
|
|
4423
4654
|
"flags": {
|
|
4424
|
-
"project": {
|
|
4425
|
-
"char": "P",
|
|
4426
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4427
|
-
"name": "project",
|
|
4428
|
-
"hasDynamicHelp": false,
|
|
4429
|
-
"multiple": false,
|
|
4430
|
-
"type": "option"
|
|
4431
|
-
},
|
|
4432
4655
|
"json": {
|
|
4433
4656
|
"description": "Output as JSON for AI agents/scripts",
|
|
4434
4657
|
"name": "json",
|
|
@@ -4441,65 +4664,32 @@
|
|
|
4441
4664
|
"name": "machine",
|
|
4442
4665
|
"allowNo": false,
|
|
4443
4666
|
"type": "boolean"
|
|
4444
|
-
},
|
|
4445
|
-
"follow": {
|
|
4446
|
-
"char": "f",
|
|
4447
|
-
"description": "Stream logs in real-time",
|
|
4448
|
-
"name": "follow",
|
|
4449
|
-
"allowNo": false,
|
|
4450
|
-
"type": "boolean"
|
|
4451
|
-
},
|
|
4452
|
-
"tail": {
|
|
4453
|
-
"char": "n",
|
|
4454
|
-
"description": "Show last n lines",
|
|
4455
|
-
"name": "tail",
|
|
4456
|
-
"hasDynamicHelp": false,
|
|
4457
|
-
"multiple": false,
|
|
4458
|
-
"type": "option"
|
|
4459
4667
|
}
|
|
4460
4668
|
},
|
|
4461
4669
|
"hasDynamicHelp": false,
|
|
4462
4670
|
"hiddenAliases": [],
|
|
4463
|
-
"id": "
|
|
4671
|
+
"id": "gh:login",
|
|
4464
4672
|
"pluginAlias": "@proletariat/cli",
|
|
4465
4673
|
"pluginName": "@proletariat/cli",
|
|
4466
4674
|
"pluginType": "core",
|
|
4467
4675
|
"strict": true,
|
|
4676
|
+
"enableJsonFlag": false,
|
|
4468
4677
|
"isESM": true,
|
|
4469
4678
|
"relativePath": [
|
|
4470
4679
|
"dist",
|
|
4471
4680
|
"commands",
|
|
4472
|
-
"
|
|
4473
|
-
"
|
|
4681
|
+
"gh",
|
|
4682
|
+
"login.js"
|
|
4474
4683
|
]
|
|
4475
4684
|
},
|
|
4476
|
-
"
|
|
4685
|
+
"gh:status": {
|
|
4477
4686
|
"aliases": [],
|
|
4478
|
-
"args": {
|
|
4479
|
-
|
|
4480
|
-
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
4481
|
-
"name": "id",
|
|
4482
|
-
"required": false
|
|
4483
|
-
}
|
|
4484
|
-
},
|
|
4485
|
-
"description": "Stop running execution(s)",
|
|
4687
|
+
"args": {},
|
|
4688
|
+
"description": "Check GitHub CLI status for PR workflow",
|
|
4486
4689
|
"examples": [
|
|
4487
|
-
"<%= config.bin %> <%= command.id %>
|
|
4488
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
4489
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
4490
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
4491
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4492
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4690
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4493
4691
|
],
|
|
4494
4692
|
"flags": {
|
|
4495
|
-
"project": {
|
|
4496
|
-
"char": "P",
|
|
4497
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4498
|
-
"name": "project",
|
|
4499
|
-
"hasDynamicHelp": false,
|
|
4500
|
-
"multiple": false,
|
|
4501
|
-
"type": "option"
|
|
4502
|
-
},
|
|
4503
4693
|
"json": {
|
|
4504
4694
|
"description": "Output as JSON for AI agents/scripts",
|
|
4505
4695
|
"name": "json",
|
|
@@ -4512,67 +4702,32 @@
|
|
|
4512
4702
|
"name": "machine",
|
|
4513
4703
|
"allowNo": false,
|
|
4514
4704
|
"type": "boolean"
|
|
4515
|
-
},
|
|
4516
|
-
"force": {
|
|
4517
|
-
"char": "f",
|
|
4518
|
-
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
4519
|
-
"name": "force",
|
|
4520
|
-
"allowNo": false,
|
|
4521
|
-
"type": "boolean"
|
|
4522
|
-
},
|
|
4523
|
-
"all": {
|
|
4524
|
-
"description": "Stop all running executions",
|
|
4525
|
-
"name": "all",
|
|
4526
|
-
"allowNo": false,
|
|
4527
|
-
"type": "boolean"
|
|
4528
|
-
},
|
|
4529
|
-
"agent": {
|
|
4530
|
-
"char": "a",
|
|
4531
|
-
"description": "Stop all executions for a specific agent",
|
|
4532
|
-
"name": "agent",
|
|
4533
|
-
"hasDynamicHelp": false,
|
|
4534
|
-
"multiple": false,
|
|
4535
|
-
"type": "option"
|
|
4536
4705
|
}
|
|
4537
4706
|
},
|
|
4538
4707
|
"hasDynamicHelp": false,
|
|
4539
4708
|
"hiddenAliases": [],
|
|
4540
|
-
"id": "
|
|
4709
|
+
"id": "gh:status",
|
|
4541
4710
|
"pluginAlias": "@proletariat/cli",
|
|
4542
4711
|
"pluginName": "@proletariat/cli",
|
|
4543
4712
|
"pluginType": "core",
|
|
4544
4713
|
"strict": true,
|
|
4714
|
+
"enableJsonFlag": false,
|
|
4545
4715
|
"isESM": true,
|
|
4546
4716
|
"relativePath": [
|
|
4547
4717
|
"dist",
|
|
4548
4718
|
"commands",
|
|
4549
|
-
"
|
|
4550
|
-
"
|
|
4719
|
+
"gh",
|
|
4720
|
+
"status.js"
|
|
4551
4721
|
]
|
|
4552
4722
|
},
|
|
4553
|
-
"
|
|
4723
|
+
"gh:token": {
|
|
4554
4724
|
"aliases": [],
|
|
4555
|
-
"args": {
|
|
4556
|
-
|
|
4557
|
-
"description": "Execution ID - prompts if not provided",
|
|
4558
|
-
"name": "id",
|
|
4559
|
-
"required": false
|
|
4560
|
-
}
|
|
4561
|
-
},
|
|
4562
|
-
"description": "View details of a specific execution",
|
|
4725
|
+
"args": {},
|
|
4726
|
+
"description": "Show GH_TOKEN setup for devcontainer PR creation",
|
|
4563
4727
|
"examples": [
|
|
4564
|
-
"<%= config.bin %> <%= command.id %>
|
|
4565
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4728
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4566
4729
|
],
|
|
4567
4730
|
"flags": {
|
|
4568
|
-
"project": {
|
|
4569
|
-
"char": "P",
|
|
4570
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4571
|
-
"name": "project",
|
|
4572
|
-
"hasDynamicHelp": false,
|
|
4573
|
-
"multiple": false,
|
|
4574
|
-
"type": "option"
|
|
4575
|
-
},
|
|
4576
4731
|
"json": {
|
|
4577
4732
|
"description": "Output as JSON for AI agents/scripts",
|
|
4578
4733
|
"name": "json",
|
|
@@ -4589,17 +4744,18 @@
|
|
|
4589
4744
|
},
|
|
4590
4745
|
"hasDynamicHelp": false,
|
|
4591
4746
|
"hiddenAliases": [],
|
|
4592
|
-
"id": "
|
|
4747
|
+
"id": "gh:token",
|
|
4593
4748
|
"pluginAlias": "@proletariat/cli",
|
|
4594
4749
|
"pluginName": "@proletariat/cli",
|
|
4595
4750
|
"pluginType": "core",
|
|
4596
4751
|
"strict": true,
|
|
4752
|
+
"enableJsonFlag": false,
|
|
4597
4753
|
"isESM": true,
|
|
4598
4754
|
"relativePath": [
|
|
4599
4755
|
"dist",
|
|
4600
4756
|
"commands",
|
|
4601
|
-
"
|
|
4602
|
-
"
|
|
4757
|
+
"gh",
|
|
4758
|
+
"token.js"
|
|
4603
4759
|
]
|
|
4604
4760
|
},
|
|
4605
4761
|
"feedback": {
|
|
@@ -4777,196 +4933,41 @@
|
|
|
4777
4933
|
"hasDynamicHelp": false,
|
|
4778
4934
|
"multiple": false,
|
|
4779
4935
|
"options": [
|
|
4780
|
-
"bug",
|
|
4781
|
-
"feature",
|
|
4782
|
-
"general"
|
|
4783
|
-
],
|
|
4784
|
-
"type": "option"
|
|
4785
|
-
}
|
|
4786
|
-
},
|
|
4787
|
-
"hasDynamicHelp": false,
|
|
4788
|
-
"hiddenAliases": [],
|
|
4789
|
-
"id": "feedback:submit",
|
|
4790
|
-
"pluginAlias": "@proletariat/cli",
|
|
4791
|
-
"pluginName": "@proletariat/cli",
|
|
4792
|
-
"pluginType": "core",
|
|
4793
|
-
"strict": true,
|
|
4794
|
-
"isESM": true,
|
|
4795
|
-
"relativePath": [
|
|
4796
|
-
"dist",
|
|
4797
|
-
"commands",
|
|
4798
|
-
"feedback",
|
|
4799
|
-
"submit.js"
|
|
4800
|
-
]
|
|
4801
|
-
},
|
|
4802
|
-
"feedback:view": {
|
|
4803
|
-
"aliases": [],
|
|
4804
|
-
"args": {
|
|
4805
|
-
"number": {
|
|
4806
|
-
"description": "Issue number to view",
|
|
4807
|
-
"name": "number",
|
|
4808
|
-
"required": true
|
|
4809
|
-
}
|
|
4810
|
-
},
|
|
4811
|
-
"description": "View details of a specific feedback issue",
|
|
4812
|
-
"examples": [
|
|
4813
|
-
"<%= config.bin %> <%= command.id %> 123",
|
|
4814
|
-
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4815
|
-
],
|
|
4816
|
-
"flags": {
|
|
4817
|
-
"json": {
|
|
4818
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4819
|
-
"name": "json",
|
|
4820
|
-
"allowNo": false,
|
|
4821
|
-
"type": "boolean"
|
|
4822
|
-
},
|
|
4823
|
-
"machine": {
|
|
4824
|
-
"char": "m",
|
|
4825
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4826
|
-
"name": "machine",
|
|
4827
|
-
"allowNo": false,
|
|
4828
|
-
"type": "boolean"
|
|
4829
|
-
}
|
|
4830
|
-
},
|
|
4831
|
-
"hasDynamicHelp": false,
|
|
4832
|
-
"hiddenAliases": [],
|
|
4833
|
-
"id": "feedback:view",
|
|
4834
|
-
"pluginAlias": "@proletariat/cli",
|
|
4835
|
-
"pluginName": "@proletariat/cli",
|
|
4836
|
-
"pluginType": "core",
|
|
4837
|
-
"strict": true,
|
|
4838
|
-
"enableJsonFlag": false,
|
|
4839
|
-
"isESM": true,
|
|
4840
|
-
"relativePath": [
|
|
4841
|
-
"dist",
|
|
4842
|
-
"commands",
|
|
4843
|
-
"feedback",
|
|
4844
|
-
"view.js"
|
|
4845
|
-
]
|
|
4846
|
-
},
|
|
4847
|
-
"gh": {
|
|
4848
|
-
"aliases": [],
|
|
4849
|
-
"args": {},
|
|
4850
|
-
"description": "GitHub CLI setup and status for PR workflow",
|
|
4851
|
-
"examples": [
|
|
4852
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4853
|
-
"<%= config.bin %> <%= command.id %> status",
|
|
4854
|
-
"<%= config.bin %> <%= command.id %> login",
|
|
4855
|
-
"<%= config.bin %> <%= command.id %> token"
|
|
4856
|
-
],
|
|
4857
|
-
"flags": {
|
|
4858
|
-
"json": {
|
|
4859
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4860
|
-
"name": "json",
|
|
4861
|
-
"allowNo": false,
|
|
4862
|
-
"type": "boolean"
|
|
4863
|
-
},
|
|
4864
|
-
"machine": {
|
|
4865
|
-
"char": "m",
|
|
4866
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4867
|
-
"name": "machine",
|
|
4868
|
-
"allowNo": false,
|
|
4869
|
-
"type": "boolean"
|
|
4870
|
-
}
|
|
4871
|
-
},
|
|
4872
|
-
"hasDynamicHelp": false,
|
|
4873
|
-
"hiddenAliases": [],
|
|
4874
|
-
"id": "gh",
|
|
4875
|
-
"pluginAlias": "@proletariat/cli",
|
|
4876
|
-
"pluginName": "@proletariat/cli",
|
|
4877
|
-
"pluginType": "core",
|
|
4878
|
-
"strict": true,
|
|
4879
|
-
"enableJsonFlag": false,
|
|
4880
|
-
"isESM": true,
|
|
4881
|
-
"relativePath": [
|
|
4882
|
-
"dist",
|
|
4883
|
-
"commands",
|
|
4884
|
-
"gh",
|
|
4885
|
-
"index.js"
|
|
4886
|
-
]
|
|
4887
|
-
},
|
|
4888
|
-
"gh:login": {
|
|
4889
|
-
"aliases": [],
|
|
4890
|
-
"args": {},
|
|
4891
|
-
"description": "Login to GitHub CLI for PR workflow",
|
|
4892
|
-
"examples": [
|
|
4893
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4894
|
-
],
|
|
4895
|
-
"flags": {
|
|
4896
|
-
"json": {
|
|
4897
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4898
|
-
"name": "json",
|
|
4899
|
-
"allowNo": false,
|
|
4900
|
-
"type": "boolean"
|
|
4901
|
-
},
|
|
4902
|
-
"machine": {
|
|
4903
|
-
"char": "m",
|
|
4904
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4905
|
-
"name": "machine",
|
|
4906
|
-
"allowNo": false,
|
|
4907
|
-
"type": "boolean"
|
|
4908
|
-
}
|
|
4909
|
-
},
|
|
4910
|
-
"hasDynamicHelp": false,
|
|
4911
|
-
"hiddenAliases": [],
|
|
4912
|
-
"id": "gh:login",
|
|
4913
|
-
"pluginAlias": "@proletariat/cli",
|
|
4914
|
-
"pluginName": "@proletariat/cli",
|
|
4915
|
-
"pluginType": "core",
|
|
4916
|
-
"strict": true,
|
|
4917
|
-
"enableJsonFlag": false,
|
|
4918
|
-
"isESM": true,
|
|
4919
|
-
"relativePath": [
|
|
4920
|
-
"dist",
|
|
4921
|
-
"commands",
|
|
4922
|
-
"gh",
|
|
4923
|
-
"login.js"
|
|
4924
|
-
]
|
|
4925
|
-
},
|
|
4926
|
-
"gh:status": {
|
|
4927
|
-
"aliases": [],
|
|
4928
|
-
"args": {},
|
|
4929
|
-
"description": "Check GitHub CLI status for PR workflow",
|
|
4930
|
-
"examples": [
|
|
4931
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4932
|
-
],
|
|
4933
|
-
"flags": {
|
|
4934
|
-
"json": {
|
|
4935
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4936
|
-
"name": "json",
|
|
4937
|
-
"allowNo": false,
|
|
4938
|
-
"type": "boolean"
|
|
4939
|
-
},
|
|
4940
|
-
"machine": {
|
|
4941
|
-
"char": "m",
|
|
4942
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4943
|
-
"name": "machine",
|
|
4944
|
-
"allowNo": false,
|
|
4945
|
-
"type": "boolean"
|
|
4936
|
+
"bug",
|
|
4937
|
+
"feature",
|
|
4938
|
+
"general"
|
|
4939
|
+
],
|
|
4940
|
+
"type": "option"
|
|
4946
4941
|
}
|
|
4947
4942
|
},
|
|
4948
4943
|
"hasDynamicHelp": false,
|
|
4949
4944
|
"hiddenAliases": [],
|
|
4950
|
-
"id": "
|
|
4945
|
+
"id": "feedback:submit",
|
|
4951
4946
|
"pluginAlias": "@proletariat/cli",
|
|
4952
4947
|
"pluginName": "@proletariat/cli",
|
|
4953
4948
|
"pluginType": "core",
|
|
4954
4949
|
"strict": true,
|
|
4955
|
-
"enableJsonFlag": false,
|
|
4956
4950
|
"isESM": true,
|
|
4957
4951
|
"relativePath": [
|
|
4958
4952
|
"dist",
|
|
4959
4953
|
"commands",
|
|
4960
|
-
"
|
|
4961
|
-
"
|
|
4954
|
+
"feedback",
|
|
4955
|
+
"submit.js"
|
|
4962
4956
|
]
|
|
4963
4957
|
},
|
|
4964
|
-
"
|
|
4958
|
+
"feedback:view": {
|
|
4965
4959
|
"aliases": [],
|
|
4966
|
-
"args": {
|
|
4967
|
-
|
|
4960
|
+
"args": {
|
|
4961
|
+
"number": {
|
|
4962
|
+
"description": "Issue number to view",
|
|
4963
|
+
"name": "number",
|
|
4964
|
+
"required": true
|
|
4965
|
+
}
|
|
4966
|
+
},
|
|
4967
|
+
"description": "View details of a specific feedback issue",
|
|
4968
4968
|
"examples": [
|
|
4969
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4969
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
4970
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4970
4971
|
],
|
|
4971
4972
|
"flags": {
|
|
4972
4973
|
"json": {
|
|
@@ -4985,7 +4986,7 @@
|
|
|
4985
4986
|
},
|
|
4986
4987
|
"hasDynamicHelp": false,
|
|
4987
4988
|
"hiddenAliases": [],
|
|
4988
|
-
"id": "
|
|
4989
|
+
"id": "feedback:view",
|
|
4989
4990
|
"pluginAlias": "@proletariat/cli",
|
|
4990
4991
|
"pluginName": "@proletariat/cli",
|
|
4991
4992
|
"pluginType": "core",
|
|
@@ -4995,8 +4996,8 @@
|
|
|
4995
4996
|
"relativePath": [
|
|
4996
4997
|
"dist",
|
|
4997
4998
|
"commands",
|
|
4998
|
-
"
|
|
4999
|
-
"
|
|
4999
|
+
"feedback",
|
|
5000
|
+
"view.js"
|
|
5000
5001
|
]
|
|
5001
5002
|
},
|
|
5002
5003
|
"linear:auth": {
|
|
@@ -8483,14 +8484,6 @@
|
|
|
8483
8484
|
"echo \"multi-line message\" | <%= config.bin %> session poke altman -"
|
|
8484
8485
|
],
|
|
8485
8486
|
"flags": {
|
|
8486
|
-
"project": {
|
|
8487
|
-
"char": "P",
|
|
8488
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8489
|
-
"name": "project",
|
|
8490
|
-
"hasDynamicHelp": false,
|
|
8491
|
-
"multiple": false,
|
|
8492
|
-
"type": "option"
|
|
8493
|
-
},
|
|
8494
8487
|
"json": {
|
|
8495
8488
|
"description": "Output as JSON for AI agents/scripts",
|
|
8496
8489
|
"name": "json",
|
|
@@ -9034,7 +9027,225 @@
|
|
|
9034
9027
|
"args": {},
|
|
9035
9028
|
"description": "Disable anonymous telemetry",
|
|
9036
9029
|
"examples": [
|
|
9037
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9030
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9031
|
+
],
|
|
9032
|
+
"flags": {
|
|
9033
|
+
"json": {
|
|
9034
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9035
|
+
"name": "json",
|
|
9036
|
+
"allowNo": false,
|
|
9037
|
+
"type": "boolean"
|
|
9038
|
+
},
|
|
9039
|
+
"machine": {
|
|
9040
|
+
"char": "m",
|
|
9041
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9042
|
+
"name": "machine",
|
|
9043
|
+
"allowNo": false,
|
|
9044
|
+
"type": "boolean"
|
|
9045
|
+
}
|
|
9046
|
+
},
|
|
9047
|
+
"hasDynamicHelp": false,
|
|
9048
|
+
"hiddenAliases": [],
|
|
9049
|
+
"id": "telemetry:disable",
|
|
9050
|
+
"pluginAlias": "@proletariat/cli",
|
|
9051
|
+
"pluginName": "@proletariat/cli",
|
|
9052
|
+
"pluginType": "core",
|
|
9053
|
+
"strict": true,
|
|
9054
|
+
"enableJsonFlag": false,
|
|
9055
|
+
"isESM": true,
|
|
9056
|
+
"relativePath": [
|
|
9057
|
+
"dist",
|
|
9058
|
+
"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"
|
|
9038
9249
|
],
|
|
9039
9250
|
"flags": {
|
|
9040
9251
|
"json": {
|
|
@@ -9053,26 +9264,34 @@
|
|
|
9053
9264
|
},
|
|
9054
9265
|
"hasDynamicHelp": false,
|
|
9055
9266
|
"hiddenAliases": [],
|
|
9056
|
-
"id": "
|
|
9267
|
+
"id": "theme:add-names",
|
|
9057
9268
|
"pluginAlias": "@proletariat/cli",
|
|
9058
9269
|
"pluginName": "@proletariat/cli",
|
|
9059
9270
|
"pluginType": "core",
|
|
9060
|
-
"strict":
|
|
9271
|
+
"strict": false,
|
|
9061
9272
|
"enableJsonFlag": false,
|
|
9062
9273
|
"isESM": true,
|
|
9063
9274
|
"relativePath": [
|
|
9064
9275
|
"dist",
|
|
9065
9276
|
"commands",
|
|
9066
|
-
"
|
|
9067
|
-
"
|
|
9277
|
+
"theme",
|
|
9278
|
+
"add-names.js"
|
|
9068
9279
|
]
|
|
9069
9280
|
},
|
|
9070
|
-
"
|
|
9281
|
+
"theme:create": {
|
|
9071
9282
|
"aliases": [],
|
|
9072
|
-
"args": {
|
|
9073
|
-
|
|
9283
|
+
"args": {
|
|
9284
|
+
"name": {
|
|
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",
|
|
9074
9291
|
"examples": [
|
|
9075
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9292
|
+
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
9293
|
+
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
9294
|
+
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
9076
9295
|
],
|
|
9077
9296
|
"flags": {
|
|
9078
9297
|
"json": {
|
|
@@ -9087,11 +9306,26 @@
|
|
|
9087
9306
|
"name": "machine",
|
|
9088
9307
|
"allowNo": false,
|
|
9089
9308
|
"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"
|
|
9090
9324
|
}
|
|
9091
9325
|
},
|
|
9092
9326
|
"hasDynamicHelp": false,
|
|
9093
9327
|
"hiddenAliases": [],
|
|
9094
|
-
"id": "
|
|
9328
|
+
"id": "theme:create",
|
|
9095
9329
|
"pluginAlias": "@proletariat/cli",
|
|
9096
9330
|
"pluginName": "@proletariat/cli",
|
|
9097
9331
|
"pluginType": "core",
|
|
@@ -9101,17 +9335,18 @@
|
|
|
9101
9335
|
"relativePath": [
|
|
9102
9336
|
"dist",
|
|
9103
9337
|
"commands",
|
|
9104
|
-
"
|
|
9105
|
-
"
|
|
9338
|
+
"theme",
|
|
9339
|
+
"create.js"
|
|
9106
9340
|
]
|
|
9107
9341
|
},
|
|
9108
|
-
"
|
|
9342
|
+
"theme": {
|
|
9109
9343
|
"aliases": [],
|
|
9110
9344
|
"args": {},
|
|
9111
|
-
"description": "
|
|
9345
|
+
"description": "Manage agent naming themes",
|
|
9112
9346
|
"examples": [
|
|
9113
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9114
|
-
"<%= config.bin %> <%= command.id %>
|
|
9347
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
9348
|
+
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
9349
|
+
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
9115
9350
|
],
|
|
9116
9351
|
"flags": {
|
|
9117
9352
|
"json": {
|
|
@@ -9130,26 +9365,25 @@
|
|
|
9130
9365
|
},
|
|
9131
9366
|
"hasDynamicHelp": false,
|
|
9132
9367
|
"hiddenAliases": [],
|
|
9133
|
-
"id": "
|
|
9368
|
+
"id": "theme",
|
|
9134
9369
|
"pluginAlias": "@proletariat/cli",
|
|
9135
9370
|
"pluginName": "@proletariat/cli",
|
|
9136
9371
|
"pluginType": "core",
|
|
9137
9372
|
"strict": true,
|
|
9138
|
-
"enableJsonFlag": false,
|
|
9139
9373
|
"isESM": true,
|
|
9140
9374
|
"relativePath": [
|
|
9141
9375
|
"dist",
|
|
9142
9376
|
"commands",
|
|
9143
|
-
"
|
|
9377
|
+
"theme",
|
|
9144
9378
|
"index.js"
|
|
9145
9379
|
]
|
|
9146
9380
|
},
|
|
9147
|
-
"
|
|
9381
|
+
"theme:list": {
|
|
9148
9382
|
"aliases": [],
|
|
9149
9383
|
"args": {},
|
|
9150
|
-
"description": "
|
|
9384
|
+
"description": "List available agent themes",
|
|
9151
9385
|
"examples": [
|
|
9152
|
-
"<%= config.bin %>
|
|
9386
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9153
9387
|
],
|
|
9154
9388
|
"flags": {
|
|
9155
9389
|
"json": {
|
|
@@ -9168,7 +9402,7 @@
|
|
|
9168
9402
|
},
|
|
9169
9403
|
"hasDynamicHelp": false,
|
|
9170
9404
|
"hiddenAliases": [],
|
|
9171
|
-
"id": "
|
|
9405
|
+
"id": "theme:list",
|
|
9172
9406
|
"pluginAlias": "@proletariat/cli",
|
|
9173
9407
|
"pluginName": "@proletariat/cli",
|
|
9174
9408
|
"pluginType": "core",
|
|
@@ -9178,34 +9412,25 @@
|
|
|
9178
9412
|
"relativePath": [
|
|
9179
9413
|
"dist",
|
|
9180
9414
|
"commands",
|
|
9181
|
-
"
|
|
9182
|
-
"
|
|
9415
|
+
"theme",
|
|
9416
|
+
"list.js"
|
|
9183
9417
|
]
|
|
9184
9418
|
},
|
|
9185
|
-
"
|
|
9419
|
+
"theme:set": {
|
|
9186
9420
|
"aliases": [],
|
|
9187
9421
|
"args": {
|
|
9188
|
-
"
|
|
9189
|
-
"description": "
|
|
9190
|
-
"name": "
|
|
9422
|
+
"theme": {
|
|
9423
|
+
"description": "Theme ID to set as active",
|
|
9424
|
+
"name": "theme",
|
|
9191
9425
|
"required": false
|
|
9192
9426
|
}
|
|
9193
9427
|
},
|
|
9194
|
-
"description": "Set the
|
|
9428
|
+
"description": "Set the active theme for this workspace",
|
|
9195
9429
|
"examples": [
|
|
9196
|
-
"<%= config.bin %> <%= command.id %>
|
|
9197
|
-
"<%= config.bin %> <%= command.id %>
|
|
9198
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
9199
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9430
|
+
"<%= config.bin %> <%= command.id %> billionaires",
|
|
9431
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9200
9432
|
],
|
|
9201
9433
|
"flags": {
|
|
9202
|
-
"reset": {
|
|
9203
|
-
"char": "r",
|
|
9204
|
-
"description": "Reset terminal title to default",
|
|
9205
|
-
"name": "reset",
|
|
9206
|
-
"allowNo": false,
|
|
9207
|
-
"type": "boolean"
|
|
9208
|
-
},
|
|
9209
9434
|
"json": {
|
|
9210
9435
|
"description": "Output as JSON for AI agents/scripts",
|
|
9211
9436
|
"name": "json",
|
|
@@ -9222,7 +9447,7 @@
|
|
|
9222
9447
|
},
|
|
9223
9448
|
"hasDynamicHelp": false,
|
|
9224
9449
|
"hiddenAliases": [],
|
|
9225
|
-
"id": "
|
|
9450
|
+
"id": "theme:set",
|
|
9226
9451
|
"pluginAlias": "@proletariat/cli",
|
|
9227
9452
|
"pluginName": "@proletariat/cli",
|
|
9228
9453
|
"pluginType": "core",
|
|
@@ -9231,28 +9456,33 @@
|
|
|
9231
9456
|
"relativePath": [
|
|
9232
9457
|
"dist",
|
|
9233
9458
|
"commands",
|
|
9234
|
-
"
|
|
9235
|
-
"
|
|
9459
|
+
"agent",
|
|
9460
|
+
"themes",
|
|
9461
|
+
"set.js"
|
|
9236
9462
|
]
|
|
9237
9463
|
},
|
|
9238
|
-
"
|
|
9464
|
+
"tools:add": {
|
|
9239
9465
|
"aliases": [],
|
|
9240
9466
|
"args": {
|
|
9241
|
-
"
|
|
9242
|
-
"description": "
|
|
9243
|
-
"name": "
|
|
9467
|
+
"type": {
|
|
9468
|
+
"description": "Tool type (mcp or cli)",
|
|
9469
|
+
"name": "type",
|
|
9470
|
+
"options": [
|
|
9471
|
+
"mcp",
|
|
9472
|
+
"cli"
|
|
9473
|
+
],
|
|
9244
9474
|
"required": true
|
|
9245
9475
|
},
|
|
9246
|
-
"
|
|
9247
|
-
"description": "
|
|
9248
|
-
"name": "
|
|
9249
|
-
"required":
|
|
9476
|
+
"name": {
|
|
9477
|
+
"description": "Tool name (unique identifier)",
|
|
9478
|
+
"name": "name",
|
|
9479
|
+
"required": true
|
|
9250
9480
|
}
|
|
9251
9481
|
},
|
|
9252
|
-
"description": "
|
|
9482
|
+
"description": "Register an MCP server or CLI tool",
|
|
9253
9483
|
"examples": [
|
|
9254
|
-
"<%= config.bin %>
|
|
9255
|
-
"<%= config.bin %>
|
|
9484
|
+
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
9485
|
+
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
9256
9486
|
],
|
|
9257
9487
|
"flags": {
|
|
9258
9488
|
"json": {
|
|
@@ -9267,38 +9497,74 @@
|
|
|
9267
9497
|
"name": "machine",
|
|
9268
9498
|
"allowNo": false,
|
|
9269
9499
|
"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"
|
|
9270
9544
|
}
|
|
9271
9545
|
},
|
|
9272
9546
|
"hasDynamicHelp": false,
|
|
9273
9547
|
"hiddenAliases": [],
|
|
9274
|
-
"id": "
|
|
9548
|
+
"id": "tools:add",
|
|
9275
9549
|
"pluginAlias": "@proletariat/cli",
|
|
9276
9550
|
"pluginName": "@proletariat/cli",
|
|
9277
9551
|
"pluginType": "core",
|
|
9278
|
-
"strict":
|
|
9279
|
-
"enableJsonFlag": false,
|
|
9552
|
+
"strict": true,
|
|
9280
9553
|
"isESM": true,
|
|
9281
9554
|
"relativePath": [
|
|
9282
9555
|
"dist",
|
|
9283
9556
|
"commands",
|
|
9284
|
-
"
|
|
9285
|
-
"add
|
|
9557
|
+
"tools",
|
|
9558
|
+
"add.js"
|
|
9286
9559
|
]
|
|
9287
9560
|
},
|
|
9288
|
-
"
|
|
9561
|
+
"tools:check": {
|
|
9289
9562
|
"aliases": [],
|
|
9290
|
-
"args": {
|
|
9291
|
-
|
|
9292
|
-
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
9293
|
-
"name": "name",
|
|
9294
|
-
"required": true
|
|
9295
|
-
}
|
|
9296
|
-
},
|
|
9297
|
-
"description": "Create a custom agent theme",
|
|
9563
|
+
"args": {},
|
|
9564
|
+
"description": "Verify all registered tools are available and healthy",
|
|
9298
9565
|
"examples": [
|
|
9299
|
-
"<%= config.bin %>
|
|
9300
|
-
"<%= config.bin %>
|
|
9301
|
-
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
9566
|
+
"<%= config.bin %> tools check",
|
|
9567
|
+
"<%= config.bin %> tools check --json"
|
|
9302
9568
|
],
|
|
9303
9569
|
"flags": {
|
|
9304
9570
|
"json": {
|
|
@@ -9313,26 +9579,11 @@
|
|
|
9313
9579
|
"name": "machine",
|
|
9314
9580
|
"allowNo": false,
|
|
9315
9581
|
"type": "boolean"
|
|
9316
|
-
},
|
|
9317
|
-
"description": {
|
|
9318
|
-
"char": "d",
|
|
9319
|
-
"description": "Theme description",
|
|
9320
|
-
"name": "description",
|
|
9321
|
-
"hasDynamicHelp": false,
|
|
9322
|
-
"multiple": false,
|
|
9323
|
-
"type": "option"
|
|
9324
|
-
},
|
|
9325
|
-
"display-name": {
|
|
9326
|
-
"description": "Display name (defaults to formatted name)",
|
|
9327
|
-
"name": "display-name",
|
|
9328
|
-
"hasDynamicHelp": false,
|
|
9329
|
-
"multiple": false,
|
|
9330
|
-
"type": "option"
|
|
9331
9582
|
}
|
|
9332
9583
|
},
|
|
9333
9584
|
"hasDynamicHelp": false,
|
|
9334
9585
|
"hiddenAliases": [],
|
|
9335
|
-
"id": "
|
|
9586
|
+
"id": "tools:check",
|
|
9336
9587
|
"pluginAlias": "@proletariat/cli",
|
|
9337
9588
|
"pluginName": "@proletariat/cli",
|
|
9338
9589
|
"pluginType": "core",
|
|
@@ -9342,18 +9593,18 @@
|
|
|
9342
9593
|
"relativePath": [
|
|
9343
9594
|
"dist",
|
|
9344
9595
|
"commands",
|
|
9345
|
-
"
|
|
9346
|
-
"
|
|
9596
|
+
"tools",
|
|
9597
|
+
"check.js"
|
|
9347
9598
|
]
|
|
9348
9599
|
},
|
|
9349
|
-
"
|
|
9600
|
+
"tools:detect": {
|
|
9350
9601
|
"aliases": [],
|
|
9351
9602
|
"args": {},
|
|
9352
|
-
"description": "
|
|
9603
|
+
"description": "Auto-detect common CLI tools on the system and register them",
|
|
9353
9604
|
"examples": [
|
|
9354
|
-
"<%= config.bin %>
|
|
9355
|
-
"<%= config.bin %>
|
|
9356
|
-
"<%= config.bin %>
|
|
9605
|
+
"<%= config.bin %> tools detect",
|
|
9606
|
+
"<%= config.bin %> tools detect --auto",
|
|
9607
|
+
"<%= config.bin %> tools detect --json"
|
|
9357
9608
|
],
|
|
9358
9609
|
"flags": {
|
|
9359
9610
|
"json": {
|
|
@@ -9368,29 +9619,39 @@
|
|
|
9368
9619
|
"name": "machine",
|
|
9369
9620
|
"allowNo": false,
|
|
9370
9621
|
"type": "boolean"
|
|
9622
|
+
},
|
|
9623
|
+
"auto": {
|
|
9624
|
+
"description": "Automatically register all detected tools without prompting",
|
|
9625
|
+
"name": "auto",
|
|
9626
|
+
"allowNo": false,
|
|
9627
|
+
"type": "boolean"
|
|
9371
9628
|
}
|
|
9372
9629
|
},
|
|
9373
9630
|
"hasDynamicHelp": false,
|
|
9374
9631
|
"hiddenAliases": [],
|
|
9375
|
-
"id": "
|
|
9632
|
+
"id": "tools:detect",
|
|
9376
9633
|
"pluginAlias": "@proletariat/cli",
|
|
9377
9634
|
"pluginName": "@proletariat/cli",
|
|
9378
9635
|
"pluginType": "core",
|
|
9379
9636
|
"strict": true,
|
|
9637
|
+
"enableJsonFlag": false,
|
|
9380
9638
|
"isESM": true,
|
|
9381
9639
|
"relativePath": [
|
|
9382
9640
|
"dist",
|
|
9383
9641
|
"commands",
|
|
9384
|
-
"
|
|
9385
|
-
"
|
|
9642
|
+
"tools",
|
|
9643
|
+
"detect.js"
|
|
9386
9644
|
]
|
|
9387
9645
|
},
|
|
9388
|
-
"
|
|
9389
|
-
"aliases": [
|
|
9646
|
+
"tools": {
|
|
9647
|
+
"aliases": [
|
|
9648
|
+
"tools:list"
|
|
9649
|
+
],
|
|
9390
9650
|
"args": {},
|
|
9391
|
-
"description": "
|
|
9651
|
+
"description": "Show all registered MCP servers and CLI tools",
|
|
9392
9652
|
"examples": [
|
|
9393
|
-
"<%= config.bin %>
|
|
9653
|
+
"<%= config.bin %> tools",
|
|
9654
|
+
"<%= config.bin %> tools --json"
|
|
9394
9655
|
],
|
|
9395
9656
|
"flags": {
|
|
9396
9657
|
"json": {
|
|
@@ -9409,7 +9670,7 @@
|
|
|
9409
9670
|
},
|
|
9410
9671
|
"hasDynamicHelp": false,
|
|
9411
9672
|
"hiddenAliases": [],
|
|
9412
|
-
"id": "
|
|
9673
|
+
"id": "tools",
|
|
9413
9674
|
"pluginAlias": "@proletariat/cli",
|
|
9414
9675
|
"pluginName": "@proletariat/cli",
|
|
9415
9676
|
"pluginType": "core",
|
|
@@ -9419,23 +9680,23 @@
|
|
|
9419
9680
|
"relativePath": [
|
|
9420
9681
|
"dist",
|
|
9421
9682
|
"commands",
|
|
9422
|
-
"
|
|
9423
|
-
"
|
|
9683
|
+
"tools",
|
|
9684
|
+
"index.js"
|
|
9424
9685
|
]
|
|
9425
9686
|
},
|
|
9426
|
-
"
|
|
9687
|
+
"tools:remove": {
|
|
9427
9688
|
"aliases": [],
|
|
9428
9689
|
"args": {
|
|
9429
|
-
"
|
|
9430
|
-
"description": "
|
|
9431
|
-
"name": "
|
|
9432
|
-
"required":
|
|
9690
|
+
"name": {
|
|
9691
|
+
"description": "Tool name to remove",
|
|
9692
|
+
"name": "name",
|
|
9693
|
+
"required": true
|
|
9433
9694
|
}
|
|
9434
9695
|
},
|
|
9435
|
-
"description": "
|
|
9696
|
+
"description": "Remove a tool from the registry",
|
|
9436
9697
|
"examples": [
|
|
9437
|
-
"<%= config.bin %>
|
|
9438
|
-
"<%= config.bin %>
|
|
9698
|
+
"<%= config.bin %> tools remove arcade",
|
|
9699
|
+
"<%= config.bin %> tools remove ffmpeg"
|
|
9439
9700
|
],
|
|
9440
9701
|
"flags": {
|
|
9441
9702
|
"json": {
|
|
@@ -9454,18 +9715,18 @@
|
|
|
9454
9715
|
},
|
|
9455
9716
|
"hasDynamicHelp": false,
|
|
9456
9717
|
"hiddenAliases": [],
|
|
9457
|
-
"id": "
|
|
9718
|
+
"id": "tools:remove",
|
|
9458
9719
|
"pluginAlias": "@proletariat/cli",
|
|
9459
9720
|
"pluginName": "@proletariat/cli",
|
|
9460
9721
|
"pluginType": "core",
|
|
9461
9722
|
"strict": true,
|
|
9723
|
+
"enableJsonFlag": false,
|
|
9462
9724
|
"isESM": true,
|
|
9463
9725
|
"relativePath": [
|
|
9464
9726
|
"dist",
|
|
9465
9727
|
"commands",
|
|
9466
|
-
"
|
|
9467
|
-
"
|
|
9468
|
-
"set.js"
|
|
9728
|
+
"tools",
|
|
9729
|
+
"remove.js"
|
|
9469
9730
|
]
|
|
9470
9731
|
},
|
|
9471
9732
|
"trello:configure": {
|
|
@@ -9665,271 +9926,55 @@
|
|
|
9665
9926
|
"hasDynamicHelp": false,
|
|
9666
9927
|
"multiple": false,
|
|
9667
9928
|
"type": "option"
|
|
9668
|
-
},
|
|
9669
|
-
"create-missing": {
|
|
9670
|
-
"description": "Create Trello card when no mapping exists (requires list)",
|
|
9671
|
-
"name": "create-missing",
|
|
9672
|
-
"allowNo": false,
|
|
9673
|
-
"type": "boolean"
|
|
9674
|
-
},
|
|
9675
|
-
"dry-run": {
|
|
9676
|
-
"description": "Preview sync operations without making changes",
|
|
9677
|
-
"name": "dry-run",
|
|
9678
|
-
"allowNo": false,
|
|
9679
|
-
"type": "boolean"
|
|
9680
|
-
}
|
|
9681
|
-
},
|
|
9682
|
-
"hasDynamicHelp": false,
|
|
9683
|
-
"hiddenAliases": [],
|
|
9684
|
-
"id": "trello:sync",
|
|
9685
|
-
"pluginAlias": "@proletariat/cli",
|
|
9686
|
-
"pluginName": "@proletariat/cli",
|
|
9687
|
-
"pluginType": "core",
|
|
9688
|
-
"strict": true,
|
|
9689
|
-
"isESM": true,
|
|
9690
|
-
"relativePath": [
|
|
9691
|
-
"dist",
|
|
9692
|
-
"commands",
|
|
9693
|
-
"trello",
|
|
9694
|
-
"sync.js"
|
|
9695
|
-
]
|
|
9696
|
-
},
|
|
9697
|
-
"tools:add": {
|
|
9698
|
-
"aliases": [],
|
|
9699
|
-
"args": {
|
|
9700
|
-
"type": {
|
|
9701
|
-
"description": "Tool type (mcp or cli)",
|
|
9702
|
-
"name": "type",
|
|
9703
|
-
"options": [
|
|
9704
|
-
"mcp",
|
|
9705
|
-
"cli"
|
|
9706
|
-
],
|
|
9707
|
-
"required": true
|
|
9708
|
-
},
|
|
9709
|
-
"name": {
|
|
9710
|
-
"description": "Tool name (unique identifier)",
|
|
9711
|
-
"name": "name",
|
|
9712
|
-
"required": true
|
|
9713
|
-
}
|
|
9714
|
-
},
|
|
9715
|
-
"description": "Register an MCP server or CLI tool",
|
|
9716
|
-
"examples": [
|
|
9717
|
-
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
9718
|
-
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
9719
|
-
],
|
|
9720
|
-
"flags": {
|
|
9721
|
-
"json": {
|
|
9722
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9723
|
-
"name": "json",
|
|
9724
|
-
"allowNo": false,
|
|
9725
|
-
"type": "boolean"
|
|
9726
|
-
},
|
|
9727
|
-
"machine": {
|
|
9728
|
-
"char": "m",
|
|
9729
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9730
|
-
"name": "machine",
|
|
9731
|
-
"allowNo": false,
|
|
9732
|
-
"type": "boolean"
|
|
9733
|
-
},
|
|
9734
|
-
"url": {
|
|
9735
|
-
"description": "MCP server URL (for remote servers)",
|
|
9736
|
-
"name": "url",
|
|
9737
|
-
"hasDynamicHelp": false,
|
|
9738
|
-
"multiple": false,
|
|
9739
|
-
"type": "option"
|
|
9740
|
-
},
|
|
9741
|
-
"command": {
|
|
9742
|
-
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
9743
|
-
"name": "command",
|
|
9744
|
-
"hasDynamicHelp": false,
|
|
9745
|
-
"multiple": false,
|
|
9746
|
-
"type": "option"
|
|
9747
|
-
},
|
|
9748
|
-
"auth": {
|
|
9749
|
-
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
9750
|
-
"name": "auth",
|
|
9751
|
-
"hasDynamicHelp": false,
|
|
9752
|
-
"multiple": false,
|
|
9753
|
-
"type": "option"
|
|
9754
|
-
},
|
|
9755
|
-
"detect": {
|
|
9756
|
-
"description": "Shell command to detect if CLI tool is installed",
|
|
9757
|
-
"name": "detect",
|
|
9758
|
-
"hasDynamicHelp": false,
|
|
9759
|
-
"multiple": false,
|
|
9760
|
-
"type": "option"
|
|
9761
|
-
},
|
|
9762
|
-
"install": {
|
|
9763
|
-
"description": "Shell command to install the CLI tool",
|
|
9764
|
-
"name": "install",
|
|
9765
|
-
"hasDynamicHelp": false,
|
|
9766
|
-
"multiple": false,
|
|
9767
|
-
"type": "option"
|
|
9768
|
-
},
|
|
9769
|
-
"description": {
|
|
9770
|
-
"char": "d",
|
|
9771
|
-
"description": "Human-readable description",
|
|
9772
|
-
"name": "description",
|
|
9773
|
-
"required": true,
|
|
9774
|
-
"hasDynamicHelp": false,
|
|
9775
|
-
"multiple": false,
|
|
9776
|
-
"type": "option"
|
|
9777
|
-
}
|
|
9778
|
-
},
|
|
9779
|
-
"hasDynamicHelp": false,
|
|
9780
|
-
"hiddenAliases": [],
|
|
9781
|
-
"id": "tools:add",
|
|
9782
|
-
"pluginAlias": "@proletariat/cli",
|
|
9783
|
-
"pluginName": "@proletariat/cli",
|
|
9784
|
-
"pluginType": "core",
|
|
9785
|
-
"strict": true,
|
|
9786
|
-
"isESM": true,
|
|
9787
|
-
"relativePath": [
|
|
9788
|
-
"dist",
|
|
9789
|
-
"commands",
|
|
9790
|
-
"tools",
|
|
9791
|
-
"add.js"
|
|
9792
|
-
]
|
|
9793
|
-
},
|
|
9794
|
-
"tools:check": {
|
|
9795
|
-
"aliases": [],
|
|
9796
|
-
"args": {},
|
|
9797
|
-
"description": "Verify all registered tools are available and healthy",
|
|
9798
|
-
"examples": [
|
|
9799
|
-
"<%= config.bin %> tools check",
|
|
9800
|
-
"<%= config.bin %> tools check --json"
|
|
9801
|
-
],
|
|
9802
|
-
"flags": {
|
|
9803
|
-
"json": {
|
|
9804
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9805
|
-
"name": "json",
|
|
9806
|
-
"allowNo": false,
|
|
9807
|
-
"type": "boolean"
|
|
9808
|
-
},
|
|
9809
|
-
"machine": {
|
|
9810
|
-
"char": "m",
|
|
9811
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9812
|
-
"name": "machine",
|
|
9813
|
-
"allowNo": false,
|
|
9814
|
-
"type": "boolean"
|
|
9815
|
-
}
|
|
9816
|
-
},
|
|
9817
|
-
"hasDynamicHelp": false,
|
|
9818
|
-
"hiddenAliases": [],
|
|
9819
|
-
"id": "tools:check",
|
|
9820
|
-
"pluginAlias": "@proletariat/cli",
|
|
9821
|
-
"pluginName": "@proletariat/cli",
|
|
9822
|
-
"pluginType": "core",
|
|
9823
|
-
"strict": true,
|
|
9824
|
-
"enableJsonFlag": false,
|
|
9825
|
-
"isESM": true,
|
|
9826
|
-
"relativePath": [
|
|
9827
|
-
"dist",
|
|
9828
|
-
"commands",
|
|
9829
|
-
"tools",
|
|
9830
|
-
"check.js"
|
|
9831
|
-
]
|
|
9832
|
-
},
|
|
9833
|
-
"tools:detect": {
|
|
9834
|
-
"aliases": [],
|
|
9835
|
-
"args": {},
|
|
9836
|
-
"description": "Auto-detect common CLI tools on the system and register them",
|
|
9837
|
-
"examples": [
|
|
9838
|
-
"<%= config.bin %> tools detect",
|
|
9839
|
-
"<%= config.bin %> tools detect --auto",
|
|
9840
|
-
"<%= config.bin %> tools detect --json"
|
|
9841
|
-
],
|
|
9842
|
-
"flags": {
|
|
9843
|
-
"json": {
|
|
9844
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9845
|
-
"name": "json",
|
|
9846
|
-
"allowNo": false,
|
|
9847
|
-
"type": "boolean"
|
|
9848
|
-
},
|
|
9849
|
-
"machine": {
|
|
9850
|
-
"char": "m",
|
|
9851
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9852
|
-
"name": "machine",
|
|
9853
|
-
"allowNo": false,
|
|
9854
|
-
"type": "boolean"
|
|
9855
|
-
},
|
|
9856
|
-
"auto": {
|
|
9857
|
-
"description": "Automatically register all detected tools without prompting",
|
|
9858
|
-
"name": "auto",
|
|
9859
|
-
"allowNo": false,
|
|
9860
|
-
"type": "boolean"
|
|
9861
|
-
}
|
|
9862
|
-
},
|
|
9863
|
-
"hasDynamicHelp": false,
|
|
9864
|
-
"hiddenAliases": [],
|
|
9865
|
-
"id": "tools:detect",
|
|
9866
|
-
"pluginAlias": "@proletariat/cli",
|
|
9867
|
-
"pluginName": "@proletariat/cli",
|
|
9868
|
-
"pluginType": "core",
|
|
9869
|
-
"strict": true,
|
|
9870
|
-
"enableJsonFlag": false,
|
|
9871
|
-
"isESM": true,
|
|
9872
|
-
"relativePath": [
|
|
9873
|
-
"dist",
|
|
9874
|
-
"commands",
|
|
9875
|
-
"tools",
|
|
9876
|
-
"detect.js"
|
|
9877
|
-
]
|
|
9878
|
-
},
|
|
9879
|
-
"tools": {
|
|
9880
|
-
"aliases": [
|
|
9881
|
-
"tools:list"
|
|
9882
|
-
],
|
|
9883
|
-
"args": {},
|
|
9884
|
-
"description": "Show all registered MCP servers and CLI tools",
|
|
9885
|
-
"examples": [
|
|
9886
|
-
"<%= config.bin %> tools",
|
|
9887
|
-
"<%= config.bin %> tools --json"
|
|
9888
|
-
],
|
|
9889
|
-
"flags": {
|
|
9890
|
-
"json": {
|
|
9891
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9892
|
-
"name": "json",
|
|
9929
|
+
},
|
|
9930
|
+
"create-missing": {
|
|
9931
|
+
"description": "Create Trello card when no mapping exists (requires list)",
|
|
9932
|
+
"name": "create-missing",
|
|
9893
9933
|
"allowNo": false,
|
|
9894
9934
|
"type": "boolean"
|
|
9895
9935
|
},
|
|
9896
|
-
"
|
|
9897
|
-
"
|
|
9898
|
-
"
|
|
9899
|
-
"name": "machine",
|
|
9936
|
+
"dry-run": {
|
|
9937
|
+
"description": "Preview sync operations without making changes",
|
|
9938
|
+
"name": "dry-run",
|
|
9900
9939
|
"allowNo": false,
|
|
9901
9940
|
"type": "boolean"
|
|
9902
9941
|
}
|
|
9903
9942
|
},
|
|
9904
9943
|
"hasDynamicHelp": false,
|
|
9905
9944
|
"hiddenAliases": [],
|
|
9906
|
-
"id": "
|
|
9945
|
+
"id": "trello:sync",
|
|
9907
9946
|
"pluginAlias": "@proletariat/cli",
|
|
9908
9947
|
"pluginName": "@proletariat/cli",
|
|
9909
9948
|
"pluginType": "core",
|
|
9910
9949
|
"strict": true,
|
|
9911
|
-
"enableJsonFlag": false,
|
|
9912
9950
|
"isESM": true,
|
|
9913
9951
|
"relativePath": [
|
|
9914
9952
|
"dist",
|
|
9915
9953
|
"commands",
|
|
9916
|
-
"
|
|
9917
|
-
"
|
|
9954
|
+
"trello",
|
|
9955
|
+
"sync.js"
|
|
9918
9956
|
]
|
|
9919
9957
|
},
|
|
9920
|
-
"
|
|
9958
|
+
"version:bump": {
|
|
9921
9959
|
"aliases": [],
|
|
9922
9960
|
"args": {
|
|
9923
|
-
"
|
|
9924
|
-
"description": "
|
|
9925
|
-
"name": "
|
|
9961
|
+
"type": {
|
|
9962
|
+
"description": "Version bump type",
|
|
9963
|
+
"name": "type",
|
|
9964
|
+
"options": [
|
|
9965
|
+
"major",
|
|
9966
|
+
"minor",
|
|
9967
|
+
"patch"
|
|
9968
|
+
],
|
|
9926
9969
|
"required": true
|
|
9927
9970
|
}
|
|
9928
9971
|
},
|
|
9929
|
-
"description": "
|
|
9972
|
+
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
9930
9973
|
"examples": [
|
|
9931
|
-
"<%= config.bin %>
|
|
9932
|
-
"<%= config.bin %>
|
|
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"
|
|
9933
9978
|
],
|
|
9934
9979
|
"flags": {
|
|
9935
9980
|
"json": {
|
|
@@ -9948,7 +9993,7 @@
|
|
|
9948
9993
|
},
|
|
9949
9994
|
"hasDynamicHelp": false,
|
|
9950
9995
|
"hiddenAliases": [],
|
|
9951
|
-
"id": "
|
|
9996
|
+
"id": "version:bump",
|
|
9952
9997
|
"pluginAlias": "@proletariat/cli",
|
|
9953
9998
|
"pluginName": "@proletariat/cli",
|
|
9954
9999
|
"pluginType": "core",
|
|
@@ -9958,8 +10003,8 @@
|
|
|
9958
10003
|
"relativePath": [
|
|
9959
10004
|
"dist",
|
|
9960
10005
|
"commands",
|
|
9961
|
-
"
|
|
9962
|
-
"
|
|
10006
|
+
"version",
|
|
10007
|
+
"bump.js"
|
|
9963
10008
|
]
|
|
9964
10009
|
},
|
|
9965
10010
|
"ticket:bulk": {
|
|
@@ -11573,26 +11618,209 @@
|
|
|
11573
11618
|
"view.js"
|
|
11574
11619
|
]
|
|
11575
11620
|
},
|
|
11576
|
-
"
|
|
11621
|
+
"workspace:add": {
|
|
11577
11622
|
"aliases": [],
|
|
11578
11623
|
"args": {
|
|
11579
|
-
"
|
|
11580
|
-
"description": "
|
|
11581
|
-
"name": "
|
|
11582
|
-
"options": [
|
|
11583
|
-
"major",
|
|
11584
|
-
"minor",
|
|
11585
|
-
"patch"
|
|
11586
|
-
],
|
|
11624
|
+
"path": {
|
|
11625
|
+
"description": "Path to the workspace to register",
|
|
11626
|
+
"name": "path",
|
|
11587
11627
|
"required": true
|
|
11588
11628
|
}
|
|
11589
11629
|
},
|
|
11590
|
-
"description": "
|
|
11630
|
+
"description": "Register an existing workspace in the machine config",
|
|
11591
11631
|
"examples": [
|
|
11592
|
-
"<%= config.bin %>
|
|
11593
|
-
"<%= config.bin %>
|
|
11594
|
-
"<%= config.bin %>
|
|
11595
|
-
|
|
11632
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
11633
|
+
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
11634
|
+
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
11635
|
+
],
|
|
11636
|
+
"flags": {
|
|
11637
|
+
"json": {
|
|
11638
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11639
|
+
"name": "json",
|
|
11640
|
+
"allowNo": false,
|
|
11641
|
+
"type": "boolean"
|
|
11642
|
+
},
|
|
11643
|
+
"machine": {
|
|
11644
|
+
"char": "m",
|
|
11645
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11646
|
+
"name": "machine",
|
|
11647
|
+
"allowNo": false,
|
|
11648
|
+
"type": "boolean"
|
|
11649
|
+
},
|
|
11650
|
+
"name": {
|
|
11651
|
+
"char": "n",
|
|
11652
|
+
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
11653
|
+
"name": "name",
|
|
11654
|
+
"hasDynamicHelp": false,
|
|
11655
|
+
"multiple": false,
|
|
11656
|
+
"type": "option"
|
|
11657
|
+
}
|
|
11658
|
+
},
|
|
11659
|
+
"hasDynamicHelp": false,
|
|
11660
|
+
"hiddenAliases": [],
|
|
11661
|
+
"id": "workspace:add",
|
|
11662
|
+
"pluginAlias": "@proletariat/cli",
|
|
11663
|
+
"pluginName": "@proletariat/cli",
|
|
11664
|
+
"pluginType": "core",
|
|
11665
|
+
"strict": true,
|
|
11666
|
+
"enableJsonFlag": false,
|
|
11667
|
+
"isESM": true,
|
|
11668
|
+
"relativePath": [
|
|
11669
|
+
"dist",
|
|
11670
|
+
"commands",
|
|
11671
|
+
"workspace",
|
|
11672
|
+
"add.js"
|
|
11673
|
+
]
|
|
11674
|
+
},
|
|
11675
|
+
"workspace:list": {
|
|
11676
|
+
"aliases": [],
|
|
11677
|
+
"args": {},
|
|
11678
|
+
"description": "List all registered and discovered HQ workspaces",
|
|
11679
|
+
"examples": [
|
|
11680
|
+
"<%= config.bin %> <%= command.id %>",
|
|
11681
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
11682
|
+
],
|
|
11683
|
+
"flags": {
|
|
11684
|
+
"json": {
|
|
11685
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11686
|
+
"name": "json",
|
|
11687
|
+
"allowNo": false,
|
|
11688
|
+
"type": "boolean"
|
|
11689
|
+
},
|
|
11690
|
+
"machine": {
|
|
11691
|
+
"char": "m",
|
|
11692
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11693
|
+
"name": "machine",
|
|
11694
|
+
"allowNo": false,
|
|
11695
|
+
"type": "boolean"
|
|
11696
|
+
}
|
|
11697
|
+
},
|
|
11698
|
+
"hasDynamicHelp": false,
|
|
11699
|
+
"hiddenAliases": [],
|
|
11700
|
+
"id": "workspace:list",
|
|
11701
|
+
"pluginAlias": "@proletariat/cli",
|
|
11702
|
+
"pluginName": "@proletariat/cli",
|
|
11703
|
+
"pluginType": "core",
|
|
11704
|
+
"strict": true,
|
|
11705
|
+
"enableJsonFlag": false,
|
|
11706
|
+
"isESM": true,
|
|
11707
|
+
"relativePath": [
|
|
11708
|
+
"dist",
|
|
11709
|
+
"commands",
|
|
11710
|
+
"workspace",
|
|
11711
|
+
"list.js"
|
|
11712
|
+
]
|
|
11713
|
+
},
|
|
11714
|
+
"workspace:prune": {
|
|
11715
|
+
"aliases": [],
|
|
11716
|
+
"args": {},
|
|
11717
|
+
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
11718
|
+
"examples": [
|
|
11719
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
11720
|
+
"<%= config.bin %> <%= command.id %>",
|
|
11721
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
11722
|
+
],
|
|
11723
|
+
"flags": {
|
|
11724
|
+
"json": {
|
|
11725
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11726
|
+
"name": "json",
|
|
11727
|
+
"allowNo": false,
|
|
11728
|
+
"type": "boolean"
|
|
11729
|
+
},
|
|
11730
|
+
"machine": {
|
|
11731
|
+
"char": "m",
|
|
11732
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11733
|
+
"name": "machine",
|
|
11734
|
+
"allowNo": false,
|
|
11735
|
+
"type": "boolean"
|
|
11736
|
+
},
|
|
11737
|
+
"dry-run": {
|
|
11738
|
+
"char": "d",
|
|
11739
|
+
"description": "Show what would be removed without removing",
|
|
11740
|
+
"name": "dry-run",
|
|
11741
|
+
"allowNo": false,
|
|
11742
|
+
"type": "boolean"
|
|
11743
|
+
},
|
|
11744
|
+
"force": {
|
|
11745
|
+
"char": "f",
|
|
11746
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
11747
|
+
"name": "force",
|
|
11748
|
+
"allowNo": false,
|
|
11749
|
+
"type": "boolean"
|
|
11750
|
+
}
|
|
11751
|
+
},
|
|
11752
|
+
"hasDynamicHelp": false,
|
|
11753
|
+
"hiddenAliases": [],
|
|
11754
|
+
"id": "workspace:prune",
|
|
11755
|
+
"pluginAlias": "@proletariat/cli",
|
|
11756
|
+
"pluginName": "@proletariat/cli",
|
|
11757
|
+
"pluginType": "core",
|
|
11758
|
+
"strict": true,
|
|
11759
|
+
"isESM": true,
|
|
11760
|
+
"relativePath": [
|
|
11761
|
+
"dist",
|
|
11762
|
+
"commands",
|
|
11763
|
+
"workspace",
|
|
11764
|
+
"prune.js"
|
|
11765
|
+
]
|
|
11766
|
+
},
|
|
11767
|
+
"workspace:remove": {
|
|
11768
|
+
"aliases": [],
|
|
11769
|
+
"args": {
|
|
11770
|
+
"nameOrPath": {
|
|
11771
|
+
"description": "Workspace name or path to unregister",
|
|
11772
|
+
"name": "nameOrPath",
|
|
11773
|
+
"required": true
|
|
11774
|
+
}
|
|
11775
|
+
},
|
|
11776
|
+
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
11777
|
+
"examples": [
|
|
11778
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
11779
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
11780
|
+
],
|
|
11781
|
+
"flags": {
|
|
11782
|
+
"json": {
|
|
11783
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11784
|
+
"name": "json",
|
|
11785
|
+
"allowNo": false,
|
|
11786
|
+
"type": "boolean"
|
|
11787
|
+
},
|
|
11788
|
+
"machine": {
|
|
11789
|
+
"char": "m",
|
|
11790
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11791
|
+
"name": "machine",
|
|
11792
|
+
"allowNo": false,
|
|
11793
|
+
"type": "boolean"
|
|
11794
|
+
}
|
|
11795
|
+
},
|
|
11796
|
+
"hasDynamicHelp": false,
|
|
11797
|
+
"hiddenAliases": [],
|
|
11798
|
+
"id": "workspace:remove",
|
|
11799
|
+
"pluginAlias": "@proletariat/cli",
|
|
11800
|
+
"pluginName": "@proletariat/cli",
|
|
11801
|
+
"pluginType": "core",
|
|
11802
|
+
"strict": true,
|
|
11803
|
+
"isESM": true,
|
|
11804
|
+
"relativePath": [
|
|
11805
|
+
"dist",
|
|
11806
|
+
"commands",
|
|
11807
|
+
"workspace",
|
|
11808
|
+
"remove.js"
|
|
11809
|
+
]
|
|
11810
|
+
},
|
|
11811
|
+
"workspace:use": {
|
|
11812
|
+
"aliases": [],
|
|
11813
|
+
"args": {
|
|
11814
|
+
"nameOrPath": {
|
|
11815
|
+
"description": "Workspace name or path",
|
|
11816
|
+
"name": "nameOrPath",
|
|
11817
|
+
"required": true
|
|
11818
|
+
}
|
|
11819
|
+
},
|
|
11820
|
+
"description": "Set the active workspace",
|
|
11821
|
+
"examples": [
|
|
11822
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
11823
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
11596
11824
|
],
|
|
11597
11825
|
"flags": {
|
|
11598
11826
|
"json": {
|
|
@@ -11611,18 +11839,17 @@
|
|
|
11611
11839
|
},
|
|
11612
11840
|
"hasDynamicHelp": false,
|
|
11613
11841
|
"hiddenAliases": [],
|
|
11614
|
-
"id": "
|
|
11842
|
+
"id": "workspace:use",
|
|
11615
11843
|
"pluginAlias": "@proletariat/cli",
|
|
11616
11844
|
"pluginName": "@proletariat/cli",
|
|
11617
11845
|
"pluginType": "core",
|
|
11618
11846
|
"strict": true,
|
|
11619
|
-
"enableJsonFlag": false,
|
|
11620
11847
|
"isESM": true,
|
|
11621
11848
|
"relativePath": [
|
|
11622
11849
|
"dist",
|
|
11623
11850
|
"commands",
|
|
11624
|
-
"
|
|
11625
|
-
"
|
|
11851
|
+
"workspace",
|
|
11852
|
+
"use.js"
|
|
11626
11853
|
]
|
|
11627
11854
|
},
|
|
11628
11855
|
"work:asana": {
|
|
@@ -12387,14 +12614,6 @@
|
|
|
12387
12614
|
"<%= config.bin %> work steer TKT-001 \"Add error handling\""
|
|
12388
12615
|
],
|
|
12389
12616
|
"flags": {
|
|
12390
|
-
"project": {
|
|
12391
|
-
"char": "P",
|
|
12392
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
12393
|
-
"name": "project",
|
|
12394
|
-
"hasDynamicHelp": false,
|
|
12395
|
-
"multiple": false,
|
|
12396
|
-
"type": "option"
|
|
12397
|
-
},
|
|
12398
12617
|
"json": {
|
|
12399
12618
|
"aliases": [
|
|
12400
12619
|
"machine"
|
|
@@ -13195,7 +13414,9 @@
|
|
|
13195
13414
|
"<%= config.bin %> <%= command.id %> --from shortcut:sc-123 # Unified: Shortcut shorthand",
|
|
13196
13415
|
"<%= config.bin %> <%= command.id %> --from trello:abc123 # Unified: Trello shorthand",
|
|
13197
13416
|
"<%= config.bin %> <%= command.id %> PRLT-933 # Auto-detect: resolves via default source",
|
|
13198
|
-
"<%= config.bin %> <%= command.id %> --from-issue # Uses workspace default source"
|
|
13417
|
+
"<%= config.bin %> <%= command.id %> --from-issue # Uses workspace default source",
|
|
13418
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --review-gate auto # Ship directly, no approval needed",
|
|
13419
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --review-gate post # Ship then human reviews after"
|
|
13199
13420
|
],
|
|
13200
13421
|
"flags": {
|
|
13201
13422
|
"project": {
|
|
@@ -13427,6 +13648,18 @@
|
|
|
13427
13648
|
"allowNo": false,
|
|
13428
13649
|
"type": "boolean"
|
|
13429
13650
|
},
|
|
13651
|
+
"review-gate": {
|
|
13652
|
+
"description": "Review gate mode: required (human approves before landing), auto (ship directly), post (ship then review)",
|
|
13653
|
+
"name": "review-gate",
|
|
13654
|
+
"hasDynamicHelp": false,
|
|
13655
|
+
"multiple": false,
|
|
13656
|
+
"options": [
|
|
13657
|
+
"required",
|
|
13658
|
+
"auto",
|
|
13659
|
+
"post"
|
|
13660
|
+
],
|
|
13661
|
+
"type": "option"
|
|
13662
|
+
},
|
|
13430
13663
|
"session-action": {
|
|
13431
13664
|
"description": "Action when existing session found (attach, spawn, kill, cancel). Skips interactive menu.",
|
|
13432
13665
|
"name": "session-action",
|
|
@@ -13723,240 +13956,6 @@
|
|
|
13723
13956
|
"watch.js"
|
|
13724
13957
|
]
|
|
13725
13958
|
},
|
|
13726
|
-
"workspace:add": {
|
|
13727
|
-
"aliases": [],
|
|
13728
|
-
"args": {
|
|
13729
|
-
"path": {
|
|
13730
|
-
"description": "Path to the workspace to register",
|
|
13731
|
-
"name": "path",
|
|
13732
|
-
"required": true
|
|
13733
|
-
}
|
|
13734
|
-
},
|
|
13735
|
-
"description": "Register an existing workspace in the machine config",
|
|
13736
|
-
"examples": [
|
|
13737
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
13738
|
-
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
13739
|
-
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
13740
|
-
],
|
|
13741
|
-
"flags": {
|
|
13742
|
-
"json": {
|
|
13743
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13744
|
-
"name": "json",
|
|
13745
|
-
"allowNo": false,
|
|
13746
|
-
"type": "boolean"
|
|
13747
|
-
},
|
|
13748
|
-
"machine": {
|
|
13749
|
-
"char": "m",
|
|
13750
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13751
|
-
"name": "machine",
|
|
13752
|
-
"allowNo": false,
|
|
13753
|
-
"type": "boolean"
|
|
13754
|
-
},
|
|
13755
|
-
"name": {
|
|
13756
|
-
"char": "n",
|
|
13757
|
-
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
13758
|
-
"name": "name",
|
|
13759
|
-
"hasDynamicHelp": false,
|
|
13760
|
-
"multiple": false,
|
|
13761
|
-
"type": "option"
|
|
13762
|
-
}
|
|
13763
|
-
},
|
|
13764
|
-
"hasDynamicHelp": false,
|
|
13765
|
-
"hiddenAliases": [],
|
|
13766
|
-
"id": "workspace:add",
|
|
13767
|
-
"pluginAlias": "@proletariat/cli",
|
|
13768
|
-
"pluginName": "@proletariat/cli",
|
|
13769
|
-
"pluginType": "core",
|
|
13770
|
-
"strict": true,
|
|
13771
|
-
"enableJsonFlag": false,
|
|
13772
|
-
"isESM": true,
|
|
13773
|
-
"relativePath": [
|
|
13774
|
-
"dist",
|
|
13775
|
-
"commands",
|
|
13776
|
-
"workspace",
|
|
13777
|
-
"add.js"
|
|
13778
|
-
]
|
|
13779
|
-
},
|
|
13780
|
-
"workspace:list": {
|
|
13781
|
-
"aliases": [],
|
|
13782
|
-
"args": {},
|
|
13783
|
-
"description": "List all registered and discovered HQ workspaces",
|
|
13784
|
-
"examples": [
|
|
13785
|
-
"<%= config.bin %> <%= command.id %>",
|
|
13786
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
13787
|
-
],
|
|
13788
|
-
"flags": {
|
|
13789
|
-
"json": {
|
|
13790
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13791
|
-
"name": "json",
|
|
13792
|
-
"allowNo": false,
|
|
13793
|
-
"type": "boolean"
|
|
13794
|
-
},
|
|
13795
|
-
"machine": {
|
|
13796
|
-
"char": "m",
|
|
13797
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13798
|
-
"name": "machine",
|
|
13799
|
-
"allowNo": false,
|
|
13800
|
-
"type": "boolean"
|
|
13801
|
-
}
|
|
13802
|
-
},
|
|
13803
|
-
"hasDynamicHelp": false,
|
|
13804
|
-
"hiddenAliases": [],
|
|
13805
|
-
"id": "workspace:list",
|
|
13806
|
-
"pluginAlias": "@proletariat/cli",
|
|
13807
|
-
"pluginName": "@proletariat/cli",
|
|
13808
|
-
"pluginType": "core",
|
|
13809
|
-
"strict": true,
|
|
13810
|
-
"enableJsonFlag": false,
|
|
13811
|
-
"isESM": true,
|
|
13812
|
-
"relativePath": [
|
|
13813
|
-
"dist",
|
|
13814
|
-
"commands",
|
|
13815
|
-
"workspace",
|
|
13816
|
-
"list.js"
|
|
13817
|
-
]
|
|
13818
|
-
},
|
|
13819
|
-
"workspace:prune": {
|
|
13820
|
-
"aliases": [],
|
|
13821
|
-
"args": {},
|
|
13822
|
-
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
13823
|
-
"examples": [
|
|
13824
|
-
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
13825
|
-
"<%= config.bin %> <%= command.id %>",
|
|
13826
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
13827
|
-
],
|
|
13828
|
-
"flags": {
|
|
13829
|
-
"json": {
|
|
13830
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13831
|
-
"name": "json",
|
|
13832
|
-
"allowNo": false,
|
|
13833
|
-
"type": "boolean"
|
|
13834
|
-
},
|
|
13835
|
-
"machine": {
|
|
13836
|
-
"char": "m",
|
|
13837
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13838
|
-
"name": "machine",
|
|
13839
|
-
"allowNo": false,
|
|
13840
|
-
"type": "boolean"
|
|
13841
|
-
},
|
|
13842
|
-
"dry-run": {
|
|
13843
|
-
"char": "d",
|
|
13844
|
-
"description": "Show what would be removed without removing",
|
|
13845
|
-
"name": "dry-run",
|
|
13846
|
-
"allowNo": false,
|
|
13847
|
-
"type": "boolean"
|
|
13848
|
-
},
|
|
13849
|
-
"force": {
|
|
13850
|
-
"char": "f",
|
|
13851
|
-
"description": "Skip confirmation prompt and prune immediately",
|
|
13852
|
-
"name": "force",
|
|
13853
|
-
"allowNo": false,
|
|
13854
|
-
"type": "boolean"
|
|
13855
|
-
}
|
|
13856
|
-
},
|
|
13857
|
-
"hasDynamicHelp": false,
|
|
13858
|
-
"hiddenAliases": [],
|
|
13859
|
-
"id": "workspace:prune",
|
|
13860
|
-
"pluginAlias": "@proletariat/cli",
|
|
13861
|
-
"pluginName": "@proletariat/cli",
|
|
13862
|
-
"pluginType": "core",
|
|
13863
|
-
"strict": true,
|
|
13864
|
-
"isESM": true,
|
|
13865
|
-
"relativePath": [
|
|
13866
|
-
"dist",
|
|
13867
|
-
"commands",
|
|
13868
|
-
"workspace",
|
|
13869
|
-
"prune.js"
|
|
13870
|
-
]
|
|
13871
|
-
},
|
|
13872
|
-
"workspace:remove": {
|
|
13873
|
-
"aliases": [],
|
|
13874
|
-
"args": {
|
|
13875
|
-
"nameOrPath": {
|
|
13876
|
-
"description": "Workspace name or path to unregister",
|
|
13877
|
-
"name": "nameOrPath",
|
|
13878
|
-
"required": true
|
|
13879
|
-
}
|
|
13880
|
-
},
|
|
13881
|
-
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
13882
|
-
"examples": [
|
|
13883
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13884
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13885
|
-
],
|
|
13886
|
-
"flags": {
|
|
13887
|
-
"json": {
|
|
13888
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13889
|
-
"name": "json",
|
|
13890
|
-
"allowNo": false,
|
|
13891
|
-
"type": "boolean"
|
|
13892
|
-
},
|
|
13893
|
-
"machine": {
|
|
13894
|
-
"char": "m",
|
|
13895
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13896
|
-
"name": "machine",
|
|
13897
|
-
"allowNo": false,
|
|
13898
|
-
"type": "boolean"
|
|
13899
|
-
}
|
|
13900
|
-
},
|
|
13901
|
-
"hasDynamicHelp": false,
|
|
13902
|
-
"hiddenAliases": [],
|
|
13903
|
-
"id": "workspace:remove",
|
|
13904
|
-
"pluginAlias": "@proletariat/cli",
|
|
13905
|
-
"pluginName": "@proletariat/cli",
|
|
13906
|
-
"pluginType": "core",
|
|
13907
|
-
"strict": true,
|
|
13908
|
-
"isESM": true,
|
|
13909
|
-
"relativePath": [
|
|
13910
|
-
"dist",
|
|
13911
|
-
"commands",
|
|
13912
|
-
"workspace",
|
|
13913
|
-
"remove.js"
|
|
13914
|
-
]
|
|
13915
|
-
},
|
|
13916
|
-
"workspace:use": {
|
|
13917
|
-
"aliases": [],
|
|
13918
|
-
"args": {
|
|
13919
|
-
"nameOrPath": {
|
|
13920
|
-
"description": "Workspace name or path",
|
|
13921
|
-
"name": "nameOrPath",
|
|
13922
|
-
"required": true
|
|
13923
|
-
}
|
|
13924
|
-
},
|
|
13925
|
-
"description": "Set the active workspace",
|
|
13926
|
-
"examples": [
|
|
13927
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13928
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13929
|
-
],
|
|
13930
|
-
"flags": {
|
|
13931
|
-
"json": {
|
|
13932
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13933
|
-
"name": "json",
|
|
13934
|
-
"allowNo": false,
|
|
13935
|
-
"type": "boolean"
|
|
13936
|
-
},
|
|
13937
|
-
"machine": {
|
|
13938
|
-
"char": "m",
|
|
13939
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13940
|
-
"name": "machine",
|
|
13941
|
-
"allowNo": false,
|
|
13942
|
-
"type": "boolean"
|
|
13943
|
-
}
|
|
13944
|
-
},
|
|
13945
|
-
"hasDynamicHelp": false,
|
|
13946
|
-
"hiddenAliases": [],
|
|
13947
|
-
"id": "workspace:use",
|
|
13948
|
-
"pluginAlias": "@proletariat/cli",
|
|
13949
|
-
"pluginName": "@proletariat/cli",
|
|
13950
|
-
"pluginType": "core",
|
|
13951
|
-
"strict": true,
|
|
13952
|
-
"isESM": true,
|
|
13953
|
-
"relativePath": [
|
|
13954
|
-
"dist",
|
|
13955
|
-
"commands",
|
|
13956
|
-
"workspace",
|
|
13957
|
-
"use.js"
|
|
13958
|
-
]
|
|
13959
|
-
},
|
|
13960
13959
|
"agent:staff:add": {
|
|
13961
13960
|
"aliases": [],
|
|
13962
13961
|
"args": {
|
|
@@ -15022,5 +15021,5 @@
|
|
|
15022
15021
|
]
|
|
15023
15022
|
}
|
|
15024
15023
|
},
|
|
15025
|
-
"version": "0.3.
|
|
15024
|
+
"version": "0.3.87"
|
|
15026
15025
|
}
|