@proletariat/cli 0.3.25 → 0.3.27
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/action/index.js +2 -2
- package/dist/commands/action/show.js +7 -1
- package/dist/commands/agent/auth.js +1 -1
- package/dist/commands/agent/cleanup.js +6 -6
- package/dist/commands/agent/discover.js +1 -1
- package/dist/commands/agent/remove.js +4 -4
- package/dist/commands/autocomplete/setup.d.ts +2 -2
- package/dist/commands/autocomplete/setup.js +5 -5
- package/dist/commands/branch/create.js +31 -30
- package/dist/commands/branch/list.js +14 -11
- package/dist/commands/branch/validate.js +10 -1
- package/dist/commands/category/create.js +4 -5
- package/dist/commands/category/delete.js +2 -3
- package/dist/commands/category/rename.js +2 -3
- package/dist/commands/claude.d.ts +2 -8
- package/dist/commands/claude.js +26 -26
- package/dist/commands/commit.d.ts +2 -8
- package/dist/commands/commit.js +4 -26
- package/dist/commands/config/index.d.ts +2 -10
- package/dist/commands/config/index.js +8 -34
- package/dist/commands/docker/clean.js +7 -9
- package/dist/commands/docker/index.d.ts +2 -2
- package/dist/commands/docker/index.js +13 -12
- package/dist/commands/docker/list.d.ts +1 -0
- package/dist/commands/docker/list.js +31 -17
- package/dist/commands/docker/status.d.ts +3 -1
- package/dist/commands/docker/status.js +28 -2
- package/dist/commands/docker/sync.js +7 -6
- package/dist/commands/epic/delete.js +4 -5
- package/dist/commands/epic/list.js +17 -2
- package/dist/commands/execution/list.js +25 -17
- package/dist/commands/feedback/submit.d.ts +2 -2
- package/dist/commands/feedback/submit.js +9 -9
- package/dist/commands/link/index.js +2 -2
- package/dist/commands/pmo/init.d.ts +2 -2
- package/dist/commands/pmo/init.js +29 -10
- package/dist/commands/project/spec.js +6 -6
- package/dist/commands/repo/list.js +14 -8
- package/dist/commands/repo/view.js +2 -1
- package/dist/commands/roadmap/list.js +16 -1
- package/dist/commands/session/health.d.ts +29 -0
- package/dist/commands/session/health.js +496 -0
- package/dist/commands/session/index.js +4 -0
- package/dist/commands/session/list.js +15 -8
- package/dist/commands/spec/edit.js +2 -3
- package/dist/commands/staff/add.d.ts +2 -2
- package/dist/commands/staff/add.js +15 -14
- package/dist/commands/staff/index.js +2 -2
- package/dist/commands/staff/list.d.ts +3 -1
- package/dist/commands/staff/list.js +15 -1
- package/dist/commands/staff/remove.js +4 -4
- package/dist/commands/status/index.js +6 -7
- package/dist/commands/template/apply.js +10 -11
- package/dist/commands/template/create.js +18 -17
- package/dist/commands/template/index.d.ts +2 -2
- package/dist/commands/template/index.js +6 -6
- package/dist/commands/template/save.js +8 -7
- package/dist/commands/template/update.js +6 -7
- package/dist/commands/terminal/title.d.ts +2 -26
- package/dist/commands/terminal/title.js +4 -33
- package/dist/commands/theme/index.d.ts +2 -2
- package/dist/commands/theme/index.js +19 -18
- package/dist/commands/theme/list.d.ts +3 -0
- package/dist/commands/theme/list.js +25 -0
- package/dist/commands/theme/set.d.ts +2 -2
- package/dist/commands/theme/set.js +5 -5
- package/dist/commands/ticket/complete.js +4 -1
- package/dist/commands/ticket/create.d.ts +1 -0
- package/dist/commands/ticket/create.js +64 -16
- package/dist/commands/ticket/delete.js +18 -16
- package/dist/commands/ticket/edit.js +22 -14
- package/dist/commands/ticket/epic.js +12 -10
- package/dist/commands/ticket/list.js +24 -5
- package/dist/commands/ticket/move.js +4 -1
- package/dist/commands/ticket/project.js +11 -9
- package/dist/commands/ticket/reassign.js +23 -19
- package/dist/commands/ticket/spec.js +7 -5
- package/dist/commands/ticket/update.js +55 -53
- package/dist/commands/ticket/view.js +4 -2
- package/dist/commands/whoami.d.ts +3 -0
- package/dist/commands/whoami.js +22 -4
- package/dist/commands/work/complete.js +2 -2
- package/dist/commands/work/ready.js +9 -9
- package/dist/commands/work/revise.js +15 -13
- package/dist/commands/work/spawn.js +154 -57
- package/dist/commands/work/start.d.ts +1 -0
- package/dist/commands/work/start.js +299 -177
- package/dist/commands/workspace/prune.d.ts +3 -2
- package/dist/commands/workspace/prune.js +70 -10
- package/dist/hooks/init.js +4 -0
- package/dist/lib/agents/commands.js +4 -0
- package/dist/lib/agents/index.js +12 -0
- package/dist/lib/execution/devcontainer.d.ts +4 -0
- package/dist/lib/execution/devcontainer.js +63 -0
- package/dist/lib/mcp/helpers.d.ts +15 -0
- package/dist/lib/mcp/helpers.js +15 -0
- package/dist/lib/mcp/tools/action.js +5 -5
- package/dist/lib/mcp/tools/board.js +7 -7
- package/dist/lib/mcp/tools/category.js +5 -5
- package/dist/lib/mcp/tools/cli-passthrough.js +30 -30
- package/dist/lib/mcp/tools/epic.js +8 -8
- package/dist/lib/mcp/tools/phase.js +7 -7
- package/dist/lib/mcp/tools/project.js +10 -10
- package/dist/lib/mcp/tools/roadmap.js +7 -7
- package/dist/lib/mcp/tools/spec.js +9 -9
- package/dist/lib/mcp/tools/status.js +6 -6
- package/dist/lib/mcp/tools/template.js +6 -6
- package/dist/lib/mcp/tools/ticket.js +19 -19
- package/dist/lib/mcp/tools/view.js +4 -4
- package/dist/lib/mcp/tools/work.js +6 -6
- package/dist/lib/mcp/tools/workflow.js +5 -5
- package/dist/lib/pmo/index.js +4 -0
- package/dist/lib/pmo/storage/base.js +49 -0
- package/dist/lib/pr/index.d.ts +9 -0
- package/dist/lib/pr/index.js +101 -14
- package/dist/lib/prompt-command.d.ts +3 -0
- package/dist/lib/prompt-json.d.ts +72 -1
- package/dist/lib/prompt-json.js +46 -0
- package/dist/lib/repos/index.js +4 -0
- package/dist/lib/string-utils.d.ts +10 -0
- package/dist/lib/string-utils.js +16 -0
- package/oclif.manifest.json +594 -449
- package/package.json +3 -2
package/oclif.manifest.json
CHANGED
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"pluginName": "@proletariat/cli",
|
|
105
105
|
"pluginType": "core",
|
|
106
106
|
"strict": true,
|
|
107
|
-
"enableJsonFlag": false,
|
|
108
107
|
"isESM": true,
|
|
109
108
|
"relativePath": [
|
|
110
109
|
"dist",
|
|
@@ -211,7 +210,6 @@
|
|
|
211
210
|
"pluginName": "@proletariat/cli",
|
|
212
211
|
"pluginType": "core",
|
|
213
212
|
"strict": true,
|
|
214
|
-
"enableJsonFlag": false,
|
|
215
213
|
"isESM": true,
|
|
216
214
|
"relativePath": [
|
|
217
215
|
"dist",
|
|
@@ -324,7 +322,18 @@
|
|
|
324
322
|
"examples": [
|
|
325
323
|
"<%= config.bin %> <%= command.id %>"
|
|
326
324
|
],
|
|
327
|
-
"flags": {
|
|
325
|
+
"flags": {
|
|
326
|
+
"json": {
|
|
327
|
+
"aliases": [
|
|
328
|
+
"machine"
|
|
329
|
+
],
|
|
330
|
+
"char": "m",
|
|
331
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
332
|
+
"name": "json",
|
|
333
|
+
"allowNo": false,
|
|
334
|
+
"type": "boolean"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
328
337
|
"hasDynamicHelp": false,
|
|
329
338
|
"hiddenAliases": [],
|
|
330
339
|
"id": "whoami",
|
|
@@ -885,7 +894,7 @@
|
|
|
885
894
|
"machine"
|
|
886
895
|
],
|
|
887
896
|
"char": "m",
|
|
888
|
-
"description": "Output as JSON
|
|
897
|
+
"description": "Output status as JSON",
|
|
889
898
|
"name": "json",
|
|
890
899
|
"allowNo": false,
|
|
891
900
|
"type": "boolean"
|
|
@@ -1023,7 +1032,7 @@
|
|
|
1023
1032
|
"machine"
|
|
1024
1033
|
],
|
|
1025
1034
|
"char": "m",
|
|
1026
|
-
"description": "Output as JSON
|
|
1035
|
+
"description": "Output discovery results as JSON",
|
|
1027
1036
|
"name": "json",
|
|
1028
1037
|
"allowNo": false,
|
|
1029
1038
|
"type": "boolean"
|
|
@@ -1561,7 +1570,6 @@
|
|
|
1561
1570
|
"pluginName": "@proletariat/cli",
|
|
1562
1571
|
"pluginType": "core",
|
|
1563
1572
|
"strict": true,
|
|
1564
|
-
"enableJsonFlag": false,
|
|
1565
1573
|
"isESM": true,
|
|
1566
1574
|
"relativePath": [
|
|
1567
1575
|
"dist",
|
|
@@ -2462,7 +2470,6 @@
|
|
|
2462
2470
|
"pluginName": "@proletariat/cli",
|
|
2463
2471
|
"pluginType": "core",
|
|
2464
2472
|
"strict": true,
|
|
2465
|
-
"enableJsonFlag": false,
|
|
2466
2473
|
"isESM": true,
|
|
2467
2474
|
"relativePath": [
|
|
2468
2475
|
"dist",
|
|
@@ -2569,7 +2576,6 @@
|
|
|
2569
2576
|
"pluginName": "@proletariat/cli",
|
|
2570
2577
|
"pluginType": "core",
|
|
2571
2578
|
"strict": true,
|
|
2572
|
-
"enableJsonFlag": false,
|
|
2573
2579
|
"isESM": true,
|
|
2574
2580
|
"relativePath": [
|
|
2575
2581
|
"dist",
|
|
@@ -2588,6 +2594,16 @@
|
|
|
2588
2594
|
"<%= config.bin %> <%= command.id %> --running"
|
|
2589
2595
|
],
|
|
2590
2596
|
"flags": {
|
|
2597
|
+
"json": {
|
|
2598
|
+
"aliases": [
|
|
2599
|
+
"machine"
|
|
2600
|
+
],
|
|
2601
|
+
"char": "m",
|
|
2602
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2603
|
+
"name": "json",
|
|
2604
|
+
"allowNo": false,
|
|
2605
|
+
"type": "boolean"
|
|
2606
|
+
},
|
|
2591
2607
|
"all": {
|
|
2592
2608
|
"char": "a",
|
|
2593
2609
|
"description": "Show all containers (including non-devcontainer)",
|
|
@@ -2913,7 +2929,18 @@
|
|
|
2913
2929
|
"examples": [
|
|
2914
2930
|
"<%= config.bin %> <%= command.id %>"
|
|
2915
2931
|
],
|
|
2916
|
-
"flags": {
|
|
2932
|
+
"flags": {
|
|
2933
|
+
"json": {
|
|
2934
|
+
"aliases": [
|
|
2935
|
+
"machine"
|
|
2936
|
+
],
|
|
2937
|
+
"char": "m",
|
|
2938
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2939
|
+
"name": "json",
|
|
2940
|
+
"allowNo": false,
|
|
2941
|
+
"type": "boolean"
|
|
2942
|
+
}
|
|
2943
|
+
},
|
|
2917
2944
|
"hasDynamicHelp": false,
|
|
2918
2945
|
"hiddenAliases": [],
|
|
2919
2946
|
"id": "docker:status",
|
|
@@ -4499,7 +4526,6 @@
|
|
|
4499
4526
|
"pluginName": "@proletariat/cli",
|
|
4500
4527
|
"pluginType": "core",
|
|
4501
4528
|
"strict": true,
|
|
4502
|
-
"enableJsonFlag": false,
|
|
4503
4529
|
"isESM": true,
|
|
4504
4530
|
"relativePath": [
|
|
4505
4531
|
"dist",
|
|
@@ -4946,6 +4972,92 @@
|
|
|
4946
4972
|
"remove.js"
|
|
4947
4973
|
]
|
|
4948
4974
|
},
|
|
4975
|
+
"pmo:init": {
|
|
4976
|
+
"aliases": [],
|
|
4977
|
+
"args": {},
|
|
4978
|
+
"description": "Initialize PMO (Project Management Org) in current directory or HQ",
|
|
4979
|
+
"examples": [
|
|
4980
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4981
|
+
"<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
|
|
4982
|
+
"<%= config.bin %> <%= command.id %> --location separate --template linear"
|
|
4983
|
+
],
|
|
4984
|
+
"flags": {
|
|
4985
|
+
"location": {
|
|
4986
|
+
"char": "l",
|
|
4987
|
+
"description": "PMO location (separate or repo:name)",
|
|
4988
|
+
"name": "location",
|
|
4989
|
+
"hasDynamicHelp": false,
|
|
4990
|
+
"multiple": false,
|
|
4991
|
+
"type": "option"
|
|
4992
|
+
},
|
|
4993
|
+
"template": {
|
|
4994
|
+
"char": "t",
|
|
4995
|
+
"description": "Board template",
|
|
4996
|
+
"name": "template",
|
|
4997
|
+
"hasDynamicHelp": false,
|
|
4998
|
+
"multiple": false,
|
|
4999
|
+
"options": [
|
|
5000
|
+
"kanban",
|
|
5001
|
+
"linear",
|
|
5002
|
+
"5-tool-founder",
|
|
5003
|
+
"custom"
|
|
5004
|
+
],
|
|
5005
|
+
"type": "option"
|
|
5006
|
+
},
|
|
5007
|
+
"name": {
|
|
5008
|
+
"char": "n",
|
|
5009
|
+
"description": "Board name",
|
|
5010
|
+
"name": "name",
|
|
5011
|
+
"hasDynamicHelp": false,
|
|
5012
|
+
"multiple": false,
|
|
5013
|
+
"type": "option"
|
|
5014
|
+
},
|
|
5015
|
+
"json": {
|
|
5016
|
+
"aliases": [
|
|
5017
|
+
"machine"
|
|
5018
|
+
],
|
|
5019
|
+
"char": "m",
|
|
5020
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
5021
|
+
"name": "json",
|
|
5022
|
+
"allowNo": false,
|
|
5023
|
+
"type": "boolean"
|
|
5024
|
+
},
|
|
5025
|
+
"action": {
|
|
5026
|
+
"description": "Action for existing PMO (cancel or reinitialize)",
|
|
5027
|
+
"hidden": true,
|
|
5028
|
+
"name": "action",
|
|
5029
|
+
"hasDynamicHelp": false,
|
|
5030
|
+
"multiple": false,
|
|
5031
|
+
"options": [
|
|
5032
|
+
"cancel",
|
|
5033
|
+
"reinitialize"
|
|
5034
|
+
],
|
|
5035
|
+
"type": "option"
|
|
5036
|
+
},
|
|
5037
|
+
"confirmation": {
|
|
5038
|
+
"description": "Confirmation text for destructive operations",
|
|
5039
|
+
"hidden": true,
|
|
5040
|
+
"name": "confirmation",
|
|
5041
|
+
"hasDynamicHelp": false,
|
|
5042
|
+
"multiple": false,
|
|
5043
|
+
"type": "option"
|
|
5044
|
+
}
|
|
5045
|
+
},
|
|
5046
|
+
"hasDynamicHelp": false,
|
|
5047
|
+
"hiddenAliases": [],
|
|
5048
|
+
"id": "pmo:init",
|
|
5049
|
+
"pluginAlias": "@proletariat/cli",
|
|
5050
|
+
"pluginName": "@proletariat/cli",
|
|
5051
|
+
"pluginType": "core",
|
|
5052
|
+
"strict": true,
|
|
5053
|
+
"isESM": true,
|
|
5054
|
+
"relativePath": [
|
|
5055
|
+
"dist",
|
|
5056
|
+
"commands",
|
|
5057
|
+
"pmo",
|
|
5058
|
+
"init.js"
|
|
5059
|
+
]
|
|
5060
|
+
},
|
|
4949
5061
|
"phase:create": {
|
|
4950
5062
|
"aliases": [],
|
|
4951
5063
|
"args": {
|
|
@@ -6605,42 +6717,26 @@
|
|
|
6605
6717
|
"view.js"
|
|
6606
6718
|
]
|
|
6607
6719
|
},
|
|
6608
|
-
"
|
|
6720
|
+
"session:attach": {
|
|
6609
6721
|
"aliases": [],
|
|
6610
|
-
"args": {
|
|
6611
|
-
|
|
6722
|
+
"args": {
|
|
6723
|
+
"session": {
|
|
6724
|
+
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
6725
|
+
"name": "session",
|
|
6726
|
+
"required": false
|
|
6727
|
+
}
|
|
6728
|
+
},
|
|
6729
|
+
"description": "Attach to an active tmux session",
|
|
6612
6730
|
"examples": [
|
|
6613
6731
|
"<%= config.bin %> <%= command.id %>",
|
|
6614
|
-
"<%= config.bin %> <%= command.id %>
|
|
6615
|
-
"<%= config.bin %> <%= command.id %> --
|
|
6732
|
+
"<%= config.bin %> <%= command.id %> TKT-347-implement-altman",
|
|
6733
|
+
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
6616
6734
|
],
|
|
6617
6735
|
"flags": {
|
|
6618
|
-
"
|
|
6619
|
-
"char": "
|
|
6620
|
-
"description": "
|
|
6621
|
-
"name": "
|
|
6622
|
-
"hasDynamicHelp": false,
|
|
6623
|
-
"multiple": false,
|
|
6624
|
-
"type": "option"
|
|
6625
|
-
},
|
|
6626
|
-
"template": {
|
|
6627
|
-
"char": "t",
|
|
6628
|
-
"description": "Board template",
|
|
6629
|
-
"name": "template",
|
|
6630
|
-
"hasDynamicHelp": false,
|
|
6631
|
-
"multiple": false,
|
|
6632
|
-
"options": [
|
|
6633
|
-
"kanban",
|
|
6634
|
-
"linear",
|
|
6635
|
-
"5-tool-founder",
|
|
6636
|
-
"custom"
|
|
6637
|
-
],
|
|
6638
|
-
"type": "option"
|
|
6639
|
-
},
|
|
6640
|
-
"name": {
|
|
6641
|
-
"char": "n",
|
|
6642
|
-
"description": "Board name",
|
|
6643
|
-
"name": "name",
|
|
6736
|
+
"project": {
|
|
6737
|
+
"char": "P",
|
|
6738
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6739
|
+
"name": "project",
|
|
6644
6740
|
"hasDynamicHelp": false,
|
|
6645
6741
|
"multiple": false,
|
|
6646
6742
|
"type": "option"
|
|
@@ -6655,22 +6751,25 @@
|
|
|
6655
6751
|
"allowNo": false,
|
|
6656
6752
|
"type": "boolean"
|
|
6657
6753
|
},
|
|
6658
|
-
"
|
|
6659
|
-
"
|
|
6660
|
-
"
|
|
6661
|
-
"name": "
|
|
6662
|
-
"
|
|
6663
|
-
"
|
|
6664
|
-
"options": [
|
|
6665
|
-
"cancel",
|
|
6666
|
-
"reinitialize"
|
|
6667
|
-
],
|
|
6668
|
-
"type": "option"
|
|
6754
|
+
"new-tab": {
|
|
6755
|
+
"char": "n",
|
|
6756
|
+
"description": "Open in a new terminal tab (default: true)",
|
|
6757
|
+
"name": "new-tab",
|
|
6758
|
+
"allowNo": false,
|
|
6759
|
+
"type": "boolean"
|
|
6669
6760
|
},
|
|
6670
|
-
"
|
|
6671
|
-
"
|
|
6672
|
-
"
|
|
6673
|
-
"name": "
|
|
6761
|
+
"current-terminal": {
|
|
6762
|
+
"char": "c",
|
|
6763
|
+
"description": "Attach in current terminal instead of new tab",
|
|
6764
|
+
"name": "current-terminal",
|
|
6765
|
+
"allowNo": false,
|
|
6766
|
+
"type": "boolean"
|
|
6767
|
+
},
|
|
6768
|
+
"terminal": {
|
|
6769
|
+
"char": "t",
|
|
6770
|
+
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
6771
|
+
"name": "terminal",
|
|
6772
|
+
"default": "iTerm",
|
|
6674
6773
|
"hasDynamicHelp": false,
|
|
6675
6774
|
"multiple": false,
|
|
6676
6775
|
"type": "option"
|
|
@@ -6678,39 +6777,28 @@
|
|
|
6678
6777
|
},
|
|
6679
6778
|
"hasDynamicHelp": false,
|
|
6680
6779
|
"hiddenAliases": [],
|
|
6681
|
-
"id": "
|
|
6780
|
+
"id": "session:attach",
|
|
6682
6781
|
"pluginAlias": "@proletariat/cli",
|
|
6683
6782
|
"pluginName": "@proletariat/cli",
|
|
6684
6783
|
"pluginType": "core",
|
|
6685
6784
|
"strict": true,
|
|
6686
|
-
"enableJsonFlag": false,
|
|
6687
6785
|
"isESM": true,
|
|
6688
6786
|
"relativePath": [
|
|
6689
6787
|
"dist",
|
|
6690
6788
|
"commands",
|
|
6691
|
-
"
|
|
6692
|
-
"
|
|
6789
|
+
"session",
|
|
6790
|
+
"attach.js"
|
|
6693
6791
|
]
|
|
6694
6792
|
},
|
|
6695
|
-
"
|
|
6793
|
+
"session:health": {
|
|
6696
6794
|
"aliases": [],
|
|
6697
|
-
"args": {
|
|
6698
|
-
|
|
6699
|
-
"description": "Roadmap ID",
|
|
6700
|
-
"name": "roadmap",
|
|
6701
|
-
"required": false
|
|
6702
|
-
},
|
|
6703
|
-
"project": {
|
|
6704
|
-
"description": "Project ID to add",
|
|
6705
|
-
"name": "project",
|
|
6706
|
-
"required": false
|
|
6707
|
-
}
|
|
6708
|
-
},
|
|
6709
|
-
"description": "Add a project to a roadmap",
|
|
6795
|
+
"args": {},
|
|
6796
|
+
"description": "Check health of running agent sessions and detect/recover hung agents",
|
|
6710
6797
|
"examples": [
|
|
6711
|
-
"<%= config.bin %>
|
|
6712
|
-
"<%= config.bin %>
|
|
6713
|
-
"<%= config.bin %>
|
|
6798
|
+
"<%= config.bin %> session health",
|
|
6799
|
+
"<%= config.bin %> session health --fix",
|
|
6800
|
+
"<%= config.bin %> session health --watch",
|
|
6801
|
+
"<%= config.bin %> session health --watch --interval 3 --threshold 5"
|
|
6714
6802
|
],
|
|
6715
6803
|
"flags": {
|
|
6716
6804
|
"project": {
|
|
@@ -6726,15 +6814,192 @@
|
|
|
6726
6814
|
"machine"
|
|
6727
6815
|
],
|
|
6728
6816
|
"char": "m",
|
|
6729
|
-
"description": "Output
|
|
6817
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6730
6818
|
"name": "json",
|
|
6731
6819
|
"allowNo": false,
|
|
6732
6820
|
"type": "boolean"
|
|
6733
6821
|
},
|
|
6734
|
-
"
|
|
6735
|
-
"
|
|
6736
|
-
"
|
|
6737
|
-
"
|
|
6822
|
+
"fix": {
|
|
6823
|
+
"description": "Send Escape to hung agents to unstick them",
|
|
6824
|
+
"name": "fix",
|
|
6825
|
+
"allowNo": false,
|
|
6826
|
+
"type": "boolean"
|
|
6827
|
+
},
|
|
6828
|
+
"watch": {
|
|
6829
|
+
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
6830
|
+
"name": "watch",
|
|
6831
|
+
"allowNo": false,
|
|
6832
|
+
"type": "boolean"
|
|
6833
|
+
},
|
|
6834
|
+
"interval": {
|
|
6835
|
+
"description": "Watch polling interval in minutes",
|
|
6836
|
+
"name": "interval",
|
|
6837
|
+
"default": 5,
|
|
6838
|
+
"hasDynamicHelp": false,
|
|
6839
|
+
"multiple": false,
|
|
6840
|
+
"type": "option"
|
|
6841
|
+
},
|
|
6842
|
+
"threshold": {
|
|
6843
|
+
"description": "Minutes an agent must be hung before auto-recovery in watch mode",
|
|
6844
|
+
"name": "threshold",
|
|
6845
|
+
"default": 10,
|
|
6846
|
+
"hasDynamicHelp": false,
|
|
6847
|
+
"multiple": false,
|
|
6848
|
+
"type": "option"
|
|
6849
|
+
}
|
|
6850
|
+
},
|
|
6851
|
+
"hasDynamicHelp": false,
|
|
6852
|
+
"hiddenAliases": [],
|
|
6853
|
+
"id": "session:health",
|
|
6854
|
+
"pluginAlias": "@proletariat/cli",
|
|
6855
|
+
"pluginName": "@proletariat/cli",
|
|
6856
|
+
"pluginType": "core",
|
|
6857
|
+
"strict": true,
|
|
6858
|
+
"isESM": true,
|
|
6859
|
+
"relativePath": [
|
|
6860
|
+
"dist",
|
|
6861
|
+
"commands",
|
|
6862
|
+
"session",
|
|
6863
|
+
"health.js"
|
|
6864
|
+
]
|
|
6865
|
+
},
|
|
6866
|
+
"session": {
|
|
6867
|
+
"aliases": [],
|
|
6868
|
+
"args": {},
|
|
6869
|
+
"description": "Manage agent tmux sessions (list, attach, detach)",
|
|
6870
|
+
"examples": [
|
|
6871
|
+
"<%= config.bin %> <%= command.id %>",
|
|
6872
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
6873
|
+
"<%= config.bin %> <%= command.id %> attach TKT-347-implement"
|
|
6874
|
+
],
|
|
6875
|
+
"flags": {
|
|
6876
|
+
"project": {
|
|
6877
|
+
"char": "P",
|
|
6878
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6879
|
+
"name": "project",
|
|
6880
|
+
"hasDynamicHelp": false,
|
|
6881
|
+
"multiple": false,
|
|
6882
|
+
"type": "option"
|
|
6883
|
+
},
|
|
6884
|
+
"json": {
|
|
6885
|
+
"aliases": [
|
|
6886
|
+
"machine"
|
|
6887
|
+
],
|
|
6888
|
+
"char": "m",
|
|
6889
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
6890
|
+
"name": "json",
|
|
6891
|
+
"allowNo": false,
|
|
6892
|
+
"type": "boolean"
|
|
6893
|
+
}
|
|
6894
|
+
},
|
|
6895
|
+
"hasDynamicHelp": false,
|
|
6896
|
+
"hiddenAliases": [],
|
|
6897
|
+
"id": "session",
|
|
6898
|
+
"pluginAlias": "@proletariat/cli",
|
|
6899
|
+
"pluginName": "@proletariat/cli",
|
|
6900
|
+
"pluginType": "core",
|
|
6901
|
+
"strict": true,
|
|
6902
|
+
"isESM": true,
|
|
6903
|
+
"relativePath": [
|
|
6904
|
+
"dist",
|
|
6905
|
+
"commands",
|
|
6906
|
+
"session",
|
|
6907
|
+
"index.js"
|
|
6908
|
+
]
|
|
6909
|
+
},
|
|
6910
|
+
"session:list": {
|
|
6911
|
+
"aliases": [],
|
|
6912
|
+
"args": {},
|
|
6913
|
+
"description": "List active tmux sessions (host and container)",
|
|
6914
|
+
"examples": [
|
|
6915
|
+
"<%= config.bin %> <%= command.id %>",
|
|
6916
|
+
"<%= config.bin %> <%= command.id %> --all"
|
|
6917
|
+
],
|
|
6918
|
+
"flags": {
|
|
6919
|
+
"project": {
|
|
6920
|
+
"char": "P",
|
|
6921
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6922
|
+
"name": "project",
|
|
6923
|
+
"hasDynamicHelp": false,
|
|
6924
|
+
"multiple": false,
|
|
6925
|
+
"type": "option"
|
|
6926
|
+
},
|
|
6927
|
+
"json": {
|
|
6928
|
+
"aliases": [
|
|
6929
|
+
"machine"
|
|
6930
|
+
],
|
|
6931
|
+
"char": "m",
|
|
6932
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6933
|
+
"name": "json",
|
|
6934
|
+
"allowNo": false,
|
|
6935
|
+
"type": "boolean"
|
|
6936
|
+
},
|
|
6937
|
+
"all": {
|
|
6938
|
+
"char": "a",
|
|
6939
|
+
"description": "Show all sessions including stale DB records",
|
|
6940
|
+
"name": "all",
|
|
6941
|
+
"allowNo": false,
|
|
6942
|
+
"type": "boolean"
|
|
6943
|
+
}
|
|
6944
|
+
},
|
|
6945
|
+
"hasDynamicHelp": false,
|
|
6946
|
+
"hiddenAliases": [],
|
|
6947
|
+
"id": "session:list",
|
|
6948
|
+
"pluginAlias": "@proletariat/cli",
|
|
6949
|
+
"pluginName": "@proletariat/cli",
|
|
6950
|
+
"pluginType": "core",
|
|
6951
|
+
"strict": true,
|
|
6952
|
+
"isESM": true,
|
|
6953
|
+
"relativePath": [
|
|
6954
|
+
"dist",
|
|
6955
|
+
"commands",
|
|
6956
|
+
"session",
|
|
6957
|
+
"list.js"
|
|
6958
|
+
]
|
|
6959
|
+
},
|
|
6960
|
+
"roadmap:add-project": {
|
|
6961
|
+
"aliases": [],
|
|
6962
|
+
"args": {
|
|
6963
|
+
"roadmap": {
|
|
6964
|
+
"description": "Roadmap ID",
|
|
6965
|
+
"name": "roadmap",
|
|
6966
|
+
"required": false
|
|
6967
|
+
},
|
|
6968
|
+
"project": {
|
|
6969
|
+
"description": "Project ID to add",
|
|
6970
|
+
"name": "project",
|
|
6971
|
+
"required": false
|
|
6972
|
+
}
|
|
6973
|
+
},
|
|
6974
|
+
"description": "Add a project to a roadmap",
|
|
6975
|
+
"examples": [
|
|
6976
|
+
"<%= config.bin %> <%= command.id %> my-roadmap my-project",
|
|
6977
|
+
"<%= config.bin %> <%= command.id %> my-roadmap # Interactive project selection",
|
|
6978
|
+
"<%= config.bin %> <%= command.id %> # Interactive selection for both"
|
|
6979
|
+
],
|
|
6980
|
+
"flags": {
|
|
6981
|
+
"project": {
|
|
6982
|
+
"char": "P",
|
|
6983
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6984
|
+
"name": "project",
|
|
6985
|
+
"hasDynamicHelp": false,
|
|
6986
|
+
"multiple": false,
|
|
6987
|
+
"type": "option"
|
|
6988
|
+
},
|
|
6989
|
+
"json": {
|
|
6990
|
+
"aliases": [
|
|
6991
|
+
"machine"
|
|
6992
|
+
],
|
|
6993
|
+
"char": "m",
|
|
6994
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
6995
|
+
"name": "json",
|
|
6996
|
+
"allowNo": false,
|
|
6997
|
+
"type": "boolean"
|
|
6998
|
+
},
|
|
6999
|
+
"position": {
|
|
7000
|
+
"char": "p",
|
|
7001
|
+
"description": "Position in the roadmap (0-indexed)",
|
|
7002
|
+
"name": "position",
|
|
6738
7003
|
"hasDynamicHelp": false,
|
|
6739
7004
|
"multiple": false,
|
|
6740
7005
|
"type": "option"
|
|
@@ -7293,26 +7558,33 @@
|
|
|
7293
7558
|
"view.js"
|
|
7294
7559
|
]
|
|
7295
7560
|
},
|
|
7296
|
-
"
|
|
7561
|
+
"staff:add": {
|
|
7297
7562
|
"aliases": [],
|
|
7298
7563
|
"args": {
|
|
7299
|
-
"
|
|
7300
|
-
"description": "
|
|
7301
|
-
"name": "
|
|
7564
|
+
"names": {
|
|
7565
|
+
"description": "Agent names to add (space-separated)",
|
|
7566
|
+
"name": "names",
|
|
7302
7567
|
"required": false
|
|
7303
7568
|
}
|
|
7304
7569
|
},
|
|
7305
|
-
"description": "
|
|
7570
|
+
"description": "Add new agents to the workspace",
|
|
7306
7571
|
"examples": [
|
|
7307
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7308
|
-
"<%= config.bin %> <%= command.id %>
|
|
7309
|
-
"<%= config.bin %> <%= command.id %> --
|
|
7572
|
+
"<%= config.bin %> <%= command.id %> zeus",
|
|
7573
|
+
"<%= config.bin %> <%= command.id %> agent-1 agent-2",
|
|
7574
|
+
"<%= config.bin %> <%= command.id %> --theme billionaires",
|
|
7575
|
+
"<%= config.bin %> <%= command.id %> my-agent --no-container"
|
|
7310
7576
|
],
|
|
7311
7577
|
"flags": {
|
|
7312
|
-
"
|
|
7313
|
-
"
|
|
7314
|
-
"
|
|
7315
|
-
"
|
|
7578
|
+
"no-container": {
|
|
7579
|
+
"description": "Skip devcontainer setup (not recommended for autonomous agents)",
|
|
7580
|
+
"name": "no-container",
|
|
7581
|
+
"allowNo": false,
|
|
7582
|
+
"type": "boolean"
|
|
7583
|
+
},
|
|
7584
|
+
"theme": {
|
|
7585
|
+
"char": "t",
|
|
7586
|
+
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
7587
|
+
"name": "theme",
|
|
7316
7588
|
"hasDynamicHelp": false,
|
|
7317
7589
|
"multiple": false,
|
|
7318
7590
|
"type": "option"
|
|
@@ -7322,58 +7594,41 @@
|
|
|
7322
7594
|
"machine"
|
|
7323
7595
|
],
|
|
7324
7596
|
"char": "m",
|
|
7325
|
-
"description": "Output
|
|
7597
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7326
7598
|
"name": "json",
|
|
7327
7599
|
"allowNo": false,
|
|
7328
7600
|
"type": "boolean"
|
|
7329
7601
|
},
|
|
7330
|
-
"
|
|
7331
|
-
"
|
|
7332
|
-
"
|
|
7333
|
-
"name": "new-tab",
|
|
7334
|
-
"allowNo": false,
|
|
7335
|
-
"type": "boolean"
|
|
7336
|
-
},
|
|
7337
|
-
"current-terminal": {
|
|
7338
|
-
"char": "c",
|
|
7339
|
-
"description": "Attach in current terminal instead of new tab",
|
|
7340
|
-
"name": "current-terminal",
|
|
7602
|
+
"clone": {
|
|
7603
|
+
"description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
|
|
7604
|
+
"name": "clone",
|
|
7341
7605
|
"allowNo": false,
|
|
7342
7606
|
"type": "boolean"
|
|
7343
|
-
},
|
|
7344
|
-
"terminal": {
|
|
7345
|
-
"char": "t",
|
|
7346
|
-
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7347
|
-
"name": "terminal",
|
|
7348
|
-
"default": "iTerm",
|
|
7349
|
-
"hasDynamicHelp": false,
|
|
7350
|
-
"multiple": false,
|
|
7351
|
-
"type": "option"
|
|
7352
7607
|
}
|
|
7353
7608
|
},
|
|
7354
7609
|
"hasDynamicHelp": false,
|
|
7355
7610
|
"hiddenAliases": [],
|
|
7356
|
-
"id": "
|
|
7611
|
+
"id": "staff:add",
|
|
7357
7612
|
"pluginAlias": "@proletariat/cli",
|
|
7358
7613
|
"pluginName": "@proletariat/cli",
|
|
7359
7614
|
"pluginType": "core",
|
|
7360
|
-
"strict":
|
|
7615
|
+
"strict": false,
|
|
7361
7616
|
"isESM": true,
|
|
7362
7617
|
"relativePath": [
|
|
7363
7618
|
"dist",
|
|
7364
7619
|
"commands",
|
|
7365
|
-
"
|
|
7366
|
-
"
|
|
7620
|
+
"staff",
|
|
7621
|
+
"add.js"
|
|
7367
7622
|
]
|
|
7368
7623
|
},
|
|
7369
|
-
"
|
|
7624
|
+
"staff": {
|
|
7370
7625
|
"aliases": [],
|
|
7371
7626
|
"args": {},
|
|
7372
|
-
"description": "Manage
|
|
7627
|
+
"description": "Manage staff (persistent) agents",
|
|
7373
7628
|
"examples": [
|
|
7374
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7375
7629
|
"<%= config.bin %> <%= command.id %> list",
|
|
7376
|
-
"<%= config.bin %> <%= command.id %>
|
|
7630
|
+
"<%= config.bin %> <%= command.id %> add",
|
|
7631
|
+
"<%= config.bin %> <%= command.id %> remove camry"
|
|
7377
7632
|
],
|
|
7378
7633
|
"flags": {
|
|
7379
7634
|
"project": {
|
|
@@ -7393,11 +7648,17 @@
|
|
|
7393
7648
|
"name": "json",
|
|
7394
7649
|
"allowNo": false,
|
|
7395
7650
|
"type": "boolean"
|
|
7651
|
+
},
|
|
7652
|
+
"no-interactive": {
|
|
7653
|
+
"description": "Alias for --json flag",
|
|
7654
|
+
"name": "no-interactive",
|
|
7655
|
+
"allowNo": false,
|
|
7656
|
+
"type": "boolean"
|
|
7396
7657
|
}
|
|
7397
7658
|
},
|
|
7398
7659
|
"hasDynamicHelp": false,
|
|
7399
7660
|
"hiddenAliases": [],
|
|
7400
|
-
"id": "
|
|
7661
|
+
"id": "staff",
|
|
7401
7662
|
"pluginAlias": "@proletariat/cli",
|
|
7402
7663
|
"pluginName": "@proletariat/cli",
|
|
7403
7664
|
"pluginType": "core",
|
|
@@ -7406,17 +7667,58 @@
|
|
|
7406
7667
|
"relativePath": [
|
|
7407
7668
|
"dist",
|
|
7408
7669
|
"commands",
|
|
7409
|
-
"
|
|
7670
|
+
"staff",
|
|
7410
7671
|
"index.js"
|
|
7411
7672
|
]
|
|
7412
7673
|
},
|
|
7413
|
-
"
|
|
7674
|
+
"staff:list": {
|
|
7414
7675
|
"aliases": [],
|
|
7415
7676
|
"args": {},
|
|
7416
|
-
"description": "List
|
|
7677
|
+
"description": "List all staff (persistent) agents and their status",
|
|
7417
7678
|
"examples": [
|
|
7418
|
-
"<%= config.bin %> <%= command.id %>"
|
|
7419
|
-
|
|
7679
|
+
"<%= config.bin %> <%= command.id %>"
|
|
7680
|
+
],
|
|
7681
|
+
"flags": {
|
|
7682
|
+
"json": {
|
|
7683
|
+
"aliases": [
|
|
7684
|
+
"machine"
|
|
7685
|
+
],
|
|
7686
|
+
"char": "m",
|
|
7687
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7688
|
+
"name": "json",
|
|
7689
|
+
"allowNo": false,
|
|
7690
|
+
"type": "boolean"
|
|
7691
|
+
}
|
|
7692
|
+
},
|
|
7693
|
+
"hasDynamicHelp": false,
|
|
7694
|
+
"hiddenAliases": [],
|
|
7695
|
+
"id": "staff:list",
|
|
7696
|
+
"pluginAlias": "@proletariat/cli",
|
|
7697
|
+
"pluginName": "@proletariat/cli",
|
|
7698
|
+
"pluginType": "core",
|
|
7699
|
+
"strict": true,
|
|
7700
|
+
"enableJsonFlag": false,
|
|
7701
|
+
"isESM": true,
|
|
7702
|
+
"relativePath": [
|
|
7703
|
+
"dist",
|
|
7704
|
+
"commands",
|
|
7705
|
+
"staff",
|
|
7706
|
+
"list.js"
|
|
7707
|
+
]
|
|
7708
|
+
},
|
|
7709
|
+
"staff:remove": {
|
|
7710
|
+
"aliases": [],
|
|
7711
|
+
"args": {
|
|
7712
|
+
"name": {
|
|
7713
|
+
"description": "Agent name to remove",
|
|
7714
|
+
"name": "name",
|
|
7715
|
+
"required": false
|
|
7716
|
+
}
|
|
7717
|
+
},
|
|
7718
|
+
"description": "Remove a specific agent from the workspace",
|
|
7719
|
+
"examples": [
|
|
7720
|
+
"<%= config.bin %> <%= command.id %> camry",
|
|
7721
|
+
"<%= config.bin %> <%= command.id %>"
|
|
7420
7722
|
],
|
|
7421
7723
|
"flags": {
|
|
7422
7724
|
"project": {
|
|
@@ -7432,22 +7734,22 @@
|
|
|
7432
7734
|
"machine"
|
|
7433
7735
|
],
|
|
7434
7736
|
"char": "m",
|
|
7435
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7737
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
7436
7738
|
"name": "json",
|
|
7437
7739
|
"allowNo": false,
|
|
7438
7740
|
"type": "boolean"
|
|
7439
7741
|
},
|
|
7440
|
-
"
|
|
7441
|
-
"char": "
|
|
7442
|
-
"description": "
|
|
7443
|
-
"name": "
|
|
7742
|
+
"force": {
|
|
7743
|
+
"char": "f",
|
|
7744
|
+
"description": "Skip confirmation prompt (for non-interactive use)",
|
|
7745
|
+
"name": "force",
|
|
7444
7746
|
"allowNo": false,
|
|
7445
7747
|
"type": "boolean"
|
|
7446
7748
|
}
|
|
7447
7749
|
},
|
|
7448
7750
|
"hasDynamicHelp": false,
|
|
7449
7751
|
"hiddenAliases": [],
|
|
7450
|
-
"id": "
|
|
7752
|
+
"id": "staff:remove",
|
|
7451
7753
|
"pluginAlias": "@proletariat/cli",
|
|
7452
7754
|
"pluginName": "@proletariat/cli",
|
|
7453
7755
|
"pluginType": "core",
|
|
@@ -7456,8 +7758,8 @@
|
|
|
7456
7758
|
"relativePath": [
|
|
7457
7759
|
"dist",
|
|
7458
7760
|
"commands",
|
|
7459
|
-
"
|
|
7460
|
-
"
|
|
7761
|
+
"staff",
|
|
7762
|
+
"remove.js"
|
|
7461
7763
|
]
|
|
7462
7764
|
},
|
|
7463
7765
|
"spec:create": {
|
|
@@ -7919,221 +8221,33 @@
|
|
|
7919
8221
|
"pluginAlias": "@proletariat/cli",
|
|
7920
8222
|
"pluginName": "@proletariat/cli",
|
|
7921
8223
|
"pluginType": "core",
|
|
7922
|
-
"strict": true,
|
|
7923
|
-
"isESM": true,
|
|
7924
|
-
"relativePath": [
|
|
7925
|
-
"dist",
|
|
7926
|
-
"commands",
|
|
7927
|
-
"spec",
|
|
7928
|
-
"plan.js"
|
|
7929
|
-
]
|
|
7930
|
-
},
|
|
7931
|
-
"spec:ticket": {
|
|
7932
|
-
"aliases": [],
|
|
7933
|
-
"args": {
|
|
7934
|
-
"ticketId": {
|
|
7935
|
-
"description": "Ticket ID",
|
|
7936
|
-
"name": "ticketId",
|
|
7937
|
-
"required": false
|
|
7938
|
-
},
|
|
7939
|
-
"specId": {
|
|
7940
|
-
"description": "Spec ID (filename without .md)",
|
|
7941
|
-
"name": "specId",
|
|
7942
|
-
"required": false
|
|
7943
|
-
}
|
|
7944
|
-
},
|
|
7945
|
-
"description": "Assign a ticket to a spec document",
|
|
7946
|
-
"examples": [
|
|
7947
|
-
"<%= config.bin %> <%= command.id %> PRLT-001 user-authentication",
|
|
7948
|
-
"<%= config.bin %> <%= command.id %> --ticket PRLT-001 --spec api-design"
|
|
7949
|
-
],
|
|
7950
|
-
"flags": {
|
|
7951
|
-
"project": {
|
|
7952
|
-
"char": "P",
|
|
7953
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7954
|
-
"name": "project",
|
|
7955
|
-
"hasDynamicHelp": false,
|
|
7956
|
-
"multiple": false,
|
|
7957
|
-
"type": "option"
|
|
7958
|
-
},
|
|
7959
|
-
"json": {
|
|
7960
|
-
"aliases": [
|
|
7961
|
-
"machine"
|
|
7962
|
-
],
|
|
7963
|
-
"char": "m",
|
|
7964
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7965
|
-
"name": "json",
|
|
7966
|
-
"allowNo": false,
|
|
7967
|
-
"type": "boolean"
|
|
7968
|
-
},
|
|
7969
|
-
"ticket": {
|
|
7970
|
-
"char": "t",
|
|
7971
|
-
"description": "Ticket ID",
|
|
7972
|
-
"name": "ticket",
|
|
7973
|
-
"hasDynamicHelp": false,
|
|
7974
|
-
"multiple": false,
|
|
7975
|
-
"type": "option"
|
|
7976
|
-
},
|
|
7977
|
-
"spec": {
|
|
7978
|
-
"char": "s",
|
|
7979
|
-
"description": "Spec ID (filename without .md)",
|
|
7980
|
-
"name": "spec",
|
|
7981
|
-
"hasDynamicHelp": false,
|
|
7982
|
-
"multiple": false,
|
|
7983
|
-
"type": "option"
|
|
7984
|
-
}
|
|
7985
|
-
},
|
|
7986
|
-
"hasDynamicHelp": false,
|
|
7987
|
-
"hiddenAliases": [],
|
|
7988
|
-
"id": "spec:ticket",
|
|
7989
|
-
"pluginAlias": "@proletariat/cli",
|
|
7990
|
-
"pluginName": "@proletariat/cli",
|
|
7991
|
-
"pluginType": "core",
|
|
7992
|
-
"strict": true,
|
|
7993
|
-
"isESM": true,
|
|
7994
|
-
"relativePath": [
|
|
7995
|
-
"dist",
|
|
7996
|
-
"commands",
|
|
7997
|
-
"spec",
|
|
7998
|
-
"ticket.js"
|
|
7999
|
-
]
|
|
8000
|
-
},
|
|
8001
|
-
"spec:view": {
|
|
8002
|
-
"aliases": [],
|
|
8003
|
-
"args": {
|
|
8004
|
-
"spec": {
|
|
8005
|
-
"description": "Spec ID",
|
|
8006
|
-
"name": "spec",
|
|
8007
|
-
"required": false
|
|
8008
|
-
}
|
|
8009
|
-
},
|
|
8010
|
-
"description": "View a spec and its linked tickets",
|
|
8011
|
-
"examples": [
|
|
8012
|
-
"<%= config.bin %> <%= command.id %> user-authentication",
|
|
8013
|
-
"<%= config.bin %> <%= command.id %> --spec api-design"
|
|
8014
|
-
],
|
|
8015
|
-
"flags": {
|
|
8016
|
-
"project": {
|
|
8017
|
-
"char": "P",
|
|
8018
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8019
|
-
"name": "project",
|
|
8020
|
-
"hasDynamicHelp": false,
|
|
8021
|
-
"multiple": false,
|
|
8022
|
-
"type": "option"
|
|
8023
|
-
},
|
|
8024
|
-
"json": {
|
|
8025
|
-
"aliases": [
|
|
8026
|
-
"machine"
|
|
8027
|
-
],
|
|
8028
|
-
"char": "m",
|
|
8029
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8030
|
-
"name": "json",
|
|
8031
|
-
"allowNo": false,
|
|
8032
|
-
"type": "boolean"
|
|
8033
|
-
},
|
|
8034
|
-
"spec": {
|
|
8035
|
-
"char": "s",
|
|
8036
|
-
"description": "Spec ID",
|
|
8037
|
-
"name": "spec",
|
|
8038
|
-
"hasDynamicHelp": false,
|
|
8039
|
-
"multiple": false,
|
|
8040
|
-
"type": "option"
|
|
8041
|
-
},
|
|
8042
|
-
"full": {
|
|
8043
|
-
"char": "f",
|
|
8044
|
-
"description": "Show all spec sections",
|
|
8045
|
-
"name": "full",
|
|
8046
|
-
"allowNo": false,
|
|
8047
|
-
"type": "boolean"
|
|
8048
|
-
}
|
|
8049
|
-
},
|
|
8050
|
-
"hasDynamicHelp": false,
|
|
8051
|
-
"hiddenAliases": [],
|
|
8052
|
-
"id": "spec:view",
|
|
8053
|
-
"pluginAlias": "@proletariat/cli",
|
|
8054
|
-
"pluginName": "@proletariat/cli",
|
|
8055
|
-
"pluginType": "core",
|
|
8056
|
-
"strict": true,
|
|
8057
|
-
"isESM": true,
|
|
8058
|
-
"relativePath": [
|
|
8059
|
-
"dist",
|
|
8060
|
-
"commands",
|
|
8061
|
-
"spec",
|
|
8062
|
-
"view.js"
|
|
8063
|
-
]
|
|
8064
|
-
},
|
|
8065
|
-
"staff:add": {
|
|
8066
|
-
"aliases": [],
|
|
8067
|
-
"args": {
|
|
8068
|
-
"names": {
|
|
8069
|
-
"description": "Agent names to add (space-separated)",
|
|
8070
|
-
"name": "names",
|
|
8071
|
-
"required": false
|
|
8072
|
-
}
|
|
8073
|
-
},
|
|
8074
|
-
"description": "Add new agents to the workspace",
|
|
8075
|
-
"examples": [
|
|
8076
|
-
"<%= config.bin %> <%= command.id %> zeus",
|
|
8077
|
-
"<%= config.bin %> <%= command.id %> agent-1 agent-2",
|
|
8078
|
-
"<%= config.bin %> <%= command.id %> --theme billionaires",
|
|
8079
|
-
"<%= config.bin %> <%= command.id %> my-agent --no-container"
|
|
8080
|
-
],
|
|
8081
|
-
"flags": {
|
|
8082
|
-
"no-container": {
|
|
8083
|
-
"description": "Skip devcontainer setup (not recommended for autonomous agents)",
|
|
8084
|
-
"name": "no-container",
|
|
8085
|
-
"allowNo": false,
|
|
8086
|
-
"type": "boolean"
|
|
8087
|
-
},
|
|
8088
|
-
"theme": {
|
|
8089
|
-
"char": "t",
|
|
8090
|
-
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
8091
|
-
"name": "theme",
|
|
8092
|
-
"hasDynamicHelp": false,
|
|
8093
|
-
"multiple": false,
|
|
8094
|
-
"type": "option"
|
|
8095
|
-
},
|
|
8096
|
-
"json": {
|
|
8097
|
-
"aliases": [
|
|
8098
|
-
"machine"
|
|
8099
|
-
],
|
|
8100
|
-
"char": "m",
|
|
8101
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8102
|
-
"name": "json",
|
|
8103
|
-
"allowNo": false,
|
|
8104
|
-
"type": "boolean"
|
|
8105
|
-
},
|
|
8106
|
-
"clone": {
|
|
8107
|
-
"description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
|
|
8108
|
-
"name": "clone",
|
|
8109
|
-
"allowNo": false,
|
|
8110
|
-
"type": "boolean"
|
|
8111
|
-
}
|
|
8112
|
-
},
|
|
8113
|
-
"hasDynamicHelp": false,
|
|
8114
|
-
"hiddenAliases": [],
|
|
8115
|
-
"id": "staff:add",
|
|
8116
|
-
"pluginAlias": "@proletariat/cli",
|
|
8117
|
-
"pluginName": "@proletariat/cli",
|
|
8118
|
-
"pluginType": "core",
|
|
8119
|
-
"strict": false,
|
|
8120
|
-
"enableJsonFlag": false,
|
|
8224
|
+
"strict": true,
|
|
8121
8225
|
"isESM": true,
|
|
8122
8226
|
"relativePath": [
|
|
8123
8227
|
"dist",
|
|
8124
8228
|
"commands",
|
|
8125
|
-
"
|
|
8126
|
-
"
|
|
8229
|
+
"spec",
|
|
8230
|
+
"plan.js"
|
|
8127
8231
|
]
|
|
8128
8232
|
},
|
|
8129
|
-
"
|
|
8233
|
+
"spec:ticket": {
|
|
8130
8234
|
"aliases": [],
|
|
8131
|
-
"args": {
|
|
8132
|
-
|
|
8235
|
+
"args": {
|
|
8236
|
+
"ticketId": {
|
|
8237
|
+
"description": "Ticket ID",
|
|
8238
|
+
"name": "ticketId",
|
|
8239
|
+
"required": false
|
|
8240
|
+
},
|
|
8241
|
+
"specId": {
|
|
8242
|
+
"description": "Spec ID (filename without .md)",
|
|
8243
|
+
"name": "specId",
|
|
8244
|
+
"required": false
|
|
8245
|
+
}
|
|
8246
|
+
},
|
|
8247
|
+
"description": "Assign a ticket to a spec document",
|
|
8133
8248
|
"examples": [
|
|
8134
|
-
"<%= config.bin %> <%= command.id %>
|
|
8135
|
-
"<%= config.bin %> <%= command.id %>
|
|
8136
|
-
"<%= config.bin %> <%= command.id %> remove camry"
|
|
8249
|
+
"<%= config.bin %> <%= command.id %> PRLT-001 user-authentication",
|
|
8250
|
+
"<%= config.bin %> <%= command.id %> --ticket PRLT-001 --spec api-design"
|
|
8137
8251
|
],
|
|
8138
8252
|
"flags": {
|
|
8139
8253
|
"project": {
|
|
@@ -8149,70 +8263,56 @@
|
|
|
8149
8263
|
"machine"
|
|
8150
8264
|
],
|
|
8151
8265
|
"char": "m",
|
|
8152
|
-
"description": "Output
|
|
8266
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8153
8267
|
"name": "json",
|
|
8154
8268
|
"allowNo": false,
|
|
8155
8269
|
"type": "boolean"
|
|
8156
8270
|
},
|
|
8157
|
-
"
|
|
8158
|
-
"
|
|
8159
|
-
"
|
|
8160
|
-
"
|
|
8161
|
-
"
|
|
8271
|
+
"ticket": {
|
|
8272
|
+
"char": "t",
|
|
8273
|
+
"description": "Ticket ID",
|
|
8274
|
+
"name": "ticket",
|
|
8275
|
+
"hasDynamicHelp": false,
|
|
8276
|
+
"multiple": false,
|
|
8277
|
+
"type": "option"
|
|
8278
|
+
},
|
|
8279
|
+
"spec": {
|
|
8280
|
+
"char": "s",
|
|
8281
|
+
"description": "Spec ID (filename without .md)",
|
|
8282
|
+
"name": "spec",
|
|
8283
|
+
"hasDynamicHelp": false,
|
|
8284
|
+
"multiple": false,
|
|
8285
|
+
"type": "option"
|
|
8162
8286
|
}
|
|
8163
8287
|
},
|
|
8164
8288
|
"hasDynamicHelp": false,
|
|
8165
8289
|
"hiddenAliases": [],
|
|
8166
|
-
"id": "
|
|
8167
|
-
"pluginAlias": "@proletariat/cli",
|
|
8168
|
-
"pluginName": "@proletariat/cli",
|
|
8169
|
-
"pluginType": "core",
|
|
8170
|
-
"strict": true,
|
|
8171
|
-
"isESM": true,
|
|
8172
|
-
"relativePath": [
|
|
8173
|
-
"dist",
|
|
8174
|
-
"commands",
|
|
8175
|
-
"staff",
|
|
8176
|
-
"index.js"
|
|
8177
|
-
]
|
|
8178
|
-
},
|
|
8179
|
-
"staff:list": {
|
|
8180
|
-
"aliases": [],
|
|
8181
|
-
"args": {},
|
|
8182
|
-
"description": "List all staff (persistent) agents and their status",
|
|
8183
|
-
"examples": [
|
|
8184
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8185
|
-
],
|
|
8186
|
-
"flags": {},
|
|
8187
|
-
"hasDynamicHelp": false,
|
|
8188
|
-
"hiddenAliases": [],
|
|
8189
|
-
"id": "staff:list",
|
|
8290
|
+
"id": "spec:ticket",
|
|
8190
8291
|
"pluginAlias": "@proletariat/cli",
|
|
8191
8292
|
"pluginName": "@proletariat/cli",
|
|
8192
8293
|
"pluginType": "core",
|
|
8193
8294
|
"strict": true,
|
|
8194
|
-
"enableJsonFlag": false,
|
|
8195
8295
|
"isESM": true,
|
|
8196
8296
|
"relativePath": [
|
|
8197
8297
|
"dist",
|
|
8198
8298
|
"commands",
|
|
8199
|
-
"
|
|
8200
|
-
"
|
|
8299
|
+
"spec",
|
|
8300
|
+
"ticket.js"
|
|
8201
8301
|
]
|
|
8202
8302
|
},
|
|
8203
|
-
"
|
|
8303
|
+
"spec:view": {
|
|
8204
8304
|
"aliases": [],
|
|
8205
8305
|
"args": {
|
|
8206
|
-
"
|
|
8207
|
-
"description": "
|
|
8208
|
-
"name": "
|
|
8306
|
+
"spec": {
|
|
8307
|
+
"description": "Spec ID",
|
|
8308
|
+
"name": "spec",
|
|
8209
8309
|
"required": false
|
|
8210
8310
|
}
|
|
8211
8311
|
},
|
|
8212
|
-
"description": "
|
|
8312
|
+
"description": "View a spec and its linked tickets",
|
|
8213
8313
|
"examples": [
|
|
8214
|
-
"<%= config.bin %> <%= command.id %>
|
|
8215
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8314
|
+
"<%= config.bin %> <%= command.id %> user-authentication",
|
|
8315
|
+
"<%= config.bin %> <%= command.id %> --spec api-design"
|
|
8216
8316
|
],
|
|
8217
8317
|
"flags": {
|
|
8218
8318
|
"project": {
|
|
@@ -8228,22 +8328,30 @@
|
|
|
8228
8328
|
"machine"
|
|
8229
8329
|
],
|
|
8230
8330
|
"char": "m",
|
|
8231
|
-
"description": "Output
|
|
8331
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8232
8332
|
"name": "json",
|
|
8233
8333
|
"allowNo": false,
|
|
8234
8334
|
"type": "boolean"
|
|
8235
8335
|
},
|
|
8236
|
-
"
|
|
8336
|
+
"spec": {
|
|
8337
|
+
"char": "s",
|
|
8338
|
+
"description": "Spec ID",
|
|
8339
|
+
"name": "spec",
|
|
8340
|
+
"hasDynamicHelp": false,
|
|
8341
|
+
"multiple": false,
|
|
8342
|
+
"type": "option"
|
|
8343
|
+
},
|
|
8344
|
+
"full": {
|
|
8237
8345
|
"char": "f",
|
|
8238
|
-
"description": "
|
|
8239
|
-
"name": "
|
|
8346
|
+
"description": "Show all spec sections",
|
|
8347
|
+
"name": "full",
|
|
8240
8348
|
"allowNo": false,
|
|
8241
8349
|
"type": "boolean"
|
|
8242
8350
|
}
|
|
8243
8351
|
},
|
|
8244
8352
|
"hasDynamicHelp": false,
|
|
8245
8353
|
"hiddenAliases": [],
|
|
8246
|
-
"id": "
|
|
8354
|
+
"id": "spec:view",
|
|
8247
8355
|
"pluginAlias": "@proletariat/cli",
|
|
8248
8356
|
"pluginName": "@proletariat/cli",
|
|
8249
8357
|
"pluginType": "core",
|
|
@@ -8252,8 +8360,8 @@
|
|
|
8252
8360
|
"relativePath": [
|
|
8253
8361
|
"dist",
|
|
8254
8362
|
"commands",
|
|
8255
|
-
"
|
|
8256
|
-
"
|
|
8363
|
+
"spec",
|
|
8364
|
+
"view.js"
|
|
8257
8365
|
]
|
|
8258
8366
|
},
|
|
8259
8367
|
"support:book": {
|
|
@@ -8954,6 +9062,56 @@
|
|
|
8954
9062
|
"update.js"
|
|
8955
9063
|
]
|
|
8956
9064
|
},
|
|
9065
|
+
"terminal:title": {
|
|
9066
|
+
"aliases": [],
|
|
9067
|
+
"args": {
|
|
9068
|
+
"title": {
|
|
9069
|
+
"description": "Title to set for the terminal tab/window",
|
|
9070
|
+
"name": "title",
|
|
9071
|
+
"required": false
|
|
9072
|
+
}
|
|
9073
|
+
},
|
|
9074
|
+
"description": "Set the terminal tab/window title",
|
|
9075
|
+
"examples": [
|
|
9076
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
9077
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
9078
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
9079
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9080
|
+
],
|
|
9081
|
+
"flags": {
|
|
9082
|
+
"reset": {
|
|
9083
|
+
"char": "r",
|
|
9084
|
+
"description": "Reset terminal title to default",
|
|
9085
|
+
"name": "reset",
|
|
9086
|
+
"allowNo": false,
|
|
9087
|
+
"type": "boolean"
|
|
9088
|
+
},
|
|
9089
|
+
"json": {
|
|
9090
|
+
"aliases": [
|
|
9091
|
+
"machine"
|
|
9092
|
+
],
|
|
9093
|
+
"char": "m",
|
|
9094
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9095
|
+
"name": "json",
|
|
9096
|
+
"allowNo": false,
|
|
9097
|
+
"type": "boolean"
|
|
9098
|
+
}
|
|
9099
|
+
},
|
|
9100
|
+
"hasDynamicHelp": false,
|
|
9101
|
+
"hiddenAliases": [],
|
|
9102
|
+
"id": "terminal:title",
|
|
9103
|
+
"pluginAlias": "@proletariat/cli",
|
|
9104
|
+
"pluginName": "@proletariat/cli",
|
|
9105
|
+
"pluginType": "core",
|
|
9106
|
+
"strict": true,
|
|
9107
|
+
"isESM": true,
|
|
9108
|
+
"relativePath": [
|
|
9109
|
+
"dist",
|
|
9110
|
+
"commands",
|
|
9111
|
+
"terminal",
|
|
9112
|
+
"title.js"
|
|
9113
|
+
]
|
|
9114
|
+
},
|
|
8957
9115
|
"template:apply": {
|
|
8958
9116
|
"aliases": [],
|
|
8959
9117
|
"args": {
|
|
@@ -9343,7 +9501,6 @@
|
|
|
9343
9501
|
"pluginName": "@proletariat/cli",
|
|
9344
9502
|
"pluginType": "core",
|
|
9345
9503
|
"strict": true,
|
|
9346
|
-
"enableJsonFlag": false,
|
|
9347
9504
|
"isESM": true,
|
|
9348
9505
|
"relativePath": [
|
|
9349
9506
|
"dist",
|
|
@@ -9563,57 +9720,6 @@
|
|
|
9563
9720
|
"update.js"
|
|
9564
9721
|
]
|
|
9565
9722
|
},
|
|
9566
|
-
"terminal:title": {
|
|
9567
|
-
"aliases": [],
|
|
9568
|
-
"args": {
|
|
9569
|
-
"title": {
|
|
9570
|
-
"description": "Title to set for the terminal tab/window",
|
|
9571
|
-
"name": "title",
|
|
9572
|
-
"required": false
|
|
9573
|
-
}
|
|
9574
|
-
},
|
|
9575
|
-
"description": "Set the terminal tab/window title",
|
|
9576
|
-
"examples": [
|
|
9577
|
-
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
9578
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
9579
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
9580
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9581
|
-
],
|
|
9582
|
-
"flags": {
|
|
9583
|
-
"reset": {
|
|
9584
|
-
"char": "r",
|
|
9585
|
-
"description": "Reset terminal title to default",
|
|
9586
|
-
"name": "reset",
|
|
9587
|
-
"allowNo": false,
|
|
9588
|
-
"type": "boolean"
|
|
9589
|
-
},
|
|
9590
|
-
"json": {
|
|
9591
|
-
"aliases": [
|
|
9592
|
-
"machine"
|
|
9593
|
-
],
|
|
9594
|
-
"char": "m",
|
|
9595
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9596
|
-
"name": "json",
|
|
9597
|
-
"allowNo": false,
|
|
9598
|
-
"type": "boolean"
|
|
9599
|
-
}
|
|
9600
|
-
},
|
|
9601
|
-
"hasDynamicHelp": false,
|
|
9602
|
-
"hiddenAliases": [],
|
|
9603
|
-
"id": "terminal:title",
|
|
9604
|
-
"pluginAlias": "@proletariat/cli",
|
|
9605
|
-
"pluginName": "@proletariat/cli",
|
|
9606
|
-
"pluginType": "core",
|
|
9607
|
-
"strict": true,
|
|
9608
|
-
"enableJsonFlag": false,
|
|
9609
|
-
"isESM": true,
|
|
9610
|
-
"relativePath": [
|
|
9611
|
-
"dist",
|
|
9612
|
-
"commands",
|
|
9613
|
-
"terminal",
|
|
9614
|
-
"title.js"
|
|
9615
|
-
]
|
|
9616
|
-
},
|
|
9617
9723
|
"theme:add-names": {
|
|
9618
9724
|
"aliases": [],
|
|
9619
9725
|
"args": {
|
|
@@ -9726,7 +9832,6 @@
|
|
|
9726
9832
|
"pluginName": "@proletariat/cli",
|
|
9727
9833
|
"pluginType": "core",
|
|
9728
9834
|
"strict": true,
|
|
9729
|
-
"enableJsonFlag": false,
|
|
9730
9835
|
"isESM": true,
|
|
9731
9836
|
"relativePath": [
|
|
9732
9837
|
"dist",
|
|
@@ -9742,7 +9847,18 @@
|
|
|
9742
9847
|
"examples": [
|
|
9743
9848
|
"<%= config.bin %> <%= command.id %>"
|
|
9744
9849
|
],
|
|
9745
|
-
"flags": {
|
|
9850
|
+
"flags": {
|
|
9851
|
+
"json": {
|
|
9852
|
+
"aliases": [
|
|
9853
|
+
"machine"
|
|
9854
|
+
],
|
|
9855
|
+
"char": "m",
|
|
9856
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9857
|
+
"name": "json",
|
|
9858
|
+
"allowNo": false,
|
|
9859
|
+
"type": "boolean"
|
|
9860
|
+
}
|
|
9861
|
+
},
|
|
9746
9862
|
"hasDynamicHelp": false,
|
|
9747
9863
|
"hiddenAliases": [],
|
|
9748
9864
|
"id": "theme:list",
|
|
@@ -9792,7 +9908,6 @@
|
|
|
9792
9908
|
"pluginName": "@proletariat/cli",
|
|
9793
9909
|
"pluginType": "core",
|
|
9794
9910
|
"strict": true,
|
|
9795
|
-
"enableJsonFlag": false,
|
|
9796
9911
|
"isESM": true,
|
|
9797
9912
|
"relativePath": [
|
|
9798
9913
|
"dist",
|
|
@@ -10568,6 +10683,13 @@
|
|
|
10568
10683
|
"name": "clone",
|
|
10569
10684
|
"allowNo": false,
|
|
10570
10685
|
"type": "boolean"
|
|
10686
|
+
},
|
|
10687
|
+
"yes": {
|
|
10688
|
+
"char": "y",
|
|
10689
|
+
"description": "Skip confirmation prompt (for non-TTY/scripted execution)",
|
|
10690
|
+
"name": "yes",
|
|
10691
|
+
"allowNo": false,
|
|
10692
|
+
"type": "boolean"
|
|
10571
10693
|
}
|
|
10572
10694
|
},
|
|
10573
10695
|
"hasDynamicHelp": false,
|
|
@@ -10868,6 +10990,8 @@
|
|
|
10868
10990
|
"<%= config.bin %> <%= command.id %> -t \"Add feature\" -c \"In Progress\" -p P1",
|
|
10869
10991
|
"<%= config.bin %> <%= command.id %> --project mobile-app -t \"New feature\"",
|
|
10870
10992
|
"<%= config.bin %> <%= command.id %> --epic EPIC-001 -t \"Implement auth flow\"",
|
|
10993
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file ./ticket-desc.md",
|
|
10994
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file - # Read from stdin",
|
|
10871
10995
|
"<%= config.bin %> <%= command.id %> --json # Output column choices as JSON",
|
|
10872
10996
|
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating"
|
|
10873
10997
|
],
|
|
@@ -10935,6 +11059,17 @@
|
|
|
10935
11059
|
"multiple": false,
|
|
10936
11060
|
"type": "option"
|
|
10937
11061
|
},
|
|
11062
|
+
"description-file": {
|
|
11063
|
+
"char": "D",
|
|
11064
|
+
"description": "Path to a markdown file for the ticket description (use - for stdin)",
|
|
11065
|
+
"exclusive": [
|
|
11066
|
+
"description"
|
|
11067
|
+
],
|
|
11068
|
+
"name": "description-file",
|
|
11069
|
+
"hasDynamicHelp": false,
|
|
11070
|
+
"multiple": false,
|
|
11071
|
+
"type": "option"
|
|
11072
|
+
},
|
|
10938
11073
|
"id": {
|
|
10939
11074
|
"description": "Custom ticket ID (auto-generated if not provided)",
|
|
10940
11075
|
"name": "id",
|
|
@@ -10966,6 +11101,9 @@
|
|
|
10966
11101
|
"type": "option"
|
|
10967
11102
|
},
|
|
10968
11103
|
"labels": {
|
|
11104
|
+
"aliases": [
|
|
11105
|
+
"label"
|
|
11106
|
+
],
|
|
10969
11107
|
"char": "l",
|
|
10970
11108
|
"description": "Labels (comma-separated)",
|
|
10971
11109
|
"name": "labels",
|
|
@@ -12427,7 +12565,8 @@
|
|
|
12427
12565
|
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
12428
12566
|
"examples": [
|
|
12429
12567
|
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
12430
|
-
"<%= config.bin %> <%= command.id %>"
|
|
12568
|
+
"<%= config.bin %> <%= command.id %>",
|
|
12569
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
12431
12570
|
],
|
|
12432
12571
|
"flags": {
|
|
12433
12572
|
"dry-run": {
|
|
@@ -12437,6 +12576,13 @@
|
|
|
12437
12576
|
"allowNo": false,
|
|
12438
12577
|
"type": "boolean"
|
|
12439
12578
|
},
|
|
12579
|
+
"force": {
|
|
12580
|
+
"char": "f",
|
|
12581
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
12582
|
+
"name": "force",
|
|
12583
|
+
"allowNo": false,
|
|
12584
|
+
"type": "boolean"
|
|
12585
|
+
},
|
|
12440
12586
|
"json": {
|
|
12441
12587
|
"description": "Output as JSON",
|
|
12442
12588
|
"name": "json",
|
|
@@ -12451,7 +12597,6 @@
|
|
|
12451
12597
|
"pluginName": "@proletariat/cli",
|
|
12452
12598
|
"pluginType": "core",
|
|
12453
12599
|
"strict": true,
|
|
12454
|
-
"enableJsonFlag": false,
|
|
12455
12600
|
"isESM": true,
|
|
12456
12601
|
"relativePath": [
|
|
12457
12602
|
"dist",
|
|
@@ -12543,5 +12688,5 @@
|
|
|
12543
12688
|
]
|
|
12544
12689
|
}
|
|
12545
12690
|
},
|
|
12546
|
-
"version": "0.3.
|
|
12691
|
+
"version": "0.3.27"
|
|
12547
12692
|
}
|