@proletariat/cli 0.3.82 → 0.3.84
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/pr/merge.d.ts +9 -0
- package/dist/commands/pr/merge.js +78 -48
- package/dist/commands/pr/merge.js.map +1 -1
- package/dist/commands/ticket/update.d.ts +9 -0
- package/dist/commands/ticket/update.js +174 -71
- package/dist/commands/ticket/update.js.map +1 -1
- package/dist/lib/database/drizzle-schema.d.ts +301 -0
- package/dist/lib/database/drizzle-schema.js +22 -0
- package/dist/lib/database/drizzle-schema.js.map +1 -1
- package/dist/lib/database/index.d.ts +3 -0
- package/dist/lib/database/index.js +556 -345
- package/dist/lib/database/index.js.map +1 -1
- package/dist/lib/telemetry/analytics.d.ts +5 -5
- package/dist/lib/telemetry/analytics.js +113 -28
- package/dist/lib/telemetry/analytics.js.map +1 -1
- package/oclif.manifest.json +769 -726
- package/package.json +3 -2
package/oclif.manifest.json
CHANGED
|
@@ -5519,95 +5519,6 @@
|
|
|
5519
5519
|
"sync.js"
|
|
5520
5520
|
]
|
|
5521
5521
|
},
|
|
5522
|
-
"pmo:init": {
|
|
5523
|
-
"aliases": [],
|
|
5524
|
-
"args": {},
|
|
5525
|
-
"description": "Initialize PMO (Project Management Org) in current directory or HQ",
|
|
5526
|
-
"examples": [
|
|
5527
|
-
"<%= config.bin %> <%= command.id %>",
|
|
5528
|
-
"<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
|
|
5529
|
-
"<%= config.bin %> <%= command.id %> --location separate --template linear"
|
|
5530
|
-
],
|
|
5531
|
-
"flags": {
|
|
5532
|
-
"location": {
|
|
5533
|
-
"char": "l",
|
|
5534
|
-
"description": "PMO location (separate or repo:name)",
|
|
5535
|
-
"name": "location",
|
|
5536
|
-
"hasDynamicHelp": false,
|
|
5537
|
-
"multiple": false,
|
|
5538
|
-
"type": "option"
|
|
5539
|
-
},
|
|
5540
|
-
"template": {
|
|
5541
|
-
"char": "t",
|
|
5542
|
-
"description": "Board template",
|
|
5543
|
-
"name": "template",
|
|
5544
|
-
"hasDynamicHelp": false,
|
|
5545
|
-
"multiple": false,
|
|
5546
|
-
"options": [
|
|
5547
|
-
"kanban",
|
|
5548
|
-
"linear",
|
|
5549
|
-
"5-tool-founder",
|
|
5550
|
-
"custom"
|
|
5551
|
-
],
|
|
5552
|
-
"type": "option"
|
|
5553
|
-
},
|
|
5554
|
-
"name": {
|
|
5555
|
-
"char": "n",
|
|
5556
|
-
"description": "Board name",
|
|
5557
|
-
"name": "name",
|
|
5558
|
-
"hasDynamicHelp": false,
|
|
5559
|
-
"multiple": false,
|
|
5560
|
-
"type": "option"
|
|
5561
|
-
},
|
|
5562
|
-
"json": {
|
|
5563
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5564
|
-
"name": "json",
|
|
5565
|
-
"allowNo": false,
|
|
5566
|
-
"type": "boolean"
|
|
5567
|
-
},
|
|
5568
|
-
"machine": {
|
|
5569
|
-
"char": "m",
|
|
5570
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5571
|
-
"name": "machine",
|
|
5572
|
-
"allowNo": false,
|
|
5573
|
-
"type": "boolean"
|
|
5574
|
-
},
|
|
5575
|
-
"action": {
|
|
5576
|
-
"description": "Action for existing PMO (cancel or reinitialize)",
|
|
5577
|
-
"hidden": true,
|
|
5578
|
-
"name": "action",
|
|
5579
|
-
"hasDynamicHelp": false,
|
|
5580
|
-
"multiple": false,
|
|
5581
|
-
"options": [
|
|
5582
|
-
"cancel",
|
|
5583
|
-
"reinitialize"
|
|
5584
|
-
],
|
|
5585
|
-
"type": "option"
|
|
5586
|
-
},
|
|
5587
|
-
"confirmation": {
|
|
5588
|
-
"description": "Confirmation text for destructive operations",
|
|
5589
|
-
"hidden": true,
|
|
5590
|
-
"name": "confirmation",
|
|
5591
|
-
"hasDynamicHelp": false,
|
|
5592
|
-
"multiple": false,
|
|
5593
|
-
"type": "option"
|
|
5594
|
-
}
|
|
5595
|
-
},
|
|
5596
|
-
"hasDynamicHelp": false,
|
|
5597
|
-
"hiddenAliases": [],
|
|
5598
|
-
"id": "pmo:init",
|
|
5599
|
-
"pluginAlias": "@proletariat/cli",
|
|
5600
|
-
"pluginName": "@proletariat/cli",
|
|
5601
|
-
"pluginType": "core",
|
|
5602
|
-
"strict": true,
|
|
5603
|
-
"isESM": true,
|
|
5604
|
-
"relativePath": [
|
|
5605
|
-
"dist",
|
|
5606
|
-
"commands",
|
|
5607
|
-
"pmo",
|
|
5608
|
-
"init.js"
|
|
5609
|
-
]
|
|
5610
|
-
},
|
|
5611
5522
|
"orchestrator:attach": {
|
|
5612
5523
|
"aliases": [],
|
|
5613
5524
|
"args": {},
|
|
@@ -5979,6 +5890,95 @@
|
|
|
5979
5890
|
"stop.js"
|
|
5980
5891
|
]
|
|
5981
5892
|
},
|
|
5893
|
+
"pmo:init": {
|
|
5894
|
+
"aliases": [],
|
|
5895
|
+
"args": {},
|
|
5896
|
+
"description": "Initialize PMO (Project Management Org) in current directory or HQ",
|
|
5897
|
+
"examples": [
|
|
5898
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5899
|
+
"<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
|
|
5900
|
+
"<%= config.bin %> <%= command.id %> --location separate --template linear"
|
|
5901
|
+
],
|
|
5902
|
+
"flags": {
|
|
5903
|
+
"location": {
|
|
5904
|
+
"char": "l",
|
|
5905
|
+
"description": "PMO location (separate or repo:name)",
|
|
5906
|
+
"name": "location",
|
|
5907
|
+
"hasDynamicHelp": false,
|
|
5908
|
+
"multiple": false,
|
|
5909
|
+
"type": "option"
|
|
5910
|
+
},
|
|
5911
|
+
"template": {
|
|
5912
|
+
"char": "t",
|
|
5913
|
+
"description": "Board template",
|
|
5914
|
+
"name": "template",
|
|
5915
|
+
"hasDynamicHelp": false,
|
|
5916
|
+
"multiple": false,
|
|
5917
|
+
"options": [
|
|
5918
|
+
"kanban",
|
|
5919
|
+
"linear",
|
|
5920
|
+
"5-tool-founder",
|
|
5921
|
+
"custom"
|
|
5922
|
+
],
|
|
5923
|
+
"type": "option"
|
|
5924
|
+
},
|
|
5925
|
+
"name": {
|
|
5926
|
+
"char": "n",
|
|
5927
|
+
"description": "Board name",
|
|
5928
|
+
"name": "name",
|
|
5929
|
+
"hasDynamicHelp": false,
|
|
5930
|
+
"multiple": false,
|
|
5931
|
+
"type": "option"
|
|
5932
|
+
},
|
|
5933
|
+
"json": {
|
|
5934
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5935
|
+
"name": "json",
|
|
5936
|
+
"allowNo": false,
|
|
5937
|
+
"type": "boolean"
|
|
5938
|
+
},
|
|
5939
|
+
"machine": {
|
|
5940
|
+
"char": "m",
|
|
5941
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5942
|
+
"name": "machine",
|
|
5943
|
+
"allowNo": false,
|
|
5944
|
+
"type": "boolean"
|
|
5945
|
+
},
|
|
5946
|
+
"action": {
|
|
5947
|
+
"description": "Action for existing PMO (cancel or reinitialize)",
|
|
5948
|
+
"hidden": true,
|
|
5949
|
+
"name": "action",
|
|
5950
|
+
"hasDynamicHelp": false,
|
|
5951
|
+
"multiple": false,
|
|
5952
|
+
"options": [
|
|
5953
|
+
"cancel",
|
|
5954
|
+
"reinitialize"
|
|
5955
|
+
],
|
|
5956
|
+
"type": "option"
|
|
5957
|
+
},
|
|
5958
|
+
"confirmation": {
|
|
5959
|
+
"description": "Confirmation text for destructive operations",
|
|
5960
|
+
"hidden": true,
|
|
5961
|
+
"name": "confirmation",
|
|
5962
|
+
"hasDynamicHelp": false,
|
|
5963
|
+
"multiple": false,
|
|
5964
|
+
"type": "option"
|
|
5965
|
+
}
|
|
5966
|
+
},
|
|
5967
|
+
"hasDynamicHelp": false,
|
|
5968
|
+
"hiddenAliases": [],
|
|
5969
|
+
"id": "pmo:init",
|
|
5970
|
+
"pluginAlias": "@proletariat/cli",
|
|
5971
|
+
"pluginName": "@proletariat/cli",
|
|
5972
|
+
"pluginType": "core",
|
|
5973
|
+
"strict": true,
|
|
5974
|
+
"isESM": true,
|
|
5975
|
+
"relativePath": [
|
|
5976
|
+
"dist",
|
|
5977
|
+
"commands",
|
|
5978
|
+
"pmo",
|
|
5979
|
+
"init.js"
|
|
5980
|
+
]
|
|
5981
|
+
},
|
|
5982
5982
|
"pr:checks": {
|
|
5983
5983
|
"aliases": [],
|
|
5984
5984
|
"args": {
|
|
@@ -7771,6 +7771,74 @@
|
|
|
7771
7771
|
"index.js"
|
|
7772
7772
|
]
|
|
7773
7773
|
},
|
|
7774
|
+
"shortcut:connect": {
|
|
7775
|
+
"aliases": [],
|
|
7776
|
+
"args": {},
|
|
7777
|
+
"description": "Connect to Shortcut workspace and configure authentication",
|
|
7778
|
+
"examples": [
|
|
7779
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7780
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
7781
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
7782
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
7783
|
+
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
7784
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7785
|
+
],
|
|
7786
|
+
"flags": {
|
|
7787
|
+
"project": {
|
|
7788
|
+
"char": "P",
|
|
7789
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7790
|
+
"name": "project",
|
|
7791
|
+
"hasDynamicHelp": false,
|
|
7792
|
+
"multiple": false,
|
|
7793
|
+
"type": "option"
|
|
7794
|
+
},
|
|
7795
|
+
"json": {
|
|
7796
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7797
|
+
"name": "json",
|
|
7798
|
+
"allowNo": false,
|
|
7799
|
+
"type": "boolean"
|
|
7800
|
+
},
|
|
7801
|
+
"machine": {
|
|
7802
|
+
"char": "m",
|
|
7803
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7804
|
+
"name": "machine",
|
|
7805
|
+
"allowNo": false,
|
|
7806
|
+
"type": "boolean"
|
|
7807
|
+
},
|
|
7808
|
+
"check": {
|
|
7809
|
+
"description": "Only check if Shortcut credentials are valid (do not prompt)",
|
|
7810
|
+
"name": "check",
|
|
7811
|
+
"allowNo": false,
|
|
7812
|
+
"type": "boolean"
|
|
7813
|
+
},
|
|
7814
|
+
"force": {
|
|
7815
|
+
"description": "Force re-authentication even if credentials exist",
|
|
7816
|
+
"name": "force",
|
|
7817
|
+
"allowNo": false,
|
|
7818
|
+
"type": "boolean"
|
|
7819
|
+
},
|
|
7820
|
+
"disconnect": {
|
|
7821
|
+
"description": "Remove stored Shortcut credentials and configuration",
|
|
7822
|
+
"name": "disconnect",
|
|
7823
|
+
"allowNo": false,
|
|
7824
|
+
"type": "boolean"
|
|
7825
|
+
}
|
|
7826
|
+
},
|
|
7827
|
+
"hasDynamicHelp": false,
|
|
7828
|
+
"hiddenAliases": [],
|
|
7829
|
+
"id": "shortcut:connect",
|
|
7830
|
+
"pluginAlias": "@proletariat/cli",
|
|
7831
|
+
"pluginName": "@proletariat/cli",
|
|
7832
|
+
"pluginType": "core",
|
|
7833
|
+
"strict": true,
|
|
7834
|
+
"isESM": true,
|
|
7835
|
+
"relativePath": [
|
|
7836
|
+
"dist",
|
|
7837
|
+
"commands",
|
|
7838
|
+
"shortcut",
|
|
7839
|
+
"connect.js"
|
|
7840
|
+
]
|
|
7841
|
+
},
|
|
7774
7842
|
"session:attach": {
|
|
7775
7843
|
"aliases": [],
|
|
7776
7844
|
"args": {
|
|
@@ -8625,78 +8693,10 @@
|
|
|
8625
8693
|
"restart.js"
|
|
8626
8694
|
]
|
|
8627
8695
|
},
|
|
8628
|
-
"
|
|
8696
|
+
"support:book": {
|
|
8629
8697
|
"aliases": [],
|
|
8630
8698
|
"args": {},
|
|
8631
|
-
"description": "
|
|
8632
|
-
"examples": [
|
|
8633
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8634
|
-
"<%= config.bin %> <%= command.id %> --check",
|
|
8635
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
8636
|
-
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
8637
|
-
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
8638
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
8639
|
-
],
|
|
8640
|
-
"flags": {
|
|
8641
|
-
"project": {
|
|
8642
|
-
"char": "P",
|
|
8643
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8644
|
-
"name": "project",
|
|
8645
|
-
"hasDynamicHelp": false,
|
|
8646
|
-
"multiple": false,
|
|
8647
|
-
"type": "option"
|
|
8648
|
-
},
|
|
8649
|
-
"json": {
|
|
8650
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8651
|
-
"name": "json",
|
|
8652
|
-
"allowNo": false,
|
|
8653
|
-
"type": "boolean"
|
|
8654
|
-
},
|
|
8655
|
-
"machine": {
|
|
8656
|
-
"char": "m",
|
|
8657
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8658
|
-
"name": "machine",
|
|
8659
|
-
"allowNo": false,
|
|
8660
|
-
"type": "boolean"
|
|
8661
|
-
},
|
|
8662
|
-
"check": {
|
|
8663
|
-
"description": "Only check if Shortcut credentials are valid (do not prompt)",
|
|
8664
|
-
"name": "check",
|
|
8665
|
-
"allowNo": false,
|
|
8666
|
-
"type": "boolean"
|
|
8667
|
-
},
|
|
8668
|
-
"force": {
|
|
8669
|
-
"description": "Force re-authentication even if credentials exist",
|
|
8670
|
-
"name": "force",
|
|
8671
|
-
"allowNo": false,
|
|
8672
|
-
"type": "boolean"
|
|
8673
|
-
},
|
|
8674
|
-
"disconnect": {
|
|
8675
|
-
"description": "Remove stored Shortcut credentials and configuration",
|
|
8676
|
-
"name": "disconnect",
|
|
8677
|
-
"allowNo": false,
|
|
8678
|
-
"type": "boolean"
|
|
8679
|
-
}
|
|
8680
|
-
},
|
|
8681
|
-
"hasDynamicHelp": false,
|
|
8682
|
-
"hiddenAliases": [],
|
|
8683
|
-
"id": "shortcut:connect",
|
|
8684
|
-
"pluginAlias": "@proletariat/cli",
|
|
8685
|
-
"pluginName": "@proletariat/cli",
|
|
8686
|
-
"pluginType": "core",
|
|
8687
|
-
"strict": true,
|
|
8688
|
-
"isESM": true,
|
|
8689
|
-
"relativePath": [
|
|
8690
|
-
"dist",
|
|
8691
|
-
"commands",
|
|
8692
|
-
"shortcut",
|
|
8693
|
-
"connect.js"
|
|
8694
|
-
]
|
|
8695
|
-
},
|
|
8696
|
-
"support:book": {
|
|
8697
|
-
"aliases": [],
|
|
8698
|
-
"args": {},
|
|
8699
|
-
"description": "Book a call for support",
|
|
8699
|
+
"description": "Book a call for support",
|
|
8700
8700
|
"examples": [
|
|
8701
8701
|
"<%= config.bin %> <%= command.id %>",
|
|
8702
8702
|
"<%= config.bin %> <%= command.id %> --json"
|
|
@@ -8952,14 +8952,30 @@
|
|
|
8952
8952
|
"logs.js"
|
|
8953
8953
|
]
|
|
8954
8954
|
},
|
|
8955
|
-
"
|
|
8955
|
+
"terminal:title": {
|
|
8956
8956
|
"aliases": [],
|
|
8957
|
-
"args": {
|
|
8958
|
-
|
|
8957
|
+
"args": {
|
|
8958
|
+
"title": {
|
|
8959
|
+
"description": "Title to set for the terminal tab/window",
|
|
8960
|
+
"name": "title",
|
|
8961
|
+
"required": false
|
|
8962
|
+
}
|
|
8963
|
+
},
|
|
8964
|
+
"description": "Set the terminal tab/window title",
|
|
8959
8965
|
"examples": [
|
|
8960
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8966
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
8967
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
8968
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
8969
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
8961
8970
|
],
|
|
8962
8971
|
"flags": {
|
|
8972
|
+
"reset": {
|
|
8973
|
+
"char": "r",
|
|
8974
|
+
"description": "Reset terminal title to default",
|
|
8975
|
+
"name": "reset",
|
|
8976
|
+
"allowNo": false,
|
|
8977
|
+
"type": "boolean"
|
|
8978
|
+
},
|
|
8963
8979
|
"json": {
|
|
8964
8980
|
"description": "Output as JSON for AI agents/scripts",
|
|
8965
8981
|
"name": "json",
|
|
@@ -8976,24 +8992,23 @@
|
|
|
8976
8992
|
},
|
|
8977
8993
|
"hasDynamicHelp": false,
|
|
8978
8994
|
"hiddenAliases": [],
|
|
8979
|
-
"id": "
|
|
8995
|
+
"id": "terminal:title",
|
|
8980
8996
|
"pluginAlias": "@proletariat/cli",
|
|
8981
8997
|
"pluginName": "@proletariat/cli",
|
|
8982
8998
|
"pluginType": "core",
|
|
8983
8999
|
"strict": true,
|
|
8984
|
-
"enableJsonFlag": false,
|
|
8985
9000
|
"isESM": true,
|
|
8986
9001
|
"relativePath": [
|
|
8987
9002
|
"dist",
|
|
8988
9003
|
"commands",
|
|
8989
|
-
"
|
|
8990
|
-
"
|
|
9004
|
+
"terminal",
|
|
9005
|
+
"title.js"
|
|
8991
9006
|
]
|
|
8992
9007
|
},
|
|
8993
|
-
"telemetry:
|
|
9008
|
+
"telemetry:disable": {
|
|
8994
9009
|
"aliases": [],
|
|
8995
9010
|
"args": {},
|
|
8996
|
-
"description": "
|
|
9011
|
+
"description": "Disable anonymous telemetry",
|
|
8997
9012
|
"examples": [
|
|
8998
9013
|
"<%= config.bin %> <%= command.id %>"
|
|
8999
9014
|
],
|
|
@@ -9014,7 +9029,7 @@
|
|
|
9014
9029
|
},
|
|
9015
9030
|
"hasDynamicHelp": false,
|
|
9016
9031
|
"hiddenAliases": [],
|
|
9017
|
-
"id": "telemetry:
|
|
9032
|
+
"id": "telemetry:disable",
|
|
9018
9033
|
"pluginAlias": "@proletariat/cli",
|
|
9019
9034
|
"pluginName": "@proletariat/cli",
|
|
9020
9035
|
"pluginType": "core",
|
|
@@ -9025,16 +9040,15 @@
|
|
|
9025
9040
|
"dist",
|
|
9026
9041
|
"commands",
|
|
9027
9042
|
"telemetry",
|
|
9028
|
-
"
|
|
9043
|
+
"disable.js"
|
|
9029
9044
|
]
|
|
9030
9045
|
},
|
|
9031
|
-
"telemetry": {
|
|
9046
|
+
"telemetry:enable": {
|
|
9032
9047
|
"aliases": [],
|
|
9033
9048
|
"args": {},
|
|
9034
|
-
"description": "
|
|
9049
|
+
"description": "Enable anonymous telemetry",
|
|
9035
9050
|
"examples": [
|
|
9036
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9037
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
9051
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9038
9052
|
],
|
|
9039
9053
|
"flags": {
|
|
9040
9054
|
"json": {
|
|
@@ -9053,7 +9067,7 @@
|
|
|
9053
9067
|
},
|
|
9054
9068
|
"hasDynamicHelp": false,
|
|
9055
9069
|
"hiddenAliases": [],
|
|
9056
|
-
"id": "telemetry",
|
|
9070
|
+
"id": "telemetry:enable",
|
|
9057
9071
|
"pluginAlias": "@proletariat/cli",
|
|
9058
9072
|
"pluginName": "@proletariat/cli",
|
|
9059
9073
|
"pluginType": "core",
|
|
@@ -9064,15 +9078,16 @@
|
|
|
9064
9078
|
"dist",
|
|
9065
9079
|
"commands",
|
|
9066
9080
|
"telemetry",
|
|
9067
|
-
"
|
|
9081
|
+
"enable.js"
|
|
9068
9082
|
]
|
|
9069
9083
|
},
|
|
9070
|
-
"telemetry
|
|
9084
|
+
"telemetry": {
|
|
9071
9085
|
"aliases": [],
|
|
9072
9086
|
"args": {},
|
|
9073
9087
|
"description": "Show telemetry status",
|
|
9074
9088
|
"examples": [
|
|
9075
|
-
"<%= config.bin %>
|
|
9089
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9090
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9076
9091
|
],
|
|
9077
9092
|
"flags": {
|
|
9078
9093
|
"json": {
|
|
@@ -9091,7 +9106,7 @@
|
|
|
9091
9106
|
},
|
|
9092
9107
|
"hasDynamicHelp": false,
|
|
9093
9108
|
"hiddenAliases": [],
|
|
9094
|
-
"id": "telemetry
|
|
9109
|
+
"id": "telemetry",
|
|
9095
9110
|
"pluginAlias": "@proletariat/cli",
|
|
9096
9111
|
"pluginName": "@proletariat/cli",
|
|
9097
9112
|
"pluginType": "core",
|
|
@@ -9102,33 +9117,17 @@
|
|
|
9102
9117
|
"dist",
|
|
9103
9118
|
"commands",
|
|
9104
9119
|
"telemetry",
|
|
9105
|
-
"
|
|
9120
|
+
"index.js"
|
|
9106
9121
|
]
|
|
9107
9122
|
},
|
|
9108
|
-
"
|
|
9123
|
+
"telemetry:status": {
|
|
9109
9124
|
"aliases": [],
|
|
9110
|
-
"args": {
|
|
9111
|
-
|
|
9112
|
-
"description": "Title to set for the terminal tab/window",
|
|
9113
|
-
"name": "title",
|
|
9114
|
-
"required": false
|
|
9115
|
-
}
|
|
9116
|
-
},
|
|
9117
|
-
"description": "Set the terminal tab/window title",
|
|
9125
|
+
"args": {},
|
|
9126
|
+
"description": "Show telemetry status",
|
|
9118
9127
|
"examples": [
|
|
9119
|
-
"<%= config.bin %>
|
|
9120
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
9121
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
9122
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9128
|
+
"<%= config.bin %> telemetry status"
|
|
9123
9129
|
],
|
|
9124
9130
|
"flags": {
|
|
9125
|
-
"reset": {
|
|
9126
|
-
"char": "r",
|
|
9127
|
-
"description": "Reset terminal title to default",
|
|
9128
|
-
"name": "reset",
|
|
9129
|
-
"allowNo": false,
|
|
9130
|
-
"type": "boolean"
|
|
9131
|
-
},
|
|
9132
9131
|
"json": {
|
|
9133
9132
|
"description": "Output as JSON for AI agents/scripts",
|
|
9134
9133
|
"name": "json",
|
|
@@ -9145,17 +9144,18 @@
|
|
|
9145
9144
|
},
|
|
9146
9145
|
"hasDynamicHelp": false,
|
|
9147
9146
|
"hiddenAliases": [],
|
|
9148
|
-
"id": "
|
|
9147
|
+
"id": "telemetry:status",
|
|
9149
9148
|
"pluginAlias": "@proletariat/cli",
|
|
9150
9149
|
"pluginName": "@proletariat/cli",
|
|
9151
9150
|
"pluginType": "core",
|
|
9152
9151
|
"strict": true,
|
|
9152
|
+
"enableJsonFlag": false,
|
|
9153
9153
|
"isESM": true,
|
|
9154
9154
|
"relativePath": [
|
|
9155
9155
|
"dist",
|
|
9156
9156
|
"commands",
|
|
9157
|
-
"
|
|
9158
|
-
"
|
|
9157
|
+
"telemetry",
|
|
9158
|
+
"status.js"
|
|
9159
9159
|
]
|
|
9160
9160
|
},
|
|
9161
9161
|
"theme:add-names": {
|
|
@@ -9659,12 +9659,17 @@
|
|
|
9659
9659
|
"remove.js"
|
|
9660
9660
|
]
|
|
9661
9661
|
},
|
|
9662
|
-
"
|
|
9662
|
+
"trello:configure": {
|
|
9663
9663
|
"aliases": [],
|
|
9664
9664
|
"args": {},
|
|
9665
|
-
"description": "
|
|
9665
|
+
"description": "Connect to Trello and configure authentication",
|
|
9666
9666
|
"examples": [
|
|
9667
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9667
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9668
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
9669
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
9670
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
9671
|
+
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
9672
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9668
9673
|
],
|
|
9669
9674
|
"flags": {
|
|
9670
9675
|
"project": {
|
|
@@ -9687,11 +9692,36 @@
|
|
|
9687
9692
|
"name": "machine",
|
|
9688
9693
|
"allowNo": false,
|
|
9689
9694
|
"type": "boolean"
|
|
9695
|
+
},
|
|
9696
|
+
"check": {
|
|
9697
|
+
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
9698
|
+
"name": "check",
|
|
9699
|
+
"allowNo": false,
|
|
9700
|
+
"type": "boolean"
|
|
9701
|
+
},
|
|
9702
|
+
"force": {
|
|
9703
|
+
"description": "Force re-authentication even if credentials exist",
|
|
9704
|
+
"name": "force",
|
|
9705
|
+
"allowNo": false,
|
|
9706
|
+
"type": "boolean"
|
|
9707
|
+
},
|
|
9708
|
+
"disconnect": {
|
|
9709
|
+
"description": "Remove stored Trello credentials and configuration",
|
|
9710
|
+
"name": "disconnect",
|
|
9711
|
+
"allowNo": false,
|
|
9712
|
+
"type": "boolean"
|
|
9713
|
+
},
|
|
9714
|
+
"board": {
|
|
9715
|
+
"description": "Default board ID or name",
|
|
9716
|
+
"name": "board",
|
|
9717
|
+
"hasDynamicHelp": false,
|
|
9718
|
+
"multiple": false,
|
|
9719
|
+
"type": "option"
|
|
9690
9720
|
}
|
|
9691
9721
|
},
|
|
9692
9722
|
"hasDynamicHelp": false,
|
|
9693
9723
|
"hiddenAliases": [],
|
|
9694
|
-
"id": "
|
|
9724
|
+
"id": "trello:configure",
|
|
9695
9725
|
"pluginAlias": "@proletariat/cli",
|
|
9696
9726
|
"pluginName": "@proletariat/cli",
|
|
9697
9727
|
"pluginType": "core",
|
|
@@ -9700,24 +9730,20 @@
|
|
|
9700
9730
|
"relativePath": [
|
|
9701
9731
|
"dist",
|
|
9702
9732
|
"commands",
|
|
9703
|
-
"
|
|
9704
|
-
"
|
|
9733
|
+
"trello",
|
|
9734
|
+
"configure.js"
|
|
9705
9735
|
]
|
|
9706
9736
|
},
|
|
9707
|
-
"
|
|
9737
|
+
"trello:import": {
|
|
9708
9738
|
"aliases": [],
|
|
9709
|
-
"args": {
|
|
9710
|
-
|
|
9711
|
-
"description": "Ticket ID - prompts with dropdown if not provided",
|
|
9712
|
-
"name": "ticketId",
|
|
9713
|
-
"required": false
|
|
9714
|
-
}
|
|
9715
|
-
},
|
|
9716
|
-
"description": "Cancel ticket(s) (move to Canceled column)",
|
|
9739
|
+
"args": {},
|
|
9740
|
+
"description": "Import Trello cards into PMO as tickets",
|
|
9717
9741
|
"examples": [
|
|
9718
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9719
|
-
"<%= config.bin %> <%= command.id %>
|
|
9720
|
-
"<%= config.bin %> <%= command.id %> --
|
|
9742
|
+
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
9743
|
+
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
9744
|
+
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
9745
|
+
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
9746
|
+
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
9721
9747
|
],
|
|
9722
9748
|
"flags": {
|
|
9723
9749
|
"project": {
|
|
@@ -9741,24 +9767,32 @@
|
|
|
9741
9767
|
"allowNo": false,
|
|
9742
9768
|
"type": "boolean"
|
|
9743
9769
|
},
|
|
9744
|
-
"
|
|
9745
|
-
"char": "
|
|
9746
|
-
"description": "
|
|
9747
|
-
"name": "
|
|
9770
|
+
"limit": {
|
|
9771
|
+
"char": "n",
|
|
9772
|
+
"description": "Maximum number of cards to import",
|
|
9773
|
+
"name": "limit",
|
|
9774
|
+
"default": 50,
|
|
9775
|
+
"hasDynamicHelp": false,
|
|
9776
|
+
"multiple": false,
|
|
9777
|
+
"type": "option"
|
|
9778
|
+
},
|
|
9779
|
+
"all": {
|
|
9780
|
+
"char": "a",
|
|
9781
|
+
"description": "Import all matching cards without interactive selection",
|
|
9782
|
+
"name": "all",
|
|
9748
9783
|
"allowNo": false,
|
|
9749
9784
|
"type": "boolean"
|
|
9750
9785
|
},
|
|
9751
|
-
"
|
|
9752
|
-
"
|
|
9753
|
-
"
|
|
9754
|
-
"name": "force",
|
|
9786
|
+
"dry-run": {
|
|
9787
|
+
"description": "Preview cards that would be imported without creating tickets",
|
|
9788
|
+
"name": "dry-run",
|
|
9755
9789
|
"allowNo": false,
|
|
9756
9790
|
"type": "boolean"
|
|
9757
9791
|
}
|
|
9758
9792
|
},
|
|
9759
9793
|
"hasDynamicHelp": false,
|
|
9760
9794
|
"hiddenAliases": [],
|
|
9761
|
-
"id": "
|
|
9795
|
+
"id": "trello:import",
|
|
9762
9796
|
"pluginAlias": "@proletariat/cli",
|
|
9763
9797
|
"pluginName": "@proletariat/cli",
|
|
9764
9798
|
"pluginType": "core",
|
|
@@ -9767,21 +9801,213 @@
|
|
|
9767
9801
|
"relativePath": [
|
|
9768
9802
|
"dist",
|
|
9769
9803
|
"commands",
|
|
9770
|
-
"
|
|
9771
|
-
"
|
|
9804
|
+
"trello",
|
|
9805
|
+
"import.js"
|
|
9772
9806
|
]
|
|
9773
9807
|
},
|
|
9774
|
-
"
|
|
9775
|
-
"aliases": [
|
|
9776
|
-
"ticket:categories"
|
|
9777
|
-
],
|
|
9808
|
+
"trello:sync": {
|
|
9809
|
+
"aliases": [],
|
|
9778
9810
|
"args": {},
|
|
9779
|
-
"description": "
|
|
9811
|
+
"description": "Sync PMO tickets to Trello cards",
|
|
9780
9812
|
"examples": [
|
|
9781
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9782
|
-
"<%= config.bin %> <%= command.id %>
|
|
9783
|
-
"<%= config.bin %> <%= command.id %>
|
|
9784
|
-
|
|
9813
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
9814
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
9815
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
9816
|
+
],
|
|
9817
|
+
"flags": {
|
|
9818
|
+
"project": {
|
|
9819
|
+
"char": "P",
|
|
9820
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9821
|
+
"name": "project",
|
|
9822
|
+
"hasDynamicHelp": false,
|
|
9823
|
+
"multiple": false,
|
|
9824
|
+
"type": "option"
|
|
9825
|
+
},
|
|
9826
|
+
"json": {
|
|
9827
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9828
|
+
"name": "json",
|
|
9829
|
+
"allowNo": false,
|
|
9830
|
+
"type": "boolean"
|
|
9831
|
+
},
|
|
9832
|
+
"machine": {
|
|
9833
|
+
"char": "m",
|
|
9834
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9835
|
+
"name": "machine",
|
|
9836
|
+
"allowNo": false,
|
|
9837
|
+
"type": "boolean"
|
|
9838
|
+
},
|
|
9839
|
+
"ticket": {
|
|
9840
|
+
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
9841
|
+
"name": "ticket",
|
|
9842
|
+
"hasDynamicHelp": false,
|
|
9843
|
+
"multiple": false,
|
|
9844
|
+
"type": "option"
|
|
9845
|
+
},
|
|
9846
|
+
"card": {
|
|
9847
|
+
"description": "Trello card ID to map to --ticket",
|
|
9848
|
+
"name": "card",
|
|
9849
|
+
"hasDynamicHelp": false,
|
|
9850
|
+
"multiple": false,
|
|
9851
|
+
"type": "option"
|
|
9852
|
+
},
|
|
9853
|
+
"list": {
|
|
9854
|
+
"description": "Trello list ID used with --create-missing",
|
|
9855
|
+
"name": "list",
|
|
9856
|
+
"hasDynamicHelp": false,
|
|
9857
|
+
"multiple": false,
|
|
9858
|
+
"type": "option"
|
|
9859
|
+
},
|
|
9860
|
+
"create-missing": {
|
|
9861
|
+
"description": "Create Trello card when no mapping exists (requires list)",
|
|
9862
|
+
"name": "create-missing",
|
|
9863
|
+
"allowNo": false,
|
|
9864
|
+
"type": "boolean"
|
|
9865
|
+
},
|
|
9866
|
+
"dry-run": {
|
|
9867
|
+
"description": "Preview sync operations without making changes",
|
|
9868
|
+
"name": "dry-run",
|
|
9869
|
+
"allowNo": false,
|
|
9870
|
+
"type": "boolean"
|
|
9871
|
+
}
|
|
9872
|
+
},
|
|
9873
|
+
"hasDynamicHelp": false,
|
|
9874
|
+
"hiddenAliases": [],
|
|
9875
|
+
"id": "trello:sync",
|
|
9876
|
+
"pluginAlias": "@proletariat/cli",
|
|
9877
|
+
"pluginName": "@proletariat/cli",
|
|
9878
|
+
"pluginType": "core",
|
|
9879
|
+
"strict": true,
|
|
9880
|
+
"isESM": true,
|
|
9881
|
+
"relativePath": [
|
|
9882
|
+
"dist",
|
|
9883
|
+
"commands",
|
|
9884
|
+
"trello",
|
|
9885
|
+
"sync.js"
|
|
9886
|
+
]
|
|
9887
|
+
},
|
|
9888
|
+
"ticket:bulk": {
|
|
9889
|
+
"aliases": [],
|
|
9890
|
+
"args": {},
|
|
9891
|
+
"description": "Manage tickets in bulk (interactive menu)",
|
|
9892
|
+
"examples": [
|
|
9893
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9894
|
+
],
|
|
9895
|
+
"flags": {
|
|
9896
|
+
"project": {
|
|
9897
|
+
"char": "P",
|
|
9898
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9899
|
+
"name": "project",
|
|
9900
|
+
"hasDynamicHelp": false,
|
|
9901
|
+
"multiple": false,
|
|
9902
|
+
"type": "option"
|
|
9903
|
+
},
|
|
9904
|
+
"json": {
|
|
9905
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9906
|
+
"name": "json",
|
|
9907
|
+
"allowNo": false,
|
|
9908
|
+
"type": "boolean"
|
|
9909
|
+
},
|
|
9910
|
+
"machine": {
|
|
9911
|
+
"char": "m",
|
|
9912
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9913
|
+
"name": "machine",
|
|
9914
|
+
"allowNo": false,
|
|
9915
|
+
"type": "boolean"
|
|
9916
|
+
}
|
|
9917
|
+
},
|
|
9918
|
+
"hasDynamicHelp": false,
|
|
9919
|
+
"hiddenAliases": [],
|
|
9920
|
+
"id": "ticket:bulk",
|
|
9921
|
+
"pluginAlias": "@proletariat/cli",
|
|
9922
|
+
"pluginName": "@proletariat/cli",
|
|
9923
|
+
"pluginType": "core",
|
|
9924
|
+
"strict": true,
|
|
9925
|
+
"isESM": true,
|
|
9926
|
+
"relativePath": [
|
|
9927
|
+
"dist",
|
|
9928
|
+
"commands",
|
|
9929
|
+
"ticket",
|
|
9930
|
+
"bulk.js"
|
|
9931
|
+
]
|
|
9932
|
+
},
|
|
9933
|
+
"ticket:cancel": {
|
|
9934
|
+
"aliases": [],
|
|
9935
|
+
"args": {
|
|
9936
|
+
"ticketId": {
|
|
9937
|
+
"description": "Ticket ID - prompts with dropdown if not provided",
|
|
9938
|
+
"name": "ticketId",
|
|
9939
|
+
"required": false
|
|
9940
|
+
}
|
|
9941
|
+
},
|
|
9942
|
+
"description": "Cancel ticket(s) (move to Canceled column)",
|
|
9943
|
+
"examples": [
|
|
9944
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9945
|
+
"<%= config.bin %> <%= command.id %> TKT-001",
|
|
9946
|
+
"<%= config.bin %> <%= command.id %> --bulk"
|
|
9947
|
+
],
|
|
9948
|
+
"flags": {
|
|
9949
|
+
"project": {
|
|
9950
|
+
"char": "P",
|
|
9951
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9952
|
+
"name": "project",
|
|
9953
|
+
"hasDynamicHelp": false,
|
|
9954
|
+
"multiple": false,
|
|
9955
|
+
"type": "option"
|
|
9956
|
+
},
|
|
9957
|
+
"json": {
|
|
9958
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9959
|
+
"name": "json",
|
|
9960
|
+
"allowNo": false,
|
|
9961
|
+
"type": "boolean"
|
|
9962
|
+
},
|
|
9963
|
+
"machine": {
|
|
9964
|
+
"char": "m",
|
|
9965
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9966
|
+
"name": "machine",
|
|
9967
|
+
"allowNo": false,
|
|
9968
|
+
"type": "boolean"
|
|
9969
|
+
},
|
|
9970
|
+
"bulk": {
|
|
9971
|
+
"char": "b",
|
|
9972
|
+
"description": "Enable bulk mode to cancel multiple tickets",
|
|
9973
|
+
"name": "bulk",
|
|
9974
|
+
"allowNo": false,
|
|
9975
|
+
"type": "boolean"
|
|
9976
|
+
},
|
|
9977
|
+
"force": {
|
|
9978
|
+
"char": "f",
|
|
9979
|
+
"description": "Skip confirmation prompt (bulk mode only)",
|
|
9980
|
+
"name": "force",
|
|
9981
|
+
"allowNo": false,
|
|
9982
|
+
"type": "boolean"
|
|
9983
|
+
}
|
|
9984
|
+
},
|
|
9985
|
+
"hasDynamicHelp": false,
|
|
9986
|
+
"hiddenAliases": [],
|
|
9987
|
+
"id": "ticket:cancel",
|
|
9988
|
+
"pluginAlias": "@proletariat/cli",
|
|
9989
|
+
"pluginName": "@proletariat/cli",
|
|
9990
|
+
"pluginType": "core",
|
|
9991
|
+
"strict": true,
|
|
9992
|
+
"isESM": true,
|
|
9993
|
+
"relativePath": [
|
|
9994
|
+
"dist",
|
|
9995
|
+
"commands",
|
|
9996
|
+
"ticket",
|
|
9997
|
+
"cancel.js"
|
|
9998
|
+
]
|
|
9999
|
+
},
|
|
10000
|
+
"ticket:category": {
|
|
10001
|
+
"aliases": [
|
|
10002
|
+
"ticket:categories"
|
|
10003
|
+
],
|
|
10004
|
+
"args": {},
|
|
10005
|
+
"description": "Manage ticket categories (feature, bug, refactor, etc.)",
|
|
10006
|
+
"examples": [
|
|
10007
|
+
"<%= config.bin %> <%= command.id %>",
|
|
10008
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
10009
|
+
"<%= config.bin %> <%= command.id %> create spike",
|
|
10010
|
+
"<%= config.bin %> <%= command.id %> rename spike investigation",
|
|
9785
10011
|
"<%= config.bin %> <%= command.id %> delete spike"
|
|
9786
10012
|
],
|
|
9787
10013
|
"flags": {
|
|
@@ -11099,13 +11325,17 @@
|
|
|
11099
11325
|
"required": false
|
|
11100
11326
|
}
|
|
11101
11327
|
},
|
|
11102
|
-
"description": "Update priority
|
|
11328
|
+
"description": "Update ticket fields (title, description, priority, category, labels, status)",
|
|
11103
11329
|
"examples": [
|
|
11330
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --title \"New title\"",
|
|
11331
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --description \"Updated description\"",
|
|
11332
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --description-file ./spec.md",
|
|
11104
11333
|
"<%= config.bin %> <%= command.id %> TKT-001 --priority P1",
|
|
11105
11334
|
"<%= config.bin %> <%= command.id %> TKT-001 --category bug",
|
|
11106
|
-
"<%= config.bin %> <%= command.id %> --
|
|
11107
|
-
"<%= config.bin %> <%= command.id %>
|
|
11108
|
-
"<%= config.bin %> <%= command.id %> --
|
|
11335
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --labels frontend,urgent",
|
|
11336
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --status \"In Progress\"",
|
|
11337
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --title \"Fix auth\" --priority P0 --status \"In Progress\" --json",
|
|
11338
|
+
"<%= config.bin %> <%= command.id %> --bulk --priority P1"
|
|
11109
11339
|
],
|
|
11110
11340
|
"flags": {
|
|
11111
11341
|
"project": {
|
|
@@ -11129,9 +11359,32 @@
|
|
|
11129
11359
|
"allowNo": false,
|
|
11130
11360
|
"type": "boolean"
|
|
11131
11361
|
},
|
|
11362
|
+
"title": {
|
|
11363
|
+
"char": "t",
|
|
11364
|
+
"description": "Set ticket title",
|
|
11365
|
+
"name": "title",
|
|
11366
|
+
"hasDynamicHelp": false,
|
|
11367
|
+
"multiple": false,
|
|
11368
|
+
"type": "option"
|
|
11369
|
+
},
|
|
11370
|
+
"description": {
|
|
11371
|
+
"char": "d",
|
|
11372
|
+
"description": "Set ticket description",
|
|
11373
|
+
"name": "description",
|
|
11374
|
+
"hasDynamicHelp": false,
|
|
11375
|
+
"multiple": false,
|
|
11376
|
+
"type": "option"
|
|
11377
|
+
},
|
|
11378
|
+
"description-file": {
|
|
11379
|
+
"description": "Read ticket description from a file",
|
|
11380
|
+
"name": "description-file",
|
|
11381
|
+
"hasDynamicHelp": false,
|
|
11382
|
+
"multiple": false,
|
|
11383
|
+
"type": "option"
|
|
11384
|
+
},
|
|
11132
11385
|
"priority": {
|
|
11133
11386
|
"char": "p",
|
|
11134
|
-
"description": "Set priority (uses workspace priority scale)",
|
|
11387
|
+
"description": "Set priority (uses workspace priority scale, \"none\" to clear)",
|
|
11135
11388
|
"name": "priority",
|
|
11136
11389
|
"hasDynamicHelp": false,
|
|
11137
11390
|
"multiple": false,
|
|
@@ -11139,12 +11392,28 @@
|
|
|
11139
11392
|
},
|
|
11140
11393
|
"category": {
|
|
11141
11394
|
"char": "c",
|
|
11142
|
-
"description": "Set category (e.g., feature, bug, refactor)",
|
|
11395
|
+
"description": "Set category (e.g., feature, bug, refactor, \"none\" to clear)",
|
|
11143
11396
|
"name": "category",
|
|
11144
11397
|
"hasDynamicHelp": false,
|
|
11145
11398
|
"multiple": false,
|
|
11146
11399
|
"type": "option"
|
|
11147
11400
|
},
|
|
11401
|
+
"labels": {
|
|
11402
|
+
"char": "l",
|
|
11403
|
+
"description": "Set labels (comma-separated, replaces existing labels; use \"\" to clear)",
|
|
11404
|
+
"name": "labels",
|
|
11405
|
+
"hasDynamicHelp": false,
|
|
11406
|
+
"multiple": false,
|
|
11407
|
+
"type": "option"
|
|
11408
|
+
},
|
|
11409
|
+
"status": {
|
|
11410
|
+
"char": "s",
|
|
11411
|
+
"description": "Set status/column (e.g., \"In Progress\", \"Done\")",
|
|
11412
|
+
"name": "status",
|
|
11413
|
+
"hasDynamicHelp": false,
|
|
11414
|
+
"multiple": false,
|
|
11415
|
+
"type": "option"
|
|
11416
|
+
},
|
|
11148
11417
|
"bulk": {
|
|
11149
11418
|
"char": "b",
|
|
11150
11419
|
"description": "Enable bulk mode to update multiple tickets",
|
|
@@ -11227,487 +11496,26 @@
|
|
|
11227
11496
|
"view.js"
|
|
11228
11497
|
]
|
|
11229
11498
|
},
|
|
11230
|
-
"
|
|
11231
|
-
"aliases": [],
|
|
11232
|
-
"args": {},
|
|
11233
|
-
"description": "Connect to Trello and configure authentication",
|
|
11234
|
-
"examples": [
|
|
11235
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11236
|
-
"<%= config.bin %> <%= command.id %> --check",
|
|
11237
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
11238
|
-
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
11239
|
-
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
11240
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
11241
|
-
],
|
|
11242
|
-
"flags": {
|
|
11243
|
-
"project": {
|
|
11244
|
-
"char": "P",
|
|
11245
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11246
|
-
"name": "project",
|
|
11247
|
-
"hasDynamicHelp": false,
|
|
11248
|
-
"multiple": false,
|
|
11249
|
-
"type": "option"
|
|
11250
|
-
},
|
|
11251
|
-
"json": {
|
|
11252
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11253
|
-
"name": "json",
|
|
11254
|
-
"allowNo": false,
|
|
11255
|
-
"type": "boolean"
|
|
11256
|
-
},
|
|
11257
|
-
"machine": {
|
|
11258
|
-
"char": "m",
|
|
11259
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11260
|
-
"name": "machine",
|
|
11261
|
-
"allowNo": false,
|
|
11262
|
-
"type": "boolean"
|
|
11263
|
-
},
|
|
11264
|
-
"check": {
|
|
11265
|
-
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
11266
|
-
"name": "check",
|
|
11267
|
-
"allowNo": false,
|
|
11268
|
-
"type": "boolean"
|
|
11269
|
-
},
|
|
11270
|
-
"force": {
|
|
11271
|
-
"description": "Force re-authentication even if credentials exist",
|
|
11272
|
-
"name": "force",
|
|
11273
|
-
"allowNo": false,
|
|
11274
|
-
"type": "boolean"
|
|
11275
|
-
},
|
|
11276
|
-
"disconnect": {
|
|
11277
|
-
"description": "Remove stored Trello credentials and configuration",
|
|
11278
|
-
"name": "disconnect",
|
|
11279
|
-
"allowNo": false,
|
|
11280
|
-
"type": "boolean"
|
|
11281
|
-
},
|
|
11282
|
-
"board": {
|
|
11283
|
-
"description": "Default board ID or name",
|
|
11284
|
-
"name": "board",
|
|
11285
|
-
"hasDynamicHelp": false,
|
|
11286
|
-
"multiple": false,
|
|
11287
|
-
"type": "option"
|
|
11288
|
-
}
|
|
11289
|
-
},
|
|
11290
|
-
"hasDynamicHelp": false,
|
|
11291
|
-
"hiddenAliases": [],
|
|
11292
|
-
"id": "trello:configure",
|
|
11293
|
-
"pluginAlias": "@proletariat/cli",
|
|
11294
|
-
"pluginName": "@proletariat/cli",
|
|
11295
|
-
"pluginType": "core",
|
|
11296
|
-
"strict": true,
|
|
11297
|
-
"isESM": true,
|
|
11298
|
-
"relativePath": [
|
|
11299
|
-
"dist",
|
|
11300
|
-
"commands",
|
|
11301
|
-
"trello",
|
|
11302
|
-
"configure.js"
|
|
11303
|
-
]
|
|
11304
|
-
},
|
|
11305
|
-
"trello:import": {
|
|
11306
|
-
"aliases": [],
|
|
11307
|
-
"args": {},
|
|
11308
|
-
"description": "Import Trello cards into PMO as tickets",
|
|
11309
|
-
"examples": [
|
|
11310
|
-
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
11311
|
-
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
11312
|
-
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
11313
|
-
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
11314
|
-
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
11315
|
-
],
|
|
11316
|
-
"flags": {
|
|
11317
|
-
"project": {
|
|
11318
|
-
"char": "P",
|
|
11319
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11320
|
-
"name": "project",
|
|
11321
|
-
"hasDynamicHelp": false,
|
|
11322
|
-
"multiple": false,
|
|
11323
|
-
"type": "option"
|
|
11324
|
-
},
|
|
11325
|
-
"json": {
|
|
11326
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11327
|
-
"name": "json",
|
|
11328
|
-
"allowNo": false,
|
|
11329
|
-
"type": "boolean"
|
|
11330
|
-
},
|
|
11331
|
-
"machine": {
|
|
11332
|
-
"char": "m",
|
|
11333
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11334
|
-
"name": "machine",
|
|
11335
|
-
"allowNo": false,
|
|
11336
|
-
"type": "boolean"
|
|
11337
|
-
},
|
|
11338
|
-
"limit": {
|
|
11339
|
-
"char": "n",
|
|
11340
|
-
"description": "Maximum number of cards to import",
|
|
11341
|
-
"name": "limit",
|
|
11342
|
-
"default": 50,
|
|
11343
|
-
"hasDynamicHelp": false,
|
|
11344
|
-
"multiple": false,
|
|
11345
|
-
"type": "option"
|
|
11346
|
-
},
|
|
11347
|
-
"all": {
|
|
11348
|
-
"char": "a",
|
|
11349
|
-
"description": "Import all matching cards without interactive selection",
|
|
11350
|
-
"name": "all",
|
|
11351
|
-
"allowNo": false,
|
|
11352
|
-
"type": "boolean"
|
|
11353
|
-
},
|
|
11354
|
-
"dry-run": {
|
|
11355
|
-
"description": "Preview cards that would be imported without creating tickets",
|
|
11356
|
-
"name": "dry-run",
|
|
11357
|
-
"allowNo": false,
|
|
11358
|
-
"type": "boolean"
|
|
11359
|
-
}
|
|
11360
|
-
},
|
|
11361
|
-
"hasDynamicHelp": false,
|
|
11362
|
-
"hiddenAliases": [],
|
|
11363
|
-
"id": "trello:import",
|
|
11364
|
-
"pluginAlias": "@proletariat/cli",
|
|
11365
|
-
"pluginName": "@proletariat/cli",
|
|
11366
|
-
"pluginType": "core",
|
|
11367
|
-
"strict": true,
|
|
11368
|
-
"isESM": true,
|
|
11369
|
-
"relativePath": [
|
|
11370
|
-
"dist",
|
|
11371
|
-
"commands",
|
|
11372
|
-
"trello",
|
|
11373
|
-
"import.js"
|
|
11374
|
-
]
|
|
11375
|
-
},
|
|
11376
|
-
"trello:sync": {
|
|
11377
|
-
"aliases": [],
|
|
11378
|
-
"args": {},
|
|
11379
|
-
"description": "Sync PMO tickets to Trello cards",
|
|
11380
|
-
"examples": [
|
|
11381
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
11382
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
11383
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
11384
|
-
],
|
|
11385
|
-
"flags": {
|
|
11386
|
-
"project": {
|
|
11387
|
-
"char": "P",
|
|
11388
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11389
|
-
"name": "project",
|
|
11390
|
-
"hasDynamicHelp": false,
|
|
11391
|
-
"multiple": false,
|
|
11392
|
-
"type": "option"
|
|
11393
|
-
},
|
|
11394
|
-
"json": {
|
|
11395
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11396
|
-
"name": "json",
|
|
11397
|
-
"allowNo": false,
|
|
11398
|
-
"type": "boolean"
|
|
11399
|
-
},
|
|
11400
|
-
"machine": {
|
|
11401
|
-
"char": "m",
|
|
11402
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11403
|
-
"name": "machine",
|
|
11404
|
-
"allowNo": false,
|
|
11405
|
-
"type": "boolean"
|
|
11406
|
-
},
|
|
11407
|
-
"ticket": {
|
|
11408
|
-
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
11409
|
-
"name": "ticket",
|
|
11410
|
-
"hasDynamicHelp": false,
|
|
11411
|
-
"multiple": false,
|
|
11412
|
-
"type": "option"
|
|
11413
|
-
},
|
|
11414
|
-
"card": {
|
|
11415
|
-
"description": "Trello card ID to map to --ticket",
|
|
11416
|
-
"name": "card",
|
|
11417
|
-
"hasDynamicHelp": false,
|
|
11418
|
-
"multiple": false,
|
|
11419
|
-
"type": "option"
|
|
11420
|
-
},
|
|
11421
|
-
"list": {
|
|
11422
|
-
"description": "Trello list ID used with --create-missing",
|
|
11423
|
-
"name": "list",
|
|
11424
|
-
"hasDynamicHelp": false,
|
|
11425
|
-
"multiple": false,
|
|
11426
|
-
"type": "option"
|
|
11427
|
-
},
|
|
11428
|
-
"create-missing": {
|
|
11429
|
-
"description": "Create Trello card when no mapping exists (requires list)",
|
|
11430
|
-
"name": "create-missing",
|
|
11431
|
-
"allowNo": false,
|
|
11432
|
-
"type": "boolean"
|
|
11433
|
-
},
|
|
11434
|
-
"dry-run": {
|
|
11435
|
-
"description": "Preview sync operations without making changes",
|
|
11436
|
-
"name": "dry-run",
|
|
11437
|
-
"allowNo": false,
|
|
11438
|
-
"type": "boolean"
|
|
11439
|
-
}
|
|
11440
|
-
},
|
|
11441
|
-
"hasDynamicHelp": false,
|
|
11442
|
-
"hiddenAliases": [],
|
|
11443
|
-
"id": "trello:sync",
|
|
11444
|
-
"pluginAlias": "@proletariat/cli",
|
|
11445
|
-
"pluginName": "@proletariat/cli",
|
|
11446
|
-
"pluginType": "core",
|
|
11447
|
-
"strict": true,
|
|
11448
|
-
"isESM": true,
|
|
11449
|
-
"relativePath": [
|
|
11450
|
-
"dist",
|
|
11451
|
-
"commands",
|
|
11452
|
-
"trello",
|
|
11453
|
-
"sync.js"
|
|
11454
|
-
]
|
|
11455
|
-
},
|
|
11456
|
-
"version:bump": {
|
|
11499
|
+
"version:bump": {
|
|
11457
11500
|
"aliases": [],
|
|
11458
11501
|
"args": {
|
|
11459
11502
|
"type": {
|
|
11460
|
-
"description": "Version bump type",
|
|
11461
|
-
"name": "type",
|
|
11462
|
-
"options": [
|
|
11463
|
-
"major",
|
|
11464
|
-
"minor",
|
|
11465
|
-
"patch"
|
|
11466
|
-
],
|
|
11467
|
-
"required": true
|
|
11468
|
-
}
|
|
11469
|
-
},
|
|
11470
|
-
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
11471
|
-
"examples": [
|
|
11472
|
-
"<%= config.bin %> version bump patch",
|
|
11473
|
-
"<%= config.bin %> version bump minor",
|
|
11474
|
-
"<%= config.bin %> version bump major",
|
|
11475
|
-
"<%= config.bin %> version bump patch --json"
|
|
11476
|
-
],
|
|
11477
|
-
"flags": {
|
|
11478
|
-
"json": {
|
|
11479
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11480
|
-
"name": "json",
|
|
11481
|
-
"allowNo": false,
|
|
11482
|
-
"type": "boolean"
|
|
11483
|
-
},
|
|
11484
|
-
"machine": {
|
|
11485
|
-
"char": "m",
|
|
11486
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11487
|
-
"name": "machine",
|
|
11488
|
-
"allowNo": false,
|
|
11489
|
-
"type": "boolean"
|
|
11490
|
-
}
|
|
11491
|
-
},
|
|
11492
|
-
"hasDynamicHelp": false,
|
|
11493
|
-
"hiddenAliases": [],
|
|
11494
|
-
"id": "version:bump",
|
|
11495
|
-
"pluginAlias": "@proletariat/cli",
|
|
11496
|
-
"pluginName": "@proletariat/cli",
|
|
11497
|
-
"pluginType": "core",
|
|
11498
|
-
"strict": true,
|
|
11499
|
-
"enableJsonFlag": false,
|
|
11500
|
-
"isESM": true,
|
|
11501
|
-
"relativePath": [
|
|
11502
|
-
"dist",
|
|
11503
|
-
"commands",
|
|
11504
|
-
"version",
|
|
11505
|
-
"bump.js"
|
|
11506
|
-
]
|
|
11507
|
-
},
|
|
11508
|
-
"workspace:add": {
|
|
11509
|
-
"aliases": [],
|
|
11510
|
-
"args": {
|
|
11511
|
-
"path": {
|
|
11512
|
-
"description": "Path to the workspace to register",
|
|
11513
|
-
"name": "path",
|
|
11514
|
-
"required": true
|
|
11515
|
-
}
|
|
11516
|
-
},
|
|
11517
|
-
"description": "Register an existing workspace in the machine config",
|
|
11518
|
-
"examples": [
|
|
11519
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
11520
|
-
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
11521
|
-
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
11522
|
-
],
|
|
11523
|
-
"flags": {
|
|
11524
|
-
"json": {
|
|
11525
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11526
|
-
"name": "json",
|
|
11527
|
-
"allowNo": false,
|
|
11528
|
-
"type": "boolean"
|
|
11529
|
-
},
|
|
11530
|
-
"machine": {
|
|
11531
|
-
"char": "m",
|
|
11532
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11533
|
-
"name": "machine",
|
|
11534
|
-
"allowNo": false,
|
|
11535
|
-
"type": "boolean"
|
|
11536
|
-
},
|
|
11537
|
-
"name": {
|
|
11538
|
-
"char": "n",
|
|
11539
|
-
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
11540
|
-
"name": "name",
|
|
11541
|
-
"hasDynamicHelp": false,
|
|
11542
|
-
"multiple": false,
|
|
11543
|
-
"type": "option"
|
|
11544
|
-
}
|
|
11545
|
-
},
|
|
11546
|
-
"hasDynamicHelp": false,
|
|
11547
|
-
"hiddenAliases": [],
|
|
11548
|
-
"id": "workspace:add",
|
|
11549
|
-
"pluginAlias": "@proletariat/cli",
|
|
11550
|
-
"pluginName": "@proletariat/cli",
|
|
11551
|
-
"pluginType": "core",
|
|
11552
|
-
"strict": true,
|
|
11553
|
-
"enableJsonFlag": false,
|
|
11554
|
-
"isESM": true,
|
|
11555
|
-
"relativePath": [
|
|
11556
|
-
"dist",
|
|
11557
|
-
"commands",
|
|
11558
|
-
"workspace",
|
|
11559
|
-
"add.js"
|
|
11560
|
-
]
|
|
11561
|
-
},
|
|
11562
|
-
"workspace:list": {
|
|
11563
|
-
"aliases": [],
|
|
11564
|
-
"args": {},
|
|
11565
|
-
"description": "List all registered and discovered HQ workspaces",
|
|
11566
|
-
"examples": [
|
|
11567
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11568
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
11569
|
-
],
|
|
11570
|
-
"flags": {
|
|
11571
|
-
"json": {
|
|
11572
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11573
|
-
"name": "json",
|
|
11574
|
-
"allowNo": false,
|
|
11575
|
-
"type": "boolean"
|
|
11576
|
-
},
|
|
11577
|
-
"machine": {
|
|
11578
|
-
"char": "m",
|
|
11579
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11580
|
-
"name": "machine",
|
|
11581
|
-
"allowNo": false,
|
|
11582
|
-
"type": "boolean"
|
|
11583
|
-
}
|
|
11584
|
-
},
|
|
11585
|
-
"hasDynamicHelp": false,
|
|
11586
|
-
"hiddenAliases": [],
|
|
11587
|
-
"id": "workspace:list",
|
|
11588
|
-
"pluginAlias": "@proletariat/cli",
|
|
11589
|
-
"pluginName": "@proletariat/cli",
|
|
11590
|
-
"pluginType": "core",
|
|
11591
|
-
"strict": true,
|
|
11592
|
-
"enableJsonFlag": false,
|
|
11593
|
-
"isESM": true,
|
|
11594
|
-
"relativePath": [
|
|
11595
|
-
"dist",
|
|
11596
|
-
"commands",
|
|
11597
|
-
"workspace",
|
|
11598
|
-
"list.js"
|
|
11599
|
-
]
|
|
11600
|
-
},
|
|
11601
|
-
"workspace:prune": {
|
|
11602
|
-
"aliases": [],
|
|
11603
|
-
"args": {},
|
|
11604
|
-
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
11605
|
-
"examples": [
|
|
11606
|
-
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
11607
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11608
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
11609
|
-
],
|
|
11610
|
-
"flags": {
|
|
11611
|
-
"json": {
|
|
11612
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11613
|
-
"name": "json",
|
|
11614
|
-
"allowNo": false,
|
|
11615
|
-
"type": "boolean"
|
|
11616
|
-
},
|
|
11617
|
-
"machine": {
|
|
11618
|
-
"char": "m",
|
|
11619
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11620
|
-
"name": "machine",
|
|
11621
|
-
"allowNo": false,
|
|
11622
|
-
"type": "boolean"
|
|
11623
|
-
},
|
|
11624
|
-
"dry-run": {
|
|
11625
|
-
"char": "d",
|
|
11626
|
-
"description": "Show what would be removed without removing",
|
|
11627
|
-
"name": "dry-run",
|
|
11628
|
-
"allowNo": false,
|
|
11629
|
-
"type": "boolean"
|
|
11630
|
-
},
|
|
11631
|
-
"force": {
|
|
11632
|
-
"char": "f",
|
|
11633
|
-
"description": "Skip confirmation prompt and prune immediately",
|
|
11634
|
-
"name": "force",
|
|
11635
|
-
"allowNo": false,
|
|
11636
|
-
"type": "boolean"
|
|
11637
|
-
}
|
|
11638
|
-
},
|
|
11639
|
-
"hasDynamicHelp": false,
|
|
11640
|
-
"hiddenAliases": [],
|
|
11641
|
-
"id": "workspace:prune",
|
|
11642
|
-
"pluginAlias": "@proletariat/cli",
|
|
11643
|
-
"pluginName": "@proletariat/cli",
|
|
11644
|
-
"pluginType": "core",
|
|
11645
|
-
"strict": true,
|
|
11646
|
-
"isESM": true,
|
|
11647
|
-
"relativePath": [
|
|
11648
|
-
"dist",
|
|
11649
|
-
"commands",
|
|
11650
|
-
"workspace",
|
|
11651
|
-
"prune.js"
|
|
11652
|
-
]
|
|
11653
|
-
},
|
|
11654
|
-
"workspace:remove": {
|
|
11655
|
-
"aliases": [],
|
|
11656
|
-
"args": {
|
|
11657
|
-
"nameOrPath": {
|
|
11658
|
-
"description": "Workspace name or path to unregister",
|
|
11659
|
-
"name": "nameOrPath",
|
|
11660
|
-
"required": true
|
|
11661
|
-
}
|
|
11662
|
-
},
|
|
11663
|
-
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
11664
|
-
"examples": [
|
|
11665
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
11666
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
11667
|
-
],
|
|
11668
|
-
"flags": {
|
|
11669
|
-
"json": {
|
|
11670
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11671
|
-
"name": "json",
|
|
11672
|
-
"allowNo": false,
|
|
11673
|
-
"type": "boolean"
|
|
11674
|
-
},
|
|
11675
|
-
"machine": {
|
|
11676
|
-
"char": "m",
|
|
11677
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11678
|
-
"name": "machine",
|
|
11679
|
-
"allowNo": false,
|
|
11680
|
-
"type": "boolean"
|
|
11681
|
-
}
|
|
11682
|
-
},
|
|
11683
|
-
"hasDynamicHelp": false,
|
|
11684
|
-
"hiddenAliases": [],
|
|
11685
|
-
"id": "workspace:remove",
|
|
11686
|
-
"pluginAlias": "@proletariat/cli",
|
|
11687
|
-
"pluginName": "@proletariat/cli",
|
|
11688
|
-
"pluginType": "core",
|
|
11689
|
-
"strict": true,
|
|
11690
|
-
"isESM": true,
|
|
11691
|
-
"relativePath": [
|
|
11692
|
-
"dist",
|
|
11693
|
-
"commands",
|
|
11694
|
-
"workspace",
|
|
11695
|
-
"remove.js"
|
|
11696
|
-
]
|
|
11697
|
-
},
|
|
11698
|
-
"workspace:use": {
|
|
11699
|
-
"aliases": [],
|
|
11700
|
-
"args": {
|
|
11701
|
-
"nameOrPath": {
|
|
11702
|
-
"description": "Workspace name or path",
|
|
11703
|
-
"name": "nameOrPath",
|
|
11503
|
+
"description": "Version bump type",
|
|
11504
|
+
"name": "type",
|
|
11505
|
+
"options": [
|
|
11506
|
+
"major",
|
|
11507
|
+
"minor",
|
|
11508
|
+
"patch"
|
|
11509
|
+
],
|
|
11704
11510
|
"required": true
|
|
11705
11511
|
}
|
|
11706
11512
|
},
|
|
11707
|
-
"description": "
|
|
11513
|
+
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
11708
11514
|
"examples": [
|
|
11709
|
-
"<%= config.bin %>
|
|
11710
|
-
"<%= config.bin %>
|
|
11515
|
+
"<%= config.bin %> version bump patch",
|
|
11516
|
+
"<%= config.bin %> version bump minor",
|
|
11517
|
+
"<%= config.bin %> version bump major",
|
|
11518
|
+
"<%= config.bin %> version bump patch --json"
|
|
11711
11519
|
],
|
|
11712
11520
|
"flags": {
|
|
11713
11521
|
"json": {
|
|
@@ -11726,17 +11534,18 @@
|
|
|
11726
11534
|
},
|
|
11727
11535
|
"hasDynamicHelp": false,
|
|
11728
11536
|
"hiddenAliases": [],
|
|
11729
|
-
"id": "
|
|
11537
|
+
"id": "version:bump",
|
|
11730
11538
|
"pluginAlias": "@proletariat/cli",
|
|
11731
11539
|
"pluginName": "@proletariat/cli",
|
|
11732
11540
|
"pluginType": "core",
|
|
11733
11541
|
"strict": true,
|
|
11542
|
+
"enableJsonFlag": false,
|
|
11734
11543
|
"isESM": true,
|
|
11735
11544
|
"relativePath": [
|
|
11736
11545
|
"dist",
|
|
11737
11546
|
"commands",
|
|
11738
|
-
"
|
|
11739
|
-
"
|
|
11547
|
+
"version",
|
|
11548
|
+
"bump.js"
|
|
11740
11549
|
]
|
|
11741
11550
|
},
|
|
11742
11551
|
"work:asana": {
|
|
@@ -13651,6 +13460,240 @@
|
|
|
13651
13460
|
"watch.js"
|
|
13652
13461
|
]
|
|
13653
13462
|
},
|
|
13463
|
+
"workspace:add": {
|
|
13464
|
+
"aliases": [],
|
|
13465
|
+
"args": {
|
|
13466
|
+
"path": {
|
|
13467
|
+
"description": "Path to the workspace to register",
|
|
13468
|
+
"name": "path",
|
|
13469
|
+
"required": true
|
|
13470
|
+
}
|
|
13471
|
+
},
|
|
13472
|
+
"description": "Register an existing workspace in the machine config",
|
|
13473
|
+
"examples": [
|
|
13474
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
13475
|
+
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
13476
|
+
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
13477
|
+
],
|
|
13478
|
+
"flags": {
|
|
13479
|
+
"json": {
|
|
13480
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13481
|
+
"name": "json",
|
|
13482
|
+
"allowNo": false,
|
|
13483
|
+
"type": "boolean"
|
|
13484
|
+
},
|
|
13485
|
+
"machine": {
|
|
13486
|
+
"char": "m",
|
|
13487
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13488
|
+
"name": "machine",
|
|
13489
|
+
"allowNo": false,
|
|
13490
|
+
"type": "boolean"
|
|
13491
|
+
},
|
|
13492
|
+
"name": {
|
|
13493
|
+
"char": "n",
|
|
13494
|
+
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
13495
|
+
"name": "name",
|
|
13496
|
+
"hasDynamicHelp": false,
|
|
13497
|
+
"multiple": false,
|
|
13498
|
+
"type": "option"
|
|
13499
|
+
}
|
|
13500
|
+
},
|
|
13501
|
+
"hasDynamicHelp": false,
|
|
13502
|
+
"hiddenAliases": [],
|
|
13503
|
+
"id": "workspace:add",
|
|
13504
|
+
"pluginAlias": "@proletariat/cli",
|
|
13505
|
+
"pluginName": "@proletariat/cli",
|
|
13506
|
+
"pluginType": "core",
|
|
13507
|
+
"strict": true,
|
|
13508
|
+
"enableJsonFlag": false,
|
|
13509
|
+
"isESM": true,
|
|
13510
|
+
"relativePath": [
|
|
13511
|
+
"dist",
|
|
13512
|
+
"commands",
|
|
13513
|
+
"workspace",
|
|
13514
|
+
"add.js"
|
|
13515
|
+
]
|
|
13516
|
+
},
|
|
13517
|
+
"workspace:list": {
|
|
13518
|
+
"aliases": [],
|
|
13519
|
+
"args": {},
|
|
13520
|
+
"description": "List all registered and discovered HQ workspaces",
|
|
13521
|
+
"examples": [
|
|
13522
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13523
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
13524
|
+
],
|
|
13525
|
+
"flags": {
|
|
13526
|
+
"json": {
|
|
13527
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13528
|
+
"name": "json",
|
|
13529
|
+
"allowNo": false,
|
|
13530
|
+
"type": "boolean"
|
|
13531
|
+
},
|
|
13532
|
+
"machine": {
|
|
13533
|
+
"char": "m",
|
|
13534
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13535
|
+
"name": "machine",
|
|
13536
|
+
"allowNo": false,
|
|
13537
|
+
"type": "boolean"
|
|
13538
|
+
}
|
|
13539
|
+
},
|
|
13540
|
+
"hasDynamicHelp": false,
|
|
13541
|
+
"hiddenAliases": [],
|
|
13542
|
+
"id": "workspace:list",
|
|
13543
|
+
"pluginAlias": "@proletariat/cli",
|
|
13544
|
+
"pluginName": "@proletariat/cli",
|
|
13545
|
+
"pluginType": "core",
|
|
13546
|
+
"strict": true,
|
|
13547
|
+
"enableJsonFlag": false,
|
|
13548
|
+
"isESM": true,
|
|
13549
|
+
"relativePath": [
|
|
13550
|
+
"dist",
|
|
13551
|
+
"commands",
|
|
13552
|
+
"workspace",
|
|
13553
|
+
"list.js"
|
|
13554
|
+
]
|
|
13555
|
+
},
|
|
13556
|
+
"workspace:prune": {
|
|
13557
|
+
"aliases": [],
|
|
13558
|
+
"args": {},
|
|
13559
|
+
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
13560
|
+
"examples": [
|
|
13561
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
13562
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13563
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
13564
|
+
],
|
|
13565
|
+
"flags": {
|
|
13566
|
+
"json": {
|
|
13567
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13568
|
+
"name": "json",
|
|
13569
|
+
"allowNo": false,
|
|
13570
|
+
"type": "boolean"
|
|
13571
|
+
},
|
|
13572
|
+
"machine": {
|
|
13573
|
+
"char": "m",
|
|
13574
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13575
|
+
"name": "machine",
|
|
13576
|
+
"allowNo": false,
|
|
13577
|
+
"type": "boolean"
|
|
13578
|
+
},
|
|
13579
|
+
"dry-run": {
|
|
13580
|
+
"char": "d",
|
|
13581
|
+
"description": "Show what would be removed without removing",
|
|
13582
|
+
"name": "dry-run",
|
|
13583
|
+
"allowNo": false,
|
|
13584
|
+
"type": "boolean"
|
|
13585
|
+
},
|
|
13586
|
+
"force": {
|
|
13587
|
+
"char": "f",
|
|
13588
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
13589
|
+
"name": "force",
|
|
13590
|
+
"allowNo": false,
|
|
13591
|
+
"type": "boolean"
|
|
13592
|
+
}
|
|
13593
|
+
},
|
|
13594
|
+
"hasDynamicHelp": false,
|
|
13595
|
+
"hiddenAliases": [],
|
|
13596
|
+
"id": "workspace:prune",
|
|
13597
|
+
"pluginAlias": "@proletariat/cli",
|
|
13598
|
+
"pluginName": "@proletariat/cli",
|
|
13599
|
+
"pluginType": "core",
|
|
13600
|
+
"strict": true,
|
|
13601
|
+
"isESM": true,
|
|
13602
|
+
"relativePath": [
|
|
13603
|
+
"dist",
|
|
13604
|
+
"commands",
|
|
13605
|
+
"workspace",
|
|
13606
|
+
"prune.js"
|
|
13607
|
+
]
|
|
13608
|
+
},
|
|
13609
|
+
"workspace:remove": {
|
|
13610
|
+
"aliases": [],
|
|
13611
|
+
"args": {
|
|
13612
|
+
"nameOrPath": {
|
|
13613
|
+
"description": "Workspace name or path to unregister",
|
|
13614
|
+
"name": "nameOrPath",
|
|
13615
|
+
"required": true
|
|
13616
|
+
}
|
|
13617
|
+
},
|
|
13618
|
+
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
13619
|
+
"examples": [
|
|
13620
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13621
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13622
|
+
],
|
|
13623
|
+
"flags": {
|
|
13624
|
+
"json": {
|
|
13625
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13626
|
+
"name": "json",
|
|
13627
|
+
"allowNo": false,
|
|
13628
|
+
"type": "boolean"
|
|
13629
|
+
},
|
|
13630
|
+
"machine": {
|
|
13631
|
+
"char": "m",
|
|
13632
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13633
|
+
"name": "machine",
|
|
13634
|
+
"allowNo": false,
|
|
13635
|
+
"type": "boolean"
|
|
13636
|
+
}
|
|
13637
|
+
},
|
|
13638
|
+
"hasDynamicHelp": false,
|
|
13639
|
+
"hiddenAliases": [],
|
|
13640
|
+
"id": "workspace:remove",
|
|
13641
|
+
"pluginAlias": "@proletariat/cli",
|
|
13642
|
+
"pluginName": "@proletariat/cli",
|
|
13643
|
+
"pluginType": "core",
|
|
13644
|
+
"strict": true,
|
|
13645
|
+
"isESM": true,
|
|
13646
|
+
"relativePath": [
|
|
13647
|
+
"dist",
|
|
13648
|
+
"commands",
|
|
13649
|
+
"workspace",
|
|
13650
|
+
"remove.js"
|
|
13651
|
+
]
|
|
13652
|
+
},
|
|
13653
|
+
"workspace:use": {
|
|
13654
|
+
"aliases": [],
|
|
13655
|
+
"args": {
|
|
13656
|
+
"nameOrPath": {
|
|
13657
|
+
"description": "Workspace name or path",
|
|
13658
|
+
"name": "nameOrPath",
|
|
13659
|
+
"required": true
|
|
13660
|
+
}
|
|
13661
|
+
},
|
|
13662
|
+
"description": "Set the active workspace",
|
|
13663
|
+
"examples": [
|
|
13664
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13665
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13666
|
+
],
|
|
13667
|
+
"flags": {
|
|
13668
|
+
"json": {
|
|
13669
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13670
|
+
"name": "json",
|
|
13671
|
+
"allowNo": false,
|
|
13672
|
+
"type": "boolean"
|
|
13673
|
+
},
|
|
13674
|
+
"machine": {
|
|
13675
|
+
"char": "m",
|
|
13676
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13677
|
+
"name": "machine",
|
|
13678
|
+
"allowNo": false,
|
|
13679
|
+
"type": "boolean"
|
|
13680
|
+
}
|
|
13681
|
+
},
|
|
13682
|
+
"hasDynamicHelp": false,
|
|
13683
|
+
"hiddenAliases": [],
|
|
13684
|
+
"id": "workspace:use",
|
|
13685
|
+
"pluginAlias": "@proletariat/cli",
|
|
13686
|
+
"pluginName": "@proletariat/cli",
|
|
13687
|
+
"pluginType": "core",
|
|
13688
|
+
"strict": true,
|
|
13689
|
+
"isESM": true,
|
|
13690
|
+
"relativePath": [
|
|
13691
|
+
"dist",
|
|
13692
|
+
"commands",
|
|
13693
|
+
"workspace",
|
|
13694
|
+
"use.js"
|
|
13695
|
+
]
|
|
13696
|
+
},
|
|
13654
13697
|
"agent:staff:add": {
|
|
13655
13698
|
"aliases": [],
|
|
13656
13699
|
"args": {
|
|
@@ -14716,5 +14759,5 @@
|
|
|
14716
14759
|
]
|
|
14717
14760
|
}
|
|
14718
14761
|
},
|
|
14719
|
-
"version": "0.3.
|
|
14762
|
+
"version": "0.3.84"
|
|
14720
14763
|
}
|