@proletariat/cli 0.3.44 → 0.3.45

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.
@@ -4390,248 +4390,6 @@
4390
4390
  "view.js"
4391
4391
  ]
4392
4392
  },
4393
- "feedback": {
4394
- "aliases": [],
4395
- "args": {},
4396
- "description": "Interactive menu for feedback and issue operations",
4397
- "examples": [
4398
- "<%= config.bin %> <%= command.id %>",
4399
- "<%= config.bin %> <%= command.id %> --action submit"
4400
- ],
4401
- "flags": {
4402
- "json": {
4403
- "description": "Output as JSON for AI agents/scripts",
4404
- "name": "json",
4405
- "allowNo": false,
4406
- "type": "boolean"
4407
- },
4408
- "machine": {
4409
- "char": "m",
4410
- "description": "Output as JSON for AI agents/scripts",
4411
- "name": "machine",
4412
- "allowNo": false,
4413
- "type": "boolean"
4414
- },
4415
- "action": {
4416
- "char": "a",
4417
- "description": "Action to perform (submit, list, view)",
4418
- "name": "action",
4419
- "hasDynamicHelp": false,
4420
- "multiple": false,
4421
- "options": [
4422
- "submit",
4423
- "list",
4424
- "view"
4425
- ],
4426
- "type": "option"
4427
- }
4428
- },
4429
- "hasDynamicHelp": false,
4430
- "hiddenAliases": [],
4431
- "id": "feedback",
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
- "index.js"
4443
- ]
4444
- },
4445
- "feedback:list": {
4446
- "aliases": [],
4447
- "args": {},
4448
- "description": "List recent feedback issues from the repository",
4449
- "examples": [
4450
- "<%= config.bin %> <%= command.id %>",
4451
- "<%= config.bin %> <%= command.id %> --category bug",
4452
- "<%= config.bin %> <%= command.id %> --state closed --limit 10",
4453
- "<%= config.bin %> <%= command.id %> --json"
4454
- ],
4455
- "flags": {
4456
- "json": {
4457
- "description": "Output as JSON for AI agents/scripts",
4458
- "name": "json",
4459
- "allowNo": false,
4460
- "type": "boolean"
4461
- },
4462
- "machine": {
4463
- "char": "m",
4464
- "description": "Output as JSON for AI agents/scripts",
4465
- "name": "machine",
4466
- "allowNo": false,
4467
- "type": "boolean"
4468
- },
4469
- "category": {
4470
- "char": "c",
4471
- "description": "Filter by category (bug, feature, general)",
4472
- "name": "category",
4473
- "hasDynamicHelp": false,
4474
- "multiple": false,
4475
- "options": [
4476
- "bug",
4477
- "feature",
4478
- "general"
4479
- ],
4480
- "type": "option"
4481
- },
4482
- "state": {
4483
- "char": "s",
4484
- "description": "Filter by state",
4485
- "name": "state",
4486
- "default": "open",
4487
- "hasDynamicHelp": false,
4488
- "multiple": false,
4489
- "options": [
4490
- "open",
4491
- "closed",
4492
- "all"
4493
- ],
4494
- "type": "option"
4495
- },
4496
- "limit": {
4497
- "char": "l",
4498
- "description": "Maximum number of issues to show",
4499
- "name": "limit",
4500
- "default": 20,
4501
- "hasDynamicHelp": false,
4502
- "multiple": false,
4503
- "type": "option"
4504
- }
4505
- },
4506
- "hasDynamicHelp": false,
4507
- "hiddenAliases": [],
4508
- "id": "feedback:list",
4509
- "pluginAlias": "@proletariat/cli",
4510
- "pluginName": "@proletariat/cli",
4511
- "pluginType": "core",
4512
- "strict": true,
4513
- "enableJsonFlag": false,
4514
- "isESM": true,
4515
- "relativePath": [
4516
- "dist",
4517
- "commands",
4518
- "feedback",
4519
- "list.js"
4520
- ]
4521
- },
4522
- "feedback:submit": {
4523
- "aliases": [],
4524
- "args": {},
4525
- "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
4526
- "examples": [
4527
- "<%= config.bin %> <%= command.id %>",
4528
- "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
4529
- "<%= config.bin %> <%= command.id %> --json"
4530
- ],
4531
- "flags": {
4532
- "json": {
4533
- "description": "Output as JSON for AI agents/scripts",
4534
- "name": "json",
4535
- "allowNo": false,
4536
- "type": "boolean"
4537
- },
4538
- "machine": {
4539
- "char": "m",
4540
- "description": "Output as JSON for AI agents/scripts",
4541
- "name": "machine",
4542
- "allowNo": false,
4543
- "type": "boolean"
4544
- },
4545
- "title": {
4546
- "char": "t",
4547
- "description": "Issue title (one-liner) [required for non-interactive]",
4548
- "name": "title",
4549
- "hasDynamicHelp": false,
4550
- "multiple": false,
4551
- "type": "option"
4552
- },
4553
- "body": {
4554
- "char": "b",
4555
- "description": "Issue description [required for non-interactive]",
4556
- "name": "body",
4557
- "hasDynamicHelp": false,
4558
- "multiple": false,
4559
- "type": "option"
4560
- },
4561
- "category": {
4562
- "char": "c",
4563
- "description": "Feedback category",
4564
- "name": "category",
4565
- "hasDynamicHelp": false,
4566
- "multiple": false,
4567
- "options": [
4568
- "bug",
4569
- "feature",
4570
- "general"
4571
- ],
4572
- "type": "option"
4573
- }
4574
- },
4575
- "hasDynamicHelp": false,
4576
- "hiddenAliases": [],
4577
- "id": "feedback:submit",
4578
- "pluginAlias": "@proletariat/cli",
4579
- "pluginName": "@proletariat/cli",
4580
- "pluginType": "core",
4581
- "strict": true,
4582
- "isESM": true,
4583
- "relativePath": [
4584
- "dist",
4585
- "commands",
4586
- "feedback",
4587
- "submit.js"
4588
- ]
4589
- },
4590
- "feedback:view": {
4591
- "aliases": [],
4592
- "args": {
4593
- "number": {
4594
- "description": "Issue number to view",
4595
- "name": "number",
4596
- "required": true
4597
- }
4598
- },
4599
- "description": "View details of a specific feedback issue",
4600
- "examples": [
4601
- "<%= config.bin %> <%= command.id %> 123",
4602
- "<%= config.bin %> <%= command.id %> 123 --json"
4603
- ],
4604
- "flags": {
4605
- "json": {
4606
- "description": "Output as JSON for AI agents/scripts",
4607
- "name": "json",
4608
- "allowNo": false,
4609
- "type": "boolean"
4610
- },
4611
- "machine": {
4612
- "char": "m",
4613
- "description": "Output as JSON for AI agents/scripts",
4614
- "name": "machine",
4615
- "allowNo": false,
4616
- "type": "boolean"
4617
- }
4618
- },
4619
- "hasDynamicHelp": false,
4620
- "hiddenAliases": [],
4621
- "id": "feedback:view",
4622
- "pluginAlias": "@proletariat/cli",
4623
- "pluginName": "@proletariat/cli",
4624
- "pluginType": "core",
4625
- "strict": true,
4626
- "enableJsonFlag": false,
4627
- "isESM": true,
4628
- "relativePath": [
4629
- "dist",
4630
- "commands",
4631
- "feedback",
4632
- "view.js"
4633
- ]
4634
- },
4635
4393
  "execution:config": {
4636
4394
  "aliases": [],
4637
4395
  "args": {},
@@ -5107,15 +4865,13 @@
5107
4865
  "view.js"
5108
4866
  ]
5109
4867
  },
5110
- "gh": {
4868
+ "feedback": {
5111
4869
  "aliases": [],
5112
4870
  "args": {},
5113
- "description": "GitHub CLI setup and status for PR workflow",
4871
+ "description": "Interactive menu for feedback and issue operations",
5114
4872
  "examples": [
5115
4873
  "<%= config.bin %> <%= command.id %>",
5116
- "<%= config.bin %> <%= command.id %> status",
5117
- "<%= config.bin %> <%= command.id %> login",
5118
- "<%= config.bin %> <%= command.id %> token"
4874
+ "<%= config.bin %> <%= command.id %> --action submit"
5119
4875
  ],
5120
4876
  "flags": {
5121
4877
  "json": {
@@ -5130,12 +4886,256 @@
5130
4886
  "name": "machine",
5131
4887
  "allowNo": false,
5132
4888
  "type": "boolean"
5133
- }
5134
- },
5135
- "hasDynamicHelp": false,
5136
- "hiddenAliases": [],
5137
- "id": "gh",
5138
- "pluginAlias": "@proletariat/cli",
4889
+ },
4890
+ "action": {
4891
+ "char": "a",
4892
+ "description": "Action to perform (submit, list, view)",
4893
+ "name": "action",
4894
+ "hasDynamicHelp": false,
4895
+ "multiple": false,
4896
+ "options": [
4897
+ "submit",
4898
+ "list",
4899
+ "view"
4900
+ ],
4901
+ "type": "option"
4902
+ }
4903
+ },
4904
+ "hasDynamicHelp": false,
4905
+ "hiddenAliases": [],
4906
+ "id": "feedback",
4907
+ "pluginAlias": "@proletariat/cli",
4908
+ "pluginName": "@proletariat/cli",
4909
+ "pluginType": "core",
4910
+ "strict": true,
4911
+ "enableJsonFlag": false,
4912
+ "isESM": true,
4913
+ "relativePath": [
4914
+ "dist",
4915
+ "commands",
4916
+ "feedback",
4917
+ "index.js"
4918
+ ]
4919
+ },
4920
+ "feedback:list": {
4921
+ "aliases": [],
4922
+ "args": {},
4923
+ "description": "List recent feedback issues from the repository",
4924
+ "examples": [
4925
+ "<%= config.bin %> <%= command.id %>",
4926
+ "<%= config.bin %> <%= command.id %> --category bug",
4927
+ "<%= config.bin %> <%= command.id %> --state closed --limit 10",
4928
+ "<%= config.bin %> <%= command.id %> --json"
4929
+ ],
4930
+ "flags": {
4931
+ "json": {
4932
+ "description": "Output as JSON for AI agents/scripts",
4933
+ "name": "json",
4934
+ "allowNo": false,
4935
+ "type": "boolean"
4936
+ },
4937
+ "machine": {
4938
+ "char": "m",
4939
+ "description": "Output as JSON for AI agents/scripts",
4940
+ "name": "machine",
4941
+ "allowNo": false,
4942
+ "type": "boolean"
4943
+ },
4944
+ "category": {
4945
+ "char": "c",
4946
+ "description": "Filter by category (bug, feature, general)",
4947
+ "name": "category",
4948
+ "hasDynamicHelp": false,
4949
+ "multiple": false,
4950
+ "options": [
4951
+ "bug",
4952
+ "feature",
4953
+ "general"
4954
+ ],
4955
+ "type": "option"
4956
+ },
4957
+ "state": {
4958
+ "char": "s",
4959
+ "description": "Filter by state",
4960
+ "name": "state",
4961
+ "default": "open",
4962
+ "hasDynamicHelp": false,
4963
+ "multiple": false,
4964
+ "options": [
4965
+ "open",
4966
+ "closed",
4967
+ "all"
4968
+ ],
4969
+ "type": "option"
4970
+ },
4971
+ "limit": {
4972
+ "char": "l",
4973
+ "description": "Maximum number of issues to show",
4974
+ "name": "limit",
4975
+ "default": 20,
4976
+ "hasDynamicHelp": false,
4977
+ "multiple": false,
4978
+ "type": "option"
4979
+ }
4980
+ },
4981
+ "hasDynamicHelp": false,
4982
+ "hiddenAliases": [],
4983
+ "id": "feedback:list",
4984
+ "pluginAlias": "@proletariat/cli",
4985
+ "pluginName": "@proletariat/cli",
4986
+ "pluginType": "core",
4987
+ "strict": true,
4988
+ "enableJsonFlag": false,
4989
+ "isESM": true,
4990
+ "relativePath": [
4991
+ "dist",
4992
+ "commands",
4993
+ "feedback",
4994
+ "list.js"
4995
+ ]
4996
+ },
4997
+ "feedback:submit": {
4998
+ "aliases": [],
4999
+ "args": {},
5000
+ "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
5001
+ "examples": [
5002
+ "<%= config.bin %> <%= command.id %>",
5003
+ "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
5004
+ "<%= config.bin %> <%= command.id %> --json"
5005
+ ],
5006
+ "flags": {
5007
+ "json": {
5008
+ "description": "Output as JSON for AI agents/scripts",
5009
+ "name": "json",
5010
+ "allowNo": false,
5011
+ "type": "boolean"
5012
+ },
5013
+ "machine": {
5014
+ "char": "m",
5015
+ "description": "Output as JSON for AI agents/scripts",
5016
+ "name": "machine",
5017
+ "allowNo": false,
5018
+ "type": "boolean"
5019
+ },
5020
+ "title": {
5021
+ "char": "t",
5022
+ "description": "Issue title (one-liner) [required for non-interactive]",
5023
+ "name": "title",
5024
+ "hasDynamicHelp": false,
5025
+ "multiple": false,
5026
+ "type": "option"
5027
+ },
5028
+ "body": {
5029
+ "char": "b",
5030
+ "description": "Issue description [required for non-interactive]",
5031
+ "name": "body",
5032
+ "hasDynamicHelp": false,
5033
+ "multiple": false,
5034
+ "type": "option"
5035
+ },
5036
+ "category": {
5037
+ "char": "c",
5038
+ "description": "Feedback category",
5039
+ "name": "category",
5040
+ "hasDynamicHelp": false,
5041
+ "multiple": false,
5042
+ "options": [
5043
+ "bug",
5044
+ "feature",
5045
+ "general"
5046
+ ],
5047
+ "type": "option"
5048
+ }
5049
+ },
5050
+ "hasDynamicHelp": false,
5051
+ "hiddenAliases": [],
5052
+ "id": "feedback:submit",
5053
+ "pluginAlias": "@proletariat/cli",
5054
+ "pluginName": "@proletariat/cli",
5055
+ "pluginType": "core",
5056
+ "strict": true,
5057
+ "isESM": true,
5058
+ "relativePath": [
5059
+ "dist",
5060
+ "commands",
5061
+ "feedback",
5062
+ "submit.js"
5063
+ ]
5064
+ },
5065
+ "feedback:view": {
5066
+ "aliases": [],
5067
+ "args": {
5068
+ "number": {
5069
+ "description": "Issue number to view",
5070
+ "name": "number",
5071
+ "required": true
5072
+ }
5073
+ },
5074
+ "description": "View details of a specific feedback issue",
5075
+ "examples": [
5076
+ "<%= config.bin %> <%= command.id %> 123",
5077
+ "<%= config.bin %> <%= command.id %> 123 --json"
5078
+ ],
5079
+ "flags": {
5080
+ "json": {
5081
+ "description": "Output as JSON for AI agents/scripts",
5082
+ "name": "json",
5083
+ "allowNo": false,
5084
+ "type": "boolean"
5085
+ },
5086
+ "machine": {
5087
+ "char": "m",
5088
+ "description": "Output as JSON for AI agents/scripts",
5089
+ "name": "machine",
5090
+ "allowNo": false,
5091
+ "type": "boolean"
5092
+ }
5093
+ },
5094
+ "hasDynamicHelp": false,
5095
+ "hiddenAliases": [],
5096
+ "id": "feedback:view",
5097
+ "pluginAlias": "@proletariat/cli",
5098
+ "pluginName": "@proletariat/cli",
5099
+ "pluginType": "core",
5100
+ "strict": true,
5101
+ "enableJsonFlag": false,
5102
+ "isESM": true,
5103
+ "relativePath": [
5104
+ "dist",
5105
+ "commands",
5106
+ "feedback",
5107
+ "view.js"
5108
+ ]
5109
+ },
5110
+ "gh": {
5111
+ "aliases": [],
5112
+ "args": {},
5113
+ "description": "GitHub CLI setup and status for PR workflow",
5114
+ "examples": [
5115
+ "<%= config.bin %> <%= command.id %>",
5116
+ "<%= config.bin %> <%= command.id %> status",
5117
+ "<%= config.bin %> <%= command.id %> login",
5118
+ "<%= config.bin %> <%= command.id %> token"
5119
+ ],
5120
+ "flags": {
5121
+ "json": {
5122
+ "description": "Output as JSON for AI agents/scripts",
5123
+ "name": "json",
5124
+ "allowNo": false,
5125
+ "type": "boolean"
5126
+ },
5127
+ "machine": {
5128
+ "char": "m",
5129
+ "description": "Output as JSON for AI agents/scripts",
5130
+ "name": "machine",
5131
+ "allowNo": false,
5132
+ "type": "boolean"
5133
+ }
5134
+ },
5135
+ "hasDynamicHelp": false,
5136
+ "hiddenAliases": [],
5137
+ "id": "gh",
5138
+ "pluginAlias": "@proletariat/cli",
5139
5139
  "pluginName": "@proletariat/cli",
5140
5140
  "pluginType": "core",
5141
5141
  "strict": true,
@@ -6057,96 +6057,7 @@
6057
6057
  "stop.js"
6058
6058
  ]
6059
6059
  },
6060
- "pmo:init": {
6061
- "aliases": [],
6062
- "args": {},
6063
- "description": "Initialize PMO (Project Management Org) in current directory or HQ",
6064
- "examples": [
6065
- "<%= config.bin %> <%= command.id %>",
6066
- "<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
6067
- "<%= config.bin %> <%= command.id %> --location separate --template linear"
6068
- ],
6069
- "flags": {
6070
- "location": {
6071
- "char": "l",
6072
- "description": "PMO location (separate or repo:name)",
6073
- "name": "location",
6074
- "hasDynamicHelp": false,
6075
- "multiple": false,
6076
- "type": "option"
6077
- },
6078
- "template": {
6079
- "char": "t",
6080
- "description": "Board template",
6081
- "name": "template",
6082
- "hasDynamicHelp": false,
6083
- "multiple": false,
6084
- "options": [
6085
- "kanban",
6086
- "linear",
6087
- "5-tool-founder",
6088
- "custom"
6089
- ],
6090
- "type": "option"
6091
- },
6092
- "name": {
6093
- "char": "n",
6094
- "description": "Board name",
6095
- "name": "name",
6096
- "hasDynamicHelp": false,
6097
- "multiple": false,
6098
- "type": "option"
6099
- },
6100
- "json": {
6101
- "description": "Output as JSON for AI agents/scripts",
6102
- "name": "json",
6103
- "allowNo": false,
6104
- "type": "boolean"
6105
- },
6106
- "machine": {
6107
- "char": "m",
6108
- "description": "Output as JSON for AI agents/scripts",
6109
- "name": "machine",
6110
- "allowNo": false,
6111
- "type": "boolean"
6112
- },
6113
- "action": {
6114
- "description": "Action for existing PMO (cancel or reinitialize)",
6115
- "hidden": true,
6116
- "name": "action",
6117
- "hasDynamicHelp": false,
6118
- "multiple": false,
6119
- "options": [
6120
- "cancel",
6121
- "reinitialize"
6122
- ],
6123
- "type": "option"
6124
- },
6125
- "confirmation": {
6126
- "description": "Confirmation text for destructive operations",
6127
- "hidden": true,
6128
- "name": "confirmation",
6129
- "hasDynamicHelp": false,
6130
- "multiple": false,
6131
- "type": "option"
6132
- }
6133
- },
6134
- "hasDynamicHelp": false,
6135
- "hiddenAliases": [],
6136
- "id": "pmo:init",
6137
- "pluginAlias": "@proletariat/cli",
6138
- "pluginName": "@proletariat/cli",
6139
- "pluginType": "core",
6140
- "strict": true,
6141
- "isESM": true,
6142
- "relativePath": [
6143
- "dist",
6144
- "commands",
6145
- "pmo",
6146
- "init.js"
6147
- ]
6148
- },
6149
- "phase:create": {
6060
+ "phase:create": {
6150
6061
  "aliases": [],
6151
6062
  "args": {
6152
6063
  "name": {
@@ -6531,6 +6442,95 @@
6531
6442
  "update.js"
6532
6443
  ]
6533
6444
  },
6445
+ "pmo:init": {
6446
+ "aliases": [],
6447
+ "args": {},
6448
+ "description": "Initialize PMO (Project Management Org) in current directory or HQ",
6449
+ "examples": [
6450
+ "<%= config.bin %> <%= command.id %>",
6451
+ "<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
6452
+ "<%= config.bin %> <%= command.id %> --location separate --template linear"
6453
+ ],
6454
+ "flags": {
6455
+ "location": {
6456
+ "char": "l",
6457
+ "description": "PMO location (separate or repo:name)",
6458
+ "name": "location",
6459
+ "hasDynamicHelp": false,
6460
+ "multiple": false,
6461
+ "type": "option"
6462
+ },
6463
+ "template": {
6464
+ "char": "t",
6465
+ "description": "Board template",
6466
+ "name": "template",
6467
+ "hasDynamicHelp": false,
6468
+ "multiple": false,
6469
+ "options": [
6470
+ "kanban",
6471
+ "linear",
6472
+ "5-tool-founder",
6473
+ "custom"
6474
+ ],
6475
+ "type": "option"
6476
+ },
6477
+ "name": {
6478
+ "char": "n",
6479
+ "description": "Board name",
6480
+ "name": "name",
6481
+ "hasDynamicHelp": false,
6482
+ "multiple": false,
6483
+ "type": "option"
6484
+ },
6485
+ "json": {
6486
+ "description": "Output as JSON for AI agents/scripts",
6487
+ "name": "json",
6488
+ "allowNo": false,
6489
+ "type": "boolean"
6490
+ },
6491
+ "machine": {
6492
+ "char": "m",
6493
+ "description": "Output as JSON for AI agents/scripts",
6494
+ "name": "machine",
6495
+ "allowNo": false,
6496
+ "type": "boolean"
6497
+ },
6498
+ "action": {
6499
+ "description": "Action for existing PMO (cancel or reinitialize)",
6500
+ "hidden": true,
6501
+ "name": "action",
6502
+ "hasDynamicHelp": false,
6503
+ "multiple": false,
6504
+ "options": [
6505
+ "cancel",
6506
+ "reinitialize"
6507
+ ],
6508
+ "type": "option"
6509
+ },
6510
+ "confirmation": {
6511
+ "description": "Confirmation text for destructive operations",
6512
+ "hidden": true,
6513
+ "name": "confirmation",
6514
+ "hasDynamicHelp": false,
6515
+ "multiple": false,
6516
+ "type": "option"
6517
+ }
6518
+ },
6519
+ "hasDynamicHelp": false,
6520
+ "hiddenAliases": [],
6521
+ "id": "pmo:init",
6522
+ "pluginAlias": "@proletariat/cli",
6523
+ "pluginName": "@proletariat/cli",
6524
+ "pluginType": "core",
6525
+ "strict": true,
6526
+ "isESM": true,
6527
+ "relativePath": [
6528
+ "dist",
6529
+ "commands",
6530
+ "pmo",
6531
+ "init.js"
6532
+ ]
6533
+ },
6534
6534
  "pr:create": {
6535
6535
  "aliases": [],
6536
6536
  "args": {
@@ -8646,81 +8646,21 @@
8646
8646
  "poke.js"
8647
8647
  ]
8648
8648
  },
8649
- "staff:add": {
8649
+ "spec:create": {
8650
8650
  "aliases": [],
8651
8651
  "args": {
8652
- "names": {
8653
- "description": "Agent names to add (space-separated)",
8654
- "name": "names",
8652
+ "title": {
8653
+ "description": "Spec title",
8654
+ "name": "title",
8655
8655
  "required": false
8656
8656
  }
8657
8657
  },
8658
- "description": "Add new agents to the workspace",
8659
- "examples": [
8660
- "<%= config.bin %> <%= command.id %> zeus",
8661
- "<%= config.bin %> <%= command.id %> agent-1 agent-2",
8662
- "<%= config.bin %> <%= command.id %> --theme billionaires",
8663
- "<%= config.bin %> <%= command.id %> my-agent --no-container"
8664
- ],
8665
- "flags": {
8666
- "no-container": {
8667
- "description": "Skip devcontainer setup (not recommended for autonomous agents)",
8668
- "name": "no-container",
8669
- "allowNo": false,
8670
- "type": "boolean"
8671
- },
8672
- "theme": {
8673
- "char": "t",
8674
- "description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
8675
- "name": "theme",
8676
- "hasDynamicHelp": false,
8677
- "multiple": false,
8678
- "type": "option"
8679
- },
8680
- "json": {
8681
- "description": "Output as JSON for AI agents/scripts",
8682
- "name": "json",
8683
- "allowNo": false,
8684
- "type": "boolean"
8685
- },
8686
- "machine": {
8687
- "char": "m",
8688
- "description": "Output as JSON for AI agents/scripts",
8689
- "name": "machine",
8690
- "allowNo": false,
8691
- "type": "boolean"
8692
- },
8693
- "clone": {
8694
- "description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
8695
- "name": "clone",
8696
- "allowNo": false,
8697
- "type": "boolean"
8698
- }
8699
- },
8700
- "hasDynamicHelp": false,
8701
- "hiddenAliases": [],
8702
- "id": "staff:add",
8703
- "pluginAlias": "@proletariat/cli",
8704
- "pluginName": "@proletariat/cli",
8705
- "pluginType": "core",
8706
- "strict": false,
8707
- "isESM": true,
8708
- "relativePath": [
8709
- "dist",
8710
- "commands",
8711
- "agent",
8712
- "staff",
8713
- "add.js"
8714
- ]
8715
- },
8716
- "staff": {
8717
- "aliases": [],
8718
- "args": {},
8719
- "description": "Manage staff (persistent) agents",
8658
+ "description": "Create a new spec",
8720
8659
  "examples": [
8721
- "<%= config.bin %> <%= command.id %> list",
8722
- "<%= config.bin %> <%= command.id %> add",
8723
- "<%= config.bin %> <%= command.id %> remove camry"
8660
+ "<%= config.bin %> <%= command.id %> \"User Authentication\"",
8661
+ "<%= config.bin %> <%= command.id %> --title \"API Design\" --type product",
8662
+ "<%= config.bin %> <%= command.id %> -i # Interactive mode",
8663
+ "<%= config.bin %> <%= command.id %> --title \"Test\" --dry-run --json # Validate without creating"
8724
8664
  ],
8725
8665
  "flags": {
8726
8666
  "project": {
@@ -8744,16 +8684,65 @@
8744
8684
  "allowNo": false,
8745
8685
  "type": "boolean"
8746
8686
  },
8747
- "no-interactive": {
8748
- "description": "Alias for --json flag",
8749
- "name": "no-interactive",
8750
- "allowNo": false,
8687
+ "title": {
8688
+ "char": "t",
8689
+ "description": "Spec title [required for non-interactive]",
8690
+ "name": "title",
8691
+ "hasDynamicHelp": false,
8692
+ "multiple": false,
8693
+ "type": "option"
8694
+ },
8695
+ "status": {
8696
+ "char": "s",
8697
+ "description": "Spec status",
8698
+ "name": "status",
8699
+ "default": "draft",
8700
+ "hasDynamicHelp": false,
8701
+ "multiple": false,
8702
+ "options": [
8703
+ "draft",
8704
+ "active",
8705
+ "implemented"
8706
+ ],
8707
+ "type": "option"
8708
+ },
8709
+ "type": {
8710
+ "description": "Spec type",
8711
+ "name": "type",
8712
+ "hasDynamicHelp": false,
8713
+ "multiple": false,
8714
+ "options": [
8715
+ "product",
8716
+ "platform",
8717
+ "infra",
8718
+ "integration"
8719
+ ],
8720
+ "type": "option"
8721
+ },
8722
+ "problem": {
8723
+ "description": "Problem statement",
8724
+ "name": "problem",
8725
+ "hasDynamicHelp": false,
8726
+ "multiple": false,
8727
+ "type": "option"
8728
+ },
8729
+ "interactive": {
8730
+ "char": "i",
8731
+ "description": "Interactive mode",
8732
+ "name": "interactive",
8733
+ "allowNo": false,
8734
+ "type": "boolean"
8735
+ },
8736
+ "dry-run": {
8737
+ "description": "Validate inputs without creating spec (use with --json for structured output)",
8738
+ "name": "dry-run",
8739
+ "allowNo": false,
8751
8740
  "type": "boolean"
8752
8741
  }
8753
8742
  },
8754
8743
  "hasDynamicHelp": false,
8755
8744
  "hiddenAliases": [],
8756
- "id": "staff",
8745
+ "id": "spec:create",
8757
8746
  "pluginAlias": "@proletariat/cli",
8758
8747
  "pluginName": "@proletariat/cli",
8759
8748
  "pluginType": "core",
@@ -8762,18 +8751,34 @@
8762
8751
  "relativePath": [
8763
8752
  "dist",
8764
8753
  "commands",
8765
- "staff",
8766
- "index.js"
8754
+ "spec",
8755
+ "create.js"
8767
8756
  ]
8768
8757
  },
8769
- "staff:list": {
8758
+ "spec:delete": {
8770
8759
  "aliases": [],
8771
- "args": {},
8772
- "description": "List all staff (persistent) agents and their status",
8760
+ "args": {
8761
+ "id": {
8762
+ "description": "Spec ID to delete",
8763
+ "name": "id",
8764
+ "required": false
8765
+ }
8766
+ },
8767
+ "description": "Delete a spec",
8773
8768
  "examples": [
8774
- "<%= config.bin %> <%= command.id %>"
8769
+ "<%= config.bin %> <%= command.id %> my-spec",
8770
+ "<%= config.bin %> <%= command.id %> my-spec --force",
8771
+ "<%= config.bin %> <%= command.id %> # Interactive selection"
8775
8772
  ],
8776
8773
  "flags": {
8774
+ "project": {
8775
+ "char": "P",
8776
+ "description": "Project ID (uses first project if only one exists)",
8777
+ "name": "project",
8778
+ "hasDynamicHelp": false,
8779
+ "multiple": false,
8780
+ "type": "option"
8781
+ },
8777
8782
  "json": {
8778
8783
  "description": "Output as JSON for AI agents/scripts",
8779
8784
  "name": "json",
@@ -8786,37 +8791,46 @@
8786
8791
  "name": "machine",
8787
8792
  "allowNo": false,
8788
8793
  "type": "boolean"
8794
+ },
8795
+ "force": {
8796
+ "char": "f",
8797
+ "description": "Skip confirmation prompt",
8798
+ "name": "force",
8799
+ "allowNo": false,
8800
+ "type": "boolean"
8789
8801
  }
8790
8802
  },
8791
8803
  "hasDynamicHelp": false,
8792
8804
  "hiddenAliases": [],
8793
- "id": "staff:list",
8805
+ "id": "spec:delete",
8794
8806
  "pluginAlias": "@proletariat/cli",
8795
8807
  "pluginName": "@proletariat/cli",
8796
8808
  "pluginType": "core",
8797
8809
  "strict": true,
8798
- "enableJsonFlag": false,
8799
8810
  "isESM": true,
8800
8811
  "relativePath": [
8801
8812
  "dist",
8802
8813
  "commands",
8803
- "staff",
8804
- "list.js"
8814
+ "spec",
8815
+ "delete.js"
8805
8816
  ]
8806
8817
  },
8807
- "staff:remove": {
8818
+ "spec:edit": {
8808
8819
  "aliases": [],
8809
8820
  "args": {
8810
- "name": {
8811
- "description": "Agent name to remove",
8812
- "name": "name",
8821
+ "spec": {
8822
+ "description": "Spec ID to edit",
8823
+ "name": "spec",
8813
8824
  "required": false
8814
8825
  }
8815
8826
  },
8816
- "description": "Remove a specific agent from the workspace",
8827
+ "description": "Edit an existing spec",
8817
8828
  "examples": [
8818
- "<%= config.bin %> <%= command.id %> camry",
8819
- "<%= config.bin %> <%= command.id %>"
8829
+ "<%= config.bin %> <%= command.id %> user-authentication",
8830
+ "<%= config.bin %> <%= command.id %> --spec api-design --title \"New API Design\"",
8831
+ "<%= config.bin %> <%= command.id %> user-auth --status active",
8832
+ "<%= config.bin %> <%= command.id %> user-auth --type product --problem \"Need better auth\"",
8833
+ "<%= config.bin %> <%= command.id %> -i # Interactive mode"
8820
8834
  ],
8821
8835
  "flags": {
8822
8836
  "project": {
@@ -8840,17 +8854,80 @@
8840
8854
  "allowNo": false,
8841
8855
  "type": "boolean"
8842
8856
  },
8843
- "force": {
8844
- "char": "f",
8845
- "description": "Skip confirmation prompt (for non-interactive use)",
8846
- "name": "force",
8857
+ "spec": {
8858
+ "char": "s",
8859
+ "description": "Spec ID to edit",
8860
+ "name": "spec",
8861
+ "hasDynamicHelp": false,
8862
+ "multiple": false,
8863
+ "type": "option"
8864
+ },
8865
+ "title": {
8866
+ "char": "t",
8867
+ "description": "New spec title",
8868
+ "name": "title",
8869
+ "hasDynamicHelp": false,
8870
+ "multiple": false,
8871
+ "type": "option"
8872
+ },
8873
+ "status": {
8874
+ "description": "Spec status",
8875
+ "name": "status",
8876
+ "hasDynamicHelp": false,
8877
+ "multiple": false,
8878
+ "options": [
8879
+ "draft",
8880
+ "active",
8881
+ "implemented"
8882
+ ],
8883
+ "type": "option"
8884
+ },
8885
+ "type": {
8886
+ "description": "Spec type",
8887
+ "name": "type",
8888
+ "hasDynamicHelp": false,
8889
+ "multiple": false,
8890
+ "options": [
8891
+ "product",
8892
+ "platform",
8893
+ "infra",
8894
+ "integration",
8895
+ "none"
8896
+ ],
8897
+ "type": "option"
8898
+ },
8899
+ "problem": {
8900
+ "description": "Problem statement",
8901
+ "name": "problem",
8902
+ "hasDynamicHelp": false,
8903
+ "multiple": false,
8904
+ "type": "option"
8905
+ },
8906
+ "solution": {
8907
+ "description": "Solution description",
8908
+ "name": "solution",
8909
+ "hasDynamicHelp": false,
8910
+ "multiple": false,
8911
+ "type": "option"
8912
+ },
8913
+ "decisions": {
8914
+ "description": "Design decisions",
8915
+ "name": "decisions",
8916
+ "hasDynamicHelp": false,
8917
+ "multiple": false,
8918
+ "type": "option"
8919
+ },
8920
+ "interactive": {
8921
+ "char": "i",
8922
+ "description": "Interactive mode - prompts for all fields",
8923
+ "name": "interactive",
8847
8924
  "allowNo": false,
8848
8925
  "type": "boolean"
8849
8926
  }
8850
8927
  },
8851
8928
  "hasDynamicHelp": false,
8852
8929
  "hiddenAliases": [],
8853
- "id": "staff:remove",
8930
+ "id": "spec:edit",
8854
8931
  "pluginAlias": "@proletariat/cli",
8855
8932
  "pluginName": "@proletariat/cli",
8856
8933
  "pluginType": "core",
@@ -8859,30 +8936,16 @@
8859
8936
  "relativePath": [
8860
8937
  "dist",
8861
8938
  "commands",
8862
- "agent",
8863
- "staff",
8864
- "remove.js"
8939
+ "spec",
8940
+ "edit.js"
8865
8941
  ]
8866
8942
  },
8867
- "roadmap:add-project": {
8943
+ "spec": {
8868
8944
  "aliases": [],
8869
- "args": {
8870
- "roadmap": {
8871
- "description": "Roadmap ID",
8872
- "name": "roadmap",
8873
- "required": false
8874
- },
8875
- "project": {
8876
- "description": "Project ID to add",
8877
- "name": "project",
8878
- "required": false
8879
- }
8880
- },
8881
- "description": "Add a project to a roadmap",
8945
+ "args": {},
8946
+ "description": "Interactive menu for spec operations",
8882
8947
  "examples": [
8883
- "<%= config.bin %> <%= command.id %> my-roadmap my-project",
8884
- "<%= config.bin %> <%= command.id %> my-roadmap # Interactive project selection",
8885
- "<%= config.bin %> <%= command.id %> # Interactive selection for both"
8948
+ "<%= config.bin %> <%= command.id %>"
8886
8949
  ],
8887
8950
  "flags": {
8888
8951
  "project": {
@@ -8905,19 +8968,11 @@
8905
8968
  "name": "machine",
8906
8969
  "allowNo": false,
8907
8970
  "type": "boolean"
8908
- },
8909
- "position": {
8910
- "char": "p",
8911
- "description": "Position in the roadmap (0-indexed)",
8912
- "name": "position",
8913
- "hasDynamicHelp": false,
8914
- "multiple": false,
8915
- "type": "option"
8916
8971
  }
8917
8972
  },
8918
8973
  "hasDynamicHelp": false,
8919
8974
  "hiddenAliases": [],
8920
- "id": "roadmap:add-project",
8975
+ "id": "spec",
8921
8976
  "pluginAlias": "@proletariat/cli",
8922
8977
  "pluginName": "@proletariat/cli",
8923
8978
  "pluginType": "core",
@@ -8926,24 +8981,18 @@
8926
8981
  "relativePath": [
8927
8982
  "dist",
8928
8983
  "commands",
8929
- "roadmap",
8930
- "add-project.js"
8984
+ "spec",
8985
+ "index.js"
8931
8986
  ]
8932
8987
  },
8933
- "roadmap:create": {
8988
+ "spec:list": {
8934
8989
  "aliases": [],
8935
- "args": {
8936
- "name": {
8937
- "description": "Roadmap name",
8938
- "name": "name",
8939
- "required": false
8940
- }
8941
- },
8942
- "description": "Create a new roadmap",
8990
+ "args": {},
8991
+ "description": "List all specs",
8943
8992
  "examples": [
8944
- "<%= config.bin %> <%= command.id %> \"Public Roadmap\"",
8945
- "<%= config.bin %> <%= command.id %> --name \"Internal Roadmap\" --description \"Full project list\"",
8946
- "<%= config.bin %> <%= command.id %> -i # Interactive mode"
8993
+ "<%= config.bin %> <%= command.id %>",
8994
+ "<%= config.bin %> <%= command.id %> --status active",
8995
+ "<%= config.bin %> <%= command.id %> --type product"
8947
8996
  ],
8948
8997
  "flags": {
8949
8998
  "project": {
@@ -8967,46 +9016,44 @@
8967
9016
  "allowNo": false,
8968
9017
  "type": "boolean"
8969
9018
  },
8970
- "name": {
8971
- "char": "n",
8972
- "description": "Roadmap name",
8973
- "name": "name",
9019
+ "status": {
9020
+ "char": "s",
9021
+ "description": "Filter by status",
9022
+ "name": "status",
8974
9023
  "hasDynamicHelp": false,
8975
9024
  "multiple": false,
9025
+ "options": [
9026
+ "draft",
9027
+ "active",
9028
+ "implemented"
9029
+ ],
8976
9030
  "type": "option"
8977
9031
  },
8978
- "id": {
8979
- "description": "Custom roadmap ID (auto-generated from name if not provided)",
8980
- "name": "id",
9032
+ "type": {
9033
+ "char": "t",
9034
+ "description": "Filter by type",
9035
+ "name": "type",
8981
9036
  "hasDynamicHelp": false,
8982
9037
  "multiple": false,
9038
+ "options": [
9039
+ "product",
9040
+ "platform",
9041
+ "infra",
9042
+ "integration"
9043
+ ],
8983
9044
  "type": "option"
8984
9045
  },
8985
- "description": {
8986
- "char": "d",
8987
- "description": "Roadmap description",
8988
- "name": "description",
9046
+ "search": {
9047
+ "description": "Search in title/problem/solution",
9048
+ "name": "search",
8989
9049
  "hasDynamicHelp": false,
8990
9050
  "multiple": false,
8991
9051
  "type": "option"
8992
- },
8993
- "default": {
8994
- "description": "Set as the default roadmap",
8995
- "name": "default",
8996
- "allowNo": false,
8997
- "type": "boolean"
8998
- },
8999
- "interactive": {
9000
- "char": "i",
9001
- "description": "Interactive mode",
9002
- "name": "interactive",
9003
- "allowNo": false,
9004
- "type": "boolean"
9005
9052
  }
9006
9053
  },
9007
9054
  "hasDynamicHelp": false,
9008
9055
  "hiddenAliases": [],
9009
- "id": "roadmap:create",
9056
+ "id": "spec:list",
9010
9057
  "pluginAlias": "@proletariat/cli",
9011
9058
  "pluginName": "@proletariat/cli",
9012
9059
  "pluginType": "core",
@@ -9015,25 +9062,23 @@
9015
9062
  "relativePath": [
9016
9063
  "dist",
9017
9064
  "commands",
9018
- "roadmap",
9019
- "create.js"
9065
+ "spec",
9066
+ "list.js"
9020
9067
  ]
9021
9068
  },
9022
- "roadmap:delete": {
9069
+ "spec:plan": {
9023
9070
  "aliases": [],
9024
9071
  "args": {
9025
- "id": {
9026
- "description": "Roadmap ID to delete",
9027
- "name": "id",
9072
+ "spec": {
9073
+ "description": "Spec ID",
9074
+ "name": "spec",
9028
9075
  "required": false
9029
9076
  }
9030
9077
  },
9031
- "description": "Delete a roadmap",
9078
+ "description": "Generate tickets from spec by comparing ideal state vs codebase (uses LLM)",
9032
9079
  "examples": [
9033
- "<%= config.bin %> <%= command.id %> my-roadmap",
9034
- "<%= config.bin %> <%= command.id %> my-roadmap --force",
9035
- "<%= config.bin %> <%= command.id %> default-roadmap --force # Required for default",
9036
- "<%= config.bin %> <%= command.id %> # Interactive selection"
9080
+ "<%= config.bin %> <%= command.id %> user-authentication",
9081
+ "<%= config.bin %> <%= command.id %> --spec api-design --dry-run"
9037
9082
  ],
9038
9083
  "flags": {
9039
9084
  "project": {
@@ -9057,17 +9102,24 @@
9057
9102
  "allowNo": false,
9058
9103
  "type": "boolean"
9059
9104
  },
9060
- "force": {
9061
- "char": "f",
9062
- "description": "Skip confirmation (required for default roadmap)",
9063
- "name": "force",
9105
+ "spec": {
9106
+ "char": "s",
9107
+ "description": "Spec ID",
9108
+ "name": "spec",
9109
+ "hasDynamicHelp": false,
9110
+ "multiple": false,
9111
+ "type": "option"
9112
+ },
9113
+ "dry-run": {
9114
+ "description": "Show what would be created without creating tickets",
9115
+ "name": "dry-run",
9064
9116
  "allowNo": false,
9065
9117
  "type": "boolean"
9066
9118
  }
9067
9119
  },
9068
9120
  "hasDynamicHelp": false,
9069
9121
  "hiddenAliases": [],
9070
- "id": "roadmap:delete",
9122
+ "id": "spec:plan",
9071
9123
  "pluginAlias": "@proletariat/cli",
9072
9124
  "pluginName": "@proletariat/cli",
9073
9125
  "pluginType": "core",
@@ -9076,24 +9128,28 @@
9076
9128
  "relativePath": [
9077
9129
  "dist",
9078
9130
  "commands",
9079
- "roadmap",
9080
- "delete.js"
9131
+ "spec",
9132
+ "plan.js"
9081
9133
  ]
9082
9134
  },
9083
- "roadmap:generate": {
9135
+ "spec:ticket": {
9084
9136
  "aliases": [],
9085
9137
  "args": {
9086
- "id": {
9087
- "description": "Roadmap ID to generate",
9088
- "name": "id",
9138
+ "ticketId": {
9139
+ "description": "Ticket ID",
9140
+ "name": "ticketId",
9141
+ "required": false
9142
+ },
9143
+ "specId": {
9144
+ "description": "Spec ID (filename without .md)",
9145
+ "name": "specId",
9089
9146
  "required": false
9090
9147
  }
9091
9148
  },
9092
- "description": "Generate roadmap markdown file",
9149
+ "description": "Assign a ticket to a spec document",
9093
9150
  "examples": [
9094
- "<%= config.bin %> <%= command.id %> my-roadmap",
9095
- "<%= config.bin %> <%= command.id %> --all",
9096
- "<%= config.bin %> <%= command.id %> my-roadmap --output ./docs"
9151
+ "<%= config.bin %> <%= command.id %> PRLT-001 user-authentication",
9152
+ "<%= config.bin %> <%= command.id %> --ticket PRLT-001 --spec api-design"
9097
9153
  ],
9098
9154
  "flags": {
9099
9155
  "project": {
@@ -9117,30 +9173,26 @@
9117
9173
  "allowNo": false,
9118
9174
  "type": "boolean"
9119
9175
  },
9120
- "all": {
9121
- "description": "Generate all roadmaps",
9122
- "name": "all",
9123
- "allowNo": false,
9124
- "type": "boolean"
9125
- },
9126
- "output": {
9127
- "char": "o",
9128
- "description": "Output directory (default: {pmoPath}/roadmaps)",
9129
- "name": "output",
9176
+ "ticket": {
9177
+ "char": "t",
9178
+ "description": "Ticket ID",
9179
+ "name": "ticket",
9130
9180
  "hasDynamicHelp": false,
9131
9181
  "multiple": false,
9132
9182
  "type": "option"
9133
9183
  },
9134
- "exclude-done": {
9135
- "description": "Exclude completed tickets from roadmap",
9136
- "name": "exclude-done",
9137
- "allowNo": false,
9138
- "type": "boolean"
9184
+ "spec": {
9185
+ "char": "s",
9186
+ "description": "Spec ID (filename without .md)",
9187
+ "name": "spec",
9188
+ "hasDynamicHelp": false,
9189
+ "multiple": false,
9190
+ "type": "option"
9139
9191
  }
9140
9192
  },
9141
9193
  "hasDynamicHelp": false,
9142
9194
  "hiddenAliases": [],
9143
- "id": "roadmap:generate",
9195
+ "id": "spec:ticket",
9144
9196
  "pluginAlias": "@proletariat/cli",
9145
9197
  "pluginName": "@proletariat/cli",
9146
9198
  "pluginType": "core",
@@ -9149,16 +9201,23 @@
9149
9201
  "relativePath": [
9150
9202
  "dist",
9151
9203
  "commands",
9152
- "roadmap",
9153
- "generate.js"
9204
+ "spec",
9205
+ "ticket.js"
9154
9206
  ]
9155
9207
  },
9156
- "roadmap": {
9208
+ "spec:view": {
9157
9209
  "aliases": [],
9158
- "args": {},
9159
- "description": "Interactive menu for roadmap operations",
9210
+ "args": {
9211
+ "spec": {
9212
+ "description": "Spec ID",
9213
+ "name": "spec",
9214
+ "required": false
9215
+ }
9216
+ },
9217
+ "description": "View a spec and its linked tickets",
9160
9218
  "examples": [
9161
- "<%= config.bin %> <%= command.id %>"
9219
+ "<%= config.bin %> <%= command.id %> user-authentication",
9220
+ "<%= config.bin %> <%= command.id %> --spec api-design"
9162
9221
  ],
9163
9222
  "flags": {
9164
9223
  "project": {
@@ -9181,11 +9240,26 @@
9181
9240
  "name": "machine",
9182
9241
  "allowNo": false,
9183
9242
  "type": "boolean"
9243
+ },
9244
+ "spec": {
9245
+ "char": "s",
9246
+ "description": "Spec ID",
9247
+ "name": "spec",
9248
+ "hasDynamicHelp": false,
9249
+ "multiple": false,
9250
+ "type": "option"
9251
+ },
9252
+ "full": {
9253
+ "char": "f",
9254
+ "description": "Show all spec sections",
9255
+ "name": "full",
9256
+ "allowNo": false,
9257
+ "type": "boolean"
9184
9258
  }
9185
9259
  },
9186
9260
  "hasDynamicHelp": false,
9187
9261
  "hiddenAliases": [],
9188
- "id": "roadmap",
9262
+ "id": "spec:view",
9189
9263
  "pluginAlias": "@proletariat/cli",
9190
9264
  "pluginName": "@proletariat/cli",
9191
9265
  "pluginType": "core",
@@ -9194,16 +9268,29 @@
9194
9268
  "relativePath": [
9195
9269
  "dist",
9196
9270
  "commands",
9197
- "roadmap",
9198
- "index.js"
9271
+ "spec",
9272
+ "view.js"
9199
9273
  ]
9200
9274
  },
9201
- "roadmap:list": {
9275
+ "roadmap:add-project": {
9202
9276
  "aliases": [],
9203
- "args": {},
9204
- "description": "List all roadmaps",
9277
+ "args": {
9278
+ "roadmap": {
9279
+ "description": "Roadmap ID",
9280
+ "name": "roadmap",
9281
+ "required": false
9282
+ },
9283
+ "project": {
9284
+ "description": "Project ID to add",
9285
+ "name": "project",
9286
+ "required": false
9287
+ }
9288
+ },
9289
+ "description": "Add a project to a roadmap",
9205
9290
  "examples": [
9206
- "<%= config.bin %> <%= command.id %>"
9291
+ "<%= config.bin %> <%= command.id %> my-roadmap my-project",
9292
+ "<%= config.bin %> <%= command.id %> my-roadmap # Interactive project selection",
9293
+ "<%= config.bin %> <%= command.id %> # Interactive selection for both"
9207
9294
  ],
9208
9295
  "flags": {
9209
9296
  "project": {
@@ -9226,11 +9313,19 @@
9226
9313
  "name": "machine",
9227
9314
  "allowNo": false,
9228
9315
  "type": "boolean"
9316
+ },
9317
+ "position": {
9318
+ "char": "p",
9319
+ "description": "Position in the roadmap (0-indexed)",
9320
+ "name": "position",
9321
+ "hasDynamicHelp": false,
9322
+ "multiple": false,
9323
+ "type": "option"
9229
9324
  }
9230
9325
  },
9231
9326
  "hasDynamicHelp": false,
9232
9327
  "hiddenAliases": [],
9233
- "id": "roadmap:list",
9328
+ "id": "roadmap:add-project",
9234
9329
  "pluginAlias": "@proletariat/cli",
9235
9330
  "pluginName": "@proletariat/cli",
9236
9331
  "pluginType": "core",
@@ -9240,28 +9335,23 @@
9240
9335
  "dist",
9241
9336
  "commands",
9242
9337
  "roadmap",
9243
- "list.js"
9338
+ "add-project.js"
9244
9339
  ]
9245
9340
  },
9246
- "roadmap:remove-project": {
9341
+ "roadmap:create": {
9247
9342
  "aliases": [],
9248
9343
  "args": {
9249
- "roadmap": {
9250
- "description": "Roadmap ID",
9251
- "name": "roadmap",
9252
- "required": false
9253
- },
9254
- "project": {
9255
- "description": "Project ID to remove",
9256
- "name": "project",
9344
+ "name": {
9345
+ "description": "Roadmap name",
9346
+ "name": "name",
9257
9347
  "required": false
9258
9348
  }
9259
9349
  },
9260
- "description": "Remove a project from a roadmap",
9350
+ "description": "Create a new roadmap",
9261
9351
  "examples": [
9262
- "<%= config.bin %> <%= command.id %> my-roadmap my-project",
9263
- "<%= config.bin %> <%= command.id %> my-roadmap # Interactive project selection",
9264
- "<%= config.bin %> <%= command.id %> # Interactive selection for both"
9352
+ "<%= config.bin %> <%= command.id %> \"Public Roadmap\"",
9353
+ "<%= config.bin %> <%= command.id %> --name \"Internal Roadmap\" --description \"Full project list\"",
9354
+ "<%= config.bin %> <%= command.id %> -i # Interactive mode"
9265
9355
  ],
9266
9356
  "flags": {
9267
9357
  "project": {
@@ -9285,17 +9375,46 @@
9285
9375
  "allowNo": false,
9286
9376
  "type": "boolean"
9287
9377
  },
9288
- "force": {
9289
- "char": "f",
9290
- "description": "Skip confirmation",
9291
- "name": "force",
9378
+ "name": {
9379
+ "char": "n",
9380
+ "description": "Roadmap name",
9381
+ "name": "name",
9382
+ "hasDynamicHelp": false,
9383
+ "multiple": false,
9384
+ "type": "option"
9385
+ },
9386
+ "id": {
9387
+ "description": "Custom roadmap ID (auto-generated from name if not provided)",
9388
+ "name": "id",
9389
+ "hasDynamicHelp": false,
9390
+ "multiple": false,
9391
+ "type": "option"
9392
+ },
9393
+ "description": {
9394
+ "char": "d",
9395
+ "description": "Roadmap description",
9396
+ "name": "description",
9397
+ "hasDynamicHelp": false,
9398
+ "multiple": false,
9399
+ "type": "option"
9400
+ },
9401
+ "default": {
9402
+ "description": "Set as the default roadmap",
9403
+ "name": "default",
9404
+ "allowNo": false,
9405
+ "type": "boolean"
9406
+ },
9407
+ "interactive": {
9408
+ "char": "i",
9409
+ "description": "Interactive mode",
9410
+ "name": "interactive",
9292
9411
  "allowNo": false,
9293
9412
  "type": "boolean"
9294
9413
  }
9295
9414
  },
9296
9415
  "hasDynamicHelp": false,
9297
9416
  "hiddenAliases": [],
9298
- "id": "roadmap:remove-project",
9417
+ "id": "roadmap:create",
9299
9418
  "pluginAlias": "@proletariat/cli",
9300
9419
  "pluginName": "@proletariat/cli",
9301
9420
  "pluginType": "core",
@@ -9305,28 +9424,29 @@
9305
9424
  "dist",
9306
9425
  "commands",
9307
9426
  "roadmap",
9308
- "remove-project.js"
9427
+ "create.js"
9309
9428
  ]
9310
9429
  },
9311
- "roadmap:reorder": {
9430
+ "roadmap:delete": {
9312
9431
  "aliases": [],
9313
9432
  "args": {
9314
- "roadmap": {
9315
- "description": "Roadmap ID",
9316
- "name": "roadmap",
9433
+ "id": {
9434
+ "description": "Roadmap ID to delete",
9435
+ "name": "id",
9317
9436
  "required": false
9318
9437
  }
9319
9438
  },
9320
- "description": "Reorder projects in a roadmap",
9439
+ "description": "Delete a roadmap",
9321
9440
  "examples": [
9322
9441
  "<%= config.bin %> <%= command.id %> my-roadmap",
9323
- "<%= config.bin %> <%= command.id %> my-roadmap --project my-project --position 0",
9442
+ "<%= config.bin %> <%= command.id %> my-roadmap --force",
9443
+ "<%= config.bin %> <%= command.id %> default-roadmap --force # Required for default",
9324
9444
  "<%= config.bin %> <%= command.id %> # Interactive selection"
9325
9445
  ],
9326
9446
  "flags": {
9327
9447
  "project": {
9328
- "char": "p",
9329
- "description": "Project ID to move",
9448
+ "char": "P",
9449
+ "description": "Project ID (uses first project if only one exists)",
9330
9450
  "name": "project",
9331
9451
  "hasDynamicHelp": false,
9332
9452
  "multiple": false,
@@ -9345,17 +9465,17 @@
9345
9465
  "allowNo": false,
9346
9466
  "type": "boolean"
9347
9467
  },
9348
- "position": {
9349
- "description": "New position (0-indexed)",
9350
- "name": "position",
9351
- "hasDynamicHelp": false,
9352
- "multiple": false,
9353
- "type": "option"
9468
+ "force": {
9469
+ "char": "f",
9470
+ "description": "Skip confirmation (required for default roadmap)",
9471
+ "name": "force",
9472
+ "allowNo": false,
9473
+ "type": "boolean"
9354
9474
  }
9355
9475
  },
9356
9476
  "hasDynamicHelp": false,
9357
9477
  "hiddenAliases": [],
9358
- "id": "roadmap:reorder",
9478
+ "id": "roadmap:delete",
9359
9479
  "pluginAlias": "@proletariat/cli",
9360
9480
  "pluginName": "@proletariat/cli",
9361
9481
  "pluginType": "core",
@@ -9365,23 +9485,23 @@
9365
9485
  "dist",
9366
9486
  "commands",
9367
9487
  "roadmap",
9368
- "reorder.js"
9488
+ "delete.js"
9369
9489
  ]
9370
9490
  },
9371
- "roadmap:update": {
9491
+ "roadmap:generate": {
9372
9492
  "aliases": [],
9373
9493
  "args": {
9374
9494
  "id": {
9375
- "description": "Roadmap ID to update",
9495
+ "description": "Roadmap ID to generate",
9376
9496
  "name": "id",
9377
9497
  "required": false
9378
9498
  }
9379
9499
  },
9380
- "description": "Update a roadmap",
9500
+ "description": "Generate roadmap markdown file",
9381
9501
  "examples": [
9382
- "<%= config.bin %> <%= command.id %> my-roadmap --name \"New Name\"",
9383
- "<%= config.bin %> <%= command.id %> my-roadmap --default",
9384
- "<%= config.bin %> <%= command.id %> # Interactive selection"
9502
+ "<%= config.bin %> <%= command.id %> my-roadmap",
9503
+ "<%= config.bin %> <%= command.id %> --all",
9504
+ "<%= config.bin %> <%= command.id %> my-roadmap --output ./docs"
9385
9505
  ],
9386
9506
  "flags": {
9387
9507
  "project": {
@@ -9405,32 +9525,30 @@
9405
9525
  "allowNo": false,
9406
9526
  "type": "boolean"
9407
9527
  },
9408
- "name": {
9409
- "char": "n",
9410
- "description": "New roadmap name",
9411
- "name": "name",
9412
- "hasDynamicHelp": false,
9413
- "multiple": false,
9414
- "type": "option"
9528
+ "all": {
9529
+ "description": "Generate all roadmaps",
9530
+ "name": "all",
9531
+ "allowNo": false,
9532
+ "type": "boolean"
9415
9533
  },
9416
- "description": {
9417
- "char": "d",
9418
- "description": "New roadmap description",
9419
- "name": "description",
9534
+ "output": {
9535
+ "char": "o",
9536
+ "description": "Output directory (default: {pmoPath}/roadmaps)",
9537
+ "name": "output",
9420
9538
  "hasDynamicHelp": false,
9421
9539
  "multiple": false,
9422
9540
  "type": "option"
9423
9541
  },
9424
- "default": {
9425
- "description": "Set as the default roadmap",
9426
- "name": "default",
9427
- "allowNo": true,
9542
+ "exclude-done": {
9543
+ "description": "Exclude completed tickets from roadmap",
9544
+ "name": "exclude-done",
9545
+ "allowNo": false,
9428
9546
  "type": "boolean"
9429
9547
  }
9430
9548
  },
9431
9549
  "hasDynamicHelp": false,
9432
9550
  "hiddenAliases": [],
9433
- "id": "roadmap:update",
9551
+ "id": "roadmap:generate",
9434
9552
  "pluginAlias": "@proletariat/cli",
9435
9553
  "pluginName": "@proletariat/cli",
9436
9554
  "pluginType": "core",
@@ -9440,22 +9558,15 @@
9440
9558
  "dist",
9441
9559
  "commands",
9442
9560
  "roadmap",
9443
- "update.js"
9561
+ "generate.js"
9444
9562
  ]
9445
9563
  },
9446
- "roadmap:view": {
9564
+ "roadmap": {
9447
9565
  "aliases": [],
9448
- "args": {
9449
- "id": {
9450
- "description": "Roadmap ID to view",
9451
- "name": "id",
9452
- "required": false
9453
- }
9454
- },
9455
- "description": "View roadmap details and its projects",
9566
+ "args": {},
9567
+ "description": "Interactive menu for roadmap operations",
9456
9568
  "examples": [
9457
- "<%= config.bin %> <%= command.id %> my-roadmap",
9458
- "<%= config.bin %> <%= command.id %> # Interactive selection"
9569
+ "<%= config.bin %> <%= command.id %>"
9459
9570
  ],
9460
9571
  "flags": {
9461
9572
  "project": {
@@ -9482,7 +9593,7 @@
9482
9593
  },
9483
9594
  "hasDynamicHelp": false,
9484
9595
  "hiddenAliases": [],
9485
- "id": "roadmap:view",
9596
+ "id": "roadmap",
9486
9597
  "pluginAlias": "@proletariat/cli",
9487
9598
  "pluginName": "@proletariat/cli",
9488
9599
  "pluginType": "core",
@@ -9492,24 +9603,15 @@
9492
9603
  "dist",
9493
9604
  "commands",
9494
9605
  "roadmap",
9495
- "view.js"
9606
+ "index.js"
9496
9607
  ]
9497
9608
  },
9498
- "spec:create": {
9609
+ "roadmap:list": {
9499
9610
  "aliases": [],
9500
- "args": {
9501
- "title": {
9502
- "description": "Spec title",
9503
- "name": "title",
9504
- "required": false
9505
- }
9506
- },
9507
- "description": "Create a new spec",
9611
+ "args": {},
9612
+ "description": "List all roadmaps",
9508
9613
  "examples": [
9509
- "<%= config.bin %> <%= command.id %> \"User Authentication\"",
9510
- "<%= config.bin %> <%= command.id %> --title \"API Design\" --type product",
9511
- "<%= config.bin %> <%= command.id %> -i # Interactive mode",
9512
- "<%= config.bin %> <%= command.id %> --title \"Test\" --dry-run --json # Validate without creating"
9614
+ "<%= config.bin %> <%= command.id %>"
9513
9615
  ],
9514
9616
  "flags": {
9515
9617
  "project": {
@@ -9532,66 +9634,76 @@
9532
9634
  "name": "machine",
9533
9635
  "allowNo": false,
9534
9636
  "type": "boolean"
9637
+ }
9638
+ },
9639
+ "hasDynamicHelp": false,
9640
+ "hiddenAliases": [],
9641
+ "id": "roadmap:list",
9642
+ "pluginAlias": "@proletariat/cli",
9643
+ "pluginName": "@proletariat/cli",
9644
+ "pluginType": "core",
9645
+ "strict": true,
9646
+ "isESM": true,
9647
+ "relativePath": [
9648
+ "dist",
9649
+ "commands",
9650
+ "roadmap",
9651
+ "list.js"
9652
+ ]
9653
+ },
9654
+ "roadmap:remove-project": {
9655
+ "aliases": [],
9656
+ "args": {
9657
+ "roadmap": {
9658
+ "description": "Roadmap ID",
9659
+ "name": "roadmap",
9660
+ "required": false
9535
9661
  },
9536
- "title": {
9537
- "char": "t",
9538
- "description": "Spec title [required for non-interactive]",
9539
- "name": "title",
9540
- "hasDynamicHelp": false,
9541
- "multiple": false,
9542
- "type": "option"
9543
- },
9544
- "status": {
9545
- "char": "s",
9546
- "description": "Spec status",
9547
- "name": "status",
9548
- "default": "draft",
9549
- "hasDynamicHelp": false,
9550
- "multiple": false,
9551
- "options": [
9552
- "draft",
9553
- "active",
9554
- "implemented"
9555
- ],
9556
- "type": "option"
9557
- },
9558
- "type": {
9559
- "description": "Spec type",
9560
- "name": "type",
9662
+ "project": {
9663
+ "description": "Project ID to remove",
9664
+ "name": "project",
9665
+ "required": false
9666
+ }
9667
+ },
9668
+ "description": "Remove a project from a roadmap",
9669
+ "examples": [
9670
+ "<%= config.bin %> <%= command.id %> my-roadmap my-project",
9671
+ "<%= config.bin %> <%= command.id %> my-roadmap # Interactive project selection",
9672
+ "<%= config.bin %> <%= command.id %> # Interactive selection for both"
9673
+ ],
9674
+ "flags": {
9675
+ "project": {
9676
+ "char": "P",
9677
+ "description": "Project ID (uses first project if only one exists)",
9678
+ "name": "project",
9561
9679
  "hasDynamicHelp": false,
9562
9680
  "multiple": false,
9563
- "options": [
9564
- "product",
9565
- "platform",
9566
- "infra",
9567
- "integration"
9568
- ],
9569
9681
  "type": "option"
9570
9682
  },
9571
- "problem": {
9572
- "description": "Problem statement",
9573
- "name": "problem",
9574
- "hasDynamicHelp": false,
9575
- "multiple": false,
9576
- "type": "option"
9683
+ "json": {
9684
+ "description": "Output as JSON for AI agents/scripts",
9685
+ "name": "json",
9686
+ "allowNo": false,
9687
+ "type": "boolean"
9577
9688
  },
9578
- "interactive": {
9579
- "char": "i",
9580
- "description": "Interactive mode",
9581
- "name": "interactive",
9689
+ "machine": {
9690
+ "char": "m",
9691
+ "description": "Output as JSON for AI agents/scripts",
9692
+ "name": "machine",
9582
9693
  "allowNo": false,
9583
9694
  "type": "boolean"
9584
9695
  },
9585
- "dry-run": {
9586
- "description": "Validate inputs without creating spec (use with --json for structured output)",
9587
- "name": "dry-run",
9696
+ "force": {
9697
+ "char": "f",
9698
+ "description": "Skip confirmation",
9699
+ "name": "force",
9588
9700
  "allowNo": false,
9589
9701
  "type": "boolean"
9590
9702
  }
9591
9703
  },
9592
9704
  "hasDynamicHelp": false,
9593
9705
  "hiddenAliases": [],
9594
- "id": "spec:create",
9706
+ "id": "roadmap:remove-project",
9595
9707
  "pluginAlias": "@proletariat/cli",
9596
9708
  "pluginName": "@proletariat/cli",
9597
9709
  "pluginType": "core",
@@ -9600,29 +9712,29 @@
9600
9712
  "relativePath": [
9601
9713
  "dist",
9602
9714
  "commands",
9603
- "spec",
9604
- "create.js"
9715
+ "roadmap",
9716
+ "remove-project.js"
9605
9717
  ]
9606
9718
  },
9607
- "spec:delete": {
9719
+ "roadmap:reorder": {
9608
9720
  "aliases": [],
9609
9721
  "args": {
9610
- "id": {
9611
- "description": "Spec ID to delete",
9612
- "name": "id",
9722
+ "roadmap": {
9723
+ "description": "Roadmap ID",
9724
+ "name": "roadmap",
9613
9725
  "required": false
9614
9726
  }
9615
9727
  },
9616
- "description": "Delete a spec",
9728
+ "description": "Reorder projects in a roadmap",
9617
9729
  "examples": [
9618
- "<%= config.bin %> <%= command.id %> my-spec",
9619
- "<%= config.bin %> <%= command.id %> my-spec --force",
9730
+ "<%= config.bin %> <%= command.id %> my-roadmap",
9731
+ "<%= config.bin %> <%= command.id %> my-roadmap --project my-project --position 0",
9620
9732
  "<%= config.bin %> <%= command.id %> # Interactive selection"
9621
9733
  ],
9622
9734
  "flags": {
9623
9735
  "project": {
9624
- "char": "P",
9625
- "description": "Project ID (uses first project if only one exists)",
9736
+ "char": "p",
9737
+ "description": "Project ID to move",
9626
9738
  "name": "project",
9627
9739
  "hasDynamicHelp": false,
9628
9740
  "multiple": false,
@@ -9641,17 +9753,17 @@
9641
9753
  "allowNo": false,
9642
9754
  "type": "boolean"
9643
9755
  },
9644
- "force": {
9645
- "char": "f",
9646
- "description": "Skip confirmation prompt",
9647
- "name": "force",
9648
- "allowNo": false,
9649
- "type": "boolean"
9756
+ "position": {
9757
+ "description": "New position (0-indexed)",
9758
+ "name": "position",
9759
+ "hasDynamicHelp": false,
9760
+ "multiple": false,
9761
+ "type": "option"
9650
9762
  }
9651
9763
  },
9652
9764
  "hasDynamicHelp": false,
9653
9765
  "hiddenAliases": [],
9654
- "id": "spec:delete",
9766
+ "id": "roadmap:reorder",
9655
9767
  "pluginAlias": "@proletariat/cli",
9656
9768
  "pluginName": "@proletariat/cli",
9657
9769
  "pluginType": "core",
@@ -9660,26 +9772,24 @@
9660
9772
  "relativePath": [
9661
9773
  "dist",
9662
9774
  "commands",
9663
- "spec",
9664
- "delete.js"
9775
+ "roadmap",
9776
+ "reorder.js"
9665
9777
  ]
9666
9778
  },
9667
- "spec:edit": {
9779
+ "roadmap:update": {
9668
9780
  "aliases": [],
9669
9781
  "args": {
9670
- "spec": {
9671
- "description": "Spec ID to edit",
9672
- "name": "spec",
9782
+ "id": {
9783
+ "description": "Roadmap ID to update",
9784
+ "name": "id",
9673
9785
  "required": false
9674
9786
  }
9675
9787
  },
9676
- "description": "Edit an existing spec",
9788
+ "description": "Update a roadmap",
9677
9789
  "examples": [
9678
- "<%= config.bin %> <%= command.id %> user-authentication",
9679
- "<%= config.bin %> <%= command.id %> --spec api-design --title \"New API Design\"",
9680
- "<%= config.bin %> <%= command.id %> user-auth --status active",
9681
- "<%= config.bin %> <%= command.id %> user-auth --type product --problem \"Need better auth\"",
9682
- "<%= config.bin %> <%= command.id %> -i # Interactive mode"
9790
+ "<%= config.bin %> <%= command.id %> my-roadmap --name \"New Name\"",
9791
+ "<%= config.bin %> <%= command.id %> my-roadmap --default",
9792
+ "<%= config.bin %> <%= command.id %> # Interactive selection"
9683
9793
  ],
9684
9794
  "flags": {
9685
9795
  "project": {
@@ -9703,80 +9813,32 @@
9703
9813
  "allowNo": false,
9704
9814
  "type": "boolean"
9705
9815
  },
9706
- "spec": {
9707
- "char": "s",
9708
- "description": "Spec ID to edit",
9709
- "name": "spec",
9710
- "hasDynamicHelp": false,
9711
- "multiple": false,
9712
- "type": "option"
9713
- },
9714
- "title": {
9715
- "char": "t",
9716
- "description": "New spec title",
9717
- "name": "title",
9718
- "hasDynamicHelp": false,
9719
- "multiple": false,
9720
- "type": "option"
9721
- },
9722
- "status": {
9723
- "description": "Spec status",
9724
- "name": "status",
9725
- "hasDynamicHelp": false,
9726
- "multiple": false,
9727
- "options": [
9728
- "draft",
9729
- "active",
9730
- "implemented"
9731
- ],
9732
- "type": "option"
9733
- },
9734
- "type": {
9735
- "description": "Spec type",
9736
- "name": "type",
9737
- "hasDynamicHelp": false,
9738
- "multiple": false,
9739
- "options": [
9740
- "product",
9741
- "platform",
9742
- "infra",
9743
- "integration",
9744
- "none"
9745
- ],
9746
- "type": "option"
9747
- },
9748
- "problem": {
9749
- "description": "Problem statement",
9750
- "name": "problem",
9751
- "hasDynamicHelp": false,
9752
- "multiple": false,
9753
- "type": "option"
9754
- },
9755
- "solution": {
9756
- "description": "Solution description",
9757
- "name": "solution",
9816
+ "name": {
9817
+ "char": "n",
9818
+ "description": "New roadmap name",
9819
+ "name": "name",
9758
9820
  "hasDynamicHelp": false,
9759
9821
  "multiple": false,
9760
9822
  "type": "option"
9761
9823
  },
9762
- "decisions": {
9763
- "description": "Design decisions",
9764
- "name": "decisions",
9824
+ "description": {
9825
+ "char": "d",
9826
+ "description": "New roadmap description",
9827
+ "name": "description",
9765
9828
  "hasDynamicHelp": false,
9766
9829
  "multiple": false,
9767
9830
  "type": "option"
9768
9831
  },
9769
- "interactive": {
9770
- "char": "i",
9771
- "description": "Interactive mode - prompts for all fields",
9772
- "name": "interactive",
9773
- "allowNo": false,
9832
+ "default": {
9833
+ "description": "Set as the default roadmap",
9834
+ "name": "default",
9835
+ "allowNo": true,
9774
9836
  "type": "boolean"
9775
9837
  }
9776
9838
  },
9777
9839
  "hasDynamicHelp": false,
9778
9840
  "hiddenAliases": [],
9779
- "id": "spec:edit",
9841
+ "id": "roadmap:update",
9780
9842
  "pluginAlias": "@proletariat/cli",
9781
9843
  "pluginName": "@proletariat/cli",
9782
9844
  "pluginType": "core",
@@ -9785,16 +9847,23 @@
9785
9847
  "relativePath": [
9786
9848
  "dist",
9787
9849
  "commands",
9788
- "spec",
9789
- "edit.js"
9850
+ "roadmap",
9851
+ "update.js"
9790
9852
  ]
9791
9853
  },
9792
- "spec": {
9854
+ "roadmap:view": {
9793
9855
  "aliases": [],
9794
- "args": {},
9795
- "description": "Interactive menu for spec operations",
9856
+ "args": {
9857
+ "id": {
9858
+ "description": "Roadmap ID to view",
9859
+ "name": "id",
9860
+ "required": false
9861
+ }
9862
+ },
9863
+ "description": "View roadmap details and its projects",
9796
9864
  "examples": [
9797
- "<%= config.bin %> <%= command.id %>"
9865
+ "<%= config.bin %> <%= command.id %> my-roadmap",
9866
+ "<%= config.bin %> <%= command.id %> # Interactive selection"
9798
9867
  ],
9799
9868
  "flags": {
9800
9869
  "project": {
@@ -9821,7 +9890,7 @@
9821
9890
  },
9822
9891
  "hasDynamicHelp": false,
9823
9892
  "hiddenAliases": [],
9824
- "id": "spec",
9893
+ "id": "roadmap:view",
9825
9894
  "pluginAlias": "@proletariat/cli",
9826
9895
  "pluginName": "@proletariat/cli",
9827
9896
  "pluginType": "core",
@@ -9830,24 +9899,37 @@
9830
9899
  "relativePath": [
9831
9900
  "dist",
9832
9901
  "commands",
9833
- "spec",
9834
- "index.js"
9902
+ "roadmap",
9903
+ "view.js"
9835
9904
  ]
9836
9905
  },
9837
- "spec:list": {
9906
+ "staff:add": {
9838
9907
  "aliases": [],
9839
- "args": {},
9840
- "description": "List all specs",
9908
+ "args": {
9909
+ "names": {
9910
+ "description": "Agent names to add (space-separated)",
9911
+ "name": "names",
9912
+ "required": false
9913
+ }
9914
+ },
9915
+ "description": "Add new agents to the workspace",
9841
9916
  "examples": [
9842
- "<%= config.bin %> <%= command.id %>",
9843
- "<%= config.bin %> <%= command.id %> --status active",
9844
- "<%= config.bin %> <%= command.id %> --type product"
9917
+ "<%= config.bin %> <%= command.id %> zeus",
9918
+ "<%= config.bin %> <%= command.id %> agent-1 agent-2",
9919
+ "<%= config.bin %> <%= command.id %> --theme billionaires",
9920
+ "<%= config.bin %> <%= command.id %> my-agent --no-container"
9845
9921
  ],
9846
9922
  "flags": {
9847
- "project": {
9848
- "char": "P",
9849
- "description": "Project ID (uses first project if only one exists)",
9850
- "name": "project",
9923
+ "no-container": {
9924
+ "description": "Skip devcontainer setup (not recommended for autonomous agents)",
9925
+ "name": "no-container",
9926
+ "allowNo": false,
9927
+ "type": "boolean"
9928
+ },
9929
+ "theme": {
9930
+ "char": "t",
9931
+ "description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
9932
+ "name": "theme",
9851
9933
  "hasDynamicHelp": false,
9852
9934
  "multiple": false,
9853
9935
  "type": "option"
@@ -9863,71 +9945,39 @@
9863
9945
  "description": "Output as JSON for AI agents/scripts",
9864
9946
  "name": "machine",
9865
9947
  "allowNo": false,
9866
- "type": "boolean"
9867
- },
9868
- "status": {
9869
- "char": "s",
9870
- "description": "Filter by status",
9871
- "name": "status",
9872
- "hasDynamicHelp": false,
9873
- "multiple": false,
9874
- "options": [
9875
- "draft",
9876
- "active",
9877
- "implemented"
9878
- ],
9879
- "type": "option"
9880
- },
9881
- "type": {
9882
- "char": "t",
9883
- "description": "Filter by type",
9884
- "name": "type",
9885
- "hasDynamicHelp": false,
9886
- "multiple": false,
9887
- "options": [
9888
- "product",
9889
- "platform",
9890
- "infra",
9891
- "integration"
9892
- ],
9893
- "type": "option"
9948
+ "type": "boolean"
9894
9949
  },
9895
- "search": {
9896
- "description": "Search in title/problem/solution",
9897
- "name": "search",
9898
- "hasDynamicHelp": false,
9899
- "multiple": false,
9900
- "type": "option"
9950
+ "clone": {
9951
+ "description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
9952
+ "name": "clone",
9953
+ "allowNo": false,
9954
+ "type": "boolean"
9901
9955
  }
9902
9956
  },
9903
9957
  "hasDynamicHelp": false,
9904
9958
  "hiddenAliases": [],
9905
- "id": "spec:list",
9959
+ "id": "staff:add",
9906
9960
  "pluginAlias": "@proletariat/cli",
9907
9961
  "pluginName": "@proletariat/cli",
9908
9962
  "pluginType": "core",
9909
- "strict": true,
9963
+ "strict": false,
9910
9964
  "isESM": true,
9911
9965
  "relativePath": [
9912
9966
  "dist",
9913
9967
  "commands",
9914
- "spec",
9915
- "list.js"
9968
+ "agent",
9969
+ "staff",
9970
+ "add.js"
9916
9971
  ]
9917
9972
  },
9918
- "spec:plan": {
9973
+ "staff": {
9919
9974
  "aliases": [],
9920
- "args": {
9921
- "spec": {
9922
- "description": "Spec ID",
9923
- "name": "spec",
9924
- "required": false
9925
- }
9926
- },
9927
- "description": "Generate tickets from spec by comparing ideal state vs codebase (uses LLM)",
9975
+ "args": {},
9976
+ "description": "Manage staff (persistent) agents",
9928
9977
  "examples": [
9929
- "<%= config.bin %> <%= command.id %> user-authentication",
9930
- "<%= config.bin %> <%= command.id %> --spec api-design --dry-run"
9978
+ "<%= config.bin %> <%= command.id %> list",
9979
+ "<%= config.bin %> <%= command.id %> add",
9980
+ "<%= config.bin %> <%= command.id %> remove camry"
9931
9981
  ],
9932
9982
  "flags": {
9933
9983
  "project": {
@@ -9951,24 +10001,16 @@
9951
10001
  "allowNo": false,
9952
10002
  "type": "boolean"
9953
10003
  },
9954
- "spec": {
9955
- "char": "s",
9956
- "description": "Spec ID",
9957
- "name": "spec",
9958
- "hasDynamicHelp": false,
9959
- "multiple": false,
9960
- "type": "option"
9961
- },
9962
- "dry-run": {
9963
- "description": "Show what would be created without creating tickets",
9964
- "name": "dry-run",
10004
+ "no-interactive": {
10005
+ "description": "Alias for --json flag",
10006
+ "name": "no-interactive",
9965
10007
  "allowNo": false,
9966
10008
  "type": "boolean"
9967
10009
  }
9968
10010
  },
9969
10011
  "hasDynamicHelp": false,
9970
10012
  "hiddenAliases": [],
9971
- "id": "spec:plan",
10013
+ "id": "staff",
9972
10014
  "pluginAlias": "@proletariat/cli",
9973
10015
  "pluginName": "@proletariat/cli",
9974
10016
  "pluginType": "core",
@@ -9977,38 +10019,18 @@
9977
10019
  "relativePath": [
9978
10020
  "dist",
9979
10021
  "commands",
9980
- "spec",
9981
- "plan.js"
10022
+ "staff",
10023
+ "index.js"
9982
10024
  ]
9983
10025
  },
9984
- "spec:ticket": {
10026
+ "staff:list": {
9985
10027
  "aliases": [],
9986
- "args": {
9987
- "ticketId": {
9988
- "description": "Ticket ID",
9989
- "name": "ticketId",
9990
- "required": false
9991
- },
9992
- "specId": {
9993
- "description": "Spec ID (filename without .md)",
9994
- "name": "specId",
9995
- "required": false
9996
- }
9997
- },
9998
- "description": "Assign a ticket to a spec document",
10028
+ "args": {},
10029
+ "description": "List all staff (persistent) agents and their status",
9999
10030
  "examples": [
10000
- "<%= config.bin %> <%= command.id %> PRLT-001 user-authentication",
10001
- "<%= config.bin %> <%= command.id %> --ticket PRLT-001 --spec api-design"
10031
+ "<%= config.bin %> <%= command.id %>"
10002
10032
  ],
10003
10033
  "flags": {
10004
- "project": {
10005
- "char": "P",
10006
- "description": "Project ID (uses first project if only one exists)",
10007
- "name": "project",
10008
- "hasDynamicHelp": false,
10009
- "multiple": false,
10010
- "type": "option"
10011
- },
10012
10034
  "json": {
10013
10035
  "description": "Output as JSON for AI agents/scripts",
10014
10036
  "name": "json",
@@ -10021,52 +10043,37 @@
10021
10043
  "name": "machine",
10022
10044
  "allowNo": false,
10023
10045
  "type": "boolean"
10024
- },
10025
- "ticket": {
10026
- "char": "t",
10027
- "description": "Ticket ID",
10028
- "name": "ticket",
10029
- "hasDynamicHelp": false,
10030
- "multiple": false,
10031
- "type": "option"
10032
- },
10033
- "spec": {
10034
- "char": "s",
10035
- "description": "Spec ID (filename without .md)",
10036
- "name": "spec",
10037
- "hasDynamicHelp": false,
10038
- "multiple": false,
10039
- "type": "option"
10040
10046
  }
10041
10047
  },
10042
10048
  "hasDynamicHelp": false,
10043
10049
  "hiddenAliases": [],
10044
- "id": "spec:ticket",
10050
+ "id": "staff:list",
10045
10051
  "pluginAlias": "@proletariat/cli",
10046
10052
  "pluginName": "@proletariat/cli",
10047
10053
  "pluginType": "core",
10048
10054
  "strict": true,
10055
+ "enableJsonFlag": false,
10049
10056
  "isESM": true,
10050
10057
  "relativePath": [
10051
10058
  "dist",
10052
10059
  "commands",
10053
- "spec",
10054
- "ticket.js"
10060
+ "staff",
10061
+ "list.js"
10055
10062
  ]
10056
10063
  },
10057
- "spec:view": {
10064
+ "staff:remove": {
10058
10065
  "aliases": [],
10059
10066
  "args": {
10060
- "spec": {
10061
- "description": "Spec ID",
10062
- "name": "spec",
10067
+ "name": {
10068
+ "description": "Agent name to remove",
10069
+ "name": "name",
10063
10070
  "required": false
10064
10071
  }
10065
10072
  },
10066
- "description": "View a spec and its linked tickets",
10073
+ "description": "Remove a specific agent from the workspace",
10067
10074
  "examples": [
10068
- "<%= config.bin %> <%= command.id %> user-authentication",
10069
- "<%= config.bin %> <%= command.id %> --spec api-design"
10075
+ "<%= config.bin %> <%= command.id %> camry",
10076
+ "<%= config.bin %> <%= command.id %>"
10070
10077
  ],
10071
10078
  "flags": {
10072
10079
  "project": {
@@ -10090,25 +10097,17 @@
10090
10097
  "allowNo": false,
10091
10098
  "type": "boolean"
10092
10099
  },
10093
- "spec": {
10094
- "char": "s",
10095
- "description": "Spec ID",
10096
- "name": "spec",
10097
- "hasDynamicHelp": false,
10098
- "multiple": false,
10099
- "type": "option"
10100
- },
10101
- "full": {
10100
+ "force": {
10102
10101
  "char": "f",
10103
- "description": "Show all spec sections",
10104
- "name": "full",
10102
+ "description": "Skip confirmation prompt (for non-interactive use)",
10103
+ "name": "force",
10105
10104
  "allowNo": false,
10106
10105
  "type": "boolean"
10107
10106
  }
10108
10107
  },
10109
10108
  "hasDynamicHelp": false,
10110
10109
  "hiddenAliases": [],
10111
- "id": "spec:view",
10110
+ "id": "staff:remove",
10112
10111
  "pluginAlias": "@proletariat/cli",
10113
10112
  "pluginName": "@proletariat/cli",
10114
10113
  "pluginType": "core",
@@ -10117,8 +10116,9 @@
10117
10116
  "relativePath": [
10118
10117
  "dist",
10119
10118
  "commands",
10120
- "spec",
10121
- "view.js"
10119
+ "agent",
10120
+ "staff",
10121
+ "remove.js"
10122
10122
  ]
10123
10123
  },
10124
10124
  "status:category": {
@@ -10603,6 +10603,59 @@
10603
10603
  "update.js"
10604
10604
  ]
10605
10605
  },
10606
+ "terminal:title": {
10607
+ "aliases": [],
10608
+ "args": {
10609
+ "title": {
10610
+ "description": "Title to set for the terminal tab/window",
10611
+ "name": "title",
10612
+ "required": false
10613
+ }
10614
+ },
10615
+ "description": "Set the terminal tab/window title",
10616
+ "examples": [
10617
+ "<%= config.bin %> <%= command.id %> \"My Custom Name\"",
10618
+ "<%= config.bin %> <%= command.id %> # Interactive prompt",
10619
+ "<%= config.bin %> <%= command.id %> --reset",
10620
+ "<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
10621
+ ],
10622
+ "flags": {
10623
+ "reset": {
10624
+ "char": "r",
10625
+ "description": "Reset terminal title to default",
10626
+ "name": "reset",
10627
+ "allowNo": false,
10628
+ "type": "boolean"
10629
+ },
10630
+ "json": {
10631
+ "description": "Output as JSON for AI agents/scripts",
10632
+ "name": "json",
10633
+ "allowNo": false,
10634
+ "type": "boolean"
10635
+ },
10636
+ "machine": {
10637
+ "char": "m",
10638
+ "description": "Output as JSON for AI agents/scripts",
10639
+ "name": "machine",
10640
+ "allowNo": false,
10641
+ "type": "boolean"
10642
+ }
10643
+ },
10644
+ "hasDynamicHelp": false,
10645
+ "hiddenAliases": [],
10646
+ "id": "terminal:title",
10647
+ "pluginAlias": "@proletariat/cli",
10648
+ "pluginName": "@proletariat/cli",
10649
+ "pluginType": "core",
10650
+ "strict": true,
10651
+ "isESM": true,
10652
+ "relativePath": [
10653
+ "dist",
10654
+ "commands",
10655
+ "terminal",
10656
+ "title.js"
10657
+ ]
10658
+ },
10606
10659
  "support:book": {
10607
10660
  "aliases": [],
10608
10661
  "args": {},
@@ -10839,70 +10892,17 @@
10839
10892
  "name": "machine",
10840
10893
  "allowNo": false,
10841
10894
  "type": "boolean"
10842
- },
10843
- "clipboard": {
10844
- "description": "Copy diagnostics to clipboard",
10845
- "name": "clipboard",
10846
- "allowNo": false,
10847
- "type": "boolean"
10848
- }
10849
- },
10850
- "hasDynamicHelp": false,
10851
- "hiddenAliases": [],
10852
- "id": "support:logs",
10853
- "pluginAlias": "@proletariat/cli",
10854
- "pluginName": "@proletariat/cli",
10855
- "pluginType": "core",
10856
- "strict": true,
10857
- "isESM": true,
10858
- "relativePath": [
10859
- "dist",
10860
- "commands",
10861
- "support",
10862
- "logs.js"
10863
- ]
10864
- },
10865
- "terminal:title": {
10866
- "aliases": [],
10867
- "args": {
10868
- "title": {
10869
- "description": "Title to set for the terminal tab/window",
10870
- "name": "title",
10871
- "required": false
10872
- }
10873
- },
10874
- "description": "Set the terminal tab/window title",
10875
- "examples": [
10876
- "<%= config.bin %> <%= command.id %> \"My Custom Name\"",
10877
- "<%= config.bin %> <%= command.id %> # Interactive prompt",
10878
- "<%= config.bin %> <%= command.id %> --reset",
10879
- "<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
10880
- ],
10881
- "flags": {
10882
- "reset": {
10883
- "char": "r",
10884
- "description": "Reset terminal title to default",
10885
- "name": "reset",
10886
- "allowNo": false,
10887
- "type": "boolean"
10888
- },
10889
- "json": {
10890
- "description": "Output as JSON for AI agents/scripts",
10891
- "name": "json",
10892
- "allowNo": false,
10893
- "type": "boolean"
10894
- },
10895
- "machine": {
10896
- "char": "m",
10897
- "description": "Output as JSON for AI agents/scripts",
10898
- "name": "machine",
10899
- "allowNo": false,
10900
- "type": "boolean"
10895
+ },
10896
+ "clipboard": {
10897
+ "description": "Copy diagnostics to clipboard",
10898
+ "name": "clipboard",
10899
+ "allowNo": false,
10900
+ "type": "boolean"
10901
10901
  }
10902
10902
  },
10903
10903
  "hasDynamicHelp": false,
10904
10904
  "hiddenAliases": [],
10905
- "id": "terminal:title",
10905
+ "id": "support:logs",
10906
10906
  "pluginAlias": "@proletariat/cli",
10907
10907
  "pluginName": "@proletariat/cli",
10908
10908
  "pluginType": "core",
@@ -10911,8 +10911,8 @@
10911
10911
  "relativePath": [
10912
10912
  "dist",
10913
10913
  "commands",
10914
- "terminal",
10915
- "title.js"
10914
+ "support",
10915
+ "logs.js"
10916
10916
  ]
10917
10917
  },
10918
10918
  "template:apply": {
@@ -14274,258 +14274,24 @@
14274
14274
  "args": {
14275
14275
  "ticketId": {
14276
14276
  "description": "Ticket ID to view - prompts with dropdown if not provided",
14277
- "name": "ticketId",
14278
- "required": false
14279
- }
14280
- },
14281
- "description": "View detailed ticket information",
14282
- "examples": [
14283
- "<%= config.bin %> <%= command.id %> TICK-001",
14284
- "<%= config.bin %> <%= command.id %> # Interactive mode"
14285
- ],
14286
- "flags": {
14287
- "project": {
14288
- "char": "P",
14289
- "description": "Project ID (uses first project if only one exists)",
14290
- "name": "project",
14291
- "hasDynamicHelp": false,
14292
- "multiple": false,
14293
- "type": "option"
14294
- },
14295
- "json": {
14296
- "description": "Output as JSON for AI agents/scripts",
14297
- "name": "json",
14298
- "allowNo": false,
14299
- "type": "boolean"
14300
- },
14301
- "machine": {
14302
- "char": "m",
14303
- "description": "Output as JSON for AI agents/scripts",
14304
- "name": "machine",
14305
- "allowNo": false,
14306
- "type": "boolean"
14307
- }
14308
- },
14309
- "hasDynamicHelp": false,
14310
- "hiddenAliases": [],
14311
- "id": "ticket:view",
14312
- "pluginAlias": "@proletariat/cli",
14313
- "pluginName": "@proletariat/cli",
14314
- "pluginType": "core",
14315
- "strict": true,
14316
- "isESM": true,
14317
- "relativePath": [
14318
- "dist",
14319
- "commands",
14320
- "ticket",
14321
- "view.js"
14322
- ]
14323
- },
14324
- "workspace:add": {
14325
- "aliases": [],
14326
- "args": {
14327
- "path": {
14328
- "description": "Path to the workspace to register",
14329
- "name": "path",
14330
- "required": true
14331
- }
14332
- },
14333
- "description": "Register an existing workspace in the machine config",
14334
- "examples": [
14335
- "<%= config.bin %> <%= command.id %> /path/to/workspace",
14336
- "<%= config.bin %> <%= command.id %> . --name my-workspace",
14337
- "<%= config.bin %> <%= command.id %> ~/projects/my-hq"
14338
- ],
14339
- "flags": {
14340
- "json": {
14341
- "description": "Output as JSON for AI agents/scripts",
14342
- "name": "json",
14343
- "allowNo": false,
14344
- "type": "boolean"
14345
- },
14346
- "machine": {
14347
- "char": "m",
14348
- "description": "Output as JSON for AI agents/scripts",
14349
- "name": "machine",
14350
- "allowNo": false,
14351
- "type": "boolean"
14352
- },
14353
- "name": {
14354
- "char": "n",
14355
- "description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
14356
- "name": "name",
14357
- "hasDynamicHelp": false,
14358
- "multiple": false,
14359
- "type": "option"
14360
- }
14361
- },
14362
- "hasDynamicHelp": false,
14363
- "hiddenAliases": [],
14364
- "id": "workspace:add",
14365
- "pluginAlias": "@proletariat/cli",
14366
- "pluginName": "@proletariat/cli",
14367
- "pluginType": "core",
14368
- "strict": true,
14369
- "enableJsonFlag": false,
14370
- "isESM": true,
14371
- "relativePath": [
14372
- "dist",
14373
- "commands",
14374
- "workspace",
14375
- "add.js"
14376
- ]
14377
- },
14378
- "workspace:list": {
14379
- "aliases": [],
14380
- "args": {},
14381
- "description": "List all registered and discovered HQ workspaces",
14382
- "examples": [
14383
- "<%= config.bin %> <%= command.id %>",
14384
- "<%= config.bin %> <%= command.id %> --json"
14385
- ],
14386
- "flags": {
14387
- "json": {
14388
- "description": "Output as JSON for AI agents/scripts",
14389
- "name": "json",
14390
- "allowNo": false,
14391
- "type": "boolean"
14392
- },
14393
- "machine": {
14394
- "char": "m",
14395
- "description": "Output as JSON for AI agents/scripts",
14396
- "name": "machine",
14397
- "allowNo": false,
14398
- "type": "boolean"
14399
- }
14400
- },
14401
- "hasDynamicHelp": false,
14402
- "hiddenAliases": [],
14403
- "id": "workspace:list",
14404
- "pluginAlias": "@proletariat/cli",
14405
- "pluginName": "@proletariat/cli",
14406
- "pluginType": "core",
14407
- "strict": true,
14408
- "enableJsonFlag": false,
14409
- "isESM": true,
14410
- "relativePath": [
14411
- "dist",
14412
- "commands",
14413
- "workspace",
14414
- "list.js"
14415
- ]
14416
- },
14417
- "workspace:prune": {
14418
- "aliases": [],
14419
- "args": {},
14420
- "description": "Remove stale workspace entries and agents with deleted worktrees",
14421
- "examples": [
14422
- "<%= config.bin %> <%= command.id %> --dry-run",
14423
- "<%= config.bin %> <%= command.id %>",
14424
- "<%= config.bin %> <%= command.id %> --force"
14425
- ],
14426
- "flags": {
14427
- "json": {
14428
- "description": "Output as JSON for AI agents/scripts",
14429
- "name": "json",
14430
- "allowNo": false,
14431
- "type": "boolean"
14432
- },
14433
- "machine": {
14434
- "char": "m",
14435
- "description": "Output as JSON for AI agents/scripts",
14436
- "name": "machine",
14437
- "allowNo": false,
14438
- "type": "boolean"
14439
- },
14440
- "dry-run": {
14441
- "char": "d",
14442
- "description": "Show what would be removed without removing",
14443
- "name": "dry-run",
14444
- "allowNo": false,
14445
- "type": "boolean"
14446
- },
14447
- "force": {
14448
- "char": "f",
14449
- "description": "Skip confirmation prompt and prune immediately",
14450
- "name": "force",
14451
- "allowNo": false,
14452
- "type": "boolean"
14453
- }
14454
- },
14455
- "hasDynamicHelp": false,
14456
- "hiddenAliases": [],
14457
- "id": "workspace:prune",
14458
- "pluginAlias": "@proletariat/cli",
14459
- "pluginName": "@proletariat/cli",
14460
- "pluginType": "core",
14461
- "strict": true,
14462
- "isESM": true,
14463
- "relativePath": [
14464
- "dist",
14465
- "commands",
14466
- "workspace",
14467
- "prune.js"
14468
- ]
14469
- },
14470
- "workspace:remove": {
14471
- "aliases": [],
14472
- "args": {
14473
- "nameOrPath": {
14474
- "description": "Workspace name or path to unregister",
14475
- "name": "nameOrPath",
14476
- "required": true
14477
- }
14478
- },
14479
- "description": "Unregister a workspace from the machine config (does NOT delete files)",
14480
- "examples": [
14481
- "<%= config.bin %> <%= command.id %> my-workspace",
14482
- "<%= config.bin %> <%= command.id %> /path/to/workspace"
14483
- ],
14484
- "flags": {
14485
- "json": {
14486
- "description": "Output as JSON for AI agents/scripts",
14487
- "name": "json",
14488
- "allowNo": false,
14489
- "type": "boolean"
14490
- },
14491
- "machine": {
14492
- "char": "m",
14493
- "description": "Output as JSON for AI agents/scripts",
14494
- "name": "machine",
14495
- "allowNo": false,
14496
- "type": "boolean"
14497
- }
14498
- },
14499
- "hasDynamicHelp": false,
14500
- "hiddenAliases": [],
14501
- "id": "workspace:remove",
14502
- "pluginAlias": "@proletariat/cli",
14503
- "pluginName": "@proletariat/cli",
14504
- "pluginType": "core",
14505
- "strict": true,
14506
- "isESM": true,
14507
- "relativePath": [
14508
- "dist",
14509
- "commands",
14510
- "workspace",
14511
- "remove.js"
14512
- ]
14513
- },
14514
- "workspace:use": {
14515
- "aliases": [],
14516
- "args": {
14517
- "nameOrPath": {
14518
- "description": "Workspace name or path",
14519
- "name": "nameOrPath",
14520
- "required": true
14277
+ "name": "ticketId",
14278
+ "required": false
14521
14279
  }
14522
14280
  },
14523
- "description": "Set the active workspace",
14281
+ "description": "View detailed ticket information",
14524
14282
  "examples": [
14525
- "<%= config.bin %> <%= command.id %> my-workspace",
14526
- "<%= config.bin %> <%= command.id %> /path/to/workspace"
14283
+ "<%= config.bin %> <%= command.id %> TICK-001",
14284
+ "<%= config.bin %> <%= command.id %> # Interactive mode"
14527
14285
  ],
14528
14286
  "flags": {
14287
+ "project": {
14288
+ "char": "P",
14289
+ "description": "Project ID (uses first project if only one exists)",
14290
+ "name": "project",
14291
+ "hasDynamicHelp": false,
14292
+ "multiple": false,
14293
+ "type": "option"
14294
+ },
14529
14295
  "json": {
14530
14296
  "description": "Output as JSON for AI agents/scripts",
14531
14297
  "name": "json",
@@ -14542,7 +14308,7 @@
14542
14308
  },
14543
14309
  "hasDynamicHelp": false,
14544
14310
  "hiddenAliases": [],
14545
- "id": "workspace:use",
14311
+ "id": "ticket:view",
14546
14312
  "pluginAlias": "@proletariat/cli",
14547
14313
  "pluginName": "@proletariat/cli",
14548
14314
  "pluginType": "core",
@@ -14551,8 +14317,8 @@
14551
14317
  "relativePath": [
14552
14318
  "dist",
14553
14319
  "commands",
14554
- "workspace",
14555
- "use.js"
14320
+ "ticket",
14321
+ "view.js"
14556
14322
  ]
14557
14323
  },
14558
14324
  "workflow:create": {
@@ -14971,6 +14737,240 @@
14971
14737
  "view.js"
14972
14738
  ]
14973
14739
  },
14740
+ "workspace:add": {
14741
+ "aliases": [],
14742
+ "args": {
14743
+ "path": {
14744
+ "description": "Path to the workspace to register",
14745
+ "name": "path",
14746
+ "required": true
14747
+ }
14748
+ },
14749
+ "description": "Register an existing workspace in the machine config",
14750
+ "examples": [
14751
+ "<%= config.bin %> <%= command.id %> /path/to/workspace",
14752
+ "<%= config.bin %> <%= command.id %> . --name my-workspace",
14753
+ "<%= config.bin %> <%= command.id %> ~/projects/my-hq"
14754
+ ],
14755
+ "flags": {
14756
+ "json": {
14757
+ "description": "Output as JSON for AI agents/scripts",
14758
+ "name": "json",
14759
+ "allowNo": false,
14760
+ "type": "boolean"
14761
+ },
14762
+ "machine": {
14763
+ "char": "m",
14764
+ "description": "Output as JSON for AI agents/scripts",
14765
+ "name": "machine",
14766
+ "allowNo": false,
14767
+ "type": "boolean"
14768
+ },
14769
+ "name": {
14770
+ "char": "n",
14771
+ "description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
14772
+ "name": "name",
14773
+ "hasDynamicHelp": false,
14774
+ "multiple": false,
14775
+ "type": "option"
14776
+ }
14777
+ },
14778
+ "hasDynamicHelp": false,
14779
+ "hiddenAliases": [],
14780
+ "id": "workspace:add",
14781
+ "pluginAlias": "@proletariat/cli",
14782
+ "pluginName": "@proletariat/cli",
14783
+ "pluginType": "core",
14784
+ "strict": true,
14785
+ "enableJsonFlag": false,
14786
+ "isESM": true,
14787
+ "relativePath": [
14788
+ "dist",
14789
+ "commands",
14790
+ "workspace",
14791
+ "add.js"
14792
+ ]
14793
+ },
14794
+ "workspace:list": {
14795
+ "aliases": [],
14796
+ "args": {},
14797
+ "description": "List all registered and discovered HQ workspaces",
14798
+ "examples": [
14799
+ "<%= config.bin %> <%= command.id %>",
14800
+ "<%= config.bin %> <%= command.id %> --json"
14801
+ ],
14802
+ "flags": {
14803
+ "json": {
14804
+ "description": "Output as JSON for AI agents/scripts",
14805
+ "name": "json",
14806
+ "allowNo": false,
14807
+ "type": "boolean"
14808
+ },
14809
+ "machine": {
14810
+ "char": "m",
14811
+ "description": "Output as JSON for AI agents/scripts",
14812
+ "name": "machine",
14813
+ "allowNo": false,
14814
+ "type": "boolean"
14815
+ }
14816
+ },
14817
+ "hasDynamicHelp": false,
14818
+ "hiddenAliases": [],
14819
+ "id": "workspace:list",
14820
+ "pluginAlias": "@proletariat/cli",
14821
+ "pluginName": "@proletariat/cli",
14822
+ "pluginType": "core",
14823
+ "strict": true,
14824
+ "enableJsonFlag": false,
14825
+ "isESM": true,
14826
+ "relativePath": [
14827
+ "dist",
14828
+ "commands",
14829
+ "workspace",
14830
+ "list.js"
14831
+ ]
14832
+ },
14833
+ "workspace:prune": {
14834
+ "aliases": [],
14835
+ "args": {},
14836
+ "description": "Remove stale workspace entries and agents with deleted worktrees",
14837
+ "examples": [
14838
+ "<%= config.bin %> <%= command.id %> --dry-run",
14839
+ "<%= config.bin %> <%= command.id %>",
14840
+ "<%= config.bin %> <%= command.id %> --force"
14841
+ ],
14842
+ "flags": {
14843
+ "json": {
14844
+ "description": "Output as JSON for AI agents/scripts",
14845
+ "name": "json",
14846
+ "allowNo": false,
14847
+ "type": "boolean"
14848
+ },
14849
+ "machine": {
14850
+ "char": "m",
14851
+ "description": "Output as JSON for AI agents/scripts",
14852
+ "name": "machine",
14853
+ "allowNo": false,
14854
+ "type": "boolean"
14855
+ },
14856
+ "dry-run": {
14857
+ "char": "d",
14858
+ "description": "Show what would be removed without removing",
14859
+ "name": "dry-run",
14860
+ "allowNo": false,
14861
+ "type": "boolean"
14862
+ },
14863
+ "force": {
14864
+ "char": "f",
14865
+ "description": "Skip confirmation prompt and prune immediately",
14866
+ "name": "force",
14867
+ "allowNo": false,
14868
+ "type": "boolean"
14869
+ }
14870
+ },
14871
+ "hasDynamicHelp": false,
14872
+ "hiddenAliases": [],
14873
+ "id": "workspace:prune",
14874
+ "pluginAlias": "@proletariat/cli",
14875
+ "pluginName": "@proletariat/cli",
14876
+ "pluginType": "core",
14877
+ "strict": true,
14878
+ "isESM": true,
14879
+ "relativePath": [
14880
+ "dist",
14881
+ "commands",
14882
+ "workspace",
14883
+ "prune.js"
14884
+ ]
14885
+ },
14886
+ "workspace:remove": {
14887
+ "aliases": [],
14888
+ "args": {
14889
+ "nameOrPath": {
14890
+ "description": "Workspace name or path to unregister",
14891
+ "name": "nameOrPath",
14892
+ "required": true
14893
+ }
14894
+ },
14895
+ "description": "Unregister a workspace from the machine config (does NOT delete files)",
14896
+ "examples": [
14897
+ "<%= config.bin %> <%= command.id %> my-workspace",
14898
+ "<%= config.bin %> <%= command.id %> /path/to/workspace"
14899
+ ],
14900
+ "flags": {
14901
+ "json": {
14902
+ "description": "Output as JSON for AI agents/scripts",
14903
+ "name": "json",
14904
+ "allowNo": false,
14905
+ "type": "boolean"
14906
+ },
14907
+ "machine": {
14908
+ "char": "m",
14909
+ "description": "Output as JSON for AI agents/scripts",
14910
+ "name": "machine",
14911
+ "allowNo": false,
14912
+ "type": "boolean"
14913
+ }
14914
+ },
14915
+ "hasDynamicHelp": false,
14916
+ "hiddenAliases": [],
14917
+ "id": "workspace:remove",
14918
+ "pluginAlias": "@proletariat/cli",
14919
+ "pluginName": "@proletariat/cli",
14920
+ "pluginType": "core",
14921
+ "strict": true,
14922
+ "isESM": true,
14923
+ "relativePath": [
14924
+ "dist",
14925
+ "commands",
14926
+ "workspace",
14927
+ "remove.js"
14928
+ ]
14929
+ },
14930
+ "workspace:use": {
14931
+ "aliases": [],
14932
+ "args": {
14933
+ "nameOrPath": {
14934
+ "description": "Workspace name or path",
14935
+ "name": "nameOrPath",
14936
+ "required": true
14937
+ }
14938
+ },
14939
+ "description": "Set the active workspace",
14940
+ "examples": [
14941
+ "<%= config.bin %> <%= command.id %> my-workspace",
14942
+ "<%= config.bin %> <%= command.id %> /path/to/workspace"
14943
+ ],
14944
+ "flags": {
14945
+ "json": {
14946
+ "description": "Output as JSON for AI agents/scripts",
14947
+ "name": "json",
14948
+ "allowNo": false,
14949
+ "type": "boolean"
14950
+ },
14951
+ "machine": {
14952
+ "char": "m",
14953
+ "description": "Output as JSON for AI agents/scripts",
14954
+ "name": "machine",
14955
+ "allowNo": false,
14956
+ "type": "boolean"
14957
+ }
14958
+ },
14959
+ "hasDynamicHelp": false,
14960
+ "hiddenAliases": [],
14961
+ "id": "workspace:use",
14962
+ "pluginAlias": "@proletariat/cli",
14963
+ "pluginName": "@proletariat/cli",
14964
+ "pluginType": "core",
14965
+ "strict": true,
14966
+ "isESM": true,
14967
+ "relativePath": [
14968
+ "dist",
14969
+ "commands",
14970
+ "workspace",
14971
+ "use.js"
14972
+ ]
14973
+ },
14974
14974
  "agent:staff:add": {
14975
14975
  "aliases": [],
14976
14976
  "args": {
@@ -16815,5 +16815,5 @@
16815
16815
  ]
16816
16816
  }
16817
16817
  },
16818
- "version": "0.3.44"
16818
+ "version": "0.3.45"
16819
16819
  }