@proletariat/cli 0.3.76 → 0.3.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/validate-better-sqlite3.cjs +14 -1
- package/dist/commands/orchestrator/start.js +51 -52
- package/dist/commands/orchestrator/start.js.map +1 -1
- package/dist/commands/repo/add.d.ts +6 -0
- package/dist/commands/repo/add.js +52 -0
- package/dist/commands/repo/add.js.map +1 -1
- package/dist/lib/execution/runners/shared.d.ts +5 -0
- package/dist/lib/execution/runners/shared.js +18 -0
- package/dist/lib/execution/runners/shared.js.map +1 -1
- package/dist/lib/repos/git.d.ts +17 -0
- package/dist/lib/repos/git.js +35 -0
- package/dist/lib/repos/git.js.map +1 -1
- package/dist/lib/repos/index.js.map +1 -1
- package/oclif.manifest.json +1034 -1027
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -5022,29 +5022,15 @@
|
|
|
5022
5022
|
"view.js"
|
|
5023
5023
|
]
|
|
5024
5024
|
},
|
|
5025
|
-
"
|
|
5025
|
+
"feedback": {
|
|
5026
5026
|
"aliases": [],
|
|
5027
|
-
"args": {
|
|
5028
|
-
|
|
5029
|
-
"description": "Epic ID",
|
|
5030
|
-
"name": "id",
|
|
5031
|
-
"required": false
|
|
5032
|
-
}
|
|
5033
|
-
},
|
|
5034
|
-
"description": "Activate a draft or archived epic",
|
|
5027
|
+
"args": {},
|
|
5028
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
5035
5029
|
"examples": [
|
|
5036
|
-
"<%= config.bin %> <%= command.id %>
|
|
5037
|
-
"<%= config.bin %> <%= command.id %>"
|
|
5030
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5031
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
5038
5032
|
],
|
|
5039
5033
|
"flags": {
|
|
5040
|
-
"project": {
|
|
5041
|
-
"char": "P",
|
|
5042
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5043
|
-
"name": "project",
|
|
5044
|
-
"hasDynamicHelp": false,
|
|
5045
|
-
"multiple": false,
|
|
5046
|
-
"type": "option"
|
|
5047
|
-
},
|
|
5048
5034
|
"json": {
|
|
5049
5035
|
"description": "Output as JSON for AI agents/scripts",
|
|
5050
5036
|
"name": "json",
|
|
@@ -5057,46 +5043,48 @@
|
|
|
5057
5043
|
"name": "machine",
|
|
5058
5044
|
"allowNo": false,
|
|
5059
5045
|
"type": "boolean"
|
|
5046
|
+
},
|
|
5047
|
+
"action": {
|
|
5048
|
+
"char": "a",
|
|
5049
|
+
"description": "Action to perform (submit, list, view)",
|
|
5050
|
+
"name": "action",
|
|
5051
|
+
"hasDynamicHelp": false,
|
|
5052
|
+
"multiple": false,
|
|
5053
|
+
"options": [
|
|
5054
|
+
"submit",
|
|
5055
|
+
"list",
|
|
5056
|
+
"view"
|
|
5057
|
+
],
|
|
5058
|
+
"type": "option"
|
|
5060
5059
|
}
|
|
5061
5060
|
},
|
|
5062
5061
|
"hasDynamicHelp": false,
|
|
5063
5062
|
"hiddenAliases": [],
|
|
5064
|
-
"id": "
|
|
5063
|
+
"id": "feedback",
|
|
5065
5064
|
"pluginAlias": "@proletariat/cli",
|
|
5066
5065
|
"pluginName": "@proletariat/cli",
|
|
5067
5066
|
"pluginType": "core",
|
|
5068
5067
|
"strict": true,
|
|
5068
|
+
"enableJsonFlag": false,
|
|
5069
5069
|
"isESM": true,
|
|
5070
5070
|
"relativePath": [
|
|
5071
5071
|
"dist",
|
|
5072
5072
|
"commands",
|
|
5073
|
-
"
|
|
5074
|
-
"
|
|
5073
|
+
"feedback",
|
|
5074
|
+
"index.js"
|
|
5075
5075
|
]
|
|
5076
5076
|
},
|
|
5077
|
-
"
|
|
5077
|
+
"feedback:list": {
|
|
5078
5078
|
"aliases": [],
|
|
5079
|
-
"args": {
|
|
5080
|
-
|
|
5081
|
-
"description": "Epic ID",
|
|
5082
|
-
"name": "id",
|
|
5083
|
-
"required": false
|
|
5084
|
-
}
|
|
5085
|
-
},
|
|
5086
|
-
"description": "Archive a completed epic",
|
|
5079
|
+
"args": {},
|
|
5080
|
+
"description": "List recent feedback issues from the repository",
|
|
5087
5081
|
"examples": [
|
|
5088
|
-
"<%= config.bin %> <%= command.id %>
|
|
5089
|
-
"<%= config.bin %> <%= command.id %> --
|
|
5082
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5083
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
5084
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
5085
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
5090
5086
|
],
|
|
5091
5087
|
"flags": {
|
|
5092
|
-
"project": {
|
|
5093
|
-
"char": "P",
|
|
5094
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5095
|
-
"name": "project",
|
|
5096
|
-
"hasDynamicHelp": false,
|
|
5097
|
-
"multiple": false,
|
|
5098
|
-
"type": "option"
|
|
5099
|
-
},
|
|
5100
5088
|
"json": {
|
|
5101
5089
|
"description": "Output as JSON for AI agents/scripts",
|
|
5102
5090
|
"name": "json",
|
|
@@ -5110,49 +5098,69 @@
|
|
|
5110
5098
|
"allowNo": false,
|
|
5111
5099
|
"type": "boolean"
|
|
5112
5100
|
},
|
|
5113
|
-
"
|
|
5114
|
-
"char": "
|
|
5115
|
-
"description": "
|
|
5116
|
-
"name": "
|
|
5117
|
-
"
|
|
5118
|
-
"
|
|
5101
|
+
"category": {
|
|
5102
|
+
"char": "c",
|
|
5103
|
+
"description": "Filter by category (bug, feature, general)",
|
|
5104
|
+
"name": "category",
|
|
5105
|
+
"hasDynamicHelp": false,
|
|
5106
|
+
"multiple": false,
|
|
5107
|
+
"options": [
|
|
5108
|
+
"bug",
|
|
5109
|
+
"feature",
|
|
5110
|
+
"general"
|
|
5111
|
+
],
|
|
5112
|
+
"type": "option"
|
|
5113
|
+
},
|
|
5114
|
+
"state": {
|
|
5115
|
+
"char": "s",
|
|
5116
|
+
"description": "Filter by state",
|
|
5117
|
+
"name": "state",
|
|
5118
|
+
"default": "open",
|
|
5119
|
+
"hasDynamicHelp": false,
|
|
5120
|
+
"multiple": false,
|
|
5121
|
+
"options": [
|
|
5122
|
+
"open",
|
|
5123
|
+
"closed",
|
|
5124
|
+
"all"
|
|
5125
|
+
],
|
|
5126
|
+
"type": "option"
|
|
5127
|
+
},
|
|
5128
|
+
"limit": {
|
|
5129
|
+
"char": "l",
|
|
5130
|
+
"description": "Maximum number of issues to show",
|
|
5131
|
+
"name": "limit",
|
|
5132
|
+
"default": 20,
|
|
5133
|
+
"hasDynamicHelp": false,
|
|
5134
|
+
"multiple": false,
|
|
5135
|
+
"type": "option"
|
|
5119
5136
|
}
|
|
5120
5137
|
},
|
|
5121
5138
|
"hasDynamicHelp": false,
|
|
5122
5139
|
"hiddenAliases": [],
|
|
5123
|
-
"id": "
|
|
5140
|
+
"id": "feedback:list",
|
|
5124
5141
|
"pluginAlias": "@proletariat/cli",
|
|
5125
5142
|
"pluginName": "@proletariat/cli",
|
|
5126
5143
|
"pluginType": "core",
|
|
5127
5144
|
"strict": true,
|
|
5145
|
+
"enableJsonFlag": false,
|
|
5128
5146
|
"isESM": true,
|
|
5129
5147
|
"relativePath": [
|
|
5130
5148
|
"dist",
|
|
5131
5149
|
"commands",
|
|
5132
|
-
"
|
|
5133
|
-
"
|
|
5150
|
+
"feedback",
|
|
5151
|
+
"list.js"
|
|
5134
5152
|
]
|
|
5135
5153
|
},
|
|
5136
|
-
"
|
|
5154
|
+
"feedback:submit": {
|
|
5137
5155
|
"aliases": [],
|
|
5138
5156
|
"args": {},
|
|
5139
|
-
"description": "
|
|
5157
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
5140
5158
|
"examples": [
|
|
5141
5159
|
"<%= config.bin %> <%= command.id %>",
|
|
5142
|
-
"<%= config.bin %> <%= command.id %> --title \"
|
|
5143
|
-
"<%= config.bin %> <%= command.id %>
|
|
5144
|
-
"<%= config.bin %> <%= command.id %> -t \"Implement Auth\" --spec SPEC-001",
|
|
5145
|
-
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating"
|
|
5160
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
5161
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
5146
5162
|
],
|
|
5147
5163
|
"flags": {
|
|
5148
|
-
"project": {
|
|
5149
|
-
"char": "P",
|
|
5150
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5151
|
-
"name": "project",
|
|
5152
|
-
"hasDynamicHelp": false,
|
|
5153
|
-
"multiple": false,
|
|
5154
|
-
"type": "option"
|
|
5155
|
-
},
|
|
5156
5164
|
"json": {
|
|
5157
5165
|
"description": "Output as JSON for AI agents/scripts",
|
|
5158
5166
|
"name": "json",
|
|
@@ -5168,50 +5176,37 @@
|
|
|
5168
5176
|
},
|
|
5169
5177
|
"title": {
|
|
5170
5178
|
"char": "t",
|
|
5171
|
-
"description": "
|
|
5179
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
5172
5180
|
"name": "title",
|
|
5173
5181
|
"hasDynamicHelp": false,
|
|
5174
5182
|
"multiple": false,
|
|
5175
5183
|
"type": "option"
|
|
5176
5184
|
},
|
|
5177
|
-
"
|
|
5178
|
-
"char": "
|
|
5179
|
-
"description": "
|
|
5180
|
-
"name": "
|
|
5181
|
-
"default": "active",
|
|
5182
|
-
"hasDynamicHelp": false,
|
|
5183
|
-
"multiple": false,
|
|
5184
|
-
"options": [
|
|
5185
|
-
"active",
|
|
5186
|
-
"draft"
|
|
5187
|
-
],
|
|
5188
|
-
"type": "option"
|
|
5189
|
-
},
|
|
5190
|
-
"description": {
|
|
5191
|
-
"char": "d",
|
|
5192
|
-
"description": "Epic description",
|
|
5193
|
-
"name": "description",
|
|
5185
|
+
"body": {
|
|
5186
|
+
"char": "b",
|
|
5187
|
+
"description": "Issue description [required for non-interactive]",
|
|
5188
|
+
"name": "body",
|
|
5194
5189
|
"hasDynamicHelp": false,
|
|
5195
5190
|
"multiple": false,
|
|
5196
5191
|
"type": "option"
|
|
5197
5192
|
},
|
|
5198
|
-
"
|
|
5199
|
-
"
|
|
5200
|
-
"
|
|
5193
|
+
"category": {
|
|
5194
|
+
"char": "c",
|
|
5195
|
+
"description": "Feedback category",
|
|
5196
|
+
"name": "category",
|
|
5201
5197
|
"hasDynamicHelp": false,
|
|
5202
5198
|
"multiple": false,
|
|
5199
|
+
"options": [
|
|
5200
|
+
"bug",
|
|
5201
|
+
"feature",
|
|
5202
|
+
"general"
|
|
5203
|
+
],
|
|
5203
5204
|
"type": "option"
|
|
5204
|
-
},
|
|
5205
|
-
"dry-run": {
|
|
5206
|
-
"description": "Validate inputs without creating epic (use with --json for structured output)",
|
|
5207
|
-
"name": "dry-run",
|
|
5208
|
-
"allowNo": false,
|
|
5209
|
-
"type": "boolean"
|
|
5210
5205
|
}
|
|
5211
5206
|
},
|
|
5212
5207
|
"hasDynamicHelp": false,
|
|
5213
5208
|
"hiddenAliases": [],
|
|
5214
|
-
"id": "
|
|
5209
|
+
"id": "feedback:submit",
|
|
5215
5210
|
"pluginAlias": "@proletariat/cli",
|
|
5216
5211
|
"pluginName": "@proletariat/cli",
|
|
5217
5212
|
"pluginType": "core",
|
|
@@ -5220,36 +5215,27 @@
|
|
|
5220
5215
|
"relativePath": [
|
|
5221
5216
|
"dist",
|
|
5222
5217
|
"commands",
|
|
5223
|
-
"
|
|
5224
|
-
"
|
|
5218
|
+
"feedback",
|
|
5219
|
+
"submit.js"
|
|
5225
5220
|
]
|
|
5226
5221
|
},
|
|
5227
|
-
"
|
|
5222
|
+
"feedback:view": {
|
|
5228
5223
|
"aliases": [],
|
|
5229
5224
|
"args": {
|
|
5230
|
-
"
|
|
5231
|
-
"description": "
|
|
5232
|
-
"name": "
|
|
5233
|
-
"required":
|
|
5225
|
+
"number": {
|
|
5226
|
+
"description": "Issue number to view",
|
|
5227
|
+
"name": "number",
|
|
5228
|
+
"required": true
|
|
5234
5229
|
}
|
|
5235
5230
|
},
|
|
5236
|
-
"description": "
|
|
5231
|
+
"description": "View details of a specific feedback issue",
|
|
5237
5232
|
"examples": [
|
|
5238
|
-
"<%= config.bin %> <%= command.id %>
|
|
5239
|
-
"<%= config.bin %> <%= command.id %>
|
|
5240
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
5233
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
5234
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
5241
5235
|
],
|
|
5242
5236
|
"flags": {
|
|
5243
|
-
"project": {
|
|
5244
|
-
"char": "P",
|
|
5245
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5246
|
-
"name": "project",
|
|
5247
|
-
"hasDynamicHelp": false,
|
|
5248
|
-
"multiple": false,
|
|
5249
|
-
"type": "option"
|
|
5250
|
-
},
|
|
5251
5237
|
"json": {
|
|
5252
|
-
"description": "Output
|
|
5238
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5253
5239
|
"name": "json",
|
|
5254
5240
|
"allowNo": false,
|
|
5255
5241
|
"type": "boolean"
|
|
@@ -5260,46 +5246,35 @@
|
|
|
5260
5246
|
"name": "machine",
|
|
5261
5247
|
"allowNo": false,
|
|
5262
5248
|
"type": "boolean"
|
|
5263
|
-
},
|
|
5264
|
-
"force": {
|
|
5265
|
-
"char": "f",
|
|
5266
|
-
"description": "Skip confirmation prompt",
|
|
5267
|
-
"name": "force",
|
|
5268
|
-
"allowNo": false,
|
|
5269
|
-
"type": "boolean"
|
|
5270
5249
|
}
|
|
5271
5250
|
},
|
|
5272
5251
|
"hasDynamicHelp": false,
|
|
5273
5252
|
"hiddenAliases": [],
|
|
5274
|
-
"id": "
|
|
5253
|
+
"id": "feedback:view",
|
|
5275
5254
|
"pluginAlias": "@proletariat/cli",
|
|
5276
5255
|
"pluginName": "@proletariat/cli",
|
|
5277
5256
|
"pluginType": "core",
|
|
5278
5257
|
"strict": true,
|
|
5258
|
+
"enableJsonFlag": false,
|
|
5279
5259
|
"isESM": true,
|
|
5280
5260
|
"relativePath": [
|
|
5281
5261
|
"dist",
|
|
5282
5262
|
"commands",
|
|
5283
|
-
"
|
|
5284
|
-
"
|
|
5263
|
+
"feedback",
|
|
5264
|
+
"view.js"
|
|
5285
5265
|
]
|
|
5286
5266
|
},
|
|
5287
|
-
"
|
|
5267
|
+
"gh": {
|
|
5288
5268
|
"aliases": [],
|
|
5289
5269
|
"args": {},
|
|
5290
|
-
"description": "
|
|
5270
|
+
"description": "GitHub CLI setup and status for PR workflow",
|
|
5291
5271
|
"examples": [
|
|
5292
|
-
"<%= config.bin %> <%= command.id %>"
|
|
5272
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5273
|
+
"<%= config.bin %> <%= command.id %> status",
|
|
5274
|
+
"<%= config.bin %> <%= command.id %> login",
|
|
5275
|
+
"<%= config.bin %> <%= command.id %> token"
|
|
5293
5276
|
],
|
|
5294
5277
|
"flags": {
|
|
5295
|
-
"project": {
|
|
5296
|
-
"char": "P",
|
|
5297
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5298
|
-
"name": "project",
|
|
5299
|
-
"hasDynamicHelp": false,
|
|
5300
|
-
"multiple": false,
|
|
5301
|
-
"type": "option"
|
|
5302
|
-
},
|
|
5303
5278
|
"json": {
|
|
5304
5279
|
"description": "Output as JSON for AI agents/scripts",
|
|
5305
5280
|
"name": "json",
|
|
@@ -5316,36 +5291,28 @@
|
|
|
5316
5291
|
},
|
|
5317
5292
|
"hasDynamicHelp": false,
|
|
5318
5293
|
"hiddenAliases": [],
|
|
5319
|
-
"id": "
|
|
5294
|
+
"id": "gh",
|
|
5320
5295
|
"pluginAlias": "@proletariat/cli",
|
|
5321
5296
|
"pluginName": "@proletariat/cli",
|
|
5322
5297
|
"pluginType": "core",
|
|
5323
5298
|
"strict": true,
|
|
5299
|
+
"enableJsonFlag": false,
|
|
5324
5300
|
"isESM": true,
|
|
5325
5301
|
"relativePath": [
|
|
5326
5302
|
"dist",
|
|
5327
5303
|
"commands",
|
|
5328
|
-
"
|
|
5304
|
+
"gh",
|
|
5329
5305
|
"index.js"
|
|
5330
5306
|
]
|
|
5331
5307
|
},
|
|
5332
|
-
"
|
|
5308
|
+
"gh:login": {
|
|
5333
5309
|
"aliases": [],
|
|
5334
5310
|
"args": {},
|
|
5335
|
-
"description": "
|
|
5311
|
+
"description": "Login to GitHub CLI for PR workflow",
|
|
5336
5312
|
"examples": [
|
|
5337
|
-
"<%= config.bin %> <%= command.id %>"
|
|
5338
|
-
"<%= config.bin %> <%= command.id %> --status active"
|
|
5313
|
+
"<%= config.bin %> <%= command.id %>"
|
|
5339
5314
|
],
|
|
5340
5315
|
"flags": {
|
|
5341
|
-
"project": {
|
|
5342
|
-
"char": "P",
|
|
5343
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5344
|
-
"name": "project",
|
|
5345
|
-
"hasDynamicHelp": false,
|
|
5346
|
-
"multiple": false,
|
|
5347
|
-
"type": "option"
|
|
5348
|
-
},
|
|
5349
5316
|
"json": {
|
|
5350
5317
|
"description": "Output as JSON for AI agents/scripts",
|
|
5351
5318
|
"name": "json",
|
|
@@ -5358,73 +5325,32 @@
|
|
|
5358
5325
|
"name": "machine",
|
|
5359
5326
|
"allowNo": false,
|
|
5360
5327
|
"type": "boolean"
|
|
5361
|
-
},
|
|
5362
|
-
"status": {
|
|
5363
|
-
"char": "s",
|
|
5364
|
-
"description": "Filter by status",
|
|
5365
|
-
"name": "status",
|
|
5366
|
-
"hasDynamicHelp": false,
|
|
5367
|
-
"multiple": false,
|
|
5368
|
-
"options": [
|
|
5369
|
-
"active",
|
|
5370
|
-
"draft",
|
|
5371
|
-
"complete",
|
|
5372
|
-
"dropped",
|
|
5373
|
-
"future"
|
|
5374
|
-
],
|
|
5375
|
-
"type": "option"
|
|
5376
5328
|
}
|
|
5377
5329
|
},
|
|
5378
5330
|
"hasDynamicHelp": false,
|
|
5379
5331
|
"hiddenAliases": [],
|
|
5380
|
-
"id": "
|
|
5332
|
+
"id": "gh:login",
|
|
5381
5333
|
"pluginAlias": "@proletariat/cli",
|
|
5382
5334
|
"pluginName": "@proletariat/cli",
|
|
5383
5335
|
"pluginType": "core",
|
|
5384
5336
|
"strict": true,
|
|
5337
|
+
"enableJsonFlag": false,
|
|
5385
5338
|
"isESM": true,
|
|
5386
5339
|
"relativePath": [
|
|
5387
5340
|
"dist",
|
|
5388
5341
|
"commands",
|
|
5389
|
-
"
|
|
5390
|
-
"
|
|
5342
|
+
"gh",
|
|
5343
|
+
"login.js"
|
|
5391
5344
|
]
|
|
5392
5345
|
},
|
|
5393
|
-
"
|
|
5346
|
+
"gh:status": {
|
|
5394
5347
|
"aliases": [],
|
|
5395
|
-
"args": {
|
|
5396
|
-
|
|
5397
|
-
"description": "Epic ID",
|
|
5398
|
-
"name": "id",
|
|
5399
|
-
"required": false
|
|
5400
|
-
},
|
|
5401
|
-
"status": {
|
|
5402
|
-
"description": "Target status",
|
|
5403
|
-
"name": "status",
|
|
5404
|
-
"options": [
|
|
5405
|
-
"active",
|
|
5406
|
-
"draft",
|
|
5407
|
-
"complete",
|
|
5408
|
-
"dropped",
|
|
5409
|
-
"future"
|
|
5410
|
-
],
|
|
5411
|
-
"required": false
|
|
5412
|
-
}
|
|
5413
|
-
},
|
|
5414
|
-
"description": "Move epic between status folders",
|
|
5348
|
+
"args": {},
|
|
5349
|
+
"description": "Check GitHub CLI status for PR workflow",
|
|
5415
5350
|
"examples": [
|
|
5416
|
-
"<%= config.bin %> <%= command.id %>
|
|
5417
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
5351
|
+
"<%= config.bin %> <%= command.id %>"
|
|
5418
5352
|
],
|
|
5419
5353
|
"flags": {
|
|
5420
|
-
"project": {
|
|
5421
|
-
"char": "P",
|
|
5422
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5423
|
-
"name": "project",
|
|
5424
|
-
"hasDynamicHelp": false,
|
|
5425
|
-
"multiple": false,
|
|
5426
|
-
"type": "option"
|
|
5427
|
-
},
|
|
5428
5354
|
"json": {
|
|
5429
5355
|
"description": "Output as JSON for AI agents/scripts",
|
|
5430
5356
|
"name": "json",
|
|
@@ -5437,31 +5363,63 @@
|
|
|
5437
5363
|
"name": "machine",
|
|
5438
5364
|
"allowNo": false,
|
|
5439
5365
|
"type": "boolean"
|
|
5366
|
+
}
|
|
5367
|
+
},
|
|
5368
|
+
"hasDynamicHelp": false,
|
|
5369
|
+
"hiddenAliases": [],
|
|
5370
|
+
"id": "gh:status",
|
|
5371
|
+
"pluginAlias": "@proletariat/cli",
|
|
5372
|
+
"pluginName": "@proletariat/cli",
|
|
5373
|
+
"pluginType": "core",
|
|
5374
|
+
"strict": true,
|
|
5375
|
+
"enableJsonFlag": false,
|
|
5376
|
+
"isESM": true,
|
|
5377
|
+
"relativePath": [
|
|
5378
|
+
"dist",
|
|
5379
|
+
"commands",
|
|
5380
|
+
"gh",
|
|
5381
|
+
"status.js"
|
|
5382
|
+
]
|
|
5383
|
+
},
|
|
5384
|
+
"gh:token": {
|
|
5385
|
+
"aliases": [],
|
|
5386
|
+
"args": {},
|
|
5387
|
+
"description": "Show GH_TOKEN setup for devcontainer PR creation",
|
|
5388
|
+
"examples": [
|
|
5389
|
+
"<%= config.bin %> <%= command.id %>"
|
|
5390
|
+
],
|
|
5391
|
+
"flags": {
|
|
5392
|
+
"json": {
|
|
5393
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5394
|
+
"name": "json",
|
|
5395
|
+
"allowNo": false,
|
|
5396
|
+
"type": "boolean"
|
|
5440
5397
|
},
|
|
5441
|
-
"
|
|
5442
|
-
"char": "
|
|
5443
|
-
"description": "
|
|
5444
|
-
"name": "
|
|
5398
|
+
"machine": {
|
|
5399
|
+
"char": "m",
|
|
5400
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5401
|
+
"name": "machine",
|
|
5445
5402
|
"allowNo": false,
|
|
5446
5403
|
"type": "boolean"
|
|
5447
5404
|
}
|
|
5448
5405
|
},
|
|
5449
5406
|
"hasDynamicHelp": false,
|
|
5450
5407
|
"hiddenAliases": [],
|
|
5451
|
-
"id": "
|
|
5408
|
+
"id": "gh:token",
|
|
5452
5409
|
"pluginAlias": "@proletariat/cli",
|
|
5453
5410
|
"pluginName": "@proletariat/cli",
|
|
5454
5411
|
"pluginType": "core",
|
|
5455
5412
|
"strict": true,
|
|
5413
|
+
"enableJsonFlag": false,
|
|
5456
5414
|
"isESM": true,
|
|
5457
5415
|
"relativePath": [
|
|
5458
5416
|
"dist",
|
|
5459
5417
|
"commands",
|
|
5460
|
-
"
|
|
5461
|
-
"
|
|
5418
|
+
"gh",
|
|
5419
|
+
"token.js"
|
|
5462
5420
|
]
|
|
5463
5421
|
},
|
|
5464
|
-
"epic:
|
|
5422
|
+
"epic:activate": {
|
|
5465
5423
|
"aliases": [],
|
|
5466
5424
|
"args": {
|
|
5467
5425
|
"id": {
|
|
@@ -5470,10 +5428,10 @@
|
|
|
5470
5428
|
"required": false
|
|
5471
5429
|
}
|
|
5472
5430
|
},
|
|
5473
|
-
"description": "
|
|
5431
|
+
"description": "Activate a draft or archived epic",
|
|
5474
5432
|
"examples": [
|
|
5475
|
-
"<%= config.bin %> <%= command.id %> EPIC-
|
|
5476
|
-
"<%= config.bin %> <%= command.id %>
|
|
5433
|
+
"<%= config.bin %> <%= command.id %> EPIC-004",
|
|
5434
|
+
"<%= config.bin %> <%= command.id %>"
|
|
5477
5435
|
],
|
|
5478
5436
|
"flags": {
|
|
5479
5437
|
"project": {
|
|
@@ -5496,18 +5454,11 @@
|
|
|
5496
5454
|
"name": "machine",
|
|
5497
5455
|
"allowNo": false,
|
|
5498
5456
|
"type": "boolean"
|
|
5499
|
-
},
|
|
5500
|
-
"all": {
|
|
5501
|
-
"char": "a",
|
|
5502
|
-
"description": "Show progress for all epics",
|
|
5503
|
-
"name": "all",
|
|
5504
|
-
"allowNo": false,
|
|
5505
|
-
"type": "boolean"
|
|
5506
5457
|
}
|
|
5507
5458
|
},
|
|
5508
5459
|
"hasDynamicHelp": false,
|
|
5509
5460
|
"hiddenAliases": [],
|
|
5510
|
-
"id": "epic:
|
|
5461
|
+
"id": "epic:activate",
|
|
5511
5462
|
"pluginAlias": "@proletariat/cli",
|
|
5512
5463
|
"pluginName": "@proletariat/cli",
|
|
5513
5464
|
"pluginType": "core",
|
|
@@ -5517,29 +5468,22 @@
|
|
|
5517
5468
|
"dist",
|
|
5518
5469
|
"commands",
|
|
5519
5470
|
"epic",
|
|
5520
|
-
"
|
|
5471
|
+
"activate.js"
|
|
5521
5472
|
]
|
|
5522
5473
|
},
|
|
5523
|
-
"epic:
|
|
5474
|
+
"epic:archive": {
|
|
5524
5475
|
"aliases": [],
|
|
5525
5476
|
"args": {
|
|
5526
|
-
"
|
|
5477
|
+
"id": {
|
|
5527
5478
|
"description": "Epic ID",
|
|
5528
|
-
"name": "
|
|
5529
|
-
"required": false
|
|
5530
|
-
},
|
|
5531
|
-
"targetProject": {
|
|
5532
|
-
"description": "Target project ID",
|
|
5533
|
-
"name": "targetProject",
|
|
5479
|
+
"name": "id",
|
|
5534
5480
|
"required": false
|
|
5535
5481
|
}
|
|
5536
5482
|
},
|
|
5537
|
-
"description": "
|
|
5483
|
+
"description": "Archive a completed epic",
|
|
5538
5484
|
"examples": [
|
|
5539
|
-
"<%= config.bin %> <%= command.id %> EPIC-
|
|
5540
|
-
"<%= config.bin %> <%= command.id %>
|
|
5541
|
-
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
5542
|
-
"<%= config.bin %> <%= command.id %>"
|
|
5485
|
+
"<%= config.bin %> <%= command.id %> EPIC-002",
|
|
5486
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
5543
5487
|
],
|
|
5544
5488
|
"flags": {
|
|
5545
5489
|
"project": {
|
|
@@ -5563,17 +5507,17 @@
|
|
|
5563
5507
|
"allowNo": false,
|
|
5564
5508
|
"type": "boolean"
|
|
5565
5509
|
},
|
|
5566
|
-
"
|
|
5567
|
-
"char": "
|
|
5568
|
-
"description": "
|
|
5569
|
-
"name": "
|
|
5510
|
+
"force": {
|
|
5511
|
+
"char": "f",
|
|
5512
|
+
"description": "Skip ticket completion check",
|
|
5513
|
+
"name": "force",
|
|
5570
5514
|
"allowNo": false,
|
|
5571
5515
|
"type": "boolean"
|
|
5572
5516
|
}
|
|
5573
5517
|
},
|
|
5574
5518
|
"hasDynamicHelp": false,
|
|
5575
5519
|
"hiddenAliases": [],
|
|
5576
|
-
"id": "epic:
|
|
5520
|
+
"id": "epic:archive",
|
|
5577
5521
|
"pluginAlias": "@proletariat/cli",
|
|
5578
5522
|
"pluginName": "@proletariat/cli",
|
|
5579
5523
|
"pluginType": "core",
|
|
@@ -5583,28 +5527,19 @@
|
|
|
5583
5527
|
"dist",
|
|
5584
5528
|
"commands",
|
|
5585
5529
|
"epic",
|
|
5586
|
-
"
|
|
5530
|
+
"archive.js"
|
|
5587
5531
|
]
|
|
5588
5532
|
},
|
|
5589
|
-
"epic:
|
|
5533
|
+
"epic:create": {
|
|
5590
5534
|
"aliases": [],
|
|
5591
|
-
"args": {
|
|
5592
|
-
|
|
5593
|
-
"description": "Epic ID to reorder",
|
|
5594
|
-
"name": "id",
|
|
5595
|
-
"required": false
|
|
5596
|
-
},
|
|
5597
|
-
"position": {
|
|
5598
|
-
"description": "New position (1-based rank)",
|
|
5599
|
-
"name": "position",
|
|
5600
|
-
"required": false
|
|
5601
|
-
}
|
|
5602
|
-
},
|
|
5603
|
-
"description": "Reorder epic priority/rank",
|
|
5535
|
+
"args": {},
|
|
5536
|
+
"description": "Create a new epic",
|
|
5604
5537
|
"examples": [
|
|
5605
|
-
"<%= config.bin %> <%= command.id %>
|
|
5606
|
-
"<%= config.bin %> <%= command.id %>
|
|
5607
|
-
"<%= config.bin %> <%= command.id %>
|
|
5538
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5539
|
+
"<%= config.bin %> <%= command.id %> --title \"User Authentication System\"",
|
|
5540
|
+
"<%= config.bin %> <%= command.id %> -t \"API Design\" --status draft",
|
|
5541
|
+
"<%= config.bin %> <%= command.id %> -t \"Implement Auth\" --spec SPEC-001",
|
|
5542
|
+
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating"
|
|
5608
5543
|
],
|
|
5609
5544
|
"flags": {
|
|
5610
5545
|
"project": {
|
|
@@ -5628,56 +5563,52 @@
|
|
|
5628
5563
|
"allowNo": false,
|
|
5629
5564
|
"type": "boolean"
|
|
5630
5565
|
},
|
|
5631
|
-
"
|
|
5632
|
-
"
|
|
5633
|
-
"
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
"name": "first",
|
|
5639
|
-
"allowNo": false,
|
|
5640
|
-
"type": "boolean"
|
|
5566
|
+
"title": {
|
|
5567
|
+
"char": "t",
|
|
5568
|
+
"description": "Epic title [required for non-interactive]",
|
|
5569
|
+
"name": "title",
|
|
5570
|
+
"hasDynamicHelp": false,
|
|
5571
|
+
"multiple": false,
|
|
5572
|
+
"type": "option"
|
|
5641
5573
|
},
|
|
5642
|
-
"
|
|
5643
|
-
"
|
|
5644
|
-
"
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
5574
|
+
"status": {
|
|
5575
|
+
"char": "s",
|
|
5576
|
+
"description": "Initial status",
|
|
5577
|
+
"name": "status",
|
|
5578
|
+
"default": "active",
|
|
5579
|
+
"hasDynamicHelp": false,
|
|
5580
|
+
"multiple": false,
|
|
5581
|
+
"options": [
|
|
5582
|
+
"active",
|
|
5583
|
+
"draft"
|
|
5648
5584
|
],
|
|
5649
|
-
"
|
|
5650
|
-
"allowNo": false,
|
|
5651
|
-
"type": "boolean"
|
|
5585
|
+
"type": "option"
|
|
5652
5586
|
},
|
|
5653
|
-
"
|
|
5654
|
-
"
|
|
5655
|
-
"
|
|
5656
|
-
|
|
5657
|
-
"last",
|
|
5658
|
-
"before"
|
|
5659
|
-
],
|
|
5660
|
-
"name": "after",
|
|
5587
|
+
"description": {
|
|
5588
|
+
"char": "d",
|
|
5589
|
+
"description": "Epic description",
|
|
5590
|
+
"name": "description",
|
|
5661
5591
|
"hasDynamicHelp": false,
|
|
5662
5592
|
"multiple": false,
|
|
5663
5593
|
"type": "option"
|
|
5664
5594
|
},
|
|
5665
|
-
"
|
|
5666
|
-
"description": "
|
|
5667
|
-
"
|
|
5668
|
-
"first",
|
|
5669
|
-
"last",
|
|
5670
|
-
"after"
|
|
5671
|
-
],
|
|
5672
|
-
"name": "before",
|
|
5595
|
+
"spec": {
|
|
5596
|
+
"description": "Link to spec ID (the design spec that describes this epic)",
|
|
5597
|
+
"name": "spec",
|
|
5673
5598
|
"hasDynamicHelp": false,
|
|
5674
5599
|
"multiple": false,
|
|
5675
5600
|
"type": "option"
|
|
5601
|
+
},
|
|
5602
|
+
"dry-run": {
|
|
5603
|
+
"description": "Validate inputs without creating epic (use with --json for structured output)",
|
|
5604
|
+
"name": "dry-run",
|
|
5605
|
+
"allowNo": false,
|
|
5606
|
+
"type": "boolean"
|
|
5676
5607
|
}
|
|
5677
5608
|
},
|
|
5678
5609
|
"hasDynamicHelp": false,
|
|
5679
5610
|
"hiddenAliases": [],
|
|
5680
|
-
"id": "epic:
|
|
5611
|
+
"id": "epic:create",
|
|
5681
5612
|
"pluginAlias": "@proletariat/cli",
|
|
5682
5613
|
"pluginName": "@proletariat/cli",
|
|
5683
5614
|
"pluginType": "core",
|
|
@@ -5687,22 +5618,23 @@
|
|
|
5687
5618
|
"dist",
|
|
5688
5619
|
"commands",
|
|
5689
5620
|
"epic",
|
|
5690
|
-
"
|
|
5621
|
+
"create.js"
|
|
5691
5622
|
]
|
|
5692
5623
|
},
|
|
5693
|
-
"epic:
|
|
5624
|
+
"epic:delete": {
|
|
5694
5625
|
"aliases": [],
|
|
5695
5626
|
"args": {
|
|
5696
5627
|
"id": {
|
|
5697
|
-
"description": "Epic ID",
|
|
5628
|
+
"description": "Epic ID to delete",
|
|
5698
5629
|
"name": "id",
|
|
5699
5630
|
"required": false
|
|
5700
5631
|
}
|
|
5701
5632
|
},
|
|
5702
|
-
"description": "
|
|
5633
|
+
"description": "Delete an epic permanently",
|
|
5703
5634
|
"examples": [
|
|
5704
5635
|
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
5705
|
-
"<%= config.bin %> <%= command.id %>"
|
|
5636
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --force",
|
|
5637
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
5706
5638
|
],
|
|
5707
5639
|
"flags": {
|
|
5708
5640
|
"project": {
|
|
@@ -5714,7 +5646,7 @@
|
|
|
5714
5646
|
"type": "option"
|
|
5715
5647
|
},
|
|
5716
5648
|
"json": {
|
|
5717
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5649
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
5718
5650
|
"name": "json",
|
|
5719
5651
|
"allowNo": false,
|
|
5720
5652
|
"type": "boolean"
|
|
@@ -5725,43 +5657,36 @@
|
|
|
5725
5657
|
"name": "machine",
|
|
5726
5658
|
"allowNo": false,
|
|
5727
5659
|
"type": "boolean"
|
|
5660
|
+
},
|
|
5661
|
+
"force": {
|
|
5662
|
+
"char": "f",
|
|
5663
|
+
"description": "Skip confirmation prompt",
|
|
5664
|
+
"name": "force",
|
|
5665
|
+
"allowNo": false,
|
|
5666
|
+
"type": "boolean"
|
|
5728
5667
|
}
|
|
5729
5668
|
},
|
|
5730
5669
|
"hasDynamicHelp": false,
|
|
5731
|
-
"hidden": true,
|
|
5732
5670
|
"hiddenAliases": [],
|
|
5733
|
-
"id": "epic:
|
|
5671
|
+
"id": "epic:delete",
|
|
5734
5672
|
"pluginAlias": "@proletariat/cli",
|
|
5735
5673
|
"pluginName": "@proletariat/cli",
|
|
5736
5674
|
"pluginType": "core",
|
|
5675
|
+
"strict": true,
|
|
5737
5676
|
"isESM": true,
|
|
5738
5677
|
"relativePath": [
|
|
5739
5678
|
"dist",
|
|
5740
5679
|
"commands",
|
|
5741
5680
|
"epic",
|
|
5742
|
-
"
|
|
5681
|
+
"delete.js"
|
|
5743
5682
|
]
|
|
5744
5683
|
},
|
|
5745
|
-
"epic
|
|
5684
|
+
"epic": {
|
|
5746
5685
|
"aliases": [],
|
|
5747
|
-
"args": {
|
|
5748
|
-
|
|
5749
|
-
"description": "Epic ID",
|
|
5750
|
-
"name": "epicId",
|
|
5751
|
-
"required": false
|
|
5752
|
-
},
|
|
5753
|
-
"specId": {
|
|
5754
|
-
"description": "Spec ID to link",
|
|
5755
|
-
"name": "specId",
|
|
5756
|
-
"required": false
|
|
5757
|
-
}
|
|
5758
|
-
},
|
|
5759
|
-
"description": "Assign a spec to an epic (design document)",
|
|
5686
|
+
"args": {},
|
|
5687
|
+
"description": "Interactive menu for epic operations",
|
|
5760
5688
|
"examples": [
|
|
5761
|
-
"<%= config.bin %> <%= command.id %>
|
|
5762
|
-
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
5763
|
-
"<%= config.bin %> <%= command.id %>",
|
|
5764
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 --unlink"
|
|
5689
|
+
"<%= config.bin %> <%= command.id %>"
|
|
5765
5690
|
],
|
|
5766
5691
|
"flags": {
|
|
5767
5692
|
"project": {
|
|
@@ -5784,24 +5709,11 @@
|
|
|
5784
5709
|
"name": "machine",
|
|
5785
5710
|
"allowNo": false,
|
|
5786
5711
|
"type": "boolean"
|
|
5787
|
-
},
|
|
5788
|
-
"unlink": {
|
|
5789
|
-
"char": "u",
|
|
5790
|
-
"description": "Remove spec from epic instead of adding",
|
|
5791
|
-
"name": "unlink",
|
|
5792
|
-
"allowNo": false,
|
|
5793
|
-
"type": "boolean"
|
|
5794
|
-
},
|
|
5795
|
-
"align-tickets": {
|
|
5796
|
-
"description": "Also update all tickets in the epic to use the same spec",
|
|
5797
|
-
"name": "align-tickets",
|
|
5798
|
-
"allowNo": false,
|
|
5799
|
-
"type": "boolean"
|
|
5800
5712
|
}
|
|
5801
5713
|
},
|
|
5802
5714
|
"hasDynamicHelp": false,
|
|
5803
5715
|
"hiddenAliases": [],
|
|
5804
|
-
"id": "epic
|
|
5716
|
+
"id": "epic",
|
|
5805
5717
|
"pluginAlias": "@proletariat/cli",
|
|
5806
5718
|
"pluginName": "@proletariat/cli",
|
|
5807
5719
|
"pluginType": "core",
|
|
@@ -5811,30 +5723,16 @@
|
|
|
5811
5723
|
"dist",
|
|
5812
5724
|
"commands",
|
|
5813
5725
|
"epic",
|
|
5814
|
-
"
|
|
5726
|
+
"index.js"
|
|
5815
5727
|
]
|
|
5816
5728
|
},
|
|
5817
|
-
"epic:
|
|
5729
|
+
"epic:list": {
|
|
5818
5730
|
"aliases": [],
|
|
5819
|
-
"args": {
|
|
5820
|
-
|
|
5821
|
-
"description": "Epic ID",
|
|
5822
|
-
"name": "id",
|
|
5823
|
-
"required": false
|
|
5824
|
-
},
|
|
5825
|
-
"tickets": {
|
|
5826
|
-
"description": "Ticket IDs to link (space-separated)",
|
|
5827
|
-
"name": "tickets",
|
|
5828
|
-
"required": false
|
|
5829
|
-
}
|
|
5830
|
-
},
|
|
5831
|
-
"description": "Assign tickets to an epic, or link epic to a spec (parent-child)",
|
|
5731
|
+
"args": {},
|
|
5732
|
+
"description": "List all epics",
|
|
5832
5733
|
"examples": [
|
|
5833
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 TKT-001 TKT-002",
|
|
5834
|
-
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
5835
5734
|
"<%= config.bin %> <%= command.id %>",
|
|
5836
|
-
"<%= config.bin %> <%= command.id %>
|
|
5837
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 --spec SPEC-001"
|
|
5735
|
+
"<%= config.bin %> <%= command.id %> --status active"
|
|
5838
5736
|
],
|
|
5839
5737
|
"flags": {
|
|
5840
5738
|
"project": {
|
|
@@ -5858,74 +5756,62 @@
|
|
|
5858
5756
|
"allowNo": false,
|
|
5859
5757
|
"type": "boolean"
|
|
5860
5758
|
},
|
|
5861
|
-
"
|
|
5862
|
-
"char": "u",
|
|
5863
|
-
"description": "Remove tickets from this epic instead of adding",
|
|
5864
|
-
"name": "unlink",
|
|
5865
|
-
"allowNo": false,
|
|
5866
|
-
"type": "boolean"
|
|
5867
|
-
},
|
|
5868
|
-
"spec": {
|
|
5759
|
+
"status": {
|
|
5869
5760
|
"char": "s",
|
|
5870
|
-
"description": "
|
|
5871
|
-
"name": "
|
|
5872
|
-
"hasDynamicHelp": false,
|
|
5873
|
-
"multiple": false,
|
|
5874
|
-
"type": "option"
|
|
5875
|
-
},
|
|
5876
|
-
"unlink-spec": {
|
|
5877
|
-
"description": "Remove spec link from epic",
|
|
5878
|
-
"name": "unlink-spec",
|
|
5879
|
-
"allowNo": false,
|
|
5880
|
-
"type": "boolean"
|
|
5881
|
-
},
|
|
5882
|
-
"reconcile": {
|
|
5883
|
-
"description": "How to handle spec mismatch: keep (keep ticket spec), epic (use epic spec), skip",
|
|
5884
|
-
"name": "reconcile",
|
|
5761
|
+
"description": "Filter by status",
|
|
5762
|
+
"name": "status",
|
|
5885
5763
|
"hasDynamicHelp": false,
|
|
5886
5764
|
"multiple": false,
|
|
5887
5765
|
"options": [
|
|
5888
|
-
"
|
|
5889
|
-
"
|
|
5890
|
-
"
|
|
5766
|
+
"active",
|
|
5767
|
+
"draft",
|
|
5768
|
+
"complete",
|
|
5769
|
+
"dropped",
|
|
5770
|
+
"future"
|
|
5891
5771
|
],
|
|
5892
5772
|
"type": "option"
|
|
5893
|
-
},
|
|
5894
|
-
"inherit-spec": {
|
|
5895
|
-
"description": "Inherit spec from epic when ticket has no spec",
|
|
5896
|
-
"name": "inherit-spec",
|
|
5897
|
-
"allowNo": true,
|
|
5898
|
-
"type": "boolean"
|
|
5899
5773
|
}
|
|
5900
5774
|
},
|
|
5901
5775
|
"hasDynamicHelp": false,
|
|
5902
5776
|
"hiddenAliases": [],
|
|
5903
|
-
"id": "epic:
|
|
5777
|
+
"id": "epic:list",
|
|
5904
5778
|
"pluginAlias": "@proletariat/cli",
|
|
5905
5779
|
"pluginName": "@proletariat/cli",
|
|
5906
5780
|
"pluginType": "core",
|
|
5907
|
-
"strict":
|
|
5781
|
+
"strict": true,
|
|
5908
5782
|
"isESM": true,
|
|
5909
5783
|
"relativePath": [
|
|
5910
5784
|
"dist",
|
|
5911
5785
|
"commands",
|
|
5912
5786
|
"epic",
|
|
5913
|
-
"
|
|
5787
|
+
"list.js"
|
|
5914
5788
|
]
|
|
5915
5789
|
},
|
|
5916
|
-
"epic:
|
|
5790
|
+
"epic:move": {
|
|
5917
5791
|
"aliases": [],
|
|
5918
5792
|
"args": {
|
|
5919
5793
|
"id": {
|
|
5920
5794
|
"description": "Epic ID",
|
|
5921
5795
|
"name": "id",
|
|
5922
5796
|
"required": false
|
|
5797
|
+
},
|
|
5798
|
+
"status": {
|
|
5799
|
+
"description": "Target status",
|
|
5800
|
+
"name": "status",
|
|
5801
|
+
"options": [
|
|
5802
|
+
"active",
|
|
5803
|
+
"draft",
|
|
5804
|
+
"complete",
|
|
5805
|
+
"dropped",
|
|
5806
|
+
"future"
|
|
5807
|
+
],
|
|
5808
|
+
"required": false
|
|
5923
5809
|
}
|
|
5924
5810
|
},
|
|
5925
|
-
"description": "
|
|
5811
|
+
"description": "Move epic between status folders",
|
|
5926
5812
|
"examples": [
|
|
5927
|
-
"<%= config.bin %> <%= command.id %> EPIC-
|
|
5928
|
-
"<%= config.bin %> <%= command.id %>"
|
|
5813
|
+
"<%= config.bin %> <%= command.id %> EPIC-002 complete",
|
|
5814
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
5929
5815
|
],
|
|
5930
5816
|
"flags": {
|
|
5931
5817
|
"project": {
|
|
@@ -5948,11 +5834,18 @@
|
|
|
5948
5834
|
"name": "machine",
|
|
5949
5835
|
"allowNo": false,
|
|
5950
5836
|
"type": "boolean"
|
|
5837
|
+
},
|
|
5838
|
+
"force": {
|
|
5839
|
+
"char": "f",
|
|
5840
|
+
"description": "Skip validation checks",
|
|
5841
|
+
"name": "force",
|
|
5842
|
+
"allowNo": false,
|
|
5843
|
+
"type": "boolean"
|
|
5951
5844
|
}
|
|
5952
5845
|
},
|
|
5953
5846
|
"hasDynamicHelp": false,
|
|
5954
5847
|
"hiddenAliases": [],
|
|
5955
|
-
"id": "epic:
|
|
5848
|
+
"id": "epic:move",
|
|
5956
5849
|
"pluginAlias": "@proletariat/cli",
|
|
5957
5850
|
"pluginName": "@proletariat/cli",
|
|
5958
5851
|
"pluginType": "core",
|
|
@@ -5962,18 +5855,32 @@
|
|
|
5962
5855
|
"dist",
|
|
5963
5856
|
"commands",
|
|
5964
5857
|
"epic",
|
|
5965
|
-
"
|
|
5858
|
+
"move.js"
|
|
5966
5859
|
]
|
|
5967
5860
|
},
|
|
5968
|
-
"
|
|
5861
|
+
"epic:progress": {
|
|
5969
5862
|
"aliases": [],
|
|
5970
|
-
"args": {
|
|
5971
|
-
|
|
5863
|
+
"args": {
|
|
5864
|
+
"id": {
|
|
5865
|
+
"description": "Epic ID",
|
|
5866
|
+
"name": "id",
|
|
5867
|
+
"required": false
|
|
5868
|
+
}
|
|
5869
|
+
},
|
|
5870
|
+
"description": "Show epic completion progress",
|
|
5972
5871
|
"examples": [
|
|
5973
|
-
"<%= config.bin %> <%= command.id %>",
|
|
5974
|
-
"<%= config.bin %> <%= command.id %> --
|
|
5872
|
+
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
5873
|
+
"<%= config.bin %> <%= command.id %> --all"
|
|
5975
5874
|
],
|
|
5976
5875
|
"flags": {
|
|
5876
|
+
"project": {
|
|
5877
|
+
"char": "P",
|
|
5878
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
5879
|
+
"name": "project",
|
|
5880
|
+
"hasDynamicHelp": false,
|
|
5881
|
+
"multiple": false,
|
|
5882
|
+
"type": "option"
|
|
5883
|
+
},
|
|
5977
5884
|
"json": {
|
|
5978
5885
|
"description": "Output as JSON for AI agents/scripts",
|
|
5979
5886
|
"name": "json",
|
|
@@ -5987,47 +5894,59 @@
|
|
|
5987
5894
|
"allowNo": false,
|
|
5988
5895
|
"type": "boolean"
|
|
5989
5896
|
},
|
|
5990
|
-
"
|
|
5897
|
+
"all": {
|
|
5991
5898
|
"char": "a",
|
|
5992
|
-
"description": "
|
|
5993
|
-
"name": "
|
|
5994
|
-
"
|
|
5995
|
-
"
|
|
5996
|
-
"options": [
|
|
5997
|
-
"submit",
|
|
5998
|
-
"list",
|
|
5999
|
-
"view"
|
|
6000
|
-
],
|
|
6001
|
-
"type": "option"
|
|
5899
|
+
"description": "Show progress for all epics",
|
|
5900
|
+
"name": "all",
|
|
5901
|
+
"allowNo": false,
|
|
5902
|
+
"type": "boolean"
|
|
6002
5903
|
}
|
|
6003
5904
|
},
|
|
6004
5905
|
"hasDynamicHelp": false,
|
|
6005
5906
|
"hiddenAliases": [],
|
|
6006
|
-
"id": "
|
|
5907
|
+
"id": "epic:progress",
|
|
6007
5908
|
"pluginAlias": "@proletariat/cli",
|
|
6008
5909
|
"pluginName": "@proletariat/cli",
|
|
6009
5910
|
"pluginType": "core",
|
|
6010
5911
|
"strict": true,
|
|
6011
|
-
"enableJsonFlag": false,
|
|
6012
5912
|
"isESM": true,
|
|
6013
5913
|
"relativePath": [
|
|
6014
5914
|
"dist",
|
|
6015
5915
|
"commands",
|
|
6016
|
-
"
|
|
6017
|
-
"
|
|
5916
|
+
"epic",
|
|
5917
|
+
"progress.js"
|
|
6018
5918
|
]
|
|
6019
5919
|
},
|
|
6020
|
-
"
|
|
5920
|
+
"epic:project": {
|
|
6021
5921
|
"aliases": [],
|
|
6022
|
-
"args": {
|
|
6023
|
-
|
|
5922
|
+
"args": {
|
|
5923
|
+
"epicId": {
|
|
5924
|
+
"description": "Epic ID",
|
|
5925
|
+
"name": "epicId",
|
|
5926
|
+
"required": false
|
|
5927
|
+
},
|
|
5928
|
+
"targetProject": {
|
|
5929
|
+
"description": "Target project ID",
|
|
5930
|
+
"name": "targetProject",
|
|
5931
|
+
"required": false
|
|
5932
|
+
}
|
|
5933
|
+
},
|
|
5934
|
+
"description": "Move an epic to a different project (optionally with its tickets)",
|
|
6024
5935
|
"examples": [
|
|
6025
|
-
"<%= config.bin %> <%= command.id %>",
|
|
6026
|
-
"<%= config.bin %> <%= command.id %> --
|
|
6027
|
-
"<%= config.bin %> <%= command.id %>
|
|
6028
|
-
"<%= config.bin %> <%= command.id %>
|
|
5936
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 new-project",
|
|
5937
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 new-project --with-tickets",
|
|
5938
|
+
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
5939
|
+
"<%= config.bin %> <%= command.id %>"
|
|
6029
5940
|
],
|
|
6030
5941
|
"flags": {
|
|
5942
|
+
"project": {
|
|
5943
|
+
"char": "P",
|
|
5944
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
5945
|
+
"name": "project",
|
|
5946
|
+
"hasDynamicHelp": false,
|
|
5947
|
+
"multiple": false,
|
|
5948
|
+
"type": "option"
|
|
5949
|
+
},
|
|
6031
5950
|
"json": {
|
|
6032
5951
|
"description": "Output as JSON for AI agents/scripts",
|
|
6033
5952
|
"name": "json",
|
|
@@ -6041,69 +5960,58 @@
|
|
|
6041
5960
|
"allowNo": false,
|
|
6042
5961
|
"type": "boolean"
|
|
6043
5962
|
},
|
|
6044
|
-
"
|
|
6045
|
-
"char": "
|
|
6046
|
-
"description": "
|
|
6047
|
-
"name": "
|
|
6048
|
-
"
|
|
6049
|
-
"
|
|
6050
|
-
"options": [
|
|
6051
|
-
"bug",
|
|
6052
|
-
"feature",
|
|
6053
|
-
"general"
|
|
6054
|
-
],
|
|
6055
|
-
"type": "option"
|
|
6056
|
-
},
|
|
6057
|
-
"state": {
|
|
6058
|
-
"char": "s",
|
|
6059
|
-
"description": "Filter by state",
|
|
6060
|
-
"name": "state",
|
|
6061
|
-
"default": "open",
|
|
6062
|
-
"hasDynamicHelp": false,
|
|
6063
|
-
"multiple": false,
|
|
6064
|
-
"options": [
|
|
6065
|
-
"open",
|
|
6066
|
-
"closed",
|
|
6067
|
-
"all"
|
|
6068
|
-
],
|
|
6069
|
-
"type": "option"
|
|
6070
|
-
},
|
|
6071
|
-
"limit": {
|
|
6072
|
-
"char": "l",
|
|
6073
|
-
"description": "Maximum number of issues to show",
|
|
6074
|
-
"name": "limit",
|
|
6075
|
-
"default": 20,
|
|
6076
|
-
"hasDynamicHelp": false,
|
|
6077
|
-
"multiple": false,
|
|
6078
|
-
"type": "option"
|
|
5963
|
+
"with-tickets": {
|
|
5964
|
+
"char": "t",
|
|
5965
|
+
"description": "Also move all tickets assigned to this epic",
|
|
5966
|
+
"name": "with-tickets",
|
|
5967
|
+
"allowNo": false,
|
|
5968
|
+
"type": "boolean"
|
|
6079
5969
|
}
|
|
6080
5970
|
},
|
|
6081
5971
|
"hasDynamicHelp": false,
|
|
6082
5972
|
"hiddenAliases": [],
|
|
6083
|
-
"id": "
|
|
5973
|
+
"id": "epic:project",
|
|
6084
5974
|
"pluginAlias": "@proletariat/cli",
|
|
6085
5975
|
"pluginName": "@proletariat/cli",
|
|
6086
5976
|
"pluginType": "core",
|
|
6087
5977
|
"strict": true,
|
|
6088
|
-
"enableJsonFlag": false,
|
|
6089
5978
|
"isESM": true,
|
|
6090
5979
|
"relativePath": [
|
|
6091
5980
|
"dist",
|
|
6092
5981
|
"commands",
|
|
6093
|
-
"
|
|
6094
|
-
"
|
|
5982
|
+
"epic",
|
|
5983
|
+
"project.js"
|
|
6095
5984
|
]
|
|
6096
5985
|
},
|
|
6097
|
-
"
|
|
5986
|
+
"epic:reorder": {
|
|
6098
5987
|
"aliases": [],
|
|
6099
|
-
"args": {
|
|
6100
|
-
|
|
5988
|
+
"args": {
|
|
5989
|
+
"id": {
|
|
5990
|
+
"description": "Epic ID to reorder",
|
|
5991
|
+
"name": "id",
|
|
5992
|
+
"required": false
|
|
5993
|
+
},
|
|
5994
|
+
"position": {
|
|
5995
|
+
"description": "New position (1-based rank)",
|
|
5996
|
+
"name": "position",
|
|
5997
|
+
"required": false
|
|
5998
|
+
}
|
|
5999
|
+
},
|
|
6000
|
+
"description": "Reorder epic priority/rank",
|
|
6101
6001
|
"examples": [
|
|
6102
|
-
"<%= config.bin %> <%= command.id %>",
|
|
6103
|
-
"<%= config.bin %> <%= command.id %>
|
|
6104
|
-
"<%= config.bin %> <%= command.id %> --
|
|
6002
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 1",
|
|
6003
|
+
"<%= config.bin %> <%= command.id %> EPIC-003 --first",
|
|
6004
|
+
"<%= config.bin %> <%= command.id %> EPIC-002 --after EPIC-001"
|
|
6105
6005
|
],
|
|
6106
6006
|
"flags": {
|
|
6007
|
+
"project": {
|
|
6008
|
+
"char": "P",
|
|
6009
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6010
|
+
"name": "project",
|
|
6011
|
+
"hasDynamicHelp": false,
|
|
6012
|
+
"multiple": false,
|
|
6013
|
+
"type": "option"
|
|
6014
|
+
},
|
|
6107
6015
|
"json": {
|
|
6108
6016
|
"description": "Output as JSON for AI agents/scripts",
|
|
6109
6017
|
"name": "json",
|
|
@@ -6117,39 +6025,56 @@
|
|
|
6117
6025
|
"allowNo": false,
|
|
6118
6026
|
"type": "boolean"
|
|
6119
6027
|
},
|
|
6120
|
-
"
|
|
6121
|
-
"
|
|
6122
|
-
"
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
|
|
6126
|
-
|
|
6028
|
+
"first": {
|
|
6029
|
+
"description": "Move to first position (highest priority)",
|
|
6030
|
+
"exclusive": [
|
|
6031
|
+
"last",
|
|
6032
|
+
"after",
|
|
6033
|
+
"before"
|
|
6034
|
+
],
|
|
6035
|
+
"name": "first",
|
|
6036
|
+
"allowNo": false,
|
|
6037
|
+
"type": "boolean"
|
|
6127
6038
|
},
|
|
6128
|
-
"
|
|
6129
|
-
"
|
|
6130
|
-
"
|
|
6131
|
-
|
|
6039
|
+
"last": {
|
|
6040
|
+
"description": "Move to last position (lowest priority)",
|
|
6041
|
+
"exclusive": [
|
|
6042
|
+
"first",
|
|
6043
|
+
"after",
|
|
6044
|
+
"before"
|
|
6045
|
+
],
|
|
6046
|
+
"name": "last",
|
|
6047
|
+
"allowNo": false,
|
|
6048
|
+
"type": "boolean"
|
|
6049
|
+
},
|
|
6050
|
+
"after": {
|
|
6051
|
+
"description": "Move after this epic ID",
|
|
6052
|
+
"exclusive": [
|
|
6053
|
+
"first",
|
|
6054
|
+
"last",
|
|
6055
|
+
"before"
|
|
6056
|
+
],
|
|
6057
|
+
"name": "after",
|
|
6132
6058
|
"hasDynamicHelp": false,
|
|
6133
6059
|
"multiple": false,
|
|
6134
6060
|
"type": "option"
|
|
6135
6061
|
},
|
|
6136
|
-
"
|
|
6137
|
-
"
|
|
6138
|
-
"
|
|
6139
|
-
|
|
6062
|
+
"before": {
|
|
6063
|
+
"description": "Move before this epic ID",
|
|
6064
|
+
"exclusive": [
|
|
6065
|
+
"first",
|
|
6066
|
+
"last",
|
|
6067
|
+
"after"
|
|
6068
|
+
],
|
|
6069
|
+
"name": "before",
|
|
6140
6070
|
"hasDynamicHelp": false,
|
|
6141
6071
|
"multiple": false,
|
|
6142
|
-
"options": [
|
|
6143
|
-
"bug",
|
|
6144
|
-
"feature",
|
|
6145
|
-
"general"
|
|
6146
|
-
],
|
|
6147
6072
|
"type": "option"
|
|
6148
6073
|
}
|
|
6149
6074
|
},
|
|
6150
6075
|
"hasDynamicHelp": false,
|
|
6151
6076
|
"hiddenAliases": [],
|
|
6152
|
-
"id": "
|
|
6077
|
+
"id": "epic:reorder",
|
|
6153
6078
|
"pluginAlias": "@proletariat/cli",
|
|
6154
6079
|
"pluginName": "@proletariat/cli",
|
|
6155
6080
|
"pluginType": "core",
|
|
@@ -6158,25 +6083,33 @@
|
|
|
6158
6083
|
"relativePath": [
|
|
6159
6084
|
"dist",
|
|
6160
6085
|
"commands",
|
|
6161
|
-
"
|
|
6162
|
-
"
|
|
6086
|
+
"epic",
|
|
6087
|
+
"reorder.js"
|
|
6163
6088
|
]
|
|
6164
6089
|
},
|
|
6165
|
-
"
|
|
6090
|
+
"epic:show": {
|
|
6166
6091
|
"aliases": [],
|
|
6167
6092
|
"args": {
|
|
6168
|
-
"
|
|
6169
|
-
"description": "
|
|
6170
|
-
"name": "
|
|
6171
|
-
"required":
|
|
6093
|
+
"id": {
|
|
6094
|
+
"description": "Epic ID",
|
|
6095
|
+
"name": "id",
|
|
6096
|
+
"required": false
|
|
6172
6097
|
}
|
|
6173
6098
|
},
|
|
6174
|
-
"description": "View details
|
|
6099
|
+
"description": "View epic details and linked tickets (alias for epic view)",
|
|
6175
6100
|
"examples": [
|
|
6176
|
-
"<%= config.bin %> <%= command.id %>
|
|
6177
|
-
"<%= config.bin %> <%= command.id %>
|
|
6101
|
+
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
6102
|
+
"<%= config.bin %> <%= command.id %>"
|
|
6178
6103
|
],
|
|
6179
6104
|
"flags": {
|
|
6105
|
+
"project": {
|
|
6106
|
+
"char": "P",
|
|
6107
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6108
|
+
"name": "project",
|
|
6109
|
+
"hasDynamicHelp": false,
|
|
6110
|
+
"multiple": false,
|
|
6111
|
+
"type": "option"
|
|
6112
|
+
},
|
|
6180
6113
|
"json": {
|
|
6181
6114
|
"description": "Output as JSON for AI agents/scripts",
|
|
6182
6115
|
"name": "json",
|
|
@@ -6192,32 +6125,50 @@
|
|
|
6192
6125
|
}
|
|
6193
6126
|
},
|
|
6194
6127
|
"hasDynamicHelp": false,
|
|
6128
|
+
"hidden": true,
|
|
6195
6129
|
"hiddenAliases": [],
|
|
6196
|
-
"id": "
|
|
6130
|
+
"id": "epic:show",
|
|
6197
6131
|
"pluginAlias": "@proletariat/cli",
|
|
6198
6132
|
"pluginName": "@proletariat/cli",
|
|
6199
6133
|
"pluginType": "core",
|
|
6200
|
-
"strict": true,
|
|
6201
|
-
"enableJsonFlag": false,
|
|
6202
6134
|
"isESM": true,
|
|
6203
6135
|
"relativePath": [
|
|
6204
6136
|
"dist",
|
|
6205
6137
|
"commands",
|
|
6206
|
-
"
|
|
6207
|
-
"
|
|
6138
|
+
"epic",
|
|
6139
|
+
"show.js"
|
|
6208
6140
|
]
|
|
6209
6141
|
},
|
|
6210
|
-
"
|
|
6142
|
+
"epic:spec": {
|
|
6211
6143
|
"aliases": [],
|
|
6212
|
-
"args": {
|
|
6213
|
-
|
|
6144
|
+
"args": {
|
|
6145
|
+
"epicId": {
|
|
6146
|
+
"description": "Epic ID",
|
|
6147
|
+
"name": "epicId",
|
|
6148
|
+
"required": false
|
|
6149
|
+
},
|
|
6150
|
+
"specId": {
|
|
6151
|
+
"description": "Spec ID to link",
|
|
6152
|
+
"name": "specId",
|
|
6153
|
+
"required": false
|
|
6154
|
+
}
|
|
6155
|
+
},
|
|
6156
|
+
"description": "Assign a spec to an epic (design document)",
|
|
6214
6157
|
"examples": [
|
|
6158
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 SPEC-001",
|
|
6159
|
+
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
6215
6160
|
"<%= config.bin %> <%= command.id %>",
|
|
6216
|
-
"<%= config.bin %> <%= command.id %>
|
|
6217
|
-
"<%= config.bin %> <%= command.id %> login",
|
|
6218
|
-
"<%= config.bin %> <%= command.id %> token"
|
|
6161
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --unlink"
|
|
6219
6162
|
],
|
|
6220
6163
|
"flags": {
|
|
6164
|
+
"project": {
|
|
6165
|
+
"char": "P",
|
|
6166
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6167
|
+
"name": "project",
|
|
6168
|
+
"hasDynamicHelp": false,
|
|
6169
|
+
"multiple": false,
|
|
6170
|
+
"type": "option"
|
|
6171
|
+
},
|
|
6221
6172
|
"json": {
|
|
6222
6173
|
"description": "Output as JSON for AI agents/scripts",
|
|
6223
6174
|
"name": "json",
|
|
@@ -6230,70 +6181,67 @@
|
|
|
6230
6181
|
"name": "machine",
|
|
6231
6182
|
"allowNo": false,
|
|
6232
6183
|
"type": "boolean"
|
|
6233
|
-
}
|
|
6234
|
-
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
"pluginAlias": "@proletariat/cli",
|
|
6239
|
-
"pluginName": "@proletariat/cli",
|
|
6240
|
-
"pluginType": "core",
|
|
6241
|
-
"strict": true,
|
|
6242
|
-
"enableJsonFlag": false,
|
|
6243
|
-
"isESM": true,
|
|
6244
|
-
"relativePath": [
|
|
6245
|
-
"dist",
|
|
6246
|
-
"commands",
|
|
6247
|
-
"gh",
|
|
6248
|
-
"index.js"
|
|
6249
|
-
]
|
|
6250
|
-
},
|
|
6251
|
-
"gh:login": {
|
|
6252
|
-
"aliases": [],
|
|
6253
|
-
"args": {},
|
|
6254
|
-
"description": "Login to GitHub CLI for PR workflow",
|
|
6255
|
-
"examples": [
|
|
6256
|
-
"<%= config.bin %> <%= command.id %>"
|
|
6257
|
-
],
|
|
6258
|
-
"flags": {
|
|
6259
|
-
"json": {
|
|
6260
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6261
|
-
"name": "json",
|
|
6184
|
+
},
|
|
6185
|
+
"unlink": {
|
|
6186
|
+
"char": "u",
|
|
6187
|
+
"description": "Remove spec from epic instead of adding",
|
|
6188
|
+
"name": "unlink",
|
|
6262
6189
|
"allowNo": false,
|
|
6263
6190
|
"type": "boolean"
|
|
6264
6191
|
},
|
|
6265
|
-
"
|
|
6266
|
-
"
|
|
6267
|
-
"
|
|
6268
|
-
"name": "machine",
|
|
6192
|
+
"align-tickets": {
|
|
6193
|
+
"description": "Also update all tickets in the epic to use the same spec",
|
|
6194
|
+
"name": "align-tickets",
|
|
6269
6195
|
"allowNo": false,
|
|
6270
6196
|
"type": "boolean"
|
|
6271
6197
|
}
|
|
6272
6198
|
},
|
|
6273
6199
|
"hasDynamicHelp": false,
|
|
6274
6200
|
"hiddenAliases": [],
|
|
6275
|
-
"id": "
|
|
6201
|
+
"id": "epic:spec",
|
|
6276
6202
|
"pluginAlias": "@proletariat/cli",
|
|
6277
6203
|
"pluginName": "@proletariat/cli",
|
|
6278
6204
|
"pluginType": "core",
|
|
6279
6205
|
"strict": true,
|
|
6280
|
-
"enableJsonFlag": false,
|
|
6281
6206
|
"isESM": true,
|
|
6282
6207
|
"relativePath": [
|
|
6283
6208
|
"dist",
|
|
6284
6209
|
"commands",
|
|
6285
|
-
"
|
|
6286
|
-
"
|
|
6210
|
+
"epic",
|
|
6211
|
+
"spec.js"
|
|
6287
6212
|
]
|
|
6288
6213
|
},
|
|
6289
|
-
"
|
|
6214
|
+
"epic:ticket": {
|
|
6290
6215
|
"aliases": [],
|
|
6291
|
-
"args": {
|
|
6292
|
-
|
|
6216
|
+
"args": {
|
|
6217
|
+
"id": {
|
|
6218
|
+
"description": "Epic ID",
|
|
6219
|
+
"name": "id",
|
|
6220
|
+
"required": false
|
|
6221
|
+
},
|
|
6222
|
+
"tickets": {
|
|
6223
|
+
"description": "Ticket IDs to link (space-separated)",
|
|
6224
|
+
"name": "tickets",
|
|
6225
|
+
"required": false
|
|
6226
|
+
}
|
|
6227
|
+
},
|
|
6228
|
+
"description": "Assign tickets to an epic, or link epic to a spec (parent-child)",
|
|
6293
6229
|
"examples": [
|
|
6294
|
-
"<%= config.bin %> <%= command.id %>"
|
|
6230
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 TKT-001 TKT-002",
|
|
6231
|
+
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
6232
|
+
"<%= config.bin %> <%= command.id %>",
|
|
6233
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --unlink TKT-001",
|
|
6234
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --spec SPEC-001"
|
|
6295
6235
|
],
|
|
6296
6236
|
"flags": {
|
|
6237
|
+
"project": {
|
|
6238
|
+
"char": "P",
|
|
6239
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6240
|
+
"name": "project",
|
|
6241
|
+
"hasDynamicHelp": false,
|
|
6242
|
+
"multiple": false,
|
|
6243
|
+
"type": "option"
|
|
6244
|
+
},
|
|
6297
6245
|
"json": {
|
|
6298
6246
|
"description": "Output as JSON for AI agents/scripts",
|
|
6299
6247
|
"name": "json",
|
|
@@ -6306,32 +6254,85 @@
|
|
|
6306
6254
|
"name": "machine",
|
|
6307
6255
|
"allowNo": false,
|
|
6308
6256
|
"type": "boolean"
|
|
6257
|
+
},
|
|
6258
|
+
"unlink": {
|
|
6259
|
+
"char": "u",
|
|
6260
|
+
"description": "Remove tickets from this epic instead of adding",
|
|
6261
|
+
"name": "unlink",
|
|
6262
|
+
"allowNo": false,
|
|
6263
|
+
"type": "boolean"
|
|
6264
|
+
},
|
|
6265
|
+
"spec": {
|
|
6266
|
+
"char": "s",
|
|
6267
|
+
"description": "Link epic to a spec (design document)",
|
|
6268
|
+
"name": "spec",
|
|
6269
|
+
"hasDynamicHelp": false,
|
|
6270
|
+
"multiple": false,
|
|
6271
|
+
"type": "option"
|
|
6272
|
+
},
|
|
6273
|
+
"unlink-spec": {
|
|
6274
|
+
"description": "Remove spec link from epic",
|
|
6275
|
+
"name": "unlink-spec",
|
|
6276
|
+
"allowNo": false,
|
|
6277
|
+
"type": "boolean"
|
|
6278
|
+
},
|
|
6279
|
+
"reconcile": {
|
|
6280
|
+
"description": "How to handle spec mismatch: keep (keep ticket spec), epic (use epic spec), skip",
|
|
6281
|
+
"name": "reconcile",
|
|
6282
|
+
"hasDynamicHelp": false,
|
|
6283
|
+
"multiple": false,
|
|
6284
|
+
"options": [
|
|
6285
|
+
"keep",
|
|
6286
|
+
"epic",
|
|
6287
|
+
"skip"
|
|
6288
|
+
],
|
|
6289
|
+
"type": "option"
|
|
6290
|
+
},
|
|
6291
|
+
"inherit-spec": {
|
|
6292
|
+
"description": "Inherit spec from epic when ticket has no spec",
|
|
6293
|
+
"name": "inherit-spec",
|
|
6294
|
+
"allowNo": true,
|
|
6295
|
+
"type": "boolean"
|
|
6309
6296
|
}
|
|
6310
6297
|
},
|
|
6311
6298
|
"hasDynamicHelp": false,
|
|
6312
6299
|
"hiddenAliases": [],
|
|
6313
|
-
"id": "
|
|
6300
|
+
"id": "epic:ticket",
|
|
6314
6301
|
"pluginAlias": "@proletariat/cli",
|
|
6315
6302
|
"pluginName": "@proletariat/cli",
|
|
6316
6303
|
"pluginType": "core",
|
|
6317
|
-
"strict":
|
|
6318
|
-
"enableJsonFlag": false,
|
|
6304
|
+
"strict": false,
|
|
6319
6305
|
"isESM": true,
|
|
6320
6306
|
"relativePath": [
|
|
6321
6307
|
"dist",
|
|
6322
6308
|
"commands",
|
|
6323
|
-
"
|
|
6324
|
-
"
|
|
6309
|
+
"epic",
|
|
6310
|
+
"ticket.js"
|
|
6325
6311
|
]
|
|
6326
6312
|
},
|
|
6327
|
-
"
|
|
6313
|
+
"epic:view": {
|
|
6328
6314
|
"aliases": [],
|
|
6329
|
-
"args": {
|
|
6330
|
-
|
|
6315
|
+
"args": {
|
|
6316
|
+
"id": {
|
|
6317
|
+
"description": "Epic ID",
|
|
6318
|
+
"name": "id",
|
|
6319
|
+
"required": false
|
|
6320
|
+
}
|
|
6321
|
+
},
|
|
6322
|
+
"description": "View epic details and linked tickets",
|
|
6331
6323
|
"examples": [
|
|
6324
|
+
"<%= config.bin %> <%= command.id %> EPIC-001",
|
|
6332
6325
|
"<%= config.bin %> <%= command.id %>"
|
|
6333
6326
|
],
|
|
6334
6327
|
"flags": {
|
|
6328
|
+
"project": {
|
|
6329
|
+
"char": "P",
|
|
6330
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6331
|
+
"name": "project",
|
|
6332
|
+
"hasDynamicHelp": false,
|
|
6333
|
+
"multiple": false,
|
|
6334
|
+
"type": "option"
|
|
6335
|
+
},
|
|
6335
6336
|
"json": {
|
|
6336
6337
|
"description": "Output as JSON for AI agents/scripts",
|
|
6337
6338
|
"name": "json",
|
|
@@ -6348,18 +6349,17 @@
|
|
|
6348
6349
|
},
|
|
6349
6350
|
"hasDynamicHelp": false,
|
|
6350
6351
|
"hiddenAliases": [],
|
|
6351
|
-
"id": "
|
|
6352
|
+
"id": "epic:view",
|
|
6352
6353
|
"pluginAlias": "@proletariat/cli",
|
|
6353
6354
|
"pluginName": "@proletariat/cli",
|
|
6354
6355
|
"pluginType": "core",
|
|
6355
6356
|
"strict": true,
|
|
6356
|
-
"enableJsonFlag": false,
|
|
6357
6357
|
"isESM": true,
|
|
6358
6358
|
"relativePath": [
|
|
6359
6359
|
"dist",
|
|
6360
6360
|
"commands",
|
|
6361
|
-
"
|
|
6362
|
-
"
|
|
6361
|
+
"epic",
|
|
6362
|
+
"view.js"
|
|
6363
6363
|
]
|
|
6364
6364
|
},
|
|
6365
6365
|
"label:create": {
|
|
@@ -8107,95 +8107,6 @@
|
|
|
8107
8107
|
"stop.js"
|
|
8108
8108
|
]
|
|
8109
8109
|
},
|
|
8110
|
-
"pmo:init": {
|
|
8111
|
-
"aliases": [],
|
|
8112
|
-
"args": {},
|
|
8113
|
-
"description": "Initialize PMO (Project Management Org) in current directory or HQ",
|
|
8114
|
-
"examples": [
|
|
8115
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8116
|
-
"<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
|
|
8117
|
-
"<%= config.bin %> <%= command.id %> --location separate --template linear"
|
|
8118
|
-
],
|
|
8119
|
-
"flags": {
|
|
8120
|
-
"location": {
|
|
8121
|
-
"char": "l",
|
|
8122
|
-
"description": "PMO location (separate or repo:name)",
|
|
8123
|
-
"name": "location",
|
|
8124
|
-
"hasDynamicHelp": false,
|
|
8125
|
-
"multiple": false,
|
|
8126
|
-
"type": "option"
|
|
8127
|
-
},
|
|
8128
|
-
"template": {
|
|
8129
|
-
"char": "t",
|
|
8130
|
-
"description": "Board template",
|
|
8131
|
-
"name": "template",
|
|
8132
|
-
"hasDynamicHelp": false,
|
|
8133
|
-
"multiple": false,
|
|
8134
|
-
"options": [
|
|
8135
|
-
"kanban",
|
|
8136
|
-
"linear",
|
|
8137
|
-
"5-tool-founder",
|
|
8138
|
-
"custom"
|
|
8139
|
-
],
|
|
8140
|
-
"type": "option"
|
|
8141
|
-
},
|
|
8142
|
-
"name": {
|
|
8143
|
-
"char": "n",
|
|
8144
|
-
"description": "Board name",
|
|
8145
|
-
"name": "name",
|
|
8146
|
-
"hasDynamicHelp": false,
|
|
8147
|
-
"multiple": false,
|
|
8148
|
-
"type": "option"
|
|
8149
|
-
},
|
|
8150
|
-
"json": {
|
|
8151
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8152
|
-
"name": "json",
|
|
8153
|
-
"allowNo": false,
|
|
8154
|
-
"type": "boolean"
|
|
8155
|
-
},
|
|
8156
|
-
"machine": {
|
|
8157
|
-
"char": "m",
|
|
8158
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8159
|
-
"name": "machine",
|
|
8160
|
-
"allowNo": false,
|
|
8161
|
-
"type": "boolean"
|
|
8162
|
-
},
|
|
8163
|
-
"action": {
|
|
8164
|
-
"description": "Action for existing PMO (cancel or reinitialize)",
|
|
8165
|
-
"hidden": true,
|
|
8166
|
-
"name": "action",
|
|
8167
|
-
"hasDynamicHelp": false,
|
|
8168
|
-
"multiple": false,
|
|
8169
|
-
"options": [
|
|
8170
|
-
"cancel",
|
|
8171
|
-
"reinitialize"
|
|
8172
|
-
],
|
|
8173
|
-
"type": "option"
|
|
8174
|
-
},
|
|
8175
|
-
"confirmation": {
|
|
8176
|
-
"description": "Confirmation text for destructive operations",
|
|
8177
|
-
"hidden": true,
|
|
8178
|
-
"name": "confirmation",
|
|
8179
|
-
"hasDynamicHelp": false,
|
|
8180
|
-
"multiple": false,
|
|
8181
|
-
"type": "option"
|
|
8182
|
-
}
|
|
8183
|
-
},
|
|
8184
|
-
"hasDynamicHelp": false,
|
|
8185
|
-
"hiddenAliases": [],
|
|
8186
|
-
"id": "pmo:init",
|
|
8187
|
-
"pluginAlias": "@proletariat/cli",
|
|
8188
|
-
"pluginName": "@proletariat/cli",
|
|
8189
|
-
"pluginType": "core",
|
|
8190
|
-
"strict": true,
|
|
8191
|
-
"isESM": true,
|
|
8192
|
-
"relativePath": [
|
|
8193
|
-
"dist",
|
|
8194
|
-
"commands",
|
|
8195
|
-
"pmo",
|
|
8196
|
-
"init.js"
|
|
8197
|
-
]
|
|
8198
|
-
},
|
|
8199
8110
|
"phase:create": {
|
|
8200
8111
|
"aliases": [],
|
|
8201
8112
|
"args": {
|
|
@@ -8577,8 +8488,97 @@
|
|
|
8577
8488
|
"relativePath": [
|
|
8578
8489
|
"dist",
|
|
8579
8490
|
"commands",
|
|
8580
|
-
"phase",
|
|
8581
|
-
"update.js"
|
|
8491
|
+
"phase",
|
|
8492
|
+
"update.js"
|
|
8493
|
+
]
|
|
8494
|
+
},
|
|
8495
|
+
"pmo:init": {
|
|
8496
|
+
"aliases": [],
|
|
8497
|
+
"args": {},
|
|
8498
|
+
"description": "Initialize PMO (Project Management Org) in current directory or HQ",
|
|
8499
|
+
"examples": [
|
|
8500
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8501
|
+
"<%= config.bin %> <%= command.id %> --location repo:proletariat --template 5-tool",
|
|
8502
|
+
"<%= config.bin %> <%= command.id %> --location separate --template linear"
|
|
8503
|
+
],
|
|
8504
|
+
"flags": {
|
|
8505
|
+
"location": {
|
|
8506
|
+
"char": "l",
|
|
8507
|
+
"description": "PMO location (separate or repo:name)",
|
|
8508
|
+
"name": "location",
|
|
8509
|
+
"hasDynamicHelp": false,
|
|
8510
|
+
"multiple": false,
|
|
8511
|
+
"type": "option"
|
|
8512
|
+
},
|
|
8513
|
+
"template": {
|
|
8514
|
+
"char": "t",
|
|
8515
|
+
"description": "Board template",
|
|
8516
|
+
"name": "template",
|
|
8517
|
+
"hasDynamicHelp": false,
|
|
8518
|
+
"multiple": false,
|
|
8519
|
+
"options": [
|
|
8520
|
+
"kanban",
|
|
8521
|
+
"linear",
|
|
8522
|
+
"5-tool-founder",
|
|
8523
|
+
"custom"
|
|
8524
|
+
],
|
|
8525
|
+
"type": "option"
|
|
8526
|
+
},
|
|
8527
|
+
"name": {
|
|
8528
|
+
"char": "n",
|
|
8529
|
+
"description": "Board name",
|
|
8530
|
+
"name": "name",
|
|
8531
|
+
"hasDynamicHelp": false,
|
|
8532
|
+
"multiple": false,
|
|
8533
|
+
"type": "option"
|
|
8534
|
+
},
|
|
8535
|
+
"json": {
|
|
8536
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8537
|
+
"name": "json",
|
|
8538
|
+
"allowNo": false,
|
|
8539
|
+
"type": "boolean"
|
|
8540
|
+
},
|
|
8541
|
+
"machine": {
|
|
8542
|
+
"char": "m",
|
|
8543
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8544
|
+
"name": "machine",
|
|
8545
|
+
"allowNo": false,
|
|
8546
|
+
"type": "boolean"
|
|
8547
|
+
},
|
|
8548
|
+
"action": {
|
|
8549
|
+
"description": "Action for existing PMO (cancel or reinitialize)",
|
|
8550
|
+
"hidden": true,
|
|
8551
|
+
"name": "action",
|
|
8552
|
+
"hasDynamicHelp": false,
|
|
8553
|
+
"multiple": false,
|
|
8554
|
+
"options": [
|
|
8555
|
+
"cancel",
|
|
8556
|
+
"reinitialize"
|
|
8557
|
+
],
|
|
8558
|
+
"type": "option"
|
|
8559
|
+
},
|
|
8560
|
+
"confirmation": {
|
|
8561
|
+
"description": "Confirmation text for destructive operations",
|
|
8562
|
+
"hidden": true,
|
|
8563
|
+
"name": "confirmation",
|
|
8564
|
+
"hasDynamicHelp": false,
|
|
8565
|
+
"multiple": false,
|
|
8566
|
+
"type": "option"
|
|
8567
|
+
}
|
|
8568
|
+
},
|
|
8569
|
+
"hasDynamicHelp": false,
|
|
8570
|
+
"hiddenAliases": [],
|
|
8571
|
+
"id": "pmo:init",
|
|
8572
|
+
"pluginAlias": "@proletariat/cli",
|
|
8573
|
+
"pluginName": "@proletariat/cli",
|
|
8574
|
+
"pluginType": "core",
|
|
8575
|
+
"strict": true,
|
|
8576
|
+
"isESM": true,
|
|
8577
|
+
"relativePath": [
|
|
8578
|
+
"dist",
|
|
8579
|
+
"commands",
|
|
8580
|
+
"pmo",
|
|
8581
|
+
"init.js"
|
|
8582
8582
|
]
|
|
8583
8583
|
},
|
|
8584
8584
|
"pr:checks": {
|
|
@@ -10052,6 +10052,13 @@
|
|
|
10052
10052
|
"name": "bulk",
|
|
10053
10053
|
"allowNo": false,
|
|
10054
10054
|
"type": "boolean"
|
|
10055
|
+
},
|
|
10056
|
+
"force": {
|
|
10057
|
+
"char": "f",
|
|
10058
|
+
"description": "Skip archived repository warning",
|
|
10059
|
+
"name": "force",
|
|
10060
|
+
"allowNo": false,
|
|
10061
|
+
"type": "boolean"
|
|
10055
10062
|
}
|
|
10056
10063
|
},
|
|
10057
10064
|
"hasDynamicHelp": false,
|
|
@@ -10433,6 +10440,99 @@
|
|
|
10433
10440
|
"view.js"
|
|
10434
10441
|
]
|
|
10435
10442
|
},
|
|
10443
|
+
"run": {
|
|
10444
|
+
"aliases": [],
|
|
10445
|
+
"args": {
|
|
10446
|
+
"task": {
|
|
10447
|
+
"description": "Task description for the agent",
|
|
10448
|
+
"name": "task",
|
|
10449
|
+
"required": true
|
|
10450
|
+
}
|
|
10451
|
+
},
|
|
10452
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
10453
|
+
"examples": [
|
|
10454
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
10455
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
10456
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
10457
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
10458
|
+
],
|
|
10459
|
+
"flags": {
|
|
10460
|
+
"json": {
|
|
10461
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10462
|
+
"name": "json",
|
|
10463
|
+
"allowNo": false,
|
|
10464
|
+
"type": "boolean"
|
|
10465
|
+
},
|
|
10466
|
+
"machine": {
|
|
10467
|
+
"char": "m",
|
|
10468
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10469
|
+
"name": "machine",
|
|
10470
|
+
"allowNo": false,
|
|
10471
|
+
"type": "boolean"
|
|
10472
|
+
},
|
|
10473
|
+
"runner": {
|
|
10474
|
+
"char": "r",
|
|
10475
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
10476
|
+
"name": "runner",
|
|
10477
|
+
"hasDynamicHelp": false,
|
|
10478
|
+
"multiple": false,
|
|
10479
|
+
"type": "option"
|
|
10480
|
+
},
|
|
10481
|
+
"detached": {
|
|
10482
|
+
"char": "d",
|
|
10483
|
+
"description": "Run in background (detached)",
|
|
10484
|
+
"name": "detached",
|
|
10485
|
+
"allowNo": false,
|
|
10486
|
+
"type": "boolean"
|
|
10487
|
+
},
|
|
10488
|
+
"directory": {
|
|
10489
|
+
"description": "Working directory (default: cwd)",
|
|
10490
|
+
"name": "directory",
|
|
10491
|
+
"hasDynamicHelp": false,
|
|
10492
|
+
"multiple": false,
|
|
10493
|
+
"type": "option"
|
|
10494
|
+
},
|
|
10495
|
+
"permission-mode": {
|
|
10496
|
+
"char": "p",
|
|
10497
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
10498
|
+
"name": "permission-mode",
|
|
10499
|
+
"hasDynamicHelp": false,
|
|
10500
|
+
"multiple": false,
|
|
10501
|
+
"options": [
|
|
10502
|
+
"danger",
|
|
10503
|
+
"safe"
|
|
10504
|
+
],
|
|
10505
|
+
"type": "option"
|
|
10506
|
+
},
|
|
10507
|
+
"environment": {
|
|
10508
|
+
"char": "e",
|
|
10509
|
+
"description": "Environment to run in",
|
|
10510
|
+
"name": "environment",
|
|
10511
|
+
"hasDynamicHelp": false,
|
|
10512
|
+
"multiple": false,
|
|
10513
|
+
"options": [
|
|
10514
|
+
"host",
|
|
10515
|
+
"docker",
|
|
10516
|
+
"podman"
|
|
10517
|
+
],
|
|
10518
|
+
"type": "option"
|
|
10519
|
+
}
|
|
10520
|
+
},
|
|
10521
|
+
"hasDynamicHelp": false,
|
|
10522
|
+
"hiddenAliases": [],
|
|
10523
|
+
"id": "run",
|
|
10524
|
+
"pluginAlias": "@proletariat/cli",
|
|
10525
|
+
"pluginName": "@proletariat/cli",
|
|
10526
|
+
"pluginType": "core",
|
|
10527
|
+
"strict": true,
|
|
10528
|
+
"isESM": true,
|
|
10529
|
+
"relativePath": [
|
|
10530
|
+
"dist",
|
|
10531
|
+
"commands",
|
|
10532
|
+
"run",
|
|
10533
|
+
"index.js"
|
|
10534
|
+
]
|
|
10535
|
+
},
|
|
10436
10536
|
"roadmap:add-project": {
|
|
10437
10537
|
"aliases": [],
|
|
10438
10538
|
"args": {
|
|
@@ -10979,172 +11079,27 @@
|
|
|
10979
11079
|
"description": "New roadmap name",
|
|
10980
11080
|
"name": "name",
|
|
10981
11081
|
"hasDynamicHelp": false,
|
|
10982
|
-
"multiple": false,
|
|
10983
|
-
"type": "option"
|
|
10984
|
-
},
|
|
10985
|
-
"description": {
|
|
10986
|
-
"char": "d",
|
|
10987
|
-
"description": "New roadmap description",
|
|
10988
|
-
"name": "description",
|
|
10989
|
-
"hasDynamicHelp": false,
|
|
10990
|
-
"multiple": false,
|
|
10991
|
-
"type": "option"
|
|
10992
|
-
},
|
|
10993
|
-
"default": {
|
|
10994
|
-
"description": "Set as the default roadmap",
|
|
10995
|
-
"name": "default",
|
|
10996
|
-
"allowNo": true,
|
|
10997
|
-
"type": "boolean"
|
|
10998
|
-
}
|
|
10999
|
-
},
|
|
11000
|
-
"hasDynamicHelp": false,
|
|
11001
|
-
"hiddenAliases": [],
|
|
11002
|
-
"id": "roadmap:update",
|
|
11003
|
-
"pluginAlias": "@proletariat/cli",
|
|
11004
|
-
"pluginName": "@proletariat/cli",
|
|
11005
|
-
"pluginType": "core",
|
|
11006
|
-
"strict": true,
|
|
11007
|
-
"isESM": true,
|
|
11008
|
-
"relativePath": [
|
|
11009
|
-
"dist",
|
|
11010
|
-
"commands",
|
|
11011
|
-
"roadmap",
|
|
11012
|
-
"update.js"
|
|
11013
|
-
]
|
|
11014
|
-
},
|
|
11015
|
-
"roadmap:view": {
|
|
11016
|
-
"aliases": [],
|
|
11017
|
-
"args": {
|
|
11018
|
-
"id": {
|
|
11019
|
-
"description": "Roadmap ID to view",
|
|
11020
|
-
"name": "id",
|
|
11021
|
-
"required": false
|
|
11022
|
-
}
|
|
11023
|
-
},
|
|
11024
|
-
"description": "View roadmap details and its projects",
|
|
11025
|
-
"examples": [
|
|
11026
|
-
"<%= config.bin %> <%= command.id %> my-roadmap",
|
|
11027
|
-
"<%= config.bin %> <%= command.id %> # Interactive selection"
|
|
11028
|
-
],
|
|
11029
|
-
"flags": {
|
|
11030
|
-
"project": {
|
|
11031
|
-
"char": "P",
|
|
11032
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11033
|
-
"name": "project",
|
|
11034
|
-
"hasDynamicHelp": false,
|
|
11035
|
-
"multiple": false,
|
|
11036
|
-
"type": "option"
|
|
11037
|
-
},
|
|
11038
|
-
"json": {
|
|
11039
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11040
|
-
"name": "json",
|
|
11041
|
-
"allowNo": false,
|
|
11042
|
-
"type": "boolean"
|
|
11043
|
-
},
|
|
11044
|
-
"machine": {
|
|
11045
|
-
"char": "m",
|
|
11046
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11047
|
-
"name": "machine",
|
|
11048
|
-
"allowNo": false,
|
|
11049
|
-
"type": "boolean"
|
|
11050
|
-
}
|
|
11051
|
-
},
|
|
11052
|
-
"hasDynamicHelp": false,
|
|
11053
|
-
"hiddenAliases": [],
|
|
11054
|
-
"id": "roadmap:view",
|
|
11055
|
-
"pluginAlias": "@proletariat/cli",
|
|
11056
|
-
"pluginName": "@proletariat/cli",
|
|
11057
|
-
"pluginType": "core",
|
|
11058
|
-
"strict": true,
|
|
11059
|
-
"isESM": true,
|
|
11060
|
-
"relativePath": [
|
|
11061
|
-
"dist",
|
|
11062
|
-
"commands",
|
|
11063
|
-
"roadmap",
|
|
11064
|
-
"view.js"
|
|
11065
|
-
]
|
|
11066
|
-
},
|
|
11067
|
-
"run": {
|
|
11068
|
-
"aliases": [],
|
|
11069
|
-
"args": {
|
|
11070
|
-
"task": {
|
|
11071
|
-
"description": "Task description for the agent",
|
|
11072
|
-
"name": "task",
|
|
11073
|
-
"required": true
|
|
11074
|
-
}
|
|
11075
|
-
},
|
|
11076
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
11077
|
-
"examples": [
|
|
11078
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
11079
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
11080
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
11081
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
11082
|
-
],
|
|
11083
|
-
"flags": {
|
|
11084
|
-
"json": {
|
|
11085
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11086
|
-
"name": "json",
|
|
11087
|
-
"allowNo": false,
|
|
11088
|
-
"type": "boolean"
|
|
11089
|
-
},
|
|
11090
|
-
"machine": {
|
|
11091
|
-
"char": "m",
|
|
11092
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11093
|
-
"name": "machine",
|
|
11094
|
-
"allowNo": false,
|
|
11095
|
-
"type": "boolean"
|
|
11096
|
-
},
|
|
11097
|
-
"runner": {
|
|
11098
|
-
"char": "r",
|
|
11099
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
11100
|
-
"name": "runner",
|
|
11101
|
-
"hasDynamicHelp": false,
|
|
11102
|
-
"multiple": false,
|
|
11103
|
-
"type": "option"
|
|
11104
|
-
},
|
|
11105
|
-
"detached": {
|
|
11106
|
-
"char": "d",
|
|
11107
|
-
"description": "Run in background (detached)",
|
|
11108
|
-
"name": "detached",
|
|
11109
|
-
"allowNo": false,
|
|
11110
|
-
"type": "boolean"
|
|
11111
|
-
},
|
|
11112
|
-
"directory": {
|
|
11113
|
-
"description": "Working directory (default: cwd)",
|
|
11114
|
-
"name": "directory",
|
|
11115
|
-
"hasDynamicHelp": false,
|
|
11116
|
-
"multiple": false,
|
|
11117
|
-
"type": "option"
|
|
11118
|
-
},
|
|
11119
|
-
"permission-mode": {
|
|
11120
|
-
"char": "p",
|
|
11121
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
11122
|
-
"name": "permission-mode",
|
|
11123
|
-
"hasDynamicHelp": false,
|
|
11124
|
-
"multiple": false,
|
|
11125
|
-
"options": [
|
|
11126
|
-
"danger",
|
|
11127
|
-
"safe"
|
|
11128
|
-
],
|
|
11129
|
-
"type": "option"
|
|
11130
|
-
},
|
|
11131
|
-
"environment": {
|
|
11132
|
-
"char": "e",
|
|
11133
|
-
"description": "Environment to run in",
|
|
11134
|
-
"name": "environment",
|
|
11082
|
+
"multiple": false,
|
|
11083
|
+
"type": "option"
|
|
11084
|
+
},
|
|
11085
|
+
"description": {
|
|
11086
|
+
"char": "d",
|
|
11087
|
+
"description": "New roadmap description",
|
|
11088
|
+
"name": "description",
|
|
11135
11089
|
"hasDynamicHelp": false,
|
|
11136
11090
|
"multiple": false,
|
|
11137
|
-
"options": [
|
|
11138
|
-
"host",
|
|
11139
|
-
"docker",
|
|
11140
|
-
"podman"
|
|
11141
|
-
],
|
|
11142
11091
|
"type": "option"
|
|
11092
|
+
},
|
|
11093
|
+
"default": {
|
|
11094
|
+
"description": "Set as the default roadmap",
|
|
11095
|
+
"name": "default",
|
|
11096
|
+
"allowNo": true,
|
|
11097
|
+
"type": "boolean"
|
|
11143
11098
|
}
|
|
11144
11099
|
},
|
|
11145
11100
|
"hasDynamicHelp": false,
|
|
11146
11101
|
"hiddenAliases": [],
|
|
11147
|
-
"id": "
|
|
11102
|
+
"id": "roadmap:update",
|
|
11148
11103
|
"pluginAlias": "@proletariat/cli",
|
|
11149
11104
|
"pluginName": "@proletariat/cli",
|
|
11150
11105
|
"pluginType": "core",
|
|
@@ -11153,21 +11108,23 @@
|
|
|
11153
11108
|
"relativePath": [
|
|
11154
11109
|
"dist",
|
|
11155
11110
|
"commands",
|
|
11156
|
-
"
|
|
11157
|
-
"
|
|
11111
|
+
"roadmap",
|
|
11112
|
+
"update.js"
|
|
11158
11113
|
]
|
|
11159
11114
|
},
|
|
11160
|
-
"
|
|
11115
|
+
"roadmap:view": {
|
|
11161
11116
|
"aliases": [],
|
|
11162
|
-
"args": {
|
|
11163
|
-
|
|
11117
|
+
"args": {
|
|
11118
|
+
"id": {
|
|
11119
|
+
"description": "Roadmap ID to view",
|
|
11120
|
+
"name": "id",
|
|
11121
|
+
"required": false
|
|
11122
|
+
}
|
|
11123
|
+
},
|
|
11124
|
+
"description": "View roadmap details and its projects",
|
|
11164
11125
|
"examples": [
|
|
11165
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11166
|
-
"<%= config.bin %> <%= command.id %>
|
|
11167
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
11168
|
-
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
11169
|
-
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
11170
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
11126
|
+
"<%= config.bin %> <%= command.id %> my-roadmap",
|
|
11127
|
+
"<%= config.bin %> <%= command.id %> # Interactive selection"
|
|
11171
11128
|
],
|
|
11172
11129
|
"flags": {
|
|
11173
11130
|
"project": {
|
|
@@ -11190,29 +11147,11 @@
|
|
|
11190
11147
|
"name": "machine",
|
|
11191
11148
|
"allowNo": false,
|
|
11192
11149
|
"type": "boolean"
|
|
11193
|
-
},
|
|
11194
|
-
"check": {
|
|
11195
|
-
"description": "Only check if Shortcut credentials are valid (do not prompt)",
|
|
11196
|
-
"name": "check",
|
|
11197
|
-
"allowNo": false,
|
|
11198
|
-
"type": "boolean"
|
|
11199
|
-
},
|
|
11200
|
-
"force": {
|
|
11201
|
-
"description": "Force re-authentication even if credentials exist",
|
|
11202
|
-
"name": "force",
|
|
11203
|
-
"allowNo": false,
|
|
11204
|
-
"type": "boolean"
|
|
11205
|
-
},
|
|
11206
|
-
"disconnect": {
|
|
11207
|
-
"description": "Remove stored Shortcut credentials and configuration",
|
|
11208
|
-
"name": "disconnect",
|
|
11209
|
-
"allowNo": false,
|
|
11210
|
-
"type": "boolean"
|
|
11211
11150
|
}
|
|
11212
11151
|
},
|
|
11213
11152
|
"hasDynamicHelp": false,
|
|
11214
11153
|
"hiddenAliases": [],
|
|
11215
|
-
"id": "
|
|
11154
|
+
"id": "roadmap:view",
|
|
11216
11155
|
"pluginAlias": "@proletariat/cli",
|
|
11217
11156
|
"pluginName": "@proletariat/cli",
|
|
11218
11157
|
"pluginType": "core",
|
|
@@ -11221,8 +11160,8 @@
|
|
|
11221
11160
|
"relativePath": [
|
|
11222
11161
|
"dist",
|
|
11223
11162
|
"commands",
|
|
11224
|
-
"
|
|
11225
|
-
"
|
|
11163
|
+
"roadmap",
|
|
11164
|
+
"view.js"
|
|
11226
11165
|
]
|
|
11227
11166
|
},
|
|
11228
11167
|
"session:attach": {
|
|
@@ -12018,6 +11957,74 @@
|
|
|
12018
11957
|
"restart.js"
|
|
12019
11958
|
]
|
|
12020
11959
|
},
|
|
11960
|
+
"shortcut:connect": {
|
|
11961
|
+
"aliases": [],
|
|
11962
|
+
"args": {},
|
|
11963
|
+
"description": "Connect to Shortcut workspace and configure authentication",
|
|
11964
|
+
"examples": [
|
|
11965
|
+
"<%= config.bin %> <%= command.id %>",
|
|
11966
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
11967
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
11968
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
11969
|
+
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
11970
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
11971
|
+
],
|
|
11972
|
+
"flags": {
|
|
11973
|
+
"project": {
|
|
11974
|
+
"char": "P",
|
|
11975
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11976
|
+
"name": "project",
|
|
11977
|
+
"hasDynamicHelp": false,
|
|
11978
|
+
"multiple": false,
|
|
11979
|
+
"type": "option"
|
|
11980
|
+
},
|
|
11981
|
+
"json": {
|
|
11982
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11983
|
+
"name": "json",
|
|
11984
|
+
"allowNo": false,
|
|
11985
|
+
"type": "boolean"
|
|
11986
|
+
},
|
|
11987
|
+
"machine": {
|
|
11988
|
+
"char": "m",
|
|
11989
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11990
|
+
"name": "machine",
|
|
11991
|
+
"allowNo": false,
|
|
11992
|
+
"type": "boolean"
|
|
11993
|
+
},
|
|
11994
|
+
"check": {
|
|
11995
|
+
"description": "Only check if Shortcut credentials are valid (do not prompt)",
|
|
11996
|
+
"name": "check",
|
|
11997
|
+
"allowNo": false,
|
|
11998
|
+
"type": "boolean"
|
|
11999
|
+
},
|
|
12000
|
+
"force": {
|
|
12001
|
+
"description": "Force re-authentication even if credentials exist",
|
|
12002
|
+
"name": "force",
|
|
12003
|
+
"allowNo": false,
|
|
12004
|
+
"type": "boolean"
|
|
12005
|
+
},
|
|
12006
|
+
"disconnect": {
|
|
12007
|
+
"description": "Remove stored Shortcut credentials and configuration",
|
|
12008
|
+
"name": "disconnect",
|
|
12009
|
+
"allowNo": false,
|
|
12010
|
+
"type": "boolean"
|
|
12011
|
+
}
|
|
12012
|
+
},
|
|
12013
|
+
"hasDynamicHelp": false,
|
|
12014
|
+
"hiddenAliases": [],
|
|
12015
|
+
"id": "shortcut:connect",
|
|
12016
|
+
"pluginAlias": "@proletariat/cli",
|
|
12017
|
+
"pluginName": "@proletariat/cli",
|
|
12018
|
+
"pluginType": "core",
|
|
12019
|
+
"strict": true,
|
|
12020
|
+
"isESM": true,
|
|
12021
|
+
"relativePath": [
|
|
12022
|
+
"dist",
|
|
12023
|
+
"commands",
|
|
12024
|
+
"shortcut",
|
|
12025
|
+
"connect.js"
|
|
12026
|
+
]
|
|
12027
|
+
},
|
|
12021
12028
|
"staff:add": {
|
|
12022
12029
|
"aliases": [],
|
|
12023
12030
|
"args": {
|
|
@@ -12718,13 +12725,12 @@
|
|
|
12718
12725
|
"update.js"
|
|
12719
12726
|
]
|
|
12720
12727
|
},
|
|
12721
|
-
"
|
|
12728
|
+
"telemetry:disable": {
|
|
12722
12729
|
"aliases": [],
|
|
12723
12730
|
"args": {},
|
|
12724
|
-
"description": "
|
|
12731
|
+
"description": "Disable anonymous telemetry",
|
|
12725
12732
|
"examples": [
|
|
12726
|
-
"<%= config.bin %> <%= command.id %>"
|
|
12727
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
12733
|
+
"<%= config.bin %> <%= command.id %>"
|
|
12728
12734
|
],
|
|
12729
12735
|
"flags": {
|
|
12730
12736
|
"json": {
|
|
@@ -12743,7 +12749,7 @@
|
|
|
12743
12749
|
},
|
|
12744
12750
|
"hasDynamicHelp": false,
|
|
12745
12751
|
"hiddenAliases": [],
|
|
12746
|
-
"id": "
|
|
12752
|
+
"id": "telemetry:disable",
|
|
12747
12753
|
"pluginAlias": "@proletariat/cli",
|
|
12748
12754
|
"pluginName": "@proletariat/cli",
|
|
12749
12755
|
"pluginType": "core",
|
|
@@ -12753,17 +12759,16 @@
|
|
|
12753
12759
|
"relativePath": [
|
|
12754
12760
|
"dist",
|
|
12755
12761
|
"commands",
|
|
12756
|
-
"
|
|
12757
|
-
"
|
|
12762
|
+
"telemetry",
|
|
12763
|
+
"disable.js"
|
|
12758
12764
|
]
|
|
12759
12765
|
},
|
|
12760
|
-
"
|
|
12766
|
+
"telemetry:enable": {
|
|
12761
12767
|
"aliases": [],
|
|
12762
12768
|
"args": {},
|
|
12763
|
-
"description": "
|
|
12769
|
+
"description": "Enable anonymous telemetry",
|
|
12764
12770
|
"examples": [
|
|
12765
|
-
"<%= config.bin %> <%= command.id %>"
|
|
12766
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
12771
|
+
"<%= config.bin %> <%= command.id %>"
|
|
12767
12772
|
],
|
|
12768
12773
|
"flags": {
|
|
12769
12774
|
"json": {
|
|
@@ -12782,7 +12787,7 @@
|
|
|
12782
12787
|
},
|
|
12783
12788
|
"hasDynamicHelp": false,
|
|
12784
12789
|
"hiddenAliases": [],
|
|
12785
|
-
"id": "
|
|
12790
|
+
"id": "telemetry:enable",
|
|
12786
12791
|
"pluginAlias": "@proletariat/cli",
|
|
12787
12792
|
"pluginName": "@proletariat/cli",
|
|
12788
12793
|
"pluginType": "core",
|
|
@@ -12792,14 +12797,14 @@
|
|
|
12792
12797
|
"relativePath": [
|
|
12793
12798
|
"dist",
|
|
12794
12799
|
"commands",
|
|
12795
|
-
"
|
|
12796
|
-
"
|
|
12800
|
+
"telemetry",
|
|
12801
|
+
"enable.js"
|
|
12797
12802
|
]
|
|
12798
12803
|
},
|
|
12799
|
-
"
|
|
12804
|
+
"telemetry": {
|
|
12800
12805
|
"aliases": [],
|
|
12801
12806
|
"args": {},
|
|
12802
|
-
"description": "
|
|
12807
|
+
"description": "Show telemetry status",
|
|
12803
12808
|
"examples": [
|
|
12804
12809
|
"<%= config.bin %> <%= command.id %>",
|
|
12805
12810
|
"<%= config.bin %> <%= command.id %> --json"
|
|
@@ -12821,7 +12826,7 @@
|
|
|
12821
12826
|
},
|
|
12822
12827
|
"hasDynamicHelp": false,
|
|
12823
12828
|
"hiddenAliases": [],
|
|
12824
|
-
"id": "
|
|
12829
|
+
"id": "telemetry",
|
|
12825
12830
|
"pluginAlias": "@proletariat/cli",
|
|
12826
12831
|
"pluginName": "@proletariat/cli",
|
|
12827
12832
|
"pluginType": "core",
|
|
@@ -12831,21 +12836,16 @@
|
|
|
12831
12836
|
"relativePath": [
|
|
12832
12837
|
"dist",
|
|
12833
12838
|
"commands",
|
|
12834
|
-
"
|
|
12835
|
-
"
|
|
12839
|
+
"telemetry",
|
|
12840
|
+
"index.js"
|
|
12836
12841
|
]
|
|
12837
12842
|
},
|
|
12838
|
-
"
|
|
12843
|
+
"telemetry:status": {
|
|
12839
12844
|
"aliases": [],
|
|
12840
12845
|
"args": {},
|
|
12841
|
-
"description": "
|
|
12846
|
+
"description": "Show telemetry status",
|
|
12842
12847
|
"examples": [
|
|
12843
|
-
"<%= config.bin %>
|
|
12844
|
-
"<%= config.bin %> <%= command.id %> book",
|
|
12845
|
-
"<%= config.bin %> <%= command.id %> docs",
|
|
12846
|
-
"<%= config.bin %> <%= command.id %> discord",
|
|
12847
|
-
"<%= config.bin %> <%= command.id %> issues",
|
|
12848
|
-
"<%= config.bin %> <%= command.id %> logs"
|
|
12848
|
+
"<%= config.bin %> telemetry status"
|
|
12849
12849
|
],
|
|
12850
12850
|
"flags": {
|
|
12851
12851
|
"json": {
|
|
@@ -12864,7 +12864,7 @@
|
|
|
12864
12864
|
},
|
|
12865
12865
|
"hasDynamicHelp": false,
|
|
12866
12866
|
"hiddenAliases": [],
|
|
12867
|
-
"id": "
|
|
12867
|
+
"id": "telemetry:status",
|
|
12868
12868
|
"pluginAlias": "@proletariat/cli",
|
|
12869
12869
|
"pluginName": "@proletariat/cli",
|
|
12870
12870
|
"pluginType": "core",
|
|
@@ -12874,17 +12874,16 @@
|
|
|
12874
12874
|
"relativePath": [
|
|
12875
12875
|
"dist",
|
|
12876
12876
|
"commands",
|
|
12877
|
-
"
|
|
12878
|
-
"
|
|
12877
|
+
"telemetry",
|
|
12878
|
+
"status.js"
|
|
12879
12879
|
]
|
|
12880
12880
|
},
|
|
12881
|
-
"support:
|
|
12881
|
+
"support:book": {
|
|
12882
12882
|
"aliases": [],
|
|
12883
12883
|
"args": {},
|
|
12884
|
-
"description": "
|
|
12884
|
+
"description": "Book a call for support",
|
|
12885
12885
|
"examples": [
|
|
12886
12886
|
"<%= config.bin %> <%= command.id %>",
|
|
12887
|
-
"<%= config.bin %> <%= command.id %> --browser",
|
|
12888
12887
|
"<%= config.bin %> <%= command.id %> --json"
|
|
12889
12888
|
],
|
|
12890
12889
|
"flags": {
|
|
@@ -12900,17 +12899,11 @@
|
|
|
12900
12899
|
"name": "machine",
|
|
12901
12900
|
"allowNo": false,
|
|
12902
12901
|
"type": "boolean"
|
|
12903
|
-
},
|
|
12904
|
-
"browser": {
|
|
12905
|
-
"description": "Open issues in browser (default behavior)",
|
|
12906
|
-
"name": "browser",
|
|
12907
|
-
"allowNo": true,
|
|
12908
|
-
"type": "boolean"
|
|
12909
12902
|
}
|
|
12910
12903
|
},
|
|
12911
12904
|
"hasDynamicHelp": false,
|
|
12912
12905
|
"hiddenAliases": [],
|
|
12913
|
-
"id": "support:
|
|
12906
|
+
"id": "support:book",
|
|
12914
12907
|
"pluginAlias": "@proletariat/cli",
|
|
12915
12908
|
"pluginName": "@proletariat/cli",
|
|
12916
12909
|
"pluginType": "core",
|
|
@@ -12921,27 +12914,18 @@
|
|
|
12921
12914
|
"dist",
|
|
12922
12915
|
"commands",
|
|
12923
12916
|
"support",
|
|
12924
|
-
"
|
|
12917
|
+
"book.js"
|
|
12925
12918
|
]
|
|
12926
12919
|
},
|
|
12927
|
-
"support:
|
|
12920
|
+
"support:discord": {
|
|
12928
12921
|
"aliases": [],
|
|
12929
12922
|
"args": {},
|
|
12930
|
-
"description": "
|
|
12923
|
+
"description": "Join the Discord community",
|
|
12931
12924
|
"examples": [
|
|
12932
12925
|
"<%= config.bin %> <%= command.id %>",
|
|
12933
|
-
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
12934
12926
|
"<%= config.bin %> <%= command.id %> --json"
|
|
12935
12927
|
],
|
|
12936
12928
|
"flags": {
|
|
12937
|
-
"project": {
|
|
12938
|
-
"char": "P",
|
|
12939
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
12940
|
-
"name": "project",
|
|
12941
|
-
"hasDynamicHelp": false,
|
|
12942
|
-
"multiple": false,
|
|
12943
|
-
"type": "option"
|
|
12944
|
-
},
|
|
12945
12929
|
"json": {
|
|
12946
12930
|
"description": "Output as JSON for AI agents/scripts",
|
|
12947
12931
|
"name": "json",
|
|
@@ -12954,35 +12938,74 @@
|
|
|
12954
12938
|
"name": "machine",
|
|
12955
12939
|
"allowNo": false,
|
|
12956
12940
|
"type": "boolean"
|
|
12941
|
+
}
|
|
12942
|
+
},
|
|
12943
|
+
"hasDynamicHelp": false,
|
|
12944
|
+
"hiddenAliases": [],
|
|
12945
|
+
"id": "support:discord",
|
|
12946
|
+
"pluginAlias": "@proletariat/cli",
|
|
12947
|
+
"pluginName": "@proletariat/cli",
|
|
12948
|
+
"pluginType": "core",
|
|
12949
|
+
"strict": true,
|
|
12950
|
+
"enableJsonFlag": false,
|
|
12951
|
+
"isESM": true,
|
|
12952
|
+
"relativePath": [
|
|
12953
|
+
"dist",
|
|
12954
|
+
"commands",
|
|
12955
|
+
"support",
|
|
12956
|
+
"discord.js"
|
|
12957
|
+
]
|
|
12958
|
+
},
|
|
12959
|
+
"support:docs": {
|
|
12960
|
+
"aliases": [],
|
|
12961
|
+
"args": {},
|
|
12962
|
+
"description": "Open documentation in browser",
|
|
12963
|
+
"examples": [
|
|
12964
|
+
"<%= config.bin %> <%= command.id %>",
|
|
12965
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
12966
|
+
],
|
|
12967
|
+
"flags": {
|
|
12968
|
+
"json": {
|
|
12969
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12970
|
+
"name": "json",
|
|
12971
|
+
"allowNo": false,
|
|
12972
|
+
"type": "boolean"
|
|
12957
12973
|
},
|
|
12958
|
-
"
|
|
12959
|
-
"
|
|
12960
|
-
"
|
|
12974
|
+
"machine": {
|
|
12975
|
+
"char": "m",
|
|
12976
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12977
|
+
"name": "machine",
|
|
12961
12978
|
"allowNo": false,
|
|
12962
12979
|
"type": "boolean"
|
|
12963
12980
|
}
|
|
12964
12981
|
},
|
|
12965
12982
|
"hasDynamicHelp": false,
|
|
12966
12983
|
"hiddenAliases": [],
|
|
12967
|
-
"id": "support:
|
|
12984
|
+
"id": "support:docs",
|
|
12968
12985
|
"pluginAlias": "@proletariat/cli",
|
|
12969
12986
|
"pluginName": "@proletariat/cli",
|
|
12970
12987
|
"pluginType": "core",
|
|
12971
12988
|
"strict": true,
|
|
12989
|
+
"enableJsonFlag": false,
|
|
12972
12990
|
"isESM": true,
|
|
12973
12991
|
"relativePath": [
|
|
12974
12992
|
"dist",
|
|
12975
12993
|
"commands",
|
|
12976
12994
|
"support",
|
|
12977
|
-
"
|
|
12995
|
+
"docs.js"
|
|
12978
12996
|
]
|
|
12979
12997
|
},
|
|
12980
|
-
"
|
|
12998
|
+
"support": {
|
|
12981
12999
|
"aliases": [],
|
|
12982
13000
|
"args": {},
|
|
12983
|
-
"description": "
|
|
13001
|
+
"description": "Get help, troubleshoot, and connect with the community",
|
|
12984
13002
|
"examples": [
|
|
12985
|
-
"<%= config.bin %> <%= command.id %>"
|
|
13003
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13004
|
+
"<%= config.bin %> <%= command.id %> book",
|
|
13005
|
+
"<%= config.bin %> <%= command.id %> docs",
|
|
13006
|
+
"<%= config.bin %> <%= command.id %> discord",
|
|
13007
|
+
"<%= config.bin %> <%= command.id %> issues",
|
|
13008
|
+
"<%= config.bin %> <%= command.id %> logs"
|
|
12986
13009
|
],
|
|
12987
13010
|
"flags": {
|
|
12988
13011
|
"json": {
|
|
@@ -13001,7 +13024,7 @@
|
|
|
13001
13024
|
},
|
|
13002
13025
|
"hasDynamicHelp": false,
|
|
13003
13026
|
"hiddenAliases": [],
|
|
13004
|
-
"id": "
|
|
13027
|
+
"id": "support",
|
|
13005
13028
|
"pluginAlias": "@proletariat/cli",
|
|
13006
13029
|
"pluginName": "@proletariat/cli",
|
|
13007
13030
|
"pluginType": "core",
|
|
@@ -13011,16 +13034,18 @@
|
|
|
13011
13034
|
"relativePath": [
|
|
13012
13035
|
"dist",
|
|
13013
13036
|
"commands",
|
|
13014
|
-
"
|
|
13015
|
-
"
|
|
13037
|
+
"support",
|
|
13038
|
+
"index.js"
|
|
13016
13039
|
]
|
|
13017
13040
|
},
|
|
13018
|
-
"
|
|
13041
|
+
"support:issues": {
|
|
13019
13042
|
"aliases": [],
|
|
13020
13043
|
"args": {},
|
|
13021
|
-
"description": "
|
|
13044
|
+
"description": "Browse GitHub Issues",
|
|
13022
13045
|
"examples": [
|
|
13023
|
-
"<%= config.bin %> <%= command.id %>"
|
|
13046
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13047
|
+
"<%= config.bin %> <%= command.id %> --browser",
|
|
13048
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
13024
13049
|
],
|
|
13025
13050
|
"flags": {
|
|
13026
13051
|
"json": {
|
|
@@ -13035,11 +13060,17 @@
|
|
|
13035
13060
|
"name": "machine",
|
|
13036
13061
|
"allowNo": false,
|
|
13037
13062
|
"type": "boolean"
|
|
13063
|
+
},
|
|
13064
|
+
"browser": {
|
|
13065
|
+
"description": "Open issues in browser (default behavior)",
|
|
13066
|
+
"name": "browser",
|
|
13067
|
+
"allowNo": true,
|
|
13068
|
+
"type": "boolean"
|
|
13038
13069
|
}
|
|
13039
13070
|
},
|
|
13040
13071
|
"hasDynamicHelp": false,
|
|
13041
13072
|
"hiddenAliases": [],
|
|
13042
|
-
"id": "
|
|
13073
|
+
"id": "support:issues",
|
|
13043
13074
|
"pluginAlias": "@proletariat/cli",
|
|
13044
13075
|
"pluginName": "@proletariat/cli",
|
|
13045
13076
|
"pluginType": "core",
|
|
@@ -13049,19 +13080,28 @@
|
|
|
13049
13080
|
"relativePath": [
|
|
13050
13081
|
"dist",
|
|
13051
13082
|
"commands",
|
|
13052
|
-
"
|
|
13053
|
-
"
|
|
13083
|
+
"support",
|
|
13084
|
+
"issues.js"
|
|
13054
13085
|
]
|
|
13055
13086
|
},
|
|
13056
|
-
"
|
|
13087
|
+
"support:logs": {
|
|
13057
13088
|
"aliases": [],
|
|
13058
13089
|
"args": {},
|
|
13059
|
-
"description": "
|
|
13090
|
+
"description": "Collect diagnostic info for troubleshooting",
|
|
13060
13091
|
"examples": [
|
|
13061
13092
|
"<%= config.bin %> <%= command.id %>",
|
|
13093
|
+
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
13062
13094
|
"<%= config.bin %> <%= command.id %> --json"
|
|
13063
13095
|
],
|
|
13064
13096
|
"flags": {
|
|
13097
|
+
"project": {
|
|
13098
|
+
"char": "P",
|
|
13099
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
13100
|
+
"name": "project",
|
|
13101
|
+
"hasDynamicHelp": false,
|
|
13102
|
+
"multiple": false,
|
|
13103
|
+
"type": "option"
|
|
13104
|
+
},
|
|
13065
13105
|
"json": {
|
|
13066
13106
|
"description": "Output as JSON for AI agents/scripts",
|
|
13067
13107
|
"name": "json",
|
|
@@ -13074,32 +13114,53 @@
|
|
|
13074
13114
|
"name": "machine",
|
|
13075
13115
|
"allowNo": false,
|
|
13076
13116
|
"type": "boolean"
|
|
13117
|
+
},
|
|
13118
|
+
"clipboard": {
|
|
13119
|
+
"description": "Copy diagnostics to clipboard",
|
|
13120
|
+
"name": "clipboard",
|
|
13121
|
+
"allowNo": false,
|
|
13122
|
+
"type": "boolean"
|
|
13077
13123
|
}
|
|
13078
13124
|
},
|
|
13079
13125
|
"hasDynamicHelp": false,
|
|
13080
13126
|
"hiddenAliases": [],
|
|
13081
|
-
"id": "
|
|
13127
|
+
"id": "support:logs",
|
|
13082
13128
|
"pluginAlias": "@proletariat/cli",
|
|
13083
13129
|
"pluginName": "@proletariat/cli",
|
|
13084
13130
|
"pluginType": "core",
|
|
13085
13131
|
"strict": true,
|
|
13086
|
-
"enableJsonFlag": false,
|
|
13087
13132
|
"isESM": true,
|
|
13088
13133
|
"relativePath": [
|
|
13089
13134
|
"dist",
|
|
13090
13135
|
"commands",
|
|
13091
|
-
"
|
|
13092
|
-
"
|
|
13136
|
+
"support",
|
|
13137
|
+
"logs.js"
|
|
13093
13138
|
]
|
|
13094
13139
|
},
|
|
13095
|
-
"
|
|
13140
|
+
"terminal:title": {
|
|
13096
13141
|
"aliases": [],
|
|
13097
|
-
"args": {
|
|
13098
|
-
|
|
13142
|
+
"args": {
|
|
13143
|
+
"title": {
|
|
13144
|
+
"description": "Title to set for the terminal tab/window",
|
|
13145
|
+
"name": "title",
|
|
13146
|
+
"required": false
|
|
13147
|
+
}
|
|
13148
|
+
},
|
|
13149
|
+
"description": "Set the terminal tab/window title",
|
|
13099
13150
|
"examples": [
|
|
13100
|
-
"<%= config.bin %>
|
|
13151
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
13152
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
13153
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
13154
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
13101
13155
|
],
|
|
13102
13156
|
"flags": {
|
|
13157
|
+
"reset": {
|
|
13158
|
+
"char": "r",
|
|
13159
|
+
"description": "Reset terminal title to default",
|
|
13160
|
+
"name": "reset",
|
|
13161
|
+
"allowNo": false,
|
|
13162
|
+
"type": "boolean"
|
|
13163
|
+
},
|
|
13103
13164
|
"json": {
|
|
13104
13165
|
"description": "Output as JSON for AI agents/scripts",
|
|
13105
13166
|
"name": "json",
|
|
@@ -13116,18 +13177,17 @@
|
|
|
13116
13177
|
},
|
|
13117
13178
|
"hasDynamicHelp": false,
|
|
13118
13179
|
"hiddenAliases": [],
|
|
13119
|
-
"id": "
|
|
13180
|
+
"id": "terminal:title",
|
|
13120
13181
|
"pluginAlias": "@proletariat/cli",
|
|
13121
13182
|
"pluginName": "@proletariat/cli",
|
|
13122
13183
|
"pluginType": "core",
|
|
13123
13184
|
"strict": true,
|
|
13124
|
-
"enableJsonFlag": false,
|
|
13125
13185
|
"isESM": true,
|
|
13126
13186
|
"relativePath": [
|
|
13127
13187
|
"dist",
|
|
13128
13188
|
"commands",
|
|
13129
|
-
"
|
|
13130
|
-
"
|
|
13189
|
+
"terminal",
|
|
13190
|
+
"title.js"
|
|
13131
13191
|
]
|
|
13132
13192
|
},
|
|
13133
13193
|
"template:apply": {
|
|
@@ -13749,59 +13809,6 @@
|
|
|
13749
13809
|
"update.js"
|
|
13750
13810
|
]
|
|
13751
13811
|
},
|
|
13752
|
-
"terminal:title": {
|
|
13753
|
-
"aliases": [],
|
|
13754
|
-
"args": {
|
|
13755
|
-
"title": {
|
|
13756
|
-
"description": "Title to set for the terminal tab/window",
|
|
13757
|
-
"name": "title",
|
|
13758
|
-
"required": false
|
|
13759
|
-
}
|
|
13760
|
-
},
|
|
13761
|
-
"description": "Set the terminal tab/window title",
|
|
13762
|
-
"examples": [
|
|
13763
|
-
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
13764
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
13765
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
13766
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
13767
|
-
],
|
|
13768
|
-
"flags": {
|
|
13769
|
-
"reset": {
|
|
13770
|
-
"char": "r",
|
|
13771
|
-
"description": "Reset terminal title to default",
|
|
13772
|
-
"name": "reset",
|
|
13773
|
-
"allowNo": false,
|
|
13774
|
-
"type": "boolean"
|
|
13775
|
-
},
|
|
13776
|
-
"json": {
|
|
13777
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13778
|
-
"name": "json",
|
|
13779
|
-
"allowNo": false,
|
|
13780
|
-
"type": "boolean"
|
|
13781
|
-
},
|
|
13782
|
-
"machine": {
|
|
13783
|
-
"char": "m",
|
|
13784
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13785
|
-
"name": "machine",
|
|
13786
|
-
"allowNo": false,
|
|
13787
|
-
"type": "boolean"
|
|
13788
|
-
}
|
|
13789
|
-
},
|
|
13790
|
-
"hasDynamicHelp": false,
|
|
13791
|
-
"hiddenAliases": [],
|
|
13792
|
-
"id": "terminal:title",
|
|
13793
|
-
"pluginAlias": "@proletariat/cli",
|
|
13794
|
-
"pluginName": "@proletariat/cli",
|
|
13795
|
-
"pluginType": "core",
|
|
13796
|
-
"strict": true,
|
|
13797
|
-
"isESM": true,
|
|
13798
|
-
"relativePath": [
|
|
13799
|
-
"dist",
|
|
13800
|
-
"commands",
|
|
13801
|
-
"terminal",
|
|
13802
|
-
"title.js"
|
|
13803
|
-
]
|
|
13804
|
-
},
|
|
13805
13812
|
"theme:add-names": {
|
|
13806
13813
|
"aliases": [],
|
|
13807
13814
|
"args": {
|
|
@@ -15527,6 +15534,58 @@
|
|
|
15527
15534
|
"view.js"
|
|
15528
15535
|
]
|
|
15529
15536
|
},
|
|
15537
|
+
"version:bump": {
|
|
15538
|
+
"aliases": [],
|
|
15539
|
+
"args": {
|
|
15540
|
+
"type": {
|
|
15541
|
+
"description": "Version bump type",
|
|
15542
|
+
"name": "type",
|
|
15543
|
+
"options": [
|
|
15544
|
+
"major",
|
|
15545
|
+
"minor",
|
|
15546
|
+
"patch"
|
|
15547
|
+
],
|
|
15548
|
+
"required": true
|
|
15549
|
+
}
|
|
15550
|
+
},
|
|
15551
|
+
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
15552
|
+
"examples": [
|
|
15553
|
+
"<%= config.bin %> version bump patch",
|
|
15554
|
+
"<%= config.bin %> version bump minor",
|
|
15555
|
+
"<%= config.bin %> version bump major",
|
|
15556
|
+
"<%= config.bin %> version bump patch --json"
|
|
15557
|
+
],
|
|
15558
|
+
"flags": {
|
|
15559
|
+
"json": {
|
|
15560
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
15561
|
+
"name": "json",
|
|
15562
|
+
"allowNo": false,
|
|
15563
|
+
"type": "boolean"
|
|
15564
|
+
},
|
|
15565
|
+
"machine": {
|
|
15566
|
+
"char": "m",
|
|
15567
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
15568
|
+
"name": "machine",
|
|
15569
|
+
"allowNo": false,
|
|
15570
|
+
"type": "boolean"
|
|
15571
|
+
}
|
|
15572
|
+
},
|
|
15573
|
+
"hasDynamicHelp": false,
|
|
15574
|
+
"hiddenAliases": [],
|
|
15575
|
+
"id": "version:bump",
|
|
15576
|
+
"pluginAlias": "@proletariat/cli",
|
|
15577
|
+
"pluginName": "@proletariat/cli",
|
|
15578
|
+
"pluginType": "core",
|
|
15579
|
+
"strict": true,
|
|
15580
|
+
"enableJsonFlag": false,
|
|
15581
|
+
"isESM": true,
|
|
15582
|
+
"relativePath": [
|
|
15583
|
+
"dist",
|
|
15584
|
+
"commands",
|
|
15585
|
+
"version",
|
|
15586
|
+
"bump.js"
|
|
15587
|
+
]
|
|
15588
|
+
},
|
|
15530
15589
|
"tools:add": {
|
|
15531
15590
|
"aliases": [],
|
|
15532
15591
|
"args": {
|
|
@@ -16021,58 +16080,6 @@
|
|
|
16021
16080
|
"sync.js"
|
|
16022
16081
|
]
|
|
16023
16082
|
},
|
|
16024
|
-
"version:bump": {
|
|
16025
|
-
"aliases": [],
|
|
16026
|
-
"args": {
|
|
16027
|
-
"type": {
|
|
16028
|
-
"description": "Version bump type",
|
|
16029
|
-
"name": "type",
|
|
16030
|
-
"options": [
|
|
16031
|
-
"major",
|
|
16032
|
-
"minor",
|
|
16033
|
-
"patch"
|
|
16034
|
-
],
|
|
16035
|
-
"required": true
|
|
16036
|
-
}
|
|
16037
|
-
},
|
|
16038
|
-
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
16039
|
-
"examples": [
|
|
16040
|
-
"<%= config.bin %> version bump patch",
|
|
16041
|
-
"<%= config.bin %> version bump minor",
|
|
16042
|
-
"<%= config.bin %> version bump major",
|
|
16043
|
-
"<%= config.bin %> version bump patch --json"
|
|
16044
|
-
],
|
|
16045
|
-
"flags": {
|
|
16046
|
-
"json": {
|
|
16047
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16048
|
-
"name": "json",
|
|
16049
|
-
"allowNo": false,
|
|
16050
|
-
"type": "boolean"
|
|
16051
|
-
},
|
|
16052
|
-
"machine": {
|
|
16053
|
-
"char": "m",
|
|
16054
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16055
|
-
"name": "machine",
|
|
16056
|
-
"allowNo": false,
|
|
16057
|
-
"type": "boolean"
|
|
16058
|
-
}
|
|
16059
|
-
},
|
|
16060
|
-
"hasDynamicHelp": false,
|
|
16061
|
-
"hiddenAliases": [],
|
|
16062
|
-
"id": "version:bump",
|
|
16063
|
-
"pluginAlias": "@proletariat/cli",
|
|
16064
|
-
"pluginName": "@proletariat/cli",
|
|
16065
|
-
"pluginType": "core",
|
|
16066
|
-
"strict": true,
|
|
16067
|
-
"enableJsonFlag": false,
|
|
16068
|
-
"isESM": true,
|
|
16069
|
-
"relativePath": [
|
|
16070
|
-
"dist",
|
|
16071
|
-
"commands",
|
|
16072
|
-
"version",
|
|
16073
|
-
"bump.js"
|
|
16074
|
-
]
|
|
16075
|
-
},
|
|
16076
16083
|
"work:asana": {
|
|
16077
16084
|
"aliases": [],
|
|
16078
16085
|
"args": {},
|
|
@@ -21310,5 +21317,5 @@
|
|
|
21310
21317
|
]
|
|
21311
21318
|
}
|
|
21312
21319
|
},
|
|
21313
|
-
"version": "0.3.
|
|
21320
|
+
"version": "0.3.77"
|
|
21314
21321
|
}
|