@proletariat/cli 0.3.25 → 0.3.26

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.
Files changed (69) hide show
  1. package/dist/commands/action/index.js +2 -2
  2. package/dist/commands/agent/auth.js +1 -1
  3. package/dist/commands/agent/cleanup.js +6 -6
  4. package/dist/commands/agent/discover.js +1 -1
  5. package/dist/commands/agent/remove.js +4 -4
  6. package/dist/commands/autocomplete/setup.d.ts +2 -2
  7. package/dist/commands/autocomplete/setup.js +5 -5
  8. package/dist/commands/branch/create.js +31 -30
  9. package/dist/commands/category/create.js +4 -5
  10. package/dist/commands/category/delete.js +2 -3
  11. package/dist/commands/category/rename.js +2 -3
  12. package/dist/commands/claude.d.ts +2 -8
  13. package/dist/commands/claude.js +26 -26
  14. package/dist/commands/commit.d.ts +2 -8
  15. package/dist/commands/commit.js +4 -26
  16. package/dist/commands/config/index.d.ts +2 -10
  17. package/dist/commands/config/index.js +8 -34
  18. package/dist/commands/docker/index.d.ts +2 -2
  19. package/dist/commands/docker/index.js +8 -8
  20. package/dist/commands/epic/delete.js +4 -5
  21. package/dist/commands/feedback/submit.d.ts +2 -2
  22. package/dist/commands/feedback/submit.js +9 -9
  23. package/dist/commands/link/index.js +2 -2
  24. package/dist/commands/pmo/init.d.ts +2 -2
  25. package/dist/commands/pmo/init.js +7 -7
  26. package/dist/commands/project/spec.js +6 -6
  27. package/dist/commands/session/health.d.ts +29 -0
  28. package/dist/commands/session/health.js +495 -0
  29. package/dist/commands/session/index.js +4 -0
  30. package/dist/commands/spec/edit.js +2 -3
  31. package/dist/commands/staff/add.d.ts +2 -2
  32. package/dist/commands/staff/add.js +15 -14
  33. package/dist/commands/staff/index.js +2 -2
  34. package/dist/commands/staff/remove.js +4 -4
  35. package/dist/commands/status/index.js +6 -7
  36. package/dist/commands/template/apply.js +10 -11
  37. package/dist/commands/template/create.js +18 -17
  38. package/dist/commands/template/index.d.ts +2 -2
  39. package/dist/commands/template/index.js +6 -6
  40. package/dist/commands/template/save.js +8 -7
  41. package/dist/commands/template/update.js +6 -7
  42. package/dist/commands/terminal/title.d.ts +2 -26
  43. package/dist/commands/terminal/title.js +4 -33
  44. package/dist/commands/theme/index.d.ts +2 -2
  45. package/dist/commands/theme/index.js +19 -18
  46. package/dist/commands/theme/set.d.ts +2 -2
  47. package/dist/commands/theme/set.js +5 -5
  48. package/dist/commands/ticket/create.js +34 -16
  49. package/dist/commands/ticket/delete.js +15 -13
  50. package/dist/commands/ticket/edit.js +20 -12
  51. package/dist/commands/ticket/epic.js +12 -10
  52. package/dist/commands/ticket/project.js +11 -9
  53. package/dist/commands/ticket/reassign.js +23 -19
  54. package/dist/commands/ticket/spec.js +7 -5
  55. package/dist/commands/ticket/update.js +55 -53
  56. package/dist/commands/whoami.js +1 -0
  57. package/dist/commands/work/ready.js +7 -7
  58. package/dist/commands/work/revise.js +13 -11
  59. package/dist/commands/work/spawn.js +154 -57
  60. package/dist/commands/work/start.d.ts +1 -0
  61. package/dist/commands/work/start.js +295 -173
  62. package/dist/hooks/init.js +4 -0
  63. package/dist/lib/pr/index.d.ts +4 -0
  64. package/dist/lib/pr/index.js +32 -14
  65. package/dist/lib/prompt-command.d.ts +3 -0
  66. package/dist/lib/prompt-json.d.ts +72 -1
  67. package/dist/lib/prompt-json.js +46 -0
  68. package/oclif.manifest.json +1184 -1116
  69. package/package.json +1 -1
@@ -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",
@@ -885,7 +883,7 @@
885
883
  "machine"
886
884
  ],
887
885
  "char": "m",
888
- "description": "Output as JSON for AI agents/scripts",
886
+ "description": "Output status as JSON",
889
887
  "name": "json",
890
888
  "allowNo": false,
891
889
  "type": "boolean"
@@ -1023,7 +1021,7 @@
1023
1021
  "machine"
1024
1022
  ],
1025
1023
  "char": "m",
1026
- "description": "Output as JSON for AI agents/scripts",
1024
+ "description": "Output discovery results as JSON",
1027
1025
  "name": "json",
1028
1026
  "allowNo": false,
1029
1027
  "type": "boolean"
@@ -1561,7 +1559,6 @@
1561
1559
  "pluginName": "@proletariat/cli",
1562
1560
  "pluginType": "core",
1563
1561
  "strict": true,
1564
- "enableJsonFlag": false,
1565
1562
  "isESM": true,
1566
1563
  "relativePath": [
1567
1564
  "dist",
@@ -2462,7 +2459,6 @@
2462
2459
  "pluginName": "@proletariat/cli",
2463
2460
  "pluginType": "core",
2464
2461
  "strict": true,
2465
- "enableJsonFlag": false,
2466
2462
  "isESM": true,
2467
2463
  "relativePath": [
2468
2464
  "dist",
@@ -2569,7 +2565,6 @@
2569
2565
  "pluginName": "@proletariat/cli",
2570
2566
  "pluginType": "core",
2571
2567
  "strict": true,
2572
- "enableJsonFlag": false,
2573
2568
  "isESM": true,
2574
2569
  "relativePath": [
2575
2570
  "dist",
@@ -3865,6 +3860,236 @@
3865
3860
  "view.js"
3866
3861
  ]
3867
3862
  },
3863
+ "feedback": {
3864
+ "aliases": [],
3865
+ "args": {},
3866
+ "description": "Interactive menu for feedback and issue operations",
3867
+ "examples": [
3868
+ "<%= config.bin %> <%= command.id %>",
3869
+ "<%= config.bin %> <%= command.id %> --action submit"
3870
+ ],
3871
+ "flags": {
3872
+ "json": {
3873
+ "aliases": [
3874
+ "machine"
3875
+ ],
3876
+ "char": "m",
3877
+ "description": "Output as JSON for AI agents/scripts",
3878
+ "name": "json",
3879
+ "allowNo": false,
3880
+ "type": "boolean"
3881
+ },
3882
+ "action": {
3883
+ "char": "a",
3884
+ "description": "Action to perform (submit, list, view)",
3885
+ "name": "action",
3886
+ "hasDynamicHelp": false,
3887
+ "multiple": false,
3888
+ "options": [
3889
+ "submit",
3890
+ "list",
3891
+ "view"
3892
+ ],
3893
+ "type": "option"
3894
+ }
3895
+ },
3896
+ "hasDynamicHelp": false,
3897
+ "hiddenAliases": [],
3898
+ "id": "feedback",
3899
+ "pluginAlias": "@proletariat/cli",
3900
+ "pluginName": "@proletariat/cli",
3901
+ "pluginType": "core",
3902
+ "strict": true,
3903
+ "enableJsonFlag": false,
3904
+ "isESM": true,
3905
+ "relativePath": [
3906
+ "dist",
3907
+ "commands",
3908
+ "feedback",
3909
+ "index.js"
3910
+ ]
3911
+ },
3912
+ "feedback:list": {
3913
+ "aliases": [],
3914
+ "args": {},
3915
+ "description": "List recent feedback issues from the repository",
3916
+ "examples": [
3917
+ "<%= config.bin %> <%= command.id %>",
3918
+ "<%= config.bin %> <%= command.id %> --category bug",
3919
+ "<%= config.bin %> <%= command.id %> --state closed --limit 10",
3920
+ "<%= config.bin %> <%= command.id %> --json"
3921
+ ],
3922
+ "flags": {
3923
+ "json": {
3924
+ "aliases": [
3925
+ "machine"
3926
+ ],
3927
+ "char": "m",
3928
+ "description": "Output as JSON for AI agents/scripts",
3929
+ "name": "json",
3930
+ "allowNo": false,
3931
+ "type": "boolean"
3932
+ },
3933
+ "category": {
3934
+ "char": "c",
3935
+ "description": "Filter by category (bug, feature, general)",
3936
+ "name": "category",
3937
+ "hasDynamicHelp": false,
3938
+ "multiple": false,
3939
+ "options": [
3940
+ "bug",
3941
+ "feature",
3942
+ "general"
3943
+ ],
3944
+ "type": "option"
3945
+ },
3946
+ "state": {
3947
+ "char": "s",
3948
+ "description": "Filter by state",
3949
+ "name": "state",
3950
+ "default": "open",
3951
+ "hasDynamicHelp": false,
3952
+ "multiple": false,
3953
+ "options": [
3954
+ "open",
3955
+ "closed",
3956
+ "all"
3957
+ ],
3958
+ "type": "option"
3959
+ },
3960
+ "limit": {
3961
+ "char": "l",
3962
+ "description": "Maximum number of issues to show",
3963
+ "name": "limit",
3964
+ "default": 20,
3965
+ "hasDynamicHelp": false,
3966
+ "multiple": false,
3967
+ "type": "option"
3968
+ }
3969
+ },
3970
+ "hasDynamicHelp": false,
3971
+ "hiddenAliases": [],
3972
+ "id": "feedback:list",
3973
+ "pluginAlias": "@proletariat/cli",
3974
+ "pluginName": "@proletariat/cli",
3975
+ "pluginType": "core",
3976
+ "strict": true,
3977
+ "enableJsonFlag": false,
3978
+ "isESM": true,
3979
+ "relativePath": [
3980
+ "dist",
3981
+ "commands",
3982
+ "feedback",
3983
+ "list.js"
3984
+ ]
3985
+ },
3986
+ "feedback:submit": {
3987
+ "aliases": [],
3988
+ "args": {},
3989
+ "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
3990
+ "examples": [
3991
+ "<%= config.bin %> <%= command.id %>",
3992
+ "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
3993
+ "<%= config.bin %> <%= command.id %> --json"
3994
+ ],
3995
+ "flags": {
3996
+ "json": {
3997
+ "aliases": [
3998
+ "machine"
3999
+ ],
4000
+ "char": "m",
4001
+ "description": "Output as JSON for AI agents/scripts",
4002
+ "name": "json",
4003
+ "allowNo": false,
4004
+ "type": "boolean"
4005
+ },
4006
+ "title": {
4007
+ "char": "t",
4008
+ "description": "Issue title (one-liner) [required for non-interactive]",
4009
+ "name": "title",
4010
+ "hasDynamicHelp": false,
4011
+ "multiple": false,
4012
+ "type": "option"
4013
+ },
4014
+ "body": {
4015
+ "char": "b",
4016
+ "description": "Issue description [required for non-interactive]",
4017
+ "name": "body",
4018
+ "hasDynamicHelp": false,
4019
+ "multiple": false,
4020
+ "type": "option"
4021
+ },
4022
+ "category": {
4023
+ "char": "c",
4024
+ "description": "Feedback category",
4025
+ "name": "category",
4026
+ "hasDynamicHelp": false,
4027
+ "multiple": false,
4028
+ "options": [
4029
+ "bug",
4030
+ "feature",
4031
+ "general"
4032
+ ],
4033
+ "type": "option"
4034
+ }
4035
+ },
4036
+ "hasDynamicHelp": false,
4037
+ "hiddenAliases": [],
4038
+ "id": "feedback:submit",
4039
+ "pluginAlias": "@proletariat/cli",
4040
+ "pluginName": "@proletariat/cli",
4041
+ "pluginType": "core",
4042
+ "strict": true,
4043
+ "isESM": true,
4044
+ "relativePath": [
4045
+ "dist",
4046
+ "commands",
4047
+ "feedback",
4048
+ "submit.js"
4049
+ ]
4050
+ },
4051
+ "feedback:view": {
4052
+ "aliases": [],
4053
+ "args": {
4054
+ "number": {
4055
+ "description": "Issue number to view",
4056
+ "name": "number",
4057
+ "required": true
4058
+ }
4059
+ },
4060
+ "description": "View details of a specific feedback issue",
4061
+ "examples": [
4062
+ "<%= config.bin %> <%= command.id %> 123",
4063
+ "<%= config.bin %> <%= command.id %> 123 --json"
4064
+ ],
4065
+ "flags": {
4066
+ "json": {
4067
+ "aliases": [
4068
+ "machine"
4069
+ ],
4070
+ "char": "m",
4071
+ "description": "Output as JSON for AI agents/scripts",
4072
+ "name": "json",
4073
+ "allowNo": false,
4074
+ "type": "boolean"
4075
+ }
4076
+ },
4077
+ "hasDynamicHelp": false,
4078
+ "hiddenAliases": [],
4079
+ "id": "feedback:view",
4080
+ "pluginAlias": "@proletariat/cli",
4081
+ "pluginName": "@proletariat/cli",
4082
+ "pluginType": "core",
4083
+ "strict": true,
4084
+ "enableJsonFlag": false,
4085
+ "isESM": true,
4086
+ "relativePath": [
4087
+ "dist",
4088
+ "commands",
4089
+ "feedback",
4090
+ "view.js"
4091
+ ]
4092
+ },
3868
4093
  "execution:config": {
3869
4094
  "aliases": [],
3870
4095
  "args": {},
@@ -4319,246 +4544,15 @@
4319
4544
  "view.js"
4320
4545
  ]
4321
4546
  },
4322
- "feedback": {
4547
+ "gh": {
4323
4548
  "aliases": [],
4324
4549
  "args": {},
4325
- "description": "Interactive menu for feedback and issue operations",
4550
+ "description": "GitHub CLI setup and status for PR workflow",
4326
4551
  "examples": [
4327
4552
  "<%= config.bin %> <%= command.id %>",
4328
- "<%= config.bin %> <%= command.id %> --action submit"
4329
- ],
4330
- "flags": {
4331
- "json": {
4332
- "aliases": [
4333
- "machine"
4334
- ],
4335
- "char": "m",
4336
- "description": "Output as JSON for AI agents/scripts",
4337
- "name": "json",
4338
- "allowNo": false,
4339
- "type": "boolean"
4340
- },
4341
- "action": {
4342
- "char": "a",
4343
- "description": "Action to perform (submit, list, view)",
4344
- "name": "action",
4345
- "hasDynamicHelp": false,
4346
- "multiple": false,
4347
- "options": [
4348
- "submit",
4349
- "list",
4350
- "view"
4351
- ],
4352
- "type": "option"
4353
- }
4354
- },
4355
- "hasDynamicHelp": false,
4356
- "hiddenAliases": [],
4357
- "id": "feedback",
4358
- "pluginAlias": "@proletariat/cli",
4359
- "pluginName": "@proletariat/cli",
4360
- "pluginType": "core",
4361
- "strict": true,
4362
- "enableJsonFlag": false,
4363
- "isESM": true,
4364
- "relativePath": [
4365
- "dist",
4366
- "commands",
4367
- "feedback",
4368
- "index.js"
4369
- ]
4370
- },
4371
- "feedback:list": {
4372
- "aliases": [],
4373
- "args": {},
4374
- "description": "List recent feedback issues from the repository",
4375
- "examples": [
4376
- "<%= config.bin %> <%= command.id %>",
4377
- "<%= config.bin %> <%= command.id %> --category bug",
4378
- "<%= config.bin %> <%= command.id %> --state closed --limit 10",
4379
- "<%= config.bin %> <%= command.id %> --json"
4380
- ],
4381
- "flags": {
4382
- "json": {
4383
- "aliases": [
4384
- "machine"
4385
- ],
4386
- "char": "m",
4387
- "description": "Output as JSON for AI agents/scripts",
4388
- "name": "json",
4389
- "allowNo": false,
4390
- "type": "boolean"
4391
- },
4392
- "category": {
4393
- "char": "c",
4394
- "description": "Filter by category (bug, feature, general)",
4395
- "name": "category",
4396
- "hasDynamicHelp": false,
4397
- "multiple": false,
4398
- "options": [
4399
- "bug",
4400
- "feature",
4401
- "general"
4402
- ],
4403
- "type": "option"
4404
- },
4405
- "state": {
4406
- "char": "s",
4407
- "description": "Filter by state",
4408
- "name": "state",
4409
- "default": "open",
4410
- "hasDynamicHelp": false,
4411
- "multiple": false,
4412
- "options": [
4413
- "open",
4414
- "closed",
4415
- "all"
4416
- ],
4417
- "type": "option"
4418
- },
4419
- "limit": {
4420
- "char": "l",
4421
- "description": "Maximum number of issues to show",
4422
- "name": "limit",
4423
- "default": 20,
4424
- "hasDynamicHelp": false,
4425
- "multiple": false,
4426
- "type": "option"
4427
- }
4428
- },
4429
- "hasDynamicHelp": false,
4430
- "hiddenAliases": [],
4431
- "id": "feedback:list",
4432
- "pluginAlias": "@proletariat/cli",
4433
- "pluginName": "@proletariat/cli",
4434
- "pluginType": "core",
4435
- "strict": true,
4436
- "enableJsonFlag": false,
4437
- "isESM": true,
4438
- "relativePath": [
4439
- "dist",
4440
- "commands",
4441
- "feedback",
4442
- "list.js"
4443
- ]
4444
- },
4445
- "feedback:submit": {
4446
- "aliases": [],
4447
- "args": {},
4448
- "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
4449
- "examples": [
4450
- "<%= config.bin %> <%= command.id %>",
4451
- "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
4452
- "<%= config.bin %> <%= command.id %> --json"
4453
- ],
4454
- "flags": {
4455
- "json": {
4456
- "aliases": [
4457
- "machine"
4458
- ],
4459
- "char": "m",
4460
- "description": "Output as JSON for AI agents/scripts",
4461
- "name": "json",
4462
- "allowNo": false,
4463
- "type": "boolean"
4464
- },
4465
- "title": {
4466
- "char": "t",
4467
- "description": "Issue title (one-liner) [required for non-interactive]",
4468
- "name": "title",
4469
- "hasDynamicHelp": false,
4470
- "multiple": false,
4471
- "type": "option"
4472
- },
4473
- "body": {
4474
- "char": "b",
4475
- "description": "Issue description [required for non-interactive]",
4476
- "name": "body",
4477
- "hasDynamicHelp": false,
4478
- "multiple": false,
4479
- "type": "option"
4480
- },
4481
- "category": {
4482
- "char": "c",
4483
- "description": "Feedback category",
4484
- "name": "category",
4485
- "hasDynamicHelp": false,
4486
- "multiple": false,
4487
- "options": [
4488
- "bug",
4489
- "feature",
4490
- "general"
4491
- ],
4492
- "type": "option"
4493
- }
4494
- },
4495
- "hasDynamicHelp": false,
4496
- "hiddenAliases": [],
4497
- "id": "feedback:submit",
4498
- "pluginAlias": "@proletariat/cli",
4499
- "pluginName": "@proletariat/cli",
4500
- "pluginType": "core",
4501
- "strict": true,
4502
- "enableJsonFlag": false,
4503
- "isESM": true,
4504
- "relativePath": [
4505
- "dist",
4506
- "commands",
4507
- "feedback",
4508
- "submit.js"
4509
- ]
4510
- },
4511
- "feedback:view": {
4512
- "aliases": [],
4513
- "args": {
4514
- "number": {
4515
- "description": "Issue number to view",
4516
- "name": "number",
4517
- "required": true
4518
- }
4519
- },
4520
- "description": "View details of a specific feedback issue",
4521
- "examples": [
4522
- "<%= config.bin %> <%= command.id %> 123",
4523
- "<%= config.bin %> <%= command.id %> 123 --json"
4524
- ],
4525
- "flags": {
4526
- "json": {
4527
- "aliases": [
4528
- "machine"
4529
- ],
4530
- "char": "m",
4531
- "description": "Output as JSON for AI agents/scripts",
4532
- "name": "json",
4533
- "allowNo": false,
4534
- "type": "boolean"
4535
- }
4536
- },
4537
- "hasDynamicHelp": false,
4538
- "hiddenAliases": [],
4539
- "id": "feedback:view",
4540
- "pluginAlias": "@proletariat/cli",
4541
- "pluginName": "@proletariat/cli",
4542
- "pluginType": "core",
4543
- "strict": true,
4544
- "enableJsonFlag": false,
4545
- "isESM": true,
4546
- "relativePath": [
4547
- "dist",
4548
- "commands",
4549
- "feedback",
4550
- "view.js"
4551
- ]
4552
- },
4553
- "gh": {
4554
- "aliases": [],
4555
- "args": {},
4556
- "description": "GitHub CLI setup and status for PR workflow",
4557
- "examples": [
4558
- "<%= config.bin %> <%= command.id %>",
4559
- "<%= config.bin %> <%= command.id %> status",
4560
- "<%= config.bin %> <%= command.id %> login",
4561
- "<%= config.bin %> <%= command.id %> token"
4553
+ "<%= config.bin %> <%= command.id %> status",
4554
+ "<%= config.bin %> <%= command.id %> login",
4555
+ "<%= config.bin %> <%= command.id %> token"
4562
4556
  ],
4563
4557
  "flags": {
4564
4558
  "json": {
@@ -4946,170 +4940,42 @@
4946
4940
  "remove.js"
4947
4941
  ]
4948
4942
  },
4949
- "phase:create": {
4943
+ "pmo:init": {
4950
4944
  "aliases": [],
4951
- "args": {
4952
- "name": {
4953
- "description": "Phase name",
4954
- "name": "name",
4955
- "required": false
4956
- }
4957
- },
4958
- "description": "Create a new project lifecycle phase",
4945
+ "args": {},
4946
+ "description": "Initialize PMO (Project Management Org) in current directory or HQ",
4959
4947
  "examples": [
4960
- "<%= config.bin %> <%= command.id %> \"On Hold\" --category unstarted",
4961
- "<%= config.bin %> <%= command.id %> \"In Review\" --category started --color \"#FFA500\"",
4962
- "<%= config.bin %> <%= command.id %> -i # Interactive mode"
4948
+ "<%= config.bin %> <%= command.id %>",
4949
+ "<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
4950
+ "<%= config.bin %> <%= command.id %> --location separate --template linear"
4963
4951
  ],
4964
4952
  "flags": {
4965
- "project": {
4966
- "char": "P",
4967
- "description": "Project ID (uses first project if only one exists)",
4968
- "name": "project",
4953
+ "location": {
4954
+ "char": "l",
4955
+ "description": "PMO location (separate or repo:name)",
4956
+ "name": "location",
4969
4957
  "hasDynamicHelp": false,
4970
4958
  "multiple": false,
4971
4959
  "type": "option"
4972
4960
  },
4973
- "json": {
4974
- "aliases": [
4975
- "machine"
4976
- ],
4977
- "char": "m",
4978
- "description": "Output as JSON for AI agents/scripts",
4979
- "name": "json",
4980
- "allowNo": false,
4981
- "type": "boolean"
4982
- },
4983
- "category": {
4984
- "char": "c",
4985
- "description": "State category [required for non-interactive]",
4986
- "name": "category",
4961
+ "template": {
4962
+ "char": "t",
4963
+ "description": "Board template",
4964
+ "name": "template",
4987
4965
  "hasDynamicHelp": false,
4988
4966
  "multiple": false,
4989
4967
  "options": [
4990
- "backlog",
4991
- "unstarted",
4992
- "started",
4993
- "completed",
4994
- "canceled"
4968
+ "kanban",
4969
+ "linear",
4970
+ "5-tool-founder",
4971
+ "custom"
4995
4972
  ],
4996
4973
  "type": "option"
4997
4974
  },
4998
- "color": {
4999
- "description": "Hex color (e.g., \"#FF5733\")",
5000
- "name": "color",
5001
- "hasDynamicHelp": false,
5002
- "multiple": false,
5003
- "type": "option"
5004
- },
5005
- "description": {
5006
- "char": "d",
5007
- "description": "Phase description",
5008
- "name": "description",
5009
- "hasDynamicHelp": false,
5010
- "multiple": false,
5011
- "type": "option"
5012
- },
5013
- "default": {
5014
- "description": "Set as default phase for new projects",
5015
- "name": "default",
5016
- "allowNo": false,
5017
- "type": "boolean"
5018
- },
5019
- "interactive": {
5020
- "char": "i",
5021
- "description": "Interactive mode",
5022
- "name": "interactive",
5023
- "allowNo": false,
5024
- "type": "boolean"
5025
- }
5026
- },
5027
- "hasDynamicHelp": false,
5028
- "hiddenAliases": [],
5029
- "id": "phase:create",
5030
- "pluginAlias": "@proletariat/cli",
5031
- "pluginName": "@proletariat/cli",
5032
- "pluginType": "core",
5033
- "strict": true,
5034
- "isESM": true,
5035
- "relativePath": [
5036
- "dist",
5037
- "commands",
5038
- "phase",
5039
- "create.js"
5040
- ]
5041
- },
5042
- "phase:delete": {
5043
- "aliases": [],
5044
- "args": {
5045
- "id": {
5046
- "description": "Phase ID",
5047
- "name": "id",
5048
- "required": true
5049
- }
5050
- },
5051
- "description": "Delete a project lifecycle phase",
5052
- "examples": [
5053
- "<%= config.bin %> <%= command.id %> on-hold",
5054
- "<%= config.bin %> <%= command.id %> on-hold --force"
5055
- ],
5056
- "flags": {
5057
- "project": {
5058
- "char": "P",
5059
- "description": "Project ID (uses first project if only one exists)",
5060
- "name": "project",
5061
- "hasDynamicHelp": false,
5062
- "multiple": false,
5063
- "type": "option"
5064
- },
5065
- "json": {
5066
- "aliases": [
5067
- "machine"
5068
- ],
5069
- "char": "m",
5070
- "description": "Output as JSON for AI agents/scripts",
5071
- "name": "json",
5072
- "allowNo": false,
5073
- "type": "boolean"
5074
- },
5075
- "force": {
5076
- "char": "f",
5077
- "description": "Skip confirmation",
5078
- "name": "force",
5079
- "allowNo": false,
5080
- "type": "boolean"
5081
- }
5082
- },
5083
- "hasDynamicHelp": false,
5084
- "hiddenAliases": [],
5085
- "id": "phase:delete",
5086
- "pluginAlias": "@proletariat/cli",
5087
- "pluginName": "@proletariat/cli",
5088
- "pluginType": "core",
5089
- "strict": true,
5090
- "isESM": true,
5091
- "relativePath": [
5092
- "dist",
5093
- "commands",
5094
- "phase",
5095
- "delete.js"
5096
- ]
5097
- },
5098
- "phase:list": {
5099
- "aliases": [],
5100
- "args": {},
5101
- "description": "List all project lifecycle phases",
5102
- "examples": [
5103
- "<%= config.bin %> <%= command.id %>",
5104
- "<%= config.bin %> <%= command.id %> --category started",
5105
- "<%= config.bin %> <%= command.id %> --machine",
5106
- "<%= config.bin %> <%= command.id %> --json"
5107
- ],
5108
- "flags": {
5109
- "project": {
5110
- "char": "P",
5111
- "description": "Project ID (uses first project if only one exists)",
5112
- "name": "project",
4975
+ "name": {
4976
+ "char": "n",
4977
+ "description": "Board name",
4978
+ "name": "name",
5113
4979
  "hasDynamicHelp": false,
5114
4980
  "multiple": false,
5115
4981
  "type": "option"
@@ -5119,81 +4985,27 @@
5119
4985
  "machine"
5120
4986
  ],
5121
4987
  "char": "m",
5122
- "description": "Output as JSON for AI agents/scripts",
4988
+ "description": "Output prompt configuration as JSON (for AI agents/scripts)",
5123
4989
  "name": "json",
5124
4990
  "allowNo": false,
5125
4991
  "type": "boolean"
5126
4992
  },
5127
- "category": {
5128
- "char": "c",
5129
- "description": "Filter by category",
5130
- "name": "category",
4993
+ "action": {
4994
+ "description": "Action for existing PMO (cancel or reinitialize)",
4995
+ "hidden": true,
4996
+ "name": "action",
5131
4997
  "hasDynamicHelp": false,
5132
4998
  "multiple": false,
5133
4999
  "options": [
5134
- "backlog",
5135
- "unstarted",
5136
- "started",
5137
- "completed",
5138
- "canceled"
5000
+ "cancel",
5001
+ "reinitialize"
5139
5002
  ],
5140
5003
  "type": "option"
5141
- }
5142
- },
5143
- "hasDynamicHelp": false,
5144
- "hiddenAliases": [],
5145
- "id": "phase:list",
5146
- "pluginAlias": "@proletariat/cli",
5147
- "pluginName": "@proletariat/cli",
5148
- "pluginType": "core",
5149
- "strict": true,
5150
- "isESM": true,
5151
- "relativePath": [
5152
- "dist",
5153
- "commands",
5154
- "phase",
5155
- "list.js"
5156
- ]
5157
- },
5158
- "phase:move": {
5159
- "aliases": [],
5160
- "args": {
5161
- "id": {
5162
- "description": "Phase ID - prompts with dropdown if not provided",
5163
- "name": "id",
5164
- "required": false
5165
- }
5166
- },
5167
- "description": "Change the position of a phase within its category",
5168
- "examples": [
5169
- "<%= config.bin %> <%= command.id %> on-hold --position 0",
5170
- "<%= config.bin %> <%= command.id %> in-review --position 1",
5171
- "<%= config.bin %> <%= command.id %> # Interactive mode"
5172
- ],
5173
- "flags": {
5174
- "project": {
5175
- "char": "P",
5176
- "description": "Project ID (uses first project if only one exists)",
5177
- "name": "project",
5178
- "hasDynamicHelp": false,
5179
- "multiple": false,
5180
- "type": "option"
5181
5004
  },
5182
- "json": {
5183
- "aliases": [
5184
- "machine"
5185
- ],
5186
- "char": "m",
5187
- "description": "Output as JSON for AI agents/scripts",
5188
- "name": "json",
5189
- "allowNo": false,
5190
- "type": "boolean"
5191
- },
5192
- "position": {
5193
- "char": "p",
5194
- "description": "New position (0-indexed)",
5195
- "name": "position",
5196
- "required": false,
5005
+ "confirmation": {
5006
+ "description": "Confirmation text for destructive operations",
5007
+ "hidden": true,
5008
+ "name": "confirmation",
5197
5009
  "hasDynamicHelp": false,
5198
5010
  "multiple": false,
5199
5011
  "type": "option"
@@ -5201,7 +5013,7 @@
5201
5013
  },
5202
5014
  "hasDynamicHelp": false,
5203
5015
  "hiddenAliases": [],
5204
- "id": "phase:move",
5016
+ "id": "pmo:init",
5205
5017
  "pluginAlias": "@proletariat/cli",
5206
5018
  "pluginName": "@proletariat/cli",
5207
5019
  "pluginType": "core",
@@ -5210,25 +5022,24 @@
5210
5022
  "relativePath": [
5211
5023
  "dist",
5212
5024
  "commands",
5213
- "phase",
5214
- "move.js"
5025
+ "pmo",
5026
+ "init.js"
5215
5027
  ]
5216
5028
  },
5217
- "phase:update": {
5029
+ "phase:create": {
5218
5030
  "aliases": [],
5219
5031
  "args": {
5220
- "id": {
5221
- "description": "Phase ID - prompts with dropdown if not provided",
5222
- "name": "id",
5032
+ "name": {
5033
+ "description": "Phase name",
5034
+ "name": "name",
5223
5035
  "required": false
5224
5036
  }
5225
5037
  },
5226
- "description": "Update a project lifecycle phase",
5038
+ "description": "Create a new project lifecycle phase",
5227
5039
  "examples": [
5228
- "<%= config.bin %> <%= command.id %> active --name \"In Development\"",
5229
- "<%= config.bin %> <%= command.id %> idea --color \"#9333EA\"",
5230
- "<%= config.bin %> <%= command.id %> planned --default",
5231
- "<%= config.bin %> <%= command.id %> # Interactive mode"
5040
+ "<%= config.bin %> <%= command.id %> \"On Hold\" --category unstarted",
5041
+ "<%= config.bin %> <%= command.id %> \"In Review\" --category started --color \"#FFA500\"",
5042
+ "<%= config.bin %> <%= command.id %> -i # Interactive mode"
5232
5043
  ],
5233
5044
  "flags": {
5234
5045
  "project": {
@@ -5249,17 +5060,9 @@
5249
5060
  "allowNo": false,
5250
5061
  "type": "boolean"
5251
5062
  },
5252
- "name": {
5253
- "char": "n",
5254
- "description": "New name",
5255
- "name": "name",
5256
- "hasDynamicHelp": false,
5257
- "multiple": false,
5258
- "type": "option"
5259
- },
5260
5063
  "category": {
5261
5064
  "char": "c",
5262
- "description": "New category",
5065
+ "description": "State category [required for non-interactive]",
5263
5066
  "name": "category",
5264
5067
  "hasDynamicHelp": false,
5265
5068
  "multiple": false,
@@ -5273,7 +5076,7 @@
5273
5076
  "type": "option"
5274
5077
  },
5275
5078
  "color": {
5276
- "description": "New hex color",
5079
+ "description": "Hex color (e.g., \"#FF5733\")",
5277
5080
  "name": "color",
5278
5081
  "hasDynamicHelp": false,
5279
5082
  "multiple": false,
@@ -5281,14 +5084,14 @@
5281
5084
  },
5282
5085
  "description": {
5283
5086
  "char": "d",
5284
- "description": "New description",
5087
+ "description": "Phase description",
5285
5088
  "name": "description",
5286
5089
  "hasDynamicHelp": false,
5287
5090
  "multiple": false,
5288
5091
  "type": "option"
5289
5092
  },
5290
5093
  "default": {
5291
- "description": "Set as default phase",
5094
+ "description": "Set as default phase for new projects",
5292
5095
  "name": "default",
5293
5096
  "allowNo": false,
5294
5097
  "type": "boolean"
@@ -5303,7 +5106,7 @@
5303
5106
  },
5304
5107
  "hasDynamicHelp": false,
5305
5108
  "hiddenAliases": [],
5306
- "id": "phase:update",
5109
+ "id": "phase:create",
5307
5110
  "pluginAlias": "@proletariat/cli",
5308
5111
  "pluginName": "@proletariat/cli",
5309
5112
  "pluginType": "core",
@@ -5313,24 +5116,22 @@
5313
5116
  "dist",
5314
5117
  "commands",
5315
5118
  "phase",
5316
- "update.js"
5119
+ "create.js"
5317
5120
  ]
5318
5121
  },
5319
- "pr:create": {
5122
+ "phase:delete": {
5320
5123
  "aliases": [],
5321
5124
  "args": {
5322
- "ticketId": {
5323
- "description": "Ticket ID to link to PR - auto-detects from branch if not provided",
5324
- "name": "ticketId",
5325
- "required": false
5125
+ "id": {
5126
+ "description": "Phase ID",
5127
+ "name": "id",
5128
+ "required": true
5326
5129
  }
5327
5130
  },
5328
- "description": "Create a GitHub pull request from the current branch",
5131
+ "description": "Delete a project lifecycle phase",
5329
5132
  "examples": [
5330
- "<%= config.bin %> <%= command.id %>",
5331
- "<%= config.bin %> <%= command.id %> TKT-001",
5332
- "<%= config.bin %> <%= command.id %> --draft",
5333
- "<%= config.bin %> <%= command.id %> --base develop"
5133
+ "<%= config.bin %> <%= command.id %> on-hold",
5134
+ "<%= config.bin %> <%= command.id %> on-hold --force"
5334
5135
  ],
5335
5136
  "flags": {
5336
5137
  "project": {
@@ -5351,53 +5152,17 @@
5351
5152
  "allowNo": false,
5352
5153
  "type": "boolean"
5353
5154
  },
5354
- "base": {
5355
- "char": "b",
5356
- "description": "Base branch for the PR (defaults to main/master)",
5357
- "name": "base",
5358
- "hasDynamicHelp": false,
5359
- "multiple": false,
5360
- "type": "option"
5361
- },
5362
- "draft": {
5363
- "char": "d",
5364
- "description": "Create as draft PR",
5365
- "name": "draft",
5366
- "allowNo": false,
5367
- "type": "boolean"
5368
- },
5369
- "no-link": {
5370
- "description": "Skip linking PR to ticket",
5371
- "name": "no-link",
5155
+ "force": {
5156
+ "char": "f",
5157
+ "description": "Skip confirmation",
5158
+ "name": "force",
5372
5159
  "allowNo": false,
5373
5160
  "type": "boolean"
5374
- },
5375
- "title": {
5376
- "char": "t",
5377
- "description": "PR title (auto-generated from ticket if not provided)",
5378
- "name": "title",
5379
- "hasDynamicHelp": false,
5380
- "multiple": false,
5381
- "type": "option"
5382
- },
5383
- "body": {
5384
- "description": "PR body/description",
5385
- "name": "body",
5386
- "hasDynamicHelp": false,
5387
- "multiple": false,
5388
- "type": "option"
5389
- },
5390
- "ticket": {
5391
- "description": "Ticket ID to link (alternative to positional arg)",
5392
- "name": "ticket",
5393
- "hasDynamicHelp": false,
5394
- "multiple": false,
5395
- "type": "option"
5396
5161
  }
5397
5162
  },
5398
5163
  "hasDynamicHelp": false,
5399
5164
  "hiddenAliases": [],
5400
- "id": "pr:create",
5165
+ "id": "phase:delete",
5401
5166
  "pluginAlias": "@proletariat/cli",
5402
5167
  "pluginName": "@proletariat/cli",
5403
5168
  "pluginType": "core",
@@ -5406,16 +5171,19 @@
5406
5171
  "relativePath": [
5407
5172
  "dist",
5408
5173
  "commands",
5409
- "pr",
5410
- "create.js"
5174
+ "phase",
5175
+ "delete.js"
5411
5176
  ]
5412
5177
  },
5413
- "pr": {
5178
+ "phase:list": {
5414
5179
  "aliases": [],
5415
5180
  "args": {},
5416
- "description": "Interactive menu for pull request operations",
5181
+ "description": "List all project lifecycle phases",
5417
5182
  "examples": [
5418
- "<%= config.bin %> <%= command.id %>"
5183
+ "<%= config.bin %> <%= command.id %>",
5184
+ "<%= config.bin %> <%= command.id %> --category started",
5185
+ "<%= config.bin %> <%= command.id %> --machine",
5186
+ "<%= config.bin %> <%= command.id %> --json"
5419
5187
  ],
5420
5188
  "flags": {
5421
5189
  "project": {
@@ -5436,24 +5204,25 @@
5436
5204
  "allowNo": false,
5437
5205
  "type": "boolean"
5438
5206
  },
5439
- "action": {
5440
- "char": "a",
5441
- "description": "Action to perform (list, create, link, status)",
5442
- "name": "action",
5207
+ "category": {
5208
+ "char": "c",
5209
+ "description": "Filter by category",
5210
+ "name": "category",
5443
5211
  "hasDynamicHelp": false,
5444
5212
  "multiple": false,
5445
5213
  "options": [
5446
- "list",
5447
- "create",
5448
- "link",
5449
- "status"
5214
+ "backlog",
5215
+ "unstarted",
5216
+ "started",
5217
+ "completed",
5218
+ "canceled"
5450
5219
  ],
5451
5220
  "type": "option"
5452
5221
  }
5453
5222
  },
5454
5223
  "hasDynamicHelp": false,
5455
5224
  "hiddenAliases": [],
5456
- "id": "pr",
5225
+ "id": "phase:list",
5457
5226
  "pluginAlias": "@proletariat/cli",
5458
5227
  "pluginName": "@proletariat/cli",
5459
5228
  "pluginType": "core",
@@ -5462,153 +5231,49 @@
5462
5231
  "relativePath": [
5463
5232
  "dist",
5464
5233
  "commands",
5465
- "pr",
5466
- "index.js"
5234
+ "phase",
5235
+ "list.js"
5467
5236
  ]
5468
5237
  },
5469
- "pr:link": {
5238
+ "phase:move": {
5470
5239
  "aliases": [],
5471
5240
  "args": {
5472
- "ticketId": {
5473
- "description": "Ticket ID to link PR to",
5474
- "name": "ticketId",
5241
+ "id": {
5242
+ "description": "Phase ID - prompts with dropdown if not provided",
5243
+ "name": "id",
5475
5244
  "required": false
5476
5245
  }
5477
5246
  },
5478
- "description": "Link an existing GitHub pull request to a ticket",
5479
- "examples": [
5480
- "<%= config.bin %> <%= command.id %>",
5481
- "<%= config.bin %> <%= command.id %> TKT-001",
5482
- "<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
5483
- "<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
5484
- ],
5485
- "flags": {
5486
- "project": {
5487
- "char": "P",
5488
- "description": "Project ID (uses first project if only one exists)",
5489
- "name": "project",
5490
- "hasDynamicHelp": false,
5491
- "multiple": false,
5492
- "type": "option"
5493
- },
5494
- "json": {
5495
- "aliases": [
5496
- "machine"
5497
- ],
5498
- "char": "m",
5499
- "description": "Output as JSON for AI agents/scripts",
5500
- "name": "json",
5501
- "allowNo": false,
5502
- "type": "boolean"
5503
- },
5504
- "pr": {
5505
- "char": "p",
5506
- "description": "PR number to link",
5507
- "name": "pr",
5508
- "hasDynamicHelp": false,
5509
- "multiple": false,
5510
- "type": "option"
5511
- },
5512
- "url": {
5513
- "char": "u",
5514
- "description": "PR URL to link",
5515
- "name": "url",
5516
- "hasDynamicHelp": false,
5517
- "multiple": false,
5518
- "type": "option"
5519
- },
5520
- "ticket": {
5521
- "description": "Ticket ID to link (alternative to positional arg)",
5522
- "name": "ticket",
5523
- "hasDynamicHelp": false,
5524
- "multiple": false,
5525
- "type": "option"
5526
- },
5527
- "confirm": {
5528
- "description": "Confirm overwriting existing PR link",
5529
- "name": "confirm",
5530
- "allowNo": false,
5531
- "type": "boolean"
5532
- }
5533
- },
5534
- "hasDynamicHelp": false,
5535
- "hiddenAliases": [],
5536
- "id": "pr:link",
5537
- "pluginAlias": "@proletariat/cli",
5538
- "pluginName": "@proletariat/cli",
5539
- "pluginType": "core",
5540
- "strict": true,
5541
- "isESM": true,
5542
- "relativePath": [
5543
- "dist",
5544
- "commands",
5545
- "pr",
5546
- "link.js"
5547
- ]
5548
- },
5549
- "pr:list": {
5550
- "aliases": [],
5551
- "args": {},
5552
- "description": "List pull requests linked to tickets in the workspace",
5247
+ "description": "Change the position of a phase within its category",
5553
5248
  "examples": [
5554
- "<%= config.bin %> <%= command.id %>",
5555
- "<%= config.bin %> <%= command.id %> --state open",
5556
- "<%= config.bin %> <%= command.id %> --state draft",
5557
- "<%= config.bin %> <%= command.id %> --format json",
5558
- "<%= config.bin %> <%= command.id %> --machine"
5559
- ],
5560
- "flags": {
5561
- "project": {
5562
- "char": "P",
5563
- "description": "Project ID (uses first project if only one exists)",
5564
- "name": "project",
5565
- "hasDynamicHelp": false,
5566
- "multiple": false,
5567
- "type": "option"
5568
- },
5569
- "json": {
5570
- "aliases": [
5571
- "machine"
5572
- ],
5573
- "char": "m",
5574
- "description": "Output as JSON for AI agents/scripts",
5575
- "name": "json",
5576
- "allowNo": false,
5577
- "type": "boolean"
5578
- },
5579
- "state": {
5580
- "char": "s",
5581
- "description": "Filter by PR state",
5582
- "name": "state",
5583
- "default": "open",
5584
- "hasDynamicHelp": false,
5585
- "multiple": false,
5586
- "options": [
5587
- "open",
5588
- "draft",
5589
- "all"
5590
- ],
5591
- "type": "option"
5592
- },
5593
- "format": {
5594
- "char": "f",
5595
- "description": "Output format",
5596
- "name": "format",
5597
- "default": "table",
5249
+ "<%= config.bin %> <%= command.id %> on-hold --position 0",
5250
+ "<%= config.bin %> <%= command.id %> in-review --position 1",
5251
+ "<%= config.bin %> <%= command.id %> # Interactive mode"
5252
+ ],
5253
+ "flags": {
5254
+ "project": {
5255
+ "char": "P",
5256
+ "description": "Project ID (uses first project if only one exists)",
5257
+ "name": "project",
5598
5258
  "hasDynamicHelp": false,
5599
5259
  "multiple": false,
5600
- "options": [
5601
- "table",
5602
- "compact",
5603
- "json"
5604
- ],
5605
5260
  "type": "option"
5606
5261
  },
5607
- "limit": {
5608
- "char": "l",
5609
- "description": "Maximum number of PRs to show",
5610
- "name": "limit",
5611
- "default": 50,
5262
+ "json": {
5263
+ "aliases": [
5264
+ "machine"
5265
+ ],
5266
+ "char": "m",
5267
+ "description": "Output as JSON for AI agents/scripts",
5268
+ "name": "json",
5269
+ "allowNo": false,
5270
+ "type": "boolean"
5271
+ },
5272
+ "position": {
5273
+ "char": "p",
5274
+ "description": "New position (0-indexed)",
5275
+ "name": "position",
5276
+ "required": false,
5612
5277
  "hasDynamicHelp": false,
5613
5278
  "multiple": false,
5614
5279
  "type": "option"
@@ -5616,7 +5281,7 @@
5616
5281
  },
5617
5282
  "hasDynamicHelp": false,
5618
5283
  "hiddenAliases": [],
5619
- "id": "pr:list",
5284
+ "id": "phase:move",
5620
5285
  "pluginAlias": "@proletariat/cli",
5621
5286
  "pluginName": "@proletariat/cli",
5622
5287
  "pluginType": "core",
@@ -5625,23 +5290,25 @@
5625
5290
  "relativePath": [
5626
5291
  "dist",
5627
5292
  "commands",
5628
- "pr",
5629
- "list.js"
5293
+ "phase",
5294
+ "move.js"
5630
5295
  ]
5631
5296
  },
5632
- "pr:status": {
5297
+ "phase:update": {
5633
5298
  "aliases": [],
5634
5299
  "args": {
5635
- "ticketId": {
5636
- "description": "Ticket ID to check PR status for",
5637
- "name": "ticketId",
5300
+ "id": {
5301
+ "description": "Phase ID - prompts with dropdown if not provided",
5302
+ "name": "id",
5638
5303
  "required": false
5639
5304
  }
5640
5305
  },
5641
- "description": "View PR status for a ticket",
5306
+ "description": "Update a project lifecycle phase",
5642
5307
  "examples": [
5643
- "<%= config.bin %> <%= command.id %>",
5644
- "<%= config.bin %> <%= command.id %> TKT-001"
5308
+ "<%= config.bin %> <%= command.id %> active --name \"In Development\"",
5309
+ "<%= config.bin %> <%= command.id %> idea --color \"#9333EA\"",
5310
+ "<%= config.bin %> <%= command.id %> planned --default",
5311
+ "<%= config.bin %> <%= command.id %> # Interactive mode"
5645
5312
  ],
5646
5313
  "flags": {
5647
5314
  "project": {
@@ -5662,17 +5329,61 @@
5662
5329
  "allowNo": false,
5663
5330
  "type": "boolean"
5664
5331
  },
5665
- "ticket": {
5666
- "description": "Ticket ID to check (alternative to positional arg)",
5667
- "name": "ticket",
5332
+ "name": {
5333
+ "char": "n",
5334
+ "description": "New name",
5335
+ "name": "name",
5336
+ "hasDynamicHelp": false,
5337
+ "multiple": false,
5338
+ "type": "option"
5339
+ },
5340
+ "category": {
5341
+ "char": "c",
5342
+ "description": "New category",
5343
+ "name": "category",
5344
+ "hasDynamicHelp": false,
5345
+ "multiple": false,
5346
+ "options": [
5347
+ "backlog",
5348
+ "unstarted",
5349
+ "started",
5350
+ "completed",
5351
+ "canceled"
5352
+ ],
5353
+ "type": "option"
5354
+ },
5355
+ "color": {
5356
+ "description": "New hex color",
5357
+ "name": "color",
5358
+ "hasDynamicHelp": false,
5359
+ "multiple": false,
5360
+ "type": "option"
5361
+ },
5362
+ "description": {
5363
+ "char": "d",
5364
+ "description": "New description",
5365
+ "name": "description",
5668
5366
  "hasDynamicHelp": false,
5669
5367
  "multiple": false,
5670
5368
  "type": "option"
5369
+ },
5370
+ "default": {
5371
+ "description": "Set as default phase",
5372
+ "name": "default",
5373
+ "allowNo": false,
5374
+ "type": "boolean"
5375
+ },
5376
+ "interactive": {
5377
+ "char": "i",
5378
+ "description": "Interactive mode",
5379
+ "name": "interactive",
5380
+ "allowNo": false,
5381
+ "type": "boolean"
5671
5382
  }
5672
5383
  },
5673
5384
  "hasDynamicHelp": false,
5674
5385
  "hiddenAliases": [],
5675
- "id": "pr:status",
5386
+ "id": "phase:update",
5676
5387
  "pluginAlias": "@proletariat/cli",
5677
5388
  "pluginName": "@proletariat/cli",
5678
5389
  "pluginType": "core",
@@ -5681,8 +5392,8 @@
5681
5392
  "relativePath": [
5682
5393
  "dist",
5683
5394
  "commands",
5684
- "pr",
5685
- "status.js"
5395
+ "phase",
5396
+ "update.js"
5686
5397
  ]
5687
5398
  },
5688
5399
  "repo:add": {
@@ -6605,93 +6316,6 @@
6605
6316
  "view.js"
6606
6317
  ]
6607
6318
  },
6608
- "pmo:init": {
6609
- "aliases": [],
6610
- "args": {},
6611
- "description": "Initialize PMO (Project Management Org) in current directory or HQ",
6612
- "examples": [
6613
- "<%= config.bin %> <%= command.id %>",
6614
- "<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
6615
- "<%= config.bin %> <%= command.id %> --location separate --template linear"
6616
- ],
6617
- "flags": {
6618
- "location": {
6619
- "char": "l",
6620
- "description": "PMO location (separate or repo:name)",
6621
- "name": "location",
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",
6644
- "hasDynamicHelp": false,
6645
- "multiple": false,
6646
- "type": "option"
6647
- },
6648
- "json": {
6649
- "aliases": [
6650
- "machine"
6651
- ],
6652
- "char": "m",
6653
- "description": "Output prompt configuration as JSON (for AI agents/scripts)",
6654
- "name": "json",
6655
- "allowNo": false,
6656
- "type": "boolean"
6657
- },
6658
- "action": {
6659
- "description": "Action for existing PMO (cancel or reinitialize)",
6660
- "hidden": true,
6661
- "name": "action",
6662
- "hasDynamicHelp": false,
6663
- "multiple": false,
6664
- "options": [
6665
- "cancel",
6666
- "reinitialize"
6667
- ],
6668
- "type": "option"
6669
- },
6670
- "confirmation": {
6671
- "description": "Confirmation text for destructive operations",
6672
- "hidden": true,
6673
- "name": "confirmation",
6674
- "hasDynamicHelp": false,
6675
- "multiple": false,
6676
- "type": "option"
6677
- }
6678
- },
6679
- "hasDynamicHelp": false,
6680
- "hiddenAliases": [],
6681
- "id": "pmo:init",
6682
- "pluginAlias": "@proletariat/cli",
6683
- "pluginName": "@proletariat/cli",
6684
- "pluginType": "core",
6685
- "strict": true,
6686
- "enableJsonFlag": false,
6687
- "isESM": true,
6688
- "relativePath": [
6689
- "dist",
6690
- "commands",
6691
- "pmo",
6692
- "init.js"
6693
- ]
6694
- },
6695
6319
  "roadmap:add-project": {
6696
6320
  "aliases": [],
6697
6321
  "args": {
@@ -7341,11 +6965,84 @@
7341
6965
  "allowNo": false,
7342
6966
  "type": "boolean"
7343
6967
  },
7344
- "terminal": {
7345
- "char": "t",
7346
- "description": "Terminal app to use (iTerm, Terminal, Ghostty)",
7347
- "name": "terminal",
7348
- "default": "iTerm",
6968
+ "terminal": {
6969
+ "char": "t",
6970
+ "description": "Terminal app to use (iTerm, Terminal, Ghostty)",
6971
+ "name": "terminal",
6972
+ "default": "iTerm",
6973
+ "hasDynamicHelp": false,
6974
+ "multiple": false,
6975
+ "type": "option"
6976
+ }
6977
+ },
6978
+ "hasDynamicHelp": false,
6979
+ "hiddenAliases": [],
6980
+ "id": "session:attach",
6981
+ "pluginAlias": "@proletariat/cli",
6982
+ "pluginName": "@proletariat/cli",
6983
+ "pluginType": "core",
6984
+ "strict": true,
6985
+ "isESM": true,
6986
+ "relativePath": [
6987
+ "dist",
6988
+ "commands",
6989
+ "session",
6990
+ "attach.js"
6991
+ ]
6992
+ },
6993
+ "session:health": {
6994
+ "aliases": [],
6995
+ "args": {},
6996
+ "description": "Check health of running agent sessions and detect/recover hung agents",
6997
+ "examples": [
6998
+ "<%= config.bin %> session health",
6999
+ "<%= config.bin %> session health --fix",
7000
+ "<%= config.bin %> session health --watch",
7001
+ "<%= config.bin %> session health --watch --interval 3 --threshold 5"
7002
+ ],
7003
+ "flags": {
7004
+ "project": {
7005
+ "char": "P",
7006
+ "description": "Project ID (uses first project if only one exists)",
7007
+ "name": "project",
7008
+ "hasDynamicHelp": false,
7009
+ "multiple": false,
7010
+ "type": "option"
7011
+ },
7012
+ "json": {
7013
+ "aliases": [
7014
+ "machine"
7015
+ ],
7016
+ "char": "m",
7017
+ "description": "Output as JSON for AI agents/scripts",
7018
+ "name": "json",
7019
+ "allowNo": false,
7020
+ "type": "boolean"
7021
+ },
7022
+ "fix": {
7023
+ "description": "Send Escape to hung agents to unstick them",
7024
+ "name": "fix",
7025
+ "allowNo": false,
7026
+ "type": "boolean"
7027
+ },
7028
+ "watch": {
7029
+ "description": "Continuously monitor agents and auto-recover hung ones",
7030
+ "name": "watch",
7031
+ "allowNo": false,
7032
+ "type": "boolean"
7033
+ },
7034
+ "interval": {
7035
+ "description": "Watch polling interval in minutes",
7036
+ "name": "interval",
7037
+ "default": 5,
7038
+ "hasDynamicHelp": false,
7039
+ "multiple": false,
7040
+ "type": "option"
7041
+ },
7042
+ "threshold": {
7043
+ "description": "Minutes an agent must be hung before auto-recovery in watch mode",
7044
+ "name": "threshold",
7045
+ "default": 10,
7349
7046
  "hasDynamicHelp": false,
7350
7047
  "multiple": false,
7351
7048
  "type": "option"
@@ -7353,7 +7050,7 @@
7353
7050
  },
7354
7051
  "hasDynamicHelp": false,
7355
7052
  "hiddenAliases": [],
7356
- "id": "session:attach",
7053
+ "id": "session:health",
7357
7054
  "pluginAlias": "@proletariat/cli",
7358
7055
  "pluginName": "@proletariat/cli",
7359
7056
  "pluginType": "core",
@@ -7363,7 +7060,7 @@
7363
7060
  "dist",
7364
7061
  "commands",
7365
7062
  "session",
7366
- "attach.js"
7063
+ "health.js"
7367
7064
  ]
7368
7065
  },
7369
7066
  "session": {
@@ -8117,7 +7814,6 @@
8117
7814
  "pluginName": "@proletariat/cli",
8118
7815
  "pluginType": "core",
8119
7816
  "strict": false,
8120
- "enableJsonFlag": false,
8121
7817
  "isESM": true,
8122
7818
  "relativePath": [
8123
7819
  "dist",
@@ -8228,263 +7924,22 @@
8228
7924
  "machine"
8229
7925
  ],
8230
7926
  "char": "m",
8231
- "description": "Output prompt configuration as JSON (for AI agents/scripts)",
8232
- "name": "json",
8233
- "allowNo": false,
8234
- "type": "boolean"
8235
- },
8236
- "force": {
8237
- "char": "f",
8238
- "description": "Skip confirmation prompt (for non-interactive use)",
8239
- "name": "force",
8240
- "allowNo": false,
8241
- "type": "boolean"
8242
- }
8243
- },
8244
- "hasDynamicHelp": false,
8245
- "hiddenAliases": [],
8246
- "id": "staff:remove",
8247
- "pluginAlias": "@proletariat/cli",
8248
- "pluginName": "@proletariat/cli",
8249
- "pluginType": "core",
8250
- "strict": true,
8251
- "isESM": true,
8252
- "relativePath": [
8253
- "dist",
8254
- "commands",
8255
- "staff",
8256
- "remove.js"
8257
- ]
8258
- },
8259
- "support:book": {
8260
- "aliases": [],
8261
- "args": {},
8262
- "description": "Book a call for support",
8263
- "examples": [
8264
- "<%= config.bin %> <%= command.id %>",
8265
- "<%= config.bin %> <%= command.id %> --json"
8266
- ],
8267
- "flags": {
8268
- "json": {
8269
- "aliases": [
8270
- "machine"
8271
- ],
8272
- "char": "m",
8273
- "description": "Output as JSON for AI agents/scripts",
8274
- "name": "json",
8275
- "allowNo": false,
8276
- "type": "boolean"
8277
- }
8278
- },
8279
- "hasDynamicHelp": false,
8280
- "hiddenAliases": [],
8281
- "id": "support:book",
8282
- "pluginAlias": "@proletariat/cli",
8283
- "pluginName": "@proletariat/cli",
8284
- "pluginType": "core",
8285
- "strict": true,
8286
- "enableJsonFlag": false,
8287
- "isESM": true,
8288
- "relativePath": [
8289
- "dist",
8290
- "commands",
8291
- "support",
8292
- "book.js"
8293
- ]
8294
- },
8295
- "support:discord": {
8296
- "aliases": [],
8297
- "args": {},
8298
- "description": "Join the Discord community",
8299
- "examples": [
8300
- "<%= config.bin %> <%= command.id %>",
8301
- "<%= config.bin %> <%= command.id %> --json"
8302
- ],
8303
- "flags": {
8304
- "json": {
8305
- "aliases": [
8306
- "machine"
8307
- ],
8308
- "char": "m",
8309
- "description": "Output as JSON for AI agents/scripts",
8310
- "name": "json",
8311
- "allowNo": false,
8312
- "type": "boolean"
8313
- }
8314
- },
8315
- "hasDynamicHelp": false,
8316
- "hiddenAliases": [],
8317
- "id": "support:discord",
8318
- "pluginAlias": "@proletariat/cli",
8319
- "pluginName": "@proletariat/cli",
8320
- "pluginType": "core",
8321
- "strict": true,
8322
- "enableJsonFlag": false,
8323
- "isESM": true,
8324
- "relativePath": [
8325
- "dist",
8326
- "commands",
8327
- "support",
8328
- "discord.js"
8329
- ]
8330
- },
8331
- "support:docs": {
8332
- "aliases": [],
8333
- "args": {},
8334
- "description": "Open documentation in browser",
8335
- "examples": [
8336
- "<%= config.bin %> <%= command.id %>",
8337
- "<%= config.bin %> <%= command.id %> --json"
8338
- ],
8339
- "flags": {
8340
- "json": {
8341
- "aliases": [
8342
- "machine"
8343
- ],
8344
- "char": "m",
8345
- "description": "Output as JSON for AI agents/scripts",
8346
- "name": "json",
8347
- "allowNo": false,
8348
- "type": "boolean"
8349
- }
8350
- },
8351
- "hasDynamicHelp": false,
8352
- "hiddenAliases": [],
8353
- "id": "support:docs",
8354
- "pluginAlias": "@proletariat/cli",
8355
- "pluginName": "@proletariat/cli",
8356
- "pluginType": "core",
8357
- "strict": true,
8358
- "enableJsonFlag": false,
8359
- "isESM": true,
8360
- "relativePath": [
8361
- "dist",
8362
- "commands",
8363
- "support",
8364
- "docs.js"
8365
- ]
8366
- },
8367
- "support": {
8368
- "aliases": [],
8369
- "args": {},
8370
- "description": "Get help, troubleshoot, and connect with the community",
8371
- "examples": [
8372
- "<%= config.bin %> <%= command.id %>",
8373
- "<%= config.bin %> <%= command.id %> book",
8374
- "<%= config.bin %> <%= command.id %> docs",
8375
- "<%= config.bin %> <%= command.id %> discord",
8376
- "<%= config.bin %> <%= command.id %> issues",
8377
- "<%= config.bin %> <%= command.id %> logs"
8378
- ],
8379
- "flags": {
8380
- "json": {
8381
- "aliases": [
8382
- "machine"
8383
- ],
8384
- "char": "m",
8385
- "description": "Output as JSON for AI agents/scripts",
8386
- "name": "json",
8387
- "allowNo": false,
8388
- "type": "boolean"
8389
- }
8390
- },
8391
- "hasDynamicHelp": false,
8392
- "hiddenAliases": [],
8393
- "id": "support",
8394
- "pluginAlias": "@proletariat/cli",
8395
- "pluginName": "@proletariat/cli",
8396
- "pluginType": "core",
8397
- "strict": true,
8398
- "enableJsonFlag": false,
8399
- "isESM": true,
8400
- "relativePath": [
8401
- "dist",
8402
- "commands",
8403
- "support",
8404
- "index.js"
8405
- ]
8406
- },
8407
- "support:issues": {
8408
- "aliases": [],
8409
- "args": {},
8410
- "description": "Browse GitHub Issues",
8411
- "examples": [
8412
- "<%= config.bin %> <%= command.id %>",
8413
- "<%= config.bin %> <%= command.id %> --browser",
8414
- "<%= config.bin %> <%= command.id %> --json"
8415
- ],
8416
- "flags": {
8417
- "json": {
8418
- "aliases": [
8419
- "machine"
8420
- ],
8421
- "char": "m",
8422
- "description": "Output as JSON for AI agents/scripts",
8423
- "name": "json",
8424
- "allowNo": false,
8425
- "type": "boolean"
8426
- },
8427
- "browser": {
8428
- "description": "Open issues in browser (default behavior)",
8429
- "name": "browser",
8430
- "allowNo": true,
8431
- "type": "boolean"
8432
- }
8433
- },
8434
- "hasDynamicHelp": false,
8435
- "hiddenAliases": [],
8436
- "id": "support:issues",
8437
- "pluginAlias": "@proletariat/cli",
8438
- "pluginName": "@proletariat/cli",
8439
- "pluginType": "core",
8440
- "strict": true,
8441
- "enableJsonFlag": false,
8442
- "isESM": true,
8443
- "relativePath": [
8444
- "dist",
8445
- "commands",
8446
- "support",
8447
- "issues.js"
8448
- ]
8449
- },
8450
- "support:logs": {
8451
- "aliases": [],
8452
- "args": {},
8453
- "description": "Collect diagnostic info for troubleshooting",
8454
- "examples": [
8455
- "<%= config.bin %> <%= command.id %>",
8456
- "<%= config.bin %> <%= command.id %> --clipboard",
8457
- "<%= config.bin %> <%= command.id %> --json"
8458
- ],
8459
- "flags": {
8460
- "project": {
8461
- "char": "P",
8462
- "description": "Project ID (uses first project if only one exists)",
8463
- "name": "project",
8464
- "hasDynamicHelp": false,
8465
- "multiple": false,
8466
- "type": "option"
8467
- },
8468
- "json": {
8469
- "aliases": [
8470
- "machine"
8471
- ],
8472
- "char": "m",
8473
- "description": "Output as JSON for AI agents/scripts",
7927
+ "description": "Output prompt configuration as JSON (for AI agents/scripts)",
8474
7928
  "name": "json",
8475
7929
  "allowNo": false,
8476
7930
  "type": "boolean"
8477
7931
  },
8478
- "clipboard": {
8479
- "description": "Copy diagnostics to clipboard",
8480
- "name": "clipboard",
7932
+ "force": {
7933
+ "char": "f",
7934
+ "description": "Skip confirmation prompt (for non-interactive use)",
7935
+ "name": "force",
8481
7936
  "allowNo": false,
8482
7937
  "type": "boolean"
8483
7938
  }
8484
7939
  },
8485
7940
  "hasDynamicHelp": false,
8486
7941
  "hiddenAliases": [],
8487
- "id": "support:logs",
7942
+ "id": "staff:remove",
8488
7943
  "pluginAlias": "@proletariat/cli",
8489
7944
  "pluginName": "@proletariat/cli",
8490
7945
  "pluginType": "core",
@@ -8493,8 +7948,8 @@
8493
7948
  "relativePath": [
8494
7949
  "dist",
8495
7950
  "commands",
8496
- "support",
8497
- "logs.js"
7951
+ "staff",
7952
+ "remove.js"
8498
7953
  ]
8499
7954
  },
8500
7955
  "status:category": {
@@ -8931,17 +8386,258 @@
8931
8386
  "allowNo": true,
8932
8387
  "type": "boolean"
8933
8388
  },
8934
- "interactive": {
8935
- "char": "i",
8936
- "description": "Interactive mode",
8937
- "name": "interactive",
8389
+ "interactive": {
8390
+ "char": "i",
8391
+ "description": "Interactive mode",
8392
+ "name": "interactive",
8393
+ "allowNo": false,
8394
+ "type": "boolean"
8395
+ }
8396
+ },
8397
+ "hasDynamicHelp": false,
8398
+ "hiddenAliases": [],
8399
+ "id": "status:update",
8400
+ "pluginAlias": "@proletariat/cli",
8401
+ "pluginName": "@proletariat/cli",
8402
+ "pluginType": "core",
8403
+ "strict": true,
8404
+ "isESM": true,
8405
+ "relativePath": [
8406
+ "dist",
8407
+ "commands",
8408
+ "status",
8409
+ "update.js"
8410
+ ]
8411
+ },
8412
+ "support:book": {
8413
+ "aliases": [],
8414
+ "args": {},
8415
+ "description": "Book a call for support",
8416
+ "examples": [
8417
+ "<%= config.bin %> <%= command.id %>",
8418
+ "<%= config.bin %> <%= command.id %> --json"
8419
+ ],
8420
+ "flags": {
8421
+ "json": {
8422
+ "aliases": [
8423
+ "machine"
8424
+ ],
8425
+ "char": "m",
8426
+ "description": "Output as JSON for AI agents/scripts",
8427
+ "name": "json",
8428
+ "allowNo": false,
8429
+ "type": "boolean"
8430
+ }
8431
+ },
8432
+ "hasDynamicHelp": false,
8433
+ "hiddenAliases": [],
8434
+ "id": "support:book",
8435
+ "pluginAlias": "@proletariat/cli",
8436
+ "pluginName": "@proletariat/cli",
8437
+ "pluginType": "core",
8438
+ "strict": true,
8439
+ "enableJsonFlag": false,
8440
+ "isESM": true,
8441
+ "relativePath": [
8442
+ "dist",
8443
+ "commands",
8444
+ "support",
8445
+ "book.js"
8446
+ ]
8447
+ },
8448
+ "support:discord": {
8449
+ "aliases": [],
8450
+ "args": {},
8451
+ "description": "Join the Discord community",
8452
+ "examples": [
8453
+ "<%= config.bin %> <%= command.id %>",
8454
+ "<%= config.bin %> <%= command.id %> --json"
8455
+ ],
8456
+ "flags": {
8457
+ "json": {
8458
+ "aliases": [
8459
+ "machine"
8460
+ ],
8461
+ "char": "m",
8462
+ "description": "Output as JSON for AI agents/scripts",
8463
+ "name": "json",
8464
+ "allowNo": false,
8465
+ "type": "boolean"
8466
+ }
8467
+ },
8468
+ "hasDynamicHelp": false,
8469
+ "hiddenAliases": [],
8470
+ "id": "support:discord",
8471
+ "pluginAlias": "@proletariat/cli",
8472
+ "pluginName": "@proletariat/cli",
8473
+ "pluginType": "core",
8474
+ "strict": true,
8475
+ "enableJsonFlag": false,
8476
+ "isESM": true,
8477
+ "relativePath": [
8478
+ "dist",
8479
+ "commands",
8480
+ "support",
8481
+ "discord.js"
8482
+ ]
8483
+ },
8484
+ "support:docs": {
8485
+ "aliases": [],
8486
+ "args": {},
8487
+ "description": "Open documentation in browser",
8488
+ "examples": [
8489
+ "<%= config.bin %> <%= command.id %>",
8490
+ "<%= config.bin %> <%= command.id %> --json"
8491
+ ],
8492
+ "flags": {
8493
+ "json": {
8494
+ "aliases": [
8495
+ "machine"
8496
+ ],
8497
+ "char": "m",
8498
+ "description": "Output as JSON for AI agents/scripts",
8499
+ "name": "json",
8500
+ "allowNo": false,
8501
+ "type": "boolean"
8502
+ }
8503
+ },
8504
+ "hasDynamicHelp": false,
8505
+ "hiddenAliases": [],
8506
+ "id": "support:docs",
8507
+ "pluginAlias": "@proletariat/cli",
8508
+ "pluginName": "@proletariat/cli",
8509
+ "pluginType": "core",
8510
+ "strict": true,
8511
+ "enableJsonFlag": false,
8512
+ "isESM": true,
8513
+ "relativePath": [
8514
+ "dist",
8515
+ "commands",
8516
+ "support",
8517
+ "docs.js"
8518
+ ]
8519
+ },
8520
+ "support": {
8521
+ "aliases": [],
8522
+ "args": {},
8523
+ "description": "Get help, troubleshoot, and connect with the community",
8524
+ "examples": [
8525
+ "<%= config.bin %> <%= command.id %>",
8526
+ "<%= config.bin %> <%= command.id %> book",
8527
+ "<%= config.bin %> <%= command.id %> docs",
8528
+ "<%= config.bin %> <%= command.id %> discord",
8529
+ "<%= config.bin %> <%= command.id %> issues",
8530
+ "<%= config.bin %> <%= command.id %> logs"
8531
+ ],
8532
+ "flags": {
8533
+ "json": {
8534
+ "aliases": [
8535
+ "machine"
8536
+ ],
8537
+ "char": "m",
8538
+ "description": "Output as JSON for AI agents/scripts",
8539
+ "name": "json",
8540
+ "allowNo": false,
8541
+ "type": "boolean"
8542
+ }
8543
+ },
8544
+ "hasDynamicHelp": false,
8545
+ "hiddenAliases": [],
8546
+ "id": "support",
8547
+ "pluginAlias": "@proletariat/cli",
8548
+ "pluginName": "@proletariat/cli",
8549
+ "pluginType": "core",
8550
+ "strict": true,
8551
+ "enableJsonFlag": false,
8552
+ "isESM": true,
8553
+ "relativePath": [
8554
+ "dist",
8555
+ "commands",
8556
+ "support",
8557
+ "index.js"
8558
+ ]
8559
+ },
8560
+ "support:issues": {
8561
+ "aliases": [],
8562
+ "args": {},
8563
+ "description": "Browse GitHub Issues",
8564
+ "examples": [
8565
+ "<%= config.bin %> <%= command.id %>",
8566
+ "<%= config.bin %> <%= command.id %> --browser",
8567
+ "<%= config.bin %> <%= command.id %> --json"
8568
+ ],
8569
+ "flags": {
8570
+ "json": {
8571
+ "aliases": [
8572
+ "machine"
8573
+ ],
8574
+ "char": "m",
8575
+ "description": "Output as JSON for AI agents/scripts",
8576
+ "name": "json",
8577
+ "allowNo": false,
8578
+ "type": "boolean"
8579
+ },
8580
+ "browser": {
8581
+ "description": "Open issues in browser (default behavior)",
8582
+ "name": "browser",
8583
+ "allowNo": true,
8584
+ "type": "boolean"
8585
+ }
8586
+ },
8587
+ "hasDynamicHelp": false,
8588
+ "hiddenAliases": [],
8589
+ "id": "support:issues",
8590
+ "pluginAlias": "@proletariat/cli",
8591
+ "pluginName": "@proletariat/cli",
8592
+ "pluginType": "core",
8593
+ "strict": true,
8594
+ "enableJsonFlag": false,
8595
+ "isESM": true,
8596
+ "relativePath": [
8597
+ "dist",
8598
+ "commands",
8599
+ "support",
8600
+ "issues.js"
8601
+ ]
8602
+ },
8603
+ "support:logs": {
8604
+ "aliases": [],
8605
+ "args": {},
8606
+ "description": "Collect diagnostic info for troubleshooting",
8607
+ "examples": [
8608
+ "<%= config.bin %> <%= command.id %>",
8609
+ "<%= config.bin %> <%= command.id %> --clipboard",
8610
+ "<%= config.bin %> <%= command.id %> --json"
8611
+ ],
8612
+ "flags": {
8613
+ "project": {
8614
+ "char": "P",
8615
+ "description": "Project ID (uses first project if only one exists)",
8616
+ "name": "project",
8617
+ "hasDynamicHelp": false,
8618
+ "multiple": false,
8619
+ "type": "option"
8620
+ },
8621
+ "json": {
8622
+ "aliases": [
8623
+ "machine"
8624
+ ],
8625
+ "char": "m",
8626
+ "description": "Output as JSON for AI agents/scripts",
8627
+ "name": "json",
8628
+ "allowNo": false,
8629
+ "type": "boolean"
8630
+ },
8631
+ "clipboard": {
8632
+ "description": "Copy diagnostics to clipboard",
8633
+ "name": "clipboard",
8938
8634
  "allowNo": false,
8939
8635
  "type": "boolean"
8940
8636
  }
8941
8637
  },
8942
8638
  "hasDynamicHelp": false,
8943
8639
  "hiddenAliases": [],
8944
- "id": "status:update",
8640
+ "id": "support:logs",
8945
8641
  "pluginAlias": "@proletariat/cli",
8946
8642
  "pluginName": "@proletariat/cli",
8947
8643
  "pluginType": "core",
@@ -8950,8 +8646,8 @@
8950
8646
  "relativePath": [
8951
8647
  "dist",
8952
8648
  "commands",
8953
- "status",
8954
- "update.js"
8649
+ "support",
8650
+ "logs.js"
8955
8651
  ]
8956
8652
  },
8957
8653
  "template:apply": {
@@ -9343,7 +9039,6 @@
9343
9039
  "pluginName": "@proletariat/cli",
9344
9040
  "pluginType": "core",
9345
9041
  "strict": true,
9346
- "enableJsonFlag": false,
9347
9042
  "isESM": true,
9348
9043
  "relativePath": [
9349
9044
  "dist",
@@ -9605,7 +9300,6 @@
9605
9300
  "pluginName": "@proletariat/cli",
9606
9301
  "pluginType": "core",
9607
9302
  "strict": true,
9608
- "enableJsonFlag": false,
9609
9303
  "isESM": true,
9610
9304
  "relativePath": [
9611
9305
  "dist",
@@ -9628,86 +9322,352 @@
9628
9322
  "required": false
9629
9323
  }
9630
9324
  },
9631
- "description": "Add names to a theme",
9632
- "examples": [
9633
- "<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
9634
- "<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
9635
- ],
9636
- "flags": {},
9325
+ "description": "Add names to a theme",
9326
+ "examples": [
9327
+ "<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
9328
+ "<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
9329
+ ],
9330
+ "flags": {},
9331
+ "hasDynamicHelp": false,
9332
+ "hiddenAliases": [],
9333
+ "id": "theme:add-names",
9334
+ "pluginAlias": "@proletariat/cli",
9335
+ "pluginName": "@proletariat/cli",
9336
+ "pluginType": "core",
9337
+ "strict": false,
9338
+ "enableJsonFlag": false,
9339
+ "isESM": true,
9340
+ "relativePath": [
9341
+ "dist",
9342
+ "commands",
9343
+ "theme",
9344
+ "add-names.js"
9345
+ ]
9346
+ },
9347
+ "theme:create": {
9348
+ "aliases": [],
9349
+ "args": {
9350
+ "name": {
9351
+ "description": "Theme name (used as ID, lowercase with hyphens)",
9352
+ "name": "name",
9353
+ "required": true
9354
+ }
9355
+ },
9356
+ "description": "Create a custom agent theme",
9357
+ "examples": [
9358
+ "<%= config.bin %> <%= command.id %> greek-gods",
9359
+ "<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
9360
+ "<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
9361
+ ],
9362
+ "flags": {
9363
+ "description": {
9364
+ "char": "d",
9365
+ "description": "Theme description",
9366
+ "name": "description",
9367
+ "hasDynamicHelp": false,
9368
+ "multiple": false,
9369
+ "type": "option"
9370
+ },
9371
+ "display-name": {
9372
+ "description": "Display name (defaults to formatted name)",
9373
+ "name": "display-name",
9374
+ "hasDynamicHelp": false,
9375
+ "multiple": false,
9376
+ "type": "option"
9377
+ }
9378
+ },
9379
+ "hasDynamicHelp": false,
9380
+ "hiddenAliases": [],
9381
+ "id": "theme:create",
9382
+ "pluginAlias": "@proletariat/cli",
9383
+ "pluginName": "@proletariat/cli",
9384
+ "pluginType": "core",
9385
+ "strict": true,
9386
+ "enableJsonFlag": false,
9387
+ "isESM": true,
9388
+ "relativePath": [
9389
+ "dist",
9390
+ "commands",
9391
+ "theme",
9392
+ "create.js"
9393
+ ]
9394
+ },
9395
+ "theme": {
9396
+ "aliases": [],
9397
+ "args": {},
9398
+ "description": "Manage agent naming themes",
9399
+ "examples": [
9400
+ "<%= config.bin %> <%= command.id %> list",
9401
+ "<%= config.bin %> <%= command.id %> create greek-gods",
9402
+ "<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
9403
+ ],
9404
+ "flags": {
9405
+ "json": {
9406
+ "aliases": [
9407
+ "machine"
9408
+ ],
9409
+ "char": "m",
9410
+ "description": "Output as JSON for AI agents/scripts",
9411
+ "name": "json",
9412
+ "allowNo": false,
9413
+ "type": "boolean"
9414
+ }
9415
+ },
9416
+ "hasDynamicHelp": false,
9417
+ "hiddenAliases": [],
9418
+ "id": "theme",
9419
+ "pluginAlias": "@proletariat/cli",
9420
+ "pluginName": "@proletariat/cli",
9421
+ "pluginType": "core",
9422
+ "strict": true,
9423
+ "isESM": true,
9424
+ "relativePath": [
9425
+ "dist",
9426
+ "commands",
9427
+ "theme",
9428
+ "index.js"
9429
+ ]
9430
+ },
9431
+ "theme:list": {
9432
+ "aliases": [],
9433
+ "args": {},
9434
+ "description": "List available agent themes",
9435
+ "examples": [
9436
+ "<%= config.bin %> <%= command.id %>"
9437
+ ],
9438
+ "flags": {},
9439
+ "hasDynamicHelp": false,
9440
+ "hiddenAliases": [],
9441
+ "id": "theme:list",
9442
+ "pluginAlias": "@proletariat/cli",
9443
+ "pluginName": "@proletariat/cli",
9444
+ "pluginType": "core",
9445
+ "strict": true,
9446
+ "enableJsonFlag": false,
9447
+ "isESM": true,
9448
+ "relativePath": [
9449
+ "dist",
9450
+ "commands",
9451
+ "theme",
9452
+ "list.js"
9453
+ ]
9454
+ },
9455
+ "theme:set": {
9456
+ "aliases": [],
9457
+ "args": {
9458
+ "theme": {
9459
+ "description": "Theme ID to set as active",
9460
+ "name": "theme",
9461
+ "required": false
9462
+ }
9463
+ },
9464
+ "description": "Set the active theme for this workspace",
9465
+ "examples": [
9466
+ "<%= config.bin %> <%= command.id %> billionaires",
9467
+ "<%= config.bin %> <%= command.id %>"
9468
+ ],
9469
+ "flags": {
9470
+ "json": {
9471
+ "aliases": [
9472
+ "machine"
9473
+ ],
9474
+ "char": "m",
9475
+ "description": "Output as JSON for AI agents/scripts",
9476
+ "name": "json",
9477
+ "allowNo": false,
9478
+ "type": "boolean"
9479
+ }
9480
+ },
9481
+ "hasDynamicHelp": false,
9482
+ "hiddenAliases": [],
9483
+ "id": "theme:set",
9484
+ "pluginAlias": "@proletariat/cli",
9485
+ "pluginName": "@proletariat/cli",
9486
+ "pluginType": "core",
9487
+ "strict": true,
9488
+ "isESM": true,
9489
+ "relativePath": [
9490
+ "dist",
9491
+ "commands",
9492
+ "theme",
9493
+ "set.js"
9494
+ ]
9495
+ },
9496
+ "pr:create": {
9497
+ "aliases": [],
9498
+ "args": {
9499
+ "ticketId": {
9500
+ "description": "Ticket ID to link to PR - auto-detects from branch if not provided",
9501
+ "name": "ticketId",
9502
+ "required": false
9503
+ }
9504
+ },
9505
+ "description": "Create a GitHub pull request from the current branch",
9506
+ "examples": [
9507
+ "<%= config.bin %> <%= command.id %>",
9508
+ "<%= config.bin %> <%= command.id %> TKT-001",
9509
+ "<%= config.bin %> <%= command.id %> --draft",
9510
+ "<%= config.bin %> <%= command.id %> --base develop"
9511
+ ],
9512
+ "flags": {
9513
+ "project": {
9514
+ "char": "P",
9515
+ "description": "Project ID (uses first project if only one exists)",
9516
+ "name": "project",
9517
+ "hasDynamicHelp": false,
9518
+ "multiple": false,
9519
+ "type": "option"
9520
+ },
9521
+ "json": {
9522
+ "aliases": [
9523
+ "machine"
9524
+ ],
9525
+ "char": "m",
9526
+ "description": "Output as JSON for AI agents/scripts",
9527
+ "name": "json",
9528
+ "allowNo": false,
9529
+ "type": "boolean"
9530
+ },
9531
+ "base": {
9532
+ "char": "b",
9533
+ "description": "Base branch for the PR (defaults to main/master)",
9534
+ "name": "base",
9535
+ "hasDynamicHelp": false,
9536
+ "multiple": false,
9537
+ "type": "option"
9538
+ },
9539
+ "draft": {
9540
+ "char": "d",
9541
+ "description": "Create as draft PR",
9542
+ "name": "draft",
9543
+ "allowNo": false,
9544
+ "type": "boolean"
9545
+ },
9546
+ "no-link": {
9547
+ "description": "Skip linking PR to ticket",
9548
+ "name": "no-link",
9549
+ "allowNo": false,
9550
+ "type": "boolean"
9551
+ },
9552
+ "title": {
9553
+ "char": "t",
9554
+ "description": "PR title (auto-generated from ticket if not provided)",
9555
+ "name": "title",
9556
+ "hasDynamicHelp": false,
9557
+ "multiple": false,
9558
+ "type": "option"
9559
+ },
9560
+ "body": {
9561
+ "description": "PR body/description",
9562
+ "name": "body",
9563
+ "hasDynamicHelp": false,
9564
+ "multiple": false,
9565
+ "type": "option"
9566
+ },
9567
+ "ticket": {
9568
+ "description": "Ticket ID to link (alternative to positional arg)",
9569
+ "name": "ticket",
9570
+ "hasDynamicHelp": false,
9571
+ "multiple": false,
9572
+ "type": "option"
9573
+ }
9574
+ },
9637
9575
  "hasDynamicHelp": false,
9638
9576
  "hiddenAliases": [],
9639
- "id": "theme:add-names",
9577
+ "id": "pr:create",
9640
9578
  "pluginAlias": "@proletariat/cli",
9641
9579
  "pluginName": "@proletariat/cli",
9642
9580
  "pluginType": "core",
9643
- "strict": false,
9644
- "enableJsonFlag": false,
9581
+ "strict": true,
9645
9582
  "isESM": true,
9646
9583
  "relativePath": [
9647
9584
  "dist",
9648
9585
  "commands",
9649
- "theme",
9650
- "add-names.js"
9586
+ "pr",
9587
+ "create.js"
9651
9588
  ]
9652
9589
  },
9653
- "theme:create": {
9590
+ "pr": {
9654
9591
  "aliases": [],
9655
- "args": {
9656
- "name": {
9657
- "description": "Theme name (used as ID, lowercase with hyphens)",
9658
- "name": "name",
9659
- "required": true
9660
- }
9661
- },
9662
- "description": "Create a custom agent theme",
9592
+ "args": {},
9593
+ "description": "Interactive menu for pull request operations",
9663
9594
  "examples": [
9664
- "<%= config.bin %> <%= command.id %> greek-gods",
9665
- "<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
9666
- "<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
9595
+ "<%= config.bin %> <%= command.id %>"
9667
9596
  ],
9668
9597
  "flags": {
9669
- "description": {
9670
- "char": "d",
9671
- "description": "Theme description",
9672
- "name": "description",
9598
+ "project": {
9599
+ "char": "P",
9600
+ "description": "Project ID (uses first project if only one exists)",
9601
+ "name": "project",
9673
9602
  "hasDynamicHelp": false,
9674
9603
  "multiple": false,
9675
9604
  "type": "option"
9676
9605
  },
9677
- "display-name": {
9678
- "description": "Display name (defaults to formatted name)",
9679
- "name": "display-name",
9606
+ "json": {
9607
+ "aliases": [
9608
+ "machine"
9609
+ ],
9610
+ "char": "m",
9611
+ "description": "Output as JSON for AI agents/scripts",
9612
+ "name": "json",
9613
+ "allowNo": false,
9614
+ "type": "boolean"
9615
+ },
9616
+ "action": {
9617
+ "char": "a",
9618
+ "description": "Action to perform (list, create, link, status)",
9619
+ "name": "action",
9680
9620
  "hasDynamicHelp": false,
9681
9621
  "multiple": false,
9622
+ "options": [
9623
+ "list",
9624
+ "create",
9625
+ "link",
9626
+ "status"
9627
+ ],
9682
9628
  "type": "option"
9683
9629
  }
9684
9630
  },
9685
9631
  "hasDynamicHelp": false,
9686
9632
  "hiddenAliases": [],
9687
- "id": "theme:create",
9633
+ "id": "pr",
9688
9634
  "pluginAlias": "@proletariat/cli",
9689
9635
  "pluginName": "@proletariat/cli",
9690
9636
  "pluginType": "core",
9691
9637
  "strict": true,
9692
- "enableJsonFlag": false,
9693
9638
  "isESM": true,
9694
9639
  "relativePath": [
9695
9640
  "dist",
9696
9641
  "commands",
9697
- "theme",
9698
- "create.js"
9642
+ "pr",
9643
+ "index.js"
9699
9644
  ]
9700
9645
  },
9701
- "theme": {
9646
+ "pr:link": {
9702
9647
  "aliases": [],
9703
- "args": {},
9704
- "description": "Manage agent naming themes",
9648
+ "args": {
9649
+ "ticketId": {
9650
+ "description": "Ticket ID to link PR to",
9651
+ "name": "ticketId",
9652
+ "required": false
9653
+ }
9654
+ },
9655
+ "description": "Link an existing GitHub pull request to a ticket",
9705
9656
  "examples": [
9706
- "<%= config.bin %> <%= command.id %> list",
9707
- "<%= config.bin %> <%= command.id %> create greek-gods",
9708
- "<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
9657
+ "<%= config.bin %> <%= command.id %>",
9658
+ "<%= config.bin %> <%= command.id %> TKT-001",
9659
+ "<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
9660
+ "<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
9709
9661
  ],
9710
9662
  "flags": {
9663
+ "project": {
9664
+ "char": "P",
9665
+ "description": "Project ID (uses first project if only one exists)",
9666
+ "name": "project",
9667
+ "hasDynamicHelp": false,
9668
+ "multiple": false,
9669
+ "type": "option"
9670
+ },
9711
9671
  "json": {
9712
9672
  "aliases": [
9713
9673
  "machine"
@@ -9717,63 +9677,158 @@
9717
9677
  "name": "json",
9718
9678
  "allowNo": false,
9719
9679
  "type": "boolean"
9680
+ },
9681
+ "pr": {
9682
+ "char": "p",
9683
+ "description": "PR number to link",
9684
+ "name": "pr",
9685
+ "hasDynamicHelp": false,
9686
+ "multiple": false,
9687
+ "type": "option"
9688
+ },
9689
+ "url": {
9690
+ "char": "u",
9691
+ "description": "PR URL to link",
9692
+ "name": "url",
9693
+ "hasDynamicHelp": false,
9694
+ "multiple": false,
9695
+ "type": "option"
9696
+ },
9697
+ "ticket": {
9698
+ "description": "Ticket ID to link (alternative to positional arg)",
9699
+ "name": "ticket",
9700
+ "hasDynamicHelp": false,
9701
+ "multiple": false,
9702
+ "type": "option"
9703
+ },
9704
+ "confirm": {
9705
+ "description": "Confirm overwriting existing PR link",
9706
+ "name": "confirm",
9707
+ "allowNo": false,
9708
+ "type": "boolean"
9720
9709
  }
9721
9710
  },
9722
9711
  "hasDynamicHelp": false,
9723
9712
  "hiddenAliases": [],
9724
- "id": "theme",
9713
+ "id": "pr:link",
9725
9714
  "pluginAlias": "@proletariat/cli",
9726
9715
  "pluginName": "@proletariat/cli",
9727
9716
  "pluginType": "core",
9728
9717
  "strict": true,
9729
- "enableJsonFlag": false,
9730
9718
  "isESM": true,
9731
9719
  "relativePath": [
9732
9720
  "dist",
9733
9721
  "commands",
9734
- "theme",
9735
- "index.js"
9722
+ "pr",
9723
+ "link.js"
9736
9724
  ]
9737
9725
  },
9738
- "theme:list": {
9726
+ "pr:list": {
9739
9727
  "aliases": [],
9740
9728
  "args": {},
9741
- "description": "List available agent themes",
9729
+ "description": "List pull requests linked to tickets in the workspace",
9742
9730
  "examples": [
9743
- "<%= config.bin %> <%= command.id %>"
9731
+ "<%= config.bin %> <%= command.id %>",
9732
+ "<%= config.bin %> <%= command.id %> --state open",
9733
+ "<%= config.bin %> <%= command.id %> --state draft",
9734
+ "<%= config.bin %> <%= command.id %> --format json",
9735
+ "<%= config.bin %> <%= command.id %> --machine"
9744
9736
  ],
9745
- "flags": {},
9737
+ "flags": {
9738
+ "project": {
9739
+ "char": "P",
9740
+ "description": "Project ID (uses first project if only one exists)",
9741
+ "name": "project",
9742
+ "hasDynamicHelp": false,
9743
+ "multiple": false,
9744
+ "type": "option"
9745
+ },
9746
+ "json": {
9747
+ "aliases": [
9748
+ "machine"
9749
+ ],
9750
+ "char": "m",
9751
+ "description": "Output as JSON for AI agents/scripts",
9752
+ "name": "json",
9753
+ "allowNo": false,
9754
+ "type": "boolean"
9755
+ },
9756
+ "state": {
9757
+ "char": "s",
9758
+ "description": "Filter by PR state",
9759
+ "name": "state",
9760
+ "default": "open",
9761
+ "hasDynamicHelp": false,
9762
+ "multiple": false,
9763
+ "options": [
9764
+ "open",
9765
+ "draft",
9766
+ "all"
9767
+ ],
9768
+ "type": "option"
9769
+ },
9770
+ "format": {
9771
+ "char": "f",
9772
+ "description": "Output format",
9773
+ "name": "format",
9774
+ "default": "table",
9775
+ "hasDynamicHelp": false,
9776
+ "multiple": false,
9777
+ "options": [
9778
+ "table",
9779
+ "compact",
9780
+ "json"
9781
+ ],
9782
+ "type": "option"
9783
+ },
9784
+ "limit": {
9785
+ "char": "l",
9786
+ "description": "Maximum number of PRs to show",
9787
+ "name": "limit",
9788
+ "default": 50,
9789
+ "hasDynamicHelp": false,
9790
+ "multiple": false,
9791
+ "type": "option"
9792
+ }
9793
+ },
9746
9794
  "hasDynamicHelp": false,
9747
9795
  "hiddenAliases": [],
9748
- "id": "theme:list",
9796
+ "id": "pr:list",
9749
9797
  "pluginAlias": "@proletariat/cli",
9750
9798
  "pluginName": "@proletariat/cli",
9751
9799
  "pluginType": "core",
9752
9800
  "strict": true,
9753
- "enableJsonFlag": false,
9754
9801
  "isESM": true,
9755
9802
  "relativePath": [
9756
9803
  "dist",
9757
9804
  "commands",
9758
- "theme",
9805
+ "pr",
9759
9806
  "list.js"
9760
9807
  ]
9761
9808
  },
9762
- "theme:set": {
9809
+ "pr:status": {
9763
9810
  "aliases": [],
9764
9811
  "args": {
9765
- "theme": {
9766
- "description": "Theme ID to set as active",
9767
- "name": "theme",
9812
+ "ticketId": {
9813
+ "description": "Ticket ID to check PR status for",
9814
+ "name": "ticketId",
9768
9815
  "required": false
9769
9816
  }
9770
9817
  },
9771
- "description": "Set the active theme for this workspace",
9818
+ "description": "View PR status for a ticket",
9772
9819
  "examples": [
9773
- "<%= config.bin %> <%= command.id %> billionaires",
9774
- "<%= config.bin %> <%= command.id %>"
9820
+ "<%= config.bin %> <%= command.id %>",
9821
+ "<%= config.bin %> <%= command.id %> TKT-001"
9775
9822
  ],
9776
9823
  "flags": {
9824
+ "project": {
9825
+ "char": "P",
9826
+ "description": "Project ID (uses first project if only one exists)",
9827
+ "name": "project",
9828
+ "hasDynamicHelp": false,
9829
+ "multiple": false,
9830
+ "type": "option"
9831
+ },
9777
9832
  "json": {
9778
9833
  "aliases": [
9779
9834
  "machine"
@@ -9783,22 +9838,28 @@
9783
9838
  "name": "json",
9784
9839
  "allowNo": false,
9785
9840
  "type": "boolean"
9841
+ },
9842
+ "ticket": {
9843
+ "description": "Ticket ID to check (alternative to positional arg)",
9844
+ "name": "ticket",
9845
+ "hasDynamicHelp": false,
9846
+ "multiple": false,
9847
+ "type": "option"
9786
9848
  }
9787
9849
  },
9788
9850
  "hasDynamicHelp": false,
9789
9851
  "hiddenAliases": [],
9790
- "id": "theme:set",
9852
+ "id": "pr:status",
9791
9853
  "pluginAlias": "@proletariat/cli",
9792
9854
  "pluginName": "@proletariat/cli",
9793
9855
  "pluginType": "core",
9794
9856
  "strict": true,
9795
- "enableJsonFlag": false,
9796
9857
  "isESM": true,
9797
9858
  "relativePath": [
9798
9859
  "dist",
9799
9860
  "commands",
9800
- "theme",
9801
- "set.js"
9861
+ "pr",
9862
+ "status.js"
9802
9863
  ]
9803
9864
  },
9804
9865
  "work:complete": {
@@ -10568,6 +10629,13 @@
10568
10629
  "name": "clone",
10569
10630
  "allowNo": false,
10570
10631
  "type": "boolean"
10632
+ },
10633
+ "yes": {
10634
+ "char": "y",
10635
+ "description": "Skip confirmation prompt (for non-TTY/scripted execution)",
10636
+ "name": "yes",
10637
+ "allowNo": false,
10638
+ "type": "boolean"
10571
10639
  }
10572
10640
  },
10573
10641
  "hasDynamicHelp": false,
@@ -12543,5 +12611,5 @@
12543
12611
  ]
12544
12612
  }
12545
12613
  },
12546
- "version": "0.3.25"
12614
+ "version": "0.3.26"
12547
12615
  }