@proletariat/cli 0.3.82 → 0.3.83

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.
@@ -5979,20 +5979,19 @@
5979
5979
  "stop.js"
5980
5980
  ]
5981
5981
  },
5982
- "pr:checks": {
5982
+ "project:archive": {
5983
5983
  "aliases": [],
5984
5984
  "args": {
5985
- "prNumber": {
5986
- "description": "PR number (defaults to PR for current branch)",
5987
- "name": "prNumber",
5988
- "required": false
5985
+ "id": {
5986
+ "description": "Project ID",
5987
+ "name": "id",
5988
+ "required": true
5989
5989
  }
5990
5990
  },
5991
- "description": "Show CI check status for a pull request",
5991
+ "description": "Archive a project (hide from default views)",
5992
5992
  "examples": [
5993
- "<%= config.bin %> <%= command.id %>",
5994
- "<%= config.bin %> <%= command.id %> 123",
5995
- "<%= config.bin %> <%= command.id %> --json"
5993
+ "<%= config.bin %> <%= command.id %> old-project",
5994
+ "<%= config.bin %> <%= command.id %> old-project --force"
5996
5995
  ],
5997
5996
  "flags": {
5998
5997
  "project": {
@@ -6015,11 +6014,18 @@
6015
6014
  "name": "machine",
6016
6015
  "allowNo": false,
6017
6016
  "type": "boolean"
6017
+ },
6018
+ "force": {
6019
+ "char": "f",
6020
+ "description": "Skip confirmation",
6021
+ "name": "force",
6022
+ "allowNo": false,
6023
+ "type": "boolean"
6018
6024
  }
6019
6025
  },
6020
6026
  "hasDynamicHelp": false,
6021
6027
  "hiddenAliases": [],
6022
- "id": "pr:checks",
6028
+ "id": "project:archive",
6023
6029
  "pluginAlias": "@proletariat/cli",
6024
6030
  "pluginName": "@proletariat/cli",
6025
6031
  "pluginType": "core",
@@ -6028,24 +6034,25 @@
6028
6034
  "relativePath": [
6029
6035
  "dist",
6030
6036
  "commands",
6031
- "pr",
6032
- "checks.js"
6037
+ "project",
6038
+ "archive.js"
6033
6039
  ]
6034
6040
  },
6035
- "pr:close": {
6041
+ "project:create": {
6036
6042
  "aliases": [],
6037
6043
  "args": {
6038
- "prNumber": {
6039
- "description": "PR number to close",
6040
- "name": "prNumber",
6044
+ "name": {
6045
+ "description": "Project name",
6046
+ "name": "name",
6041
6047
  "required": false
6042
6048
  }
6043
6049
  },
6044
- "description": "Close a GitHub pull request by number",
6050
+ "description": "Create a new project in the PMO",
6045
6051
  "examples": [
6046
- "<%= config.bin %> <%= command.id %> 123",
6047
- "<%= config.bin %> <%= command.id %> 123 --comment \"Superseded by #456\"",
6048
- "<%= config.bin %> <%= command.id %> --json"
6052
+ "<%= config.bin %> <%= command.id %> \"My New Project\"",
6053
+ "<%= config.bin %> <%= command.id %> --name \"Mobile App\" --description \"iOS and Android app\"",
6054
+ "<%= config.bin %> <%= command.id %> -i # Interactive mode",
6055
+ "<%= config.bin %> <%= command.id %> --name \"Test\" --dry-run --json # Validate without creating"
6049
6056
  ],
6050
6057
  "flags": {
6051
6058
  "project": {
@@ -6069,18 +6076,63 @@
6069
6076
  "allowNo": false,
6070
6077
  "type": "boolean"
6071
6078
  },
6072
- "comment": {
6073
- "char": "c",
6074
- "description": "Comment to leave when closing the PR",
6075
- "name": "comment",
6079
+ "name": {
6080
+ "char": "n",
6081
+ "description": "Project name [required for non-interactive]",
6082
+ "name": "name",
6083
+ "hasDynamicHelp": false,
6084
+ "multiple": false,
6085
+ "type": "option"
6086
+ },
6087
+ "id": {
6088
+ "description": "Custom project ID (auto-generated from name if not provided)",
6089
+ "name": "id",
6090
+ "hasDynamicHelp": false,
6091
+ "multiple": false,
6092
+ "type": "option"
6093
+ },
6094
+ "description": {
6095
+ "char": "d",
6096
+ "description": "Project description",
6097
+ "name": "description",
6098
+ "hasDynamicHelp": false,
6099
+ "multiple": false,
6100
+ "type": "option"
6101
+ },
6102
+ "template": {
6103
+ "char": "t",
6104
+ "description": "Workflow template",
6105
+ "name": "template",
6106
+ "default": "kanban",
6076
6107
  "hasDynamicHelp": false,
6077
6108
  "multiple": false,
6109
+ "options": [
6110
+ "default",
6111
+ "kanban",
6112
+ "linear",
6113
+ "5-tool-founder",
6114
+ "bug-smash",
6115
+ "gtm"
6116
+ ],
6078
6117
  "type": "option"
6118
+ },
6119
+ "interactive": {
6120
+ "char": "i",
6121
+ "description": "Interactive mode",
6122
+ "name": "interactive",
6123
+ "allowNo": false,
6124
+ "type": "boolean"
6125
+ },
6126
+ "dry-run": {
6127
+ "description": "Validate inputs without creating project (use with --json for structured output)",
6128
+ "name": "dry-run",
6129
+ "allowNo": false,
6130
+ "type": "boolean"
6079
6131
  }
6080
6132
  },
6081
6133
  "hasDynamicHelp": false,
6082
6134
  "hiddenAliases": [],
6083
- "id": "pr:close",
6135
+ "id": "project:create",
6084
6136
  "pluginAlias": "@proletariat/cli",
6085
6137
  "pluginName": "@proletariat/cli",
6086
6138
  "pluginType": "core",
@@ -6089,25 +6141,23 @@
6089
6141
  "relativePath": [
6090
6142
  "dist",
6091
6143
  "commands",
6092
- "pr",
6093
- "close.js"
6144
+ "project",
6145
+ "create.js"
6094
6146
  ]
6095
6147
  },
6096
- "pr:create": {
6148
+ "project:delete": {
6097
6149
  "aliases": [],
6098
6150
  "args": {
6099
- "ticketId": {
6100
- "description": "Ticket ID to link to PR - auto-detects from branch if not provided",
6101
- "name": "ticketId",
6151
+ "id": {
6152
+ "description": "Project ID to delete - prompts with dropdown if not provided",
6153
+ "name": "id",
6102
6154
  "required": false
6103
6155
  }
6104
6156
  },
6105
- "description": "Create a GitHub pull request from the current branch",
6157
+ "description": "Delete a project from the PMO",
6106
6158
  "examples": [
6107
- "<%= config.bin %> <%= command.id %>",
6108
- "<%= config.bin %> <%= command.id %> TKT-001",
6109
- "<%= config.bin %> <%= command.id %> --draft",
6110
- "<%= config.bin %> <%= command.id %> --base develop"
6159
+ "<%= config.bin %> <%= command.id %> my-project",
6160
+ "<%= config.bin %> <%= command.id %> my-project --force"
6111
6161
  ],
6112
6162
  "flags": {
6113
6163
  "project": {
@@ -6131,53 +6181,17 @@
6131
6181
  "allowNo": false,
6132
6182
  "type": "boolean"
6133
6183
  },
6134
- "base": {
6135
- "char": "b",
6136
- "description": "Base branch for the PR (defaults to main/master)",
6137
- "name": "base",
6138
- "hasDynamicHelp": false,
6139
- "multiple": false,
6140
- "type": "option"
6141
- },
6142
- "draft": {
6143
- "char": "d",
6144
- "description": "Create as draft PR",
6145
- "name": "draft",
6146
- "allowNo": false,
6147
- "type": "boolean"
6148
- },
6149
- "no-link": {
6150
- "description": "Skip linking PR to ticket",
6151
- "name": "no-link",
6184
+ "force": {
6185
+ "char": "f",
6186
+ "description": "Skip confirmation prompt",
6187
+ "name": "force",
6152
6188
  "allowNo": false,
6153
6189
  "type": "boolean"
6154
- },
6155
- "title": {
6156
- "char": "t",
6157
- "description": "PR title (auto-generated from ticket if not provided)",
6158
- "name": "title",
6159
- "hasDynamicHelp": false,
6160
- "multiple": false,
6161
- "type": "option"
6162
- },
6163
- "body": {
6164
- "description": "PR body/description",
6165
- "name": "body",
6166
- "hasDynamicHelp": false,
6167
- "multiple": false,
6168
- "type": "option"
6169
- },
6170
- "ticket": {
6171
- "description": "Ticket ID to link (alternative to positional arg)",
6172
- "name": "ticket",
6173
- "hasDynamicHelp": false,
6174
- "multiple": false,
6175
- "type": "option"
6176
6190
  }
6177
6191
  },
6178
6192
  "hasDynamicHelp": false,
6179
6193
  "hiddenAliases": [],
6180
- "id": "pr:create",
6194
+ "id": "project:delete",
6181
6195
  "pluginAlias": "@proletariat/cli",
6182
6196
  "pluginName": "@proletariat/cli",
6183
6197
  "pluginType": "core",
@@ -6186,14 +6200,14 @@
6186
6200
  "relativePath": [
6187
6201
  "dist",
6188
6202
  "commands",
6189
- "pr",
6190
- "create.js"
6203
+ "project",
6204
+ "delete.js"
6191
6205
  ]
6192
6206
  },
6193
- "pr": {
6207
+ "project": {
6194
6208
  "aliases": [],
6195
6209
  "args": {},
6196
- "description": "Interactive menu for pull request operations",
6210
+ "description": "Interactive menu for project operations",
6197
6211
  "examples": [
6198
6212
  "<%= config.bin %> <%= command.id %>"
6199
6213
  ],
@@ -6218,28 +6232,11 @@
6218
6232
  "name": "machine",
6219
6233
  "allowNo": false,
6220
6234
  "type": "boolean"
6221
- },
6222
- "action": {
6223
- "char": "a",
6224
- "description": "Action to perform (list, create, merge, close, checks, link, status)",
6225
- "name": "action",
6226
- "hasDynamicHelp": false,
6227
- "multiple": false,
6228
- "options": [
6229
- "list",
6230
- "create",
6231
- "merge",
6232
- "close",
6233
- "checks",
6234
- "link",
6235
- "status"
6236
- ],
6237
- "type": "option"
6238
6235
  }
6239
6236
  },
6240
6237
  "hasDynamicHelp": false,
6241
6238
  "hiddenAliases": [],
6242
- "id": "pr",
6239
+ "id": "project",
6243
6240
  "pluginAlias": "@proletariat/cli",
6244
6241
  "pluginName": "@proletariat/cli",
6245
6242
  "pluginType": "core",
@@ -6248,25 +6245,18 @@
6248
6245
  "relativePath": [
6249
6246
  "dist",
6250
6247
  "commands",
6251
- "pr",
6248
+ "project",
6252
6249
  "index.js"
6253
6250
  ]
6254
6251
  },
6255
- "pr:link": {
6252
+ "project:list": {
6256
6253
  "aliases": [],
6257
- "args": {
6258
- "ticketId": {
6259
- "description": "Ticket ID to link PR to",
6260
- "name": "ticketId",
6261
- "required": false
6262
- }
6263
- },
6264
- "description": "Link an existing GitHub pull request to a ticket",
6254
+ "args": {},
6255
+ "description": "List all projects in the PMO",
6265
6256
  "examples": [
6266
6257
  "<%= config.bin %> <%= command.id %>",
6267
- "<%= config.bin %> <%= command.id %> TKT-001",
6268
- "<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
6269
- "<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
6258
+ "<%= config.bin %> <%= command.id %> --archived",
6259
+ "<%= config.bin %> <%= command.id %> --all"
6270
6260
  ],
6271
6261
  "flags": {
6272
6262
  "project": {
@@ -6290,39 +6280,23 @@
6290
6280
  "allowNo": false,
6291
6281
  "type": "boolean"
6292
6282
  },
6293
- "pr": {
6294
- "char": "p",
6295
- "description": "PR number to link",
6296
- "name": "pr",
6297
- "hasDynamicHelp": false,
6298
- "multiple": false,
6299
- "type": "option"
6300
- },
6301
- "url": {
6302
- "char": "u",
6303
- "description": "PR URL to link",
6304
- "name": "url",
6305
- "hasDynamicHelp": false,
6306
- "multiple": false,
6307
- "type": "option"
6308
- },
6309
- "ticket": {
6310
- "description": "Ticket ID to link (alternative to positional arg)",
6311
- "name": "ticket",
6312
- "hasDynamicHelp": false,
6313
- "multiple": false,
6314
- "type": "option"
6283
+ "archived": {
6284
+ "char": "a",
6285
+ "description": "Show only archived projects",
6286
+ "name": "archived",
6287
+ "allowNo": false,
6288
+ "type": "boolean"
6315
6289
  },
6316
- "confirm": {
6317
- "description": "Confirm overwriting existing PR link",
6318
- "name": "confirm",
6290
+ "all": {
6291
+ "description": "Show all projects (including archived)",
6292
+ "name": "all",
6319
6293
  "allowNo": false,
6320
6294
  "type": "boolean"
6321
6295
  }
6322
6296
  },
6323
6297
  "hasDynamicHelp": false,
6324
6298
  "hiddenAliases": [],
6325
- "id": "pr:link",
6299
+ "id": "project:list",
6326
6300
  "pluginAlias": "@proletariat/cli",
6327
6301
  "pluginName": "@proletariat/cli",
6328
6302
  "pluginType": "core",
@@ -6331,20 +6305,25 @@
6331
6305
  "relativePath": [
6332
6306
  "dist",
6333
6307
  "commands",
6334
- "pr",
6335
- "link.js"
6308
+ "project",
6309
+ "list.js"
6336
6310
  ]
6337
6311
  },
6338
- "pr:list": {
6312
+ "project:spec": {
6339
6313
  "aliases": [],
6340
- "args": {},
6341
- "description": "List pull requests linked to tickets in the workspace",
6314
+ "args": {
6315
+ "projectId": {
6316
+ "description": "Project ID",
6317
+ "name": "projectId",
6318
+ "required": false
6319
+ }
6320
+ },
6321
+ "description": "Manage specs associated with a project (many-to-many)",
6342
6322
  "examples": [
6343
- "<%= config.bin %> <%= command.id %>",
6344
- "<%= config.bin %> <%= command.id %> --state open",
6345
- "<%= config.bin %> <%= command.id %> --state draft",
6346
- "<%= config.bin %> <%= command.id %> --format json",
6347
- "<%= config.bin %> <%= command.id %> --machine"
6323
+ "<%= config.bin %> <%= command.id %> my-project",
6324
+ "<%= config.bin %> <%= command.id %> my-project --add SPEC-001",
6325
+ "<%= config.bin %> <%= command.id %> my-project --remove SPEC-001",
6326
+ "<%= config.bin %> <%= command.id %>"
6348
6327
  ],
6349
6328
  "flags": {
6350
6329
  "project": {
@@ -6368,39 +6347,18 @@
6368
6347
  "allowNo": false,
6369
6348
  "type": "boolean"
6370
6349
  },
6371
- "state": {
6372
- "char": "s",
6373
- "description": "Filter by PR state",
6374
- "name": "state",
6375
- "default": "open",
6376
- "hasDynamicHelp": false,
6377
- "multiple": false,
6378
- "options": [
6379
- "open",
6380
- "draft",
6381
- "all"
6382
- ],
6383
- "type": "option"
6384
- },
6385
- "format": {
6386
- "char": "f",
6387
- "description": "Output format",
6388
- "name": "format",
6389
- "default": "table",
6350
+ "add": {
6351
+ "char": "a",
6352
+ "description": "Add a spec to this project",
6353
+ "name": "add",
6390
6354
  "hasDynamicHelp": false,
6391
6355
  "multiple": false,
6392
- "options": [
6393
- "table",
6394
- "compact",
6395
- "json"
6396
- ],
6397
6356
  "type": "option"
6398
6357
  },
6399
- "limit": {
6400
- "char": "l",
6401
- "description": "Maximum number of PRs to show",
6402
- "name": "limit",
6403
- "default": 50,
6358
+ "remove": {
6359
+ "char": "r",
6360
+ "description": "Remove a spec from this project",
6361
+ "name": "remove",
6404
6362
  "hasDynamicHelp": false,
6405
6363
  "multiple": false,
6406
6364
  "type": "option"
@@ -6408,7 +6366,7 @@
6408
6366
  },
6409
6367
  "hasDynamicHelp": false,
6410
6368
  "hiddenAliases": [],
6411
- "id": "pr:list",
6369
+ "id": "project:spec",
6412
6370
  "pluginAlias": "@proletariat/cli",
6413
6371
  "pluginName": "@proletariat/cli",
6414
6372
  "pluginType": "core",
@@ -6417,25 +6375,22 @@
6417
6375
  "relativePath": [
6418
6376
  "dist",
6419
6377
  "commands",
6420
- "pr",
6421
- "list.js"
6378
+ "project",
6379
+ "spec.js"
6422
6380
  ]
6423
6381
  },
6424
- "pr:merge": {
6382
+ "project:unarchive": {
6425
6383
  "aliases": [],
6426
6384
  "args": {
6427
- "prNumber": {
6428
- "description": "PR number to merge",
6429
- "name": "prNumber",
6430
- "required": false
6385
+ "id": {
6386
+ "description": "Project ID",
6387
+ "name": "id",
6388
+ "required": true
6431
6389
  }
6432
6390
  },
6433
- "description": "Merge a GitHub pull request by number",
6391
+ "description": "Unarchive a project (restore to default views)",
6434
6392
  "examples": [
6435
- "<%= config.bin %> <%= command.id %> 123",
6436
- "<%= config.bin %> <%= command.id %> 123 --method squash",
6437
- "<%= config.bin %> <%= command.id %> 123 --no-delete-branch",
6438
- "<%= config.bin %> <%= command.id %> --json"
6393
+ "<%= config.bin %> <%= command.id %> old-project"
6439
6394
  ],
6440
6395
  "flags": {
6441
6396
  "project": {
@@ -6458,36 +6413,11 @@
6458
6413
  "name": "machine",
6459
6414
  "allowNo": false,
6460
6415
  "type": "boolean"
6461
- },
6462
- "method": {
6463
- "description": "Merge method",
6464
- "name": "method",
6465
- "default": "squash",
6466
- "hasDynamicHelp": false,
6467
- "multiple": false,
6468
- "options": [
6469
- "merge",
6470
- "squash",
6471
- "rebase"
6472
- ],
6473
- "type": "option"
6474
- },
6475
- "delete-branch": {
6476
- "description": "Delete branch after merging",
6477
- "name": "delete-branch",
6478
- "allowNo": true,
6479
- "type": "boolean"
6480
- },
6481
- "admin": {
6482
- "description": "Use admin privileges to bypass branch protections",
6483
- "name": "admin",
6484
- "allowNo": false,
6485
- "type": "boolean"
6486
6416
  }
6487
6417
  },
6488
6418
  "hasDynamicHelp": false,
6489
6419
  "hiddenAliases": [],
6490
- "id": "pr:merge",
6420
+ "id": "project:unarchive",
6491
6421
  "pluginAlias": "@proletariat/cli",
6492
6422
  "pluginName": "@proletariat/cli",
6493
6423
  "pluginType": "core",
@@ -6496,23 +6426,25 @@
6496
6426
  "relativePath": [
6497
6427
  "dist",
6498
6428
  "commands",
6499
- "pr",
6500
- "merge.js"
6429
+ "project",
6430
+ "unarchive.js"
6501
6431
  ]
6502
6432
  },
6503
- "pr:status": {
6433
+ "project:update": {
6504
6434
  "aliases": [],
6505
6435
  "args": {
6506
- "ticketId": {
6507
- "description": "Ticket ID to check PR status for",
6508
- "name": "ticketId",
6436
+ "id": {
6437
+ "description": "Project ID or name",
6438
+ "name": "id",
6509
6439
  "required": false
6510
6440
  }
6511
6441
  },
6512
- "description": "View PR status for a ticket",
6442
+ "description": "Update project metadata (name, description)",
6513
6443
  "examples": [
6514
- "<%= config.bin %> <%= command.id %>",
6515
- "<%= config.bin %> <%= command.id %> TKT-001"
6444
+ "<%= config.bin %> <%= command.id %> my-project --name \"New Project Name\"",
6445
+ "<%= config.bin %> <%= command.id %> my-project --description \"Updated description\"",
6446
+ "<%= config.bin %> <%= command.id %> my-project --name \"New Name\" --description \"New description\"",
6447
+ "<%= config.bin %> <%= command.id %> my-project # Interactive mode"
6516
6448
  ],
6517
6449
  "flags": {
6518
6450
  "project": {
@@ -6536,9 +6468,18 @@
6536
6468
  "allowNo": false,
6537
6469
  "type": "boolean"
6538
6470
  },
6539
- "ticket": {
6540
- "description": "Ticket ID to check (alternative to positional arg)",
6541
- "name": "ticket",
6471
+ "name": {
6472
+ "char": "n",
6473
+ "description": "New project name",
6474
+ "name": "name",
6475
+ "hasDynamicHelp": false,
6476
+ "multiple": false,
6477
+ "type": "option"
6478
+ },
6479
+ "description": {
6480
+ "char": "d",
6481
+ "description": "New project description",
6482
+ "name": "description",
6542
6483
  "hasDynamicHelp": false,
6543
6484
  "multiple": false,
6544
6485
  "type": "option"
@@ -6546,7 +6487,7 @@
6546
6487
  },
6547
6488
  "hasDynamicHelp": false,
6548
6489
  "hiddenAliases": [],
6549
- "id": "pr:status",
6490
+ "id": "project:update",
6550
6491
  "pluginAlias": "@proletariat/cli",
6551
6492
  "pluginName": "@proletariat/cli",
6552
6493
  "pluginType": "core",
@@ -6555,23 +6496,23 @@
6555
6496
  "relativePath": [
6556
6497
  "dist",
6557
6498
  "commands",
6558
- "pr",
6559
- "status.js"
6499
+ "project",
6500
+ "update.js"
6560
6501
  ]
6561
6502
  },
6562
- "project:archive": {
6503
+ "project:view": {
6563
6504
  "aliases": [],
6564
6505
  "args": {
6565
6506
  "id": {
6566
- "description": "Project ID",
6507
+ "description": "Project ID to view - prompts with dropdown if not provided",
6567
6508
  "name": "id",
6568
- "required": true
6509
+ "required": false
6569
6510
  }
6570
6511
  },
6571
- "description": "Archive a project (hide from default views)",
6512
+ "description": "View a project's board",
6572
6513
  "examples": [
6573
- "<%= config.bin %> <%= command.id %> old-project",
6574
- "<%= config.bin %> <%= command.id %> old-project --force"
6514
+ "<%= config.bin %> <%= command.id %> my-project",
6515
+ "<%= config.bin %> <%= command.id %> # Views default project"
6575
6516
  ],
6576
6517
  "flags": {
6577
6518
  "project": {
@@ -6594,18 +6535,11 @@
6594
6535
  "name": "machine",
6595
6536
  "allowNo": false,
6596
6537
  "type": "boolean"
6597
- },
6598
- "force": {
6599
- "char": "f",
6600
- "description": "Skip confirmation",
6601
- "name": "force",
6602
- "allowNo": false,
6603
- "type": "boolean"
6604
6538
  }
6605
6539
  },
6606
6540
  "hasDynamicHelp": false,
6607
6541
  "hiddenAliases": [],
6608
- "id": "project:archive",
6542
+ "id": "project:view",
6609
6543
  "pluginAlias": "@proletariat/cli",
6610
6544
  "pluginName": "@proletariat/cli",
6611
6545
  "pluginType": "core",
@@ -6615,24 +6549,23 @@
6615
6549
  "dist",
6616
6550
  "commands",
6617
6551
  "project",
6618
- "archive.js"
6552
+ "view.js"
6619
6553
  ]
6620
6554
  },
6621
- "project:create": {
6555
+ "pr:checks": {
6622
6556
  "aliases": [],
6623
6557
  "args": {
6624
- "name": {
6625
- "description": "Project name",
6626
- "name": "name",
6558
+ "prNumber": {
6559
+ "description": "PR number (defaults to PR for current branch)",
6560
+ "name": "prNumber",
6627
6561
  "required": false
6628
6562
  }
6629
6563
  },
6630
- "description": "Create a new project in the PMO",
6564
+ "description": "Show CI check status for a pull request",
6631
6565
  "examples": [
6632
- "<%= config.bin %> <%= command.id %> \"My New Project\"",
6633
- "<%= config.bin %> <%= command.id %> --name \"Mobile App\" --description \"iOS and Android app\"",
6634
- "<%= config.bin %> <%= command.id %> -i # Interactive mode",
6635
- "<%= config.bin %> <%= command.id %> --name \"Test\" --dry-run --json # Validate without creating"
6566
+ "<%= config.bin %> <%= command.id %>",
6567
+ "<%= config.bin %> <%= command.id %> 123",
6568
+ "<%= config.bin %> <%= command.id %> --json"
6636
6569
  ],
6637
6570
  "flags": {
6638
6571
  "project": {
@@ -6655,64 +6588,11 @@
6655
6588
  "name": "machine",
6656
6589
  "allowNo": false,
6657
6590
  "type": "boolean"
6658
- },
6659
- "name": {
6660
- "char": "n",
6661
- "description": "Project name [required for non-interactive]",
6662
- "name": "name",
6663
- "hasDynamicHelp": false,
6664
- "multiple": false,
6665
- "type": "option"
6666
- },
6667
- "id": {
6668
- "description": "Custom project ID (auto-generated from name if not provided)",
6669
- "name": "id",
6670
- "hasDynamicHelp": false,
6671
- "multiple": false,
6672
- "type": "option"
6673
- },
6674
- "description": {
6675
- "char": "d",
6676
- "description": "Project description",
6677
- "name": "description",
6678
- "hasDynamicHelp": false,
6679
- "multiple": false,
6680
- "type": "option"
6681
- },
6682
- "template": {
6683
- "char": "t",
6684
- "description": "Workflow template",
6685
- "name": "template",
6686
- "default": "kanban",
6687
- "hasDynamicHelp": false,
6688
- "multiple": false,
6689
- "options": [
6690
- "default",
6691
- "kanban",
6692
- "linear",
6693
- "5-tool-founder",
6694
- "bug-smash",
6695
- "gtm"
6696
- ],
6697
- "type": "option"
6698
- },
6699
- "interactive": {
6700
- "char": "i",
6701
- "description": "Interactive mode",
6702
- "name": "interactive",
6703
- "allowNo": false,
6704
- "type": "boolean"
6705
- },
6706
- "dry-run": {
6707
- "description": "Validate inputs without creating project (use with --json for structured output)",
6708
- "name": "dry-run",
6709
- "allowNo": false,
6710
- "type": "boolean"
6711
6591
  }
6712
6592
  },
6713
6593
  "hasDynamicHelp": false,
6714
6594
  "hiddenAliases": [],
6715
- "id": "project:create",
6595
+ "id": "pr:checks",
6716
6596
  "pluginAlias": "@proletariat/cli",
6717
6597
  "pluginName": "@proletariat/cli",
6718
6598
  "pluginType": "core",
@@ -6721,23 +6601,24 @@
6721
6601
  "relativePath": [
6722
6602
  "dist",
6723
6603
  "commands",
6724
- "project",
6725
- "create.js"
6604
+ "pr",
6605
+ "checks.js"
6726
6606
  ]
6727
6607
  },
6728
- "project:delete": {
6608
+ "pr:close": {
6729
6609
  "aliases": [],
6730
6610
  "args": {
6731
- "id": {
6732
- "description": "Project ID to delete - prompts with dropdown if not provided",
6733
- "name": "id",
6611
+ "prNumber": {
6612
+ "description": "PR number to close",
6613
+ "name": "prNumber",
6734
6614
  "required": false
6735
6615
  }
6736
6616
  },
6737
- "description": "Delete a project from the PMO",
6617
+ "description": "Close a GitHub pull request by number",
6738
6618
  "examples": [
6739
- "<%= config.bin %> <%= command.id %> my-project",
6740
- "<%= config.bin %> <%= command.id %> my-project --force"
6619
+ "<%= config.bin %> <%= command.id %> 123",
6620
+ "<%= config.bin %> <%= command.id %> 123 --comment \"Superseded by #456\"",
6621
+ "<%= config.bin %> <%= command.id %> --json"
6741
6622
  ],
6742
6623
  "flags": {
6743
6624
  "project": {
@@ -6761,17 +6642,18 @@
6761
6642
  "allowNo": false,
6762
6643
  "type": "boolean"
6763
6644
  },
6764
- "force": {
6765
- "char": "f",
6766
- "description": "Skip confirmation prompt",
6767
- "name": "force",
6768
- "allowNo": false,
6769
- "type": "boolean"
6645
+ "comment": {
6646
+ "char": "c",
6647
+ "description": "Comment to leave when closing the PR",
6648
+ "name": "comment",
6649
+ "hasDynamicHelp": false,
6650
+ "multiple": false,
6651
+ "type": "option"
6770
6652
  }
6771
6653
  },
6772
6654
  "hasDynamicHelp": false,
6773
6655
  "hiddenAliases": [],
6774
- "id": "project:delete",
6656
+ "id": "pr:close",
6775
6657
  "pluginAlias": "@proletariat/cli",
6776
6658
  "pluginName": "@proletariat/cli",
6777
6659
  "pluginType": "core",
@@ -6780,16 +6662,25 @@
6780
6662
  "relativePath": [
6781
6663
  "dist",
6782
6664
  "commands",
6783
- "project",
6784
- "delete.js"
6665
+ "pr",
6666
+ "close.js"
6785
6667
  ]
6786
6668
  },
6787
- "project": {
6669
+ "pr:create": {
6788
6670
  "aliases": [],
6789
- "args": {},
6790
- "description": "Interactive menu for project operations",
6671
+ "args": {
6672
+ "ticketId": {
6673
+ "description": "Ticket ID to link to PR - auto-detects from branch if not provided",
6674
+ "name": "ticketId",
6675
+ "required": false
6676
+ }
6677
+ },
6678
+ "description": "Create a GitHub pull request from the current branch",
6791
6679
  "examples": [
6792
- "<%= config.bin %> <%= command.id %>"
6680
+ "<%= config.bin %> <%= command.id %>",
6681
+ "<%= config.bin %> <%= command.id %> TKT-001",
6682
+ "<%= config.bin %> <%= command.id %> --draft",
6683
+ "<%= config.bin %> <%= command.id %> --base develop"
6793
6684
  ],
6794
6685
  "flags": {
6795
6686
  "project": {
@@ -6812,11 +6703,54 @@
6812
6703
  "name": "machine",
6813
6704
  "allowNo": false,
6814
6705
  "type": "boolean"
6706
+ },
6707
+ "base": {
6708
+ "char": "b",
6709
+ "description": "Base branch for the PR (defaults to main/master)",
6710
+ "name": "base",
6711
+ "hasDynamicHelp": false,
6712
+ "multiple": false,
6713
+ "type": "option"
6714
+ },
6715
+ "draft": {
6716
+ "char": "d",
6717
+ "description": "Create as draft PR",
6718
+ "name": "draft",
6719
+ "allowNo": false,
6720
+ "type": "boolean"
6721
+ },
6722
+ "no-link": {
6723
+ "description": "Skip linking PR to ticket",
6724
+ "name": "no-link",
6725
+ "allowNo": false,
6726
+ "type": "boolean"
6727
+ },
6728
+ "title": {
6729
+ "char": "t",
6730
+ "description": "PR title (auto-generated from ticket if not provided)",
6731
+ "name": "title",
6732
+ "hasDynamicHelp": false,
6733
+ "multiple": false,
6734
+ "type": "option"
6735
+ },
6736
+ "body": {
6737
+ "description": "PR body/description",
6738
+ "name": "body",
6739
+ "hasDynamicHelp": false,
6740
+ "multiple": false,
6741
+ "type": "option"
6742
+ },
6743
+ "ticket": {
6744
+ "description": "Ticket ID to link (alternative to positional arg)",
6745
+ "name": "ticket",
6746
+ "hasDynamicHelp": false,
6747
+ "multiple": false,
6748
+ "type": "option"
6815
6749
  }
6816
6750
  },
6817
6751
  "hasDynamicHelp": false,
6818
6752
  "hiddenAliases": [],
6819
- "id": "project",
6753
+ "id": "pr:create",
6820
6754
  "pluginAlias": "@proletariat/cli",
6821
6755
  "pluginName": "@proletariat/cli",
6822
6756
  "pluginType": "core",
@@ -6825,18 +6759,16 @@
6825
6759
  "relativePath": [
6826
6760
  "dist",
6827
6761
  "commands",
6828
- "project",
6829
- "index.js"
6762
+ "pr",
6763
+ "create.js"
6830
6764
  ]
6831
6765
  },
6832
- "project:list": {
6766
+ "pr": {
6833
6767
  "aliases": [],
6834
6768
  "args": {},
6835
- "description": "List all projects in the PMO",
6769
+ "description": "Interactive menu for pull request operations",
6836
6770
  "examples": [
6837
- "<%= config.bin %> <%= command.id %>",
6838
- "<%= config.bin %> <%= command.id %> --archived",
6839
- "<%= config.bin %> <%= command.id %> --all"
6771
+ "<%= config.bin %> <%= command.id %>"
6840
6772
  ],
6841
6773
  "flags": {
6842
6774
  "project": {
@@ -6860,23 +6792,27 @@
6860
6792
  "allowNo": false,
6861
6793
  "type": "boolean"
6862
6794
  },
6863
- "archived": {
6795
+ "action": {
6864
6796
  "char": "a",
6865
- "description": "Show only archived projects",
6866
- "name": "archived",
6867
- "allowNo": false,
6868
- "type": "boolean"
6869
- },
6870
- "all": {
6871
- "description": "Show all projects (including archived)",
6872
- "name": "all",
6873
- "allowNo": false,
6874
- "type": "boolean"
6797
+ "description": "Action to perform (list, create, merge, close, checks, link, status)",
6798
+ "name": "action",
6799
+ "hasDynamicHelp": false,
6800
+ "multiple": false,
6801
+ "options": [
6802
+ "list",
6803
+ "create",
6804
+ "merge",
6805
+ "close",
6806
+ "checks",
6807
+ "link",
6808
+ "status"
6809
+ ],
6810
+ "type": "option"
6875
6811
  }
6876
6812
  },
6877
6813
  "hasDynamicHelp": false,
6878
6814
  "hiddenAliases": [],
6879
- "id": "project:list",
6815
+ "id": "pr",
6880
6816
  "pluginAlias": "@proletariat/cli",
6881
6817
  "pluginName": "@proletariat/cli",
6882
6818
  "pluginType": "core",
@@ -6885,25 +6821,25 @@
6885
6821
  "relativePath": [
6886
6822
  "dist",
6887
6823
  "commands",
6888
- "project",
6889
- "list.js"
6824
+ "pr",
6825
+ "index.js"
6890
6826
  ]
6891
6827
  },
6892
- "project:spec": {
6828
+ "pr:link": {
6893
6829
  "aliases": [],
6894
6830
  "args": {
6895
- "projectId": {
6896
- "description": "Project ID",
6897
- "name": "projectId",
6831
+ "ticketId": {
6832
+ "description": "Ticket ID to link PR to",
6833
+ "name": "ticketId",
6898
6834
  "required": false
6899
6835
  }
6900
6836
  },
6901
- "description": "Manage specs associated with a project (many-to-many)",
6837
+ "description": "Link an existing GitHub pull request to a ticket",
6902
6838
  "examples": [
6903
- "<%= config.bin %> <%= command.id %> my-project",
6904
- "<%= config.bin %> <%= command.id %> my-project --add SPEC-001",
6905
- "<%= config.bin %> <%= command.id %> my-project --remove SPEC-001",
6906
- "<%= config.bin %> <%= command.id %>"
6839
+ "<%= config.bin %> <%= command.id %>",
6840
+ "<%= config.bin %> <%= command.id %> TKT-001",
6841
+ "<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
6842
+ "<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
6907
6843
  ],
6908
6844
  "flags": {
6909
6845
  "project": {
@@ -6927,26 +6863,39 @@
6927
6863
  "allowNo": false,
6928
6864
  "type": "boolean"
6929
6865
  },
6930
- "add": {
6931
- "char": "a",
6932
- "description": "Add a spec to this project",
6933
- "name": "add",
6866
+ "pr": {
6867
+ "char": "p",
6868
+ "description": "PR number to link",
6869
+ "name": "pr",
6934
6870
  "hasDynamicHelp": false,
6935
6871
  "multiple": false,
6936
6872
  "type": "option"
6937
6873
  },
6938
- "remove": {
6939
- "char": "r",
6940
- "description": "Remove a spec from this project",
6941
- "name": "remove",
6874
+ "url": {
6875
+ "char": "u",
6876
+ "description": "PR URL to link",
6877
+ "name": "url",
6878
+ "hasDynamicHelp": false,
6879
+ "multiple": false,
6880
+ "type": "option"
6881
+ },
6882
+ "ticket": {
6883
+ "description": "Ticket ID to link (alternative to positional arg)",
6884
+ "name": "ticket",
6942
6885
  "hasDynamicHelp": false,
6943
6886
  "multiple": false,
6944
6887
  "type": "option"
6888
+ },
6889
+ "confirm": {
6890
+ "description": "Confirm overwriting existing PR link",
6891
+ "name": "confirm",
6892
+ "allowNo": false,
6893
+ "type": "boolean"
6945
6894
  }
6946
6895
  },
6947
6896
  "hasDynamicHelp": false,
6948
6897
  "hiddenAliases": [],
6949
- "id": "project:spec",
6898
+ "id": "pr:link",
6950
6899
  "pluginAlias": "@proletariat/cli",
6951
6900
  "pluginName": "@proletariat/cli",
6952
6901
  "pluginType": "core",
@@ -6955,22 +6904,20 @@
6955
6904
  "relativePath": [
6956
6905
  "dist",
6957
6906
  "commands",
6958
- "project",
6959
- "spec.js"
6907
+ "pr",
6908
+ "link.js"
6960
6909
  ]
6961
6910
  },
6962
- "project:unarchive": {
6911
+ "pr:list": {
6963
6912
  "aliases": [],
6964
- "args": {
6965
- "id": {
6966
- "description": "Project ID",
6967
- "name": "id",
6968
- "required": true
6969
- }
6970
- },
6971
- "description": "Unarchive a project (restore to default views)",
6913
+ "args": {},
6914
+ "description": "List pull requests linked to tickets in the workspace",
6972
6915
  "examples": [
6973
- "<%= config.bin %> <%= command.id %> old-project"
6916
+ "<%= config.bin %> <%= command.id %>",
6917
+ "<%= config.bin %> <%= command.id %> --state open",
6918
+ "<%= config.bin %> <%= command.id %> --state draft",
6919
+ "<%= config.bin %> <%= command.id %> --format json",
6920
+ "<%= config.bin %> <%= command.id %> --machine"
6974
6921
  ],
6975
6922
  "flags": {
6976
6923
  "project": {
@@ -6993,11 +6940,48 @@
6993
6940
  "name": "machine",
6994
6941
  "allowNo": false,
6995
6942
  "type": "boolean"
6943
+ },
6944
+ "state": {
6945
+ "char": "s",
6946
+ "description": "Filter by PR state",
6947
+ "name": "state",
6948
+ "default": "open",
6949
+ "hasDynamicHelp": false,
6950
+ "multiple": false,
6951
+ "options": [
6952
+ "open",
6953
+ "draft",
6954
+ "all"
6955
+ ],
6956
+ "type": "option"
6957
+ },
6958
+ "format": {
6959
+ "char": "f",
6960
+ "description": "Output format",
6961
+ "name": "format",
6962
+ "default": "table",
6963
+ "hasDynamicHelp": false,
6964
+ "multiple": false,
6965
+ "options": [
6966
+ "table",
6967
+ "compact",
6968
+ "json"
6969
+ ],
6970
+ "type": "option"
6971
+ },
6972
+ "limit": {
6973
+ "char": "l",
6974
+ "description": "Maximum number of PRs to show",
6975
+ "name": "limit",
6976
+ "default": 50,
6977
+ "hasDynamicHelp": false,
6978
+ "multiple": false,
6979
+ "type": "option"
6996
6980
  }
6997
6981
  },
6998
6982
  "hasDynamicHelp": false,
6999
6983
  "hiddenAliases": [],
7000
- "id": "project:unarchive",
6984
+ "id": "pr:list",
7001
6985
  "pluginAlias": "@proletariat/cli",
7002
6986
  "pluginName": "@proletariat/cli",
7003
6987
  "pluginType": "core",
@@ -7006,25 +6990,25 @@
7006
6990
  "relativePath": [
7007
6991
  "dist",
7008
6992
  "commands",
7009
- "project",
7010
- "unarchive.js"
6993
+ "pr",
6994
+ "list.js"
7011
6995
  ]
7012
6996
  },
7013
- "project:update": {
6997
+ "pr:merge": {
7014
6998
  "aliases": [],
7015
6999
  "args": {
7016
- "id": {
7017
- "description": "Project ID or name",
7018
- "name": "id",
7000
+ "prNumber": {
7001
+ "description": "PR number to merge",
7002
+ "name": "prNumber",
7019
7003
  "required": false
7020
7004
  }
7021
7005
  },
7022
- "description": "Update project metadata (name, description)",
7006
+ "description": "Merge a GitHub pull request by number",
7023
7007
  "examples": [
7024
- "<%= config.bin %> <%= command.id %> my-project --name \"New Project Name\"",
7025
- "<%= config.bin %> <%= command.id %> my-project --description \"Updated description\"",
7026
- "<%= config.bin %> <%= command.id %> my-project --name \"New Name\" --description \"New description\"",
7027
- "<%= config.bin %> <%= command.id %> my-project # Interactive mode"
7008
+ "<%= config.bin %> <%= command.id %> 123",
7009
+ "<%= config.bin %> <%= command.id %> 123 --method squash",
7010
+ "<%= config.bin %> <%= command.id %> 123 --no-delete-branch",
7011
+ "<%= config.bin %> <%= command.id %> --json"
7028
7012
  ],
7029
7013
  "flags": {
7030
7014
  "project": {
@@ -7048,26 +7032,35 @@
7048
7032
  "allowNo": false,
7049
7033
  "type": "boolean"
7050
7034
  },
7051
- "name": {
7052
- "char": "n",
7053
- "description": "New project name",
7054
- "name": "name",
7035
+ "method": {
7036
+ "description": "Merge method",
7037
+ "name": "method",
7038
+ "default": "squash",
7055
7039
  "hasDynamicHelp": false,
7056
7040
  "multiple": false,
7041
+ "options": [
7042
+ "merge",
7043
+ "squash",
7044
+ "rebase"
7045
+ ],
7057
7046
  "type": "option"
7058
7047
  },
7059
- "description": {
7060
- "char": "d",
7061
- "description": "New project description",
7062
- "name": "description",
7063
- "hasDynamicHelp": false,
7064
- "multiple": false,
7065
- "type": "option"
7048
+ "delete-branch": {
7049
+ "description": "Delete branch after merging",
7050
+ "name": "delete-branch",
7051
+ "allowNo": true,
7052
+ "type": "boolean"
7053
+ },
7054
+ "admin": {
7055
+ "description": "Use admin privileges to bypass branch protections",
7056
+ "name": "admin",
7057
+ "allowNo": false,
7058
+ "type": "boolean"
7066
7059
  }
7067
7060
  },
7068
7061
  "hasDynamicHelp": false,
7069
7062
  "hiddenAliases": [],
7070
- "id": "project:update",
7063
+ "id": "pr:merge",
7071
7064
  "pluginAlias": "@proletariat/cli",
7072
7065
  "pluginName": "@proletariat/cli",
7073
7066
  "pluginType": "core",
@@ -7075,24 +7068,24 @@
7075
7068
  "isESM": true,
7076
7069
  "relativePath": [
7077
7070
  "dist",
7078
- "commands",
7079
- "project",
7080
- "update.js"
7071
+ "commands",
7072
+ "pr",
7073
+ "merge.js"
7081
7074
  ]
7082
7075
  },
7083
- "project:view": {
7076
+ "pr:status": {
7084
7077
  "aliases": [],
7085
7078
  "args": {
7086
- "id": {
7087
- "description": "Project ID to view - prompts with dropdown if not provided",
7088
- "name": "id",
7079
+ "ticketId": {
7080
+ "description": "Ticket ID to check PR status for",
7081
+ "name": "ticketId",
7089
7082
  "required": false
7090
7083
  }
7091
7084
  },
7092
- "description": "View a project's board",
7085
+ "description": "View PR status for a ticket",
7093
7086
  "examples": [
7094
- "<%= config.bin %> <%= command.id %> my-project",
7095
- "<%= config.bin %> <%= command.id %> # Views default project"
7087
+ "<%= config.bin %> <%= command.id %>",
7088
+ "<%= config.bin %> <%= command.id %> TKT-001"
7096
7089
  ],
7097
7090
  "flags": {
7098
7091
  "project": {
@@ -7115,11 +7108,18 @@
7115
7108
  "name": "machine",
7116
7109
  "allowNo": false,
7117
7110
  "type": "boolean"
7111
+ },
7112
+ "ticket": {
7113
+ "description": "Ticket ID to check (alternative to positional arg)",
7114
+ "name": "ticket",
7115
+ "hasDynamicHelp": false,
7116
+ "multiple": false,
7117
+ "type": "option"
7118
7118
  }
7119
7119
  },
7120
7120
  "hasDynamicHelp": false,
7121
7121
  "hiddenAliases": [],
7122
- "id": "project:view",
7122
+ "id": "pr:status",
7123
7123
  "pluginAlias": "@proletariat/cli",
7124
7124
  "pluginName": "@proletariat/cli",
7125
7125
  "pluginType": "core",
@@ -7128,8 +7128,8 @@
7128
7128
  "relativePath": [
7129
7129
  "dist",
7130
7130
  "commands",
7131
- "project",
7132
- "view.js"
7131
+ "pr",
7132
+ "status.js"
7133
7133
  ]
7134
7134
  },
7135
7135
  "qa": {
@@ -7771,6 +7771,74 @@
7771
7771
  "index.js"
7772
7772
  ]
7773
7773
  },
7774
+ "shortcut:connect": {
7775
+ "aliases": [],
7776
+ "args": {},
7777
+ "description": "Connect to Shortcut workspace and configure authentication",
7778
+ "examples": [
7779
+ "<%= config.bin %> <%= command.id %>",
7780
+ "<%= config.bin %> <%= command.id %> --check",
7781
+ "<%= config.bin %> <%= command.id %> --force",
7782
+ "<%= config.bin %> <%= command.id %> --disconnect",
7783
+ "SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
7784
+ "<%= config.bin %> <%= command.id %> --json"
7785
+ ],
7786
+ "flags": {
7787
+ "project": {
7788
+ "char": "P",
7789
+ "description": "Project ID (uses first project if only one exists)",
7790
+ "name": "project",
7791
+ "hasDynamicHelp": false,
7792
+ "multiple": false,
7793
+ "type": "option"
7794
+ },
7795
+ "json": {
7796
+ "description": "Output as JSON for AI agents/scripts",
7797
+ "name": "json",
7798
+ "allowNo": false,
7799
+ "type": "boolean"
7800
+ },
7801
+ "machine": {
7802
+ "char": "m",
7803
+ "description": "Output as JSON for AI agents/scripts",
7804
+ "name": "machine",
7805
+ "allowNo": false,
7806
+ "type": "boolean"
7807
+ },
7808
+ "check": {
7809
+ "description": "Only check if Shortcut credentials are valid (do not prompt)",
7810
+ "name": "check",
7811
+ "allowNo": false,
7812
+ "type": "boolean"
7813
+ },
7814
+ "force": {
7815
+ "description": "Force re-authentication even if credentials exist",
7816
+ "name": "force",
7817
+ "allowNo": false,
7818
+ "type": "boolean"
7819
+ },
7820
+ "disconnect": {
7821
+ "description": "Remove stored Shortcut credentials and configuration",
7822
+ "name": "disconnect",
7823
+ "allowNo": false,
7824
+ "type": "boolean"
7825
+ }
7826
+ },
7827
+ "hasDynamicHelp": false,
7828
+ "hiddenAliases": [],
7829
+ "id": "shortcut:connect",
7830
+ "pluginAlias": "@proletariat/cli",
7831
+ "pluginName": "@proletariat/cli",
7832
+ "pluginType": "core",
7833
+ "strict": true,
7834
+ "isESM": true,
7835
+ "relativePath": [
7836
+ "dist",
7837
+ "commands",
7838
+ "shortcut",
7839
+ "connect.js"
7840
+ ]
7841
+ },
7774
7842
  "session:attach": {
7775
7843
  "aliases": [],
7776
7844
  "args": {
@@ -8625,74 +8693,6 @@
8625
8693
  "restart.js"
8626
8694
  ]
8627
8695
  },
8628
- "shortcut:connect": {
8629
- "aliases": [],
8630
- "args": {},
8631
- "description": "Connect to Shortcut workspace and configure authentication",
8632
- "examples": [
8633
- "<%= config.bin %> <%= command.id %>",
8634
- "<%= config.bin %> <%= command.id %> --check",
8635
- "<%= config.bin %> <%= command.id %> --force",
8636
- "<%= config.bin %> <%= command.id %> --disconnect",
8637
- "SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
8638
- "<%= config.bin %> <%= command.id %> --json"
8639
- ],
8640
- "flags": {
8641
- "project": {
8642
- "char": "P",
8643
- "description": "Project ID (uses first project if only one exists)",
8644
- "name": "project",
8645
- "hasDynamicHelp": false,
8646
- "multiple": false,
8647
- "type": "option"
8648
- },
8649
- "json": {
8650
- "description": "Output as JSON for AI agents/scripts",
8651
- "name": "json",
8652
- "allowNo": false,
8653
- "type": "boolean"
8654
- },
8655
- "machine": {
8656
- "char": "m",
8657
- "description": "Output as JSON for AI agents/scripts",
8658
- "name": "machine",
8659
- "allowNo": false,
8660
- "type": "boolean"
8661
- },
8662
- "check": {
8663
- "description": "Only check if Shortcut credentials are valid (do not prompt)",
8664
- "name": "check",
8665
- "allowNo": false,
8666
- "type": "boolean"
8667
- },
8668
- "force": {
8669
- "description": "Force re-authentication even if credentials exist",
8670
- "name": "force",
8671
- "allowNo": false,
8672
- "type": "boolean"
8673
- },
8674
- "disconnect": {
8675
- "description": "Remove stored Shortcut credentials and configuration",
8676
- "name": "disconnect",
8677
- "allowNo": false,
8678
- "type": "boolean"
8679
- }
8680
- },
8681
- "hasDynamicHelp": false,
8682
- "hiddenAliases": [],
8683
- "id": "shortcut:connect",
8684
- "pluginAlias": "@proletariat/cli",
8685
- "pluginName": "@proletariat/cli",
8686
- "pluginType": "core",
8687
- "strict": true,
8688
- "isESM": true,
8689
- "relativePath": [
8690
- "dist",
8691
- "commands",
8692
- "shortcut",
8693
- "connect.js"
8694
- ]
8695
- },
8696
8696
  "support:book": {
8697
8697
  "aliases": [],
8698
8698
  "args": {},
@@ -8952,14 +8952,30 @@
8952
8952
  "logs.js"
8953
8953
  ]
8954
8954
  },
8955
- "telemetry:disable": {
8955
+ "terminal:title": {
8956
8956
  "aliases": [],
8957
- "args": {},
8958
- "description": "Disable anonymous telemetry",
8957
+ "args": {
8958
+ "title": {
8959
+ "description": "Title to set for the terminal tab/window",
8960
+ "name": "title",
8961
+ "required": false
8962
+ }
8963
+ },
8964
+ "description": "Set the terminal tab/window title",
8959
8965
  "examples": [
8960
- "<%= config.bin %> <%= command.id %>"
8966
+ "<%= config.bin %> <%= command.id %> \"My Custom Name\"",
8967
+ "<%= config.bin %> <%= command.id %> # Interactive prompt",
8968
+ "<%= config.bin %> <%= command.id %> --reset",
8969
+ "<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
8961
8970
  ],
8962
8971
  "flags": {
8972
+ "reset": {
8973
+ "char": "r",
8974
+ "description": "Reset terminal title to default",
8975
+ "name": "reset",
8976
+ "allowNo": false,
8977
+ "type": "boolean"
8978
+ },
8963
8979
  "json": {
8964
8980
  "description": "Output as JSON for AI agents/scripts",
8965
8981
  "name": "json",
@@ -8976,24 +8992,23 @@
8976
8992
  },
8977
8993
  "hasDynamicHelp": false,
8978
8994
  "hiddenAliases": [],
8979
- "id": "telemetry:disable",
8995
+ "id": "terminal:title",
8980
8996
  "pluginAlias": "@proletariat/cli",
8981
8997
  "pluginName": "@proletariat/cli",
8982
8998
  "pluginType": "core",
8983
8999
  "strict": true,
8984
- "enableJsonFlag": false,
8985
9000
  "isESM": true,
8986
9001
  "relativePath": [
8987
9002
  "dist",
8988
9003
  "commands",
8989
- "telemetry",
8990
- "disable.js"
9004
+ "terminal",
9005
+ "title.js"
8991
9006
  ]
8992
9007
  },
8993
- "telemetry:enable": {
9008
+ "telemetry:disable": {
8994
9009
  "aliases": [],
8995
9010
  "args": {},
8996
- "description": "Enable anonymous telemetry",
9011
+ "description": "Disable anonymous telemetry",
8997
9012
  "examples": [
8998
9013
  "<%= config.bin %> <%= command.id %>"
8999
9014
  ],
@@ -9014,7 +9029,7 @@
9014
9029
  },
9015
9030
  "hasDynamicHelp": false,
9016
9031
  "hiddenAliases": [],
9017
- "id": "telemetry:enable",
9032
+ "id": "telemetry:disable",
9018
9033
  "pluginAlias": "@proletariat/cli",
9019
9034
  "pluginName": "@proletariat/cli",
9020
9035
  "pluginType": "core",
@@ -9025,16 +9040,15 @@
9025
9040
  "dist",
9026
9041
  "commands",
9027
9042
  "telemetry",
9028
- "enable.js"
9043
+ "disable.js"
9029
9044
  ]
9030
9045
  },
9031
- "telemetry": {
9046
+ "telemetry:enable": {
9032
9047
  "aliases": [],
9033
9048
  "args": {},
9034
- "description": "Show telemetry status",
9049
+ "description": "Enable anonymous telemetry",
9035
9050
  "examples": [
9036
- "<%= config.bin %> <%= command.id %>",
9037
- "<%= config.bin %> <%= command.id %> --json"
9051
+ "<%= config.bin %> <%= command.id %>"
9038
9052
  ],
9039
9053
  "flags": {
9040
9054
  "json": {
@@ -9053,7 +9067,7 @@
9053
9067
  },
9054
9068
  "hasDynamicHelp": false,
9055
9069
  "hiddenAliases": [],
9056
- "id": "telemetry",
9070
+ "id": "telemetry:enable",
9057
9071
  "pluginAlias": "@proletariat/cli",
9058
9072
  "pluginName": "@proletariat/cli",
9059
9073
  "pluginType": "core",
@@ -9064,15 +9078,16 @@
9064
9078
  "dist",
9065
9079
  "commands",
9066
9080
  "telemetry",
9067
- "index.js"
9081
+ "enable.js"
9068
9082
  ]
9069
9083
  },
9070
- "telemetry:status": {
9084
+ "telemetry": {
9071
9085
  "aliases": [],
9072
9086
  "args": {},
9073
9087
  "description": "Show telemetry status",
9074
9088
  "examples": [
9075
- "<%= config.bin %> telemetry status"
9089
+ "<%= config.bin %> <%= command.id %>",
9090
+ "<%= config.bin %> <%= command.id %> --json"
9076
9091
  ],
9077
9092
  "flags": {
9078
9093
  "json": {
@@ -9091,7 +9106,7 @@
9091
9106
  },
9092
9107
  "hasDynamicHelp": false,
9093
9108
  "hiddenAliases": [],
9094
- "id": "telemetry:status",
9109
+ "id": "telemetry",
9095
9110
  "pluginAlias": "@proletariat/cli",
9096
9111
  "pluginName": "@proletariat/cli",
9097
9112
  "pluginType": "core",
@@ -9102,33 +9117,17 @@
9102
9117
  "dist",
9103
9118
  "commands",
9104
9119
  "telemetry",
9105
- "status.js"
9120
+ "index.js"
9106
9121
  ]
9107
9122
  },
9108
- "terminal:title": {
9123
+ "telemetry:status": {
9109
9124
  "aliases": [],
9110
- "args": {
9111
- "title": {
9112
- "description": "Title to set for the terminal tab/window",
9113
- "name": "title",
9114
- "required": false
9115
- }
9116
- },
9117
- "description": "Set the terminal tab/window title",
9125
+ "args": {},
9126
+ "description": "Show telemetry status",
9118
9127
  "examples": [
9119
- "<%= config.bin %> <%= command.id %> \"My Custom Name\"",
9120
- "<%= config.bin %> <%= command.id %> # Interactive prompt",
9121
- "<%= config.bin %> <%= command.id %> --reset",
9122
- "<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
9128
+ "<%= config.bin %> telemetry status"
9123
9129
  ],
9124
9130
  "flags": {
9125
- "reset": {
9126
- "char": "r",
9127
- "description": "Reset terminal title to default",
9128
- "name": "reset",
9129
- "allowNo": false,
9130
- "type": "boolean"
9131
- },
9132
9131
  "json": {
9133
9132
  "description": "Output as JSON for AI agents/scripts",
9134
9133
  "name": "json",
@@ -9145,17 +9144,18 @@
9145
9144
  },
9146
9145
  "hasDynamicHelp": false,
9147
9146
  "hiddenAliases": [],
9148
- "id": "terminal:title",
9147
+ "id": "telemetry:status",
9149
9148
  "pluginAlias": "@proletariat/cli",
9150
9149
  "pluginName": "@proletariat/cli",
9151
9150
  "pluginType": "core",
9152
9151
  "strict": true,
9152
+ "enableJsonFlag": false,
9153
9153
  "isESM": true,
9154
9154
  "relativePath": [
9155
9155
  "dist",
9156
9156
  "commands",
9157
- "terminal",
9158
- "title.js"
9157
+ "telemetry",
9158
+ "status.js"
9159
9159
  ]
9160
9160
  },
9161
9161
  "theme:add-names": {
@@ -14716,5 +14716,5 @@
14716
14716
  ]
14717
14717
  }
14718
14718
  },
14719
- "version": "0.3.82"
14719
+ "version": "0.3.83"
14720
14720
  }