@proletariat/cli 0.3.86 → 0.3.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/config/index.js +42 -0
- package/dist/commands/config/index.js.map +1 -1
- package/dist/commands/init.d.ts +6 -1
- package/dist/commands/init.js +44 -89
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/new.d.ts +30 -2
- package/dist/commands/new.js +141 -9
- package/dist/commands/new.js.map +1 -1
- package/dist/commands/session/poke.d.ts +3 -7
- package/dist/commands/session/poke.js +5 -7
- package/dist/commands/session/poke.js.map +1 -1
- package/dist/commands/ticket/cancel.js +2 -0
- package/dist/commands/ticket/cancel.js.map +1 -1
- package/dist/commands/ticket/complete.js +2 -0
- package/dist/commands/ticket/complete.js.map +1 -1
- package/dist/commands/ticket/delete.js +2 -0
- package/dist/commands/ticket/delete.js.map +1 -1
- package/dist/commands/ticket/edit.js +5 -0
- package/dist/commands/ticket/edit.js.map +1 -1
- package/dist/commands/ticket/move.js +2 -0
- package/dist/commands/ticket/move.js.map +1 -1
- package/dist/commands/ticket/project.js +2 -0
- package/dist/commands/ticket/project.js.map +1 -1
- package/dist/commands/ticket/reassign.js +2 -0
- package/dist/commands/ticket/reassign.js.map +1 -1
- package/dist/commands/ticket/resolve.js +2 -0
- package/dist/commands/ticket/resolve.js.map +1 -1
- package/dist/commands/ticket/update.js +5 -0
- package/dist/commands/ticket/update.js.map +1 -1
- package/dist/commands/work/complete.js +2 -0
- package/dist/commands/work/complete.js.map +1 -1
- package/dist/commands/work/peek.js +4 -0
- package/dist/commands/work/peek.js.map +1 -1
- package/dist/commands/work/poke.d.ts +3 -4
- package/dist/commands/work/poke.js +9 -4
- package/dist/commands/work/poke.js.map +1 -1
- package/dist/commands/work/ready.js +2 -0
- package/dist/commands/work/ready.js.map +1 -1
- package/dist/commands/work/start.d.ts +1 -0
- package/dist/commands/work/start.js +46 -2
- package/dist/commands/work/start.js.map +1 -1
- package/dist/commands/work/stop.js +5 -0
- package/dist/commands/work/stop.js.map +1 -1
- package/dist/hooks/init.js +6 -6
- package/dist/hooks/init.js.map +1 -1
- package/dist/hooks/postrun.js +3 -0
- package/dist/hooks/postrun.js.map +1 -1
- package/dist/lib/asana/config.d.ts +1 -1
- package/dist/lib/asana/config.js +18 -30
- package/dist/lib/asana/config.js.map +1 -1
- package/dist/lib/asana/mapper.d.ts +4 -3
- package/dist/lib/asana/mapper.js +17 -10
- package/dist/lib/asana/mapper.js.map +1 -1
- package/dist/lib/database/agents.d.ts +73 -0
- package/dist/lib/database/agents.js +341 -0
- package/dist/lib/database/agents.js.map +1 -0
- package/dist/lib/database/driver.d.ts +115 -0
- package/dist/lib/database/driver.js +109 -0
- package/dist/lib/database/driver.js.map +1 -0
- package/dist/lib/database/drizzle-schema.d.ts +1 -1
- package/dist/lib/database/index.d.ts +25 -287
- package/dist/lib/database/index.js +35 -1067
- package/dist/lib/database/index.js.map +1 -1
- package/dist/lib/database/media.d.ts +53 -0
- package/dist/lib/database/media.js +118 -0
- package/dist/lib/database/media.js.map +1 -0
- package/dist/lib/database/migrations/0011_add_review_gate.d.ts +8 -0
- package/dist/lib/database/migrations/0011_add_review_gate.js +21 -0
- package/dist/lib/database/migrations/0011_add_review_gate.js.map +1 -0
- package/dist/lib/database/migrations/index.js +2 -0
- package/dist/lib/database/migrations/index.js.map +1 -1
- package/dist/lib/database/pmo-bootstrap.d.ts +30 -0
- package/dist/lib/database/pmo-bootstrap.js +105 -0
- package/dist/lib/database/pmo-bootstrap.js.map +1 -0
- package/dist/lib/database/repositories.d.ts +26 -0
- package/dist/lib/database/repositories.js +56 -0
- package/dist/lib/database/repositories.js.map +1 -0
- package/dist/lib/database/settings-store.d.ts +60 -0
- package/dist/lib/database/settings-store.js +87 -0
- package/dist/lib/database/settings-store.js.map +1 -0
- package/dist/lib/database/themes.d.ts +59 -0
- package/dist/lib/database/themes.js +212 -0
- package/dist/lib/database/themes.js.map +1 -0
- package/dist/lib/database/workspace.d.ts +46 -0
- package/dist/lib/database/workspace.js +158 -0
- package/dist/lib/database/workspace.js.map +1 -0
- package/dist/lib/database/worktrees.d.ts +33 -0
- package/dist/lib/database/worktrees.js +60 -0
- package/dist/lib/database/worktrees.js.map +1 -0
- package/dist/lib/execution/config.d.ts +1 -1
- package/dist/lib/execution/config.js +7 -17
- package/dist/lib/execution/config.js.map +1 -1
- package/dist/lib/execution/runners/prompt-builder.js +49 -15
- package/dist/lib/execution/runners/prompt-builder.js.map +1 -1
- package/dist/lib/execution/spawner.d.ts +1 -1
- package/dist/lib/execution/storage.d.ts +6 -4
- package/dist/lib/execution/storage.js +17 -9
- package/dist/lib/execution/storage.js.map +1 -1
- package/dist/lib/execution/types.d.ts +1 -0
- package/dist/lib/execution/types.js.map +1 -1
- package/dist/lib/external-issues/mapping-store.d.ts +4 -3
- package/dist/lib/external-issues/mapping-store.js +21 -13
- package/dist/lib/external-issues/mapping-store.js.map +1 -1
- package/dist/lib/external-issues/outbound-sync.d.ts +1 -1
- package/dist/lib/jira/config.d.ts +1 -6
- package/dist/lib/jira/config.js +16 -33
- package/dist/lib/jira/config.js.map +1 -1
- package/dist/lib/linear/config.d.ts +1 -1
- package/dist/lib/linear/config.js +16 -38
- package/dist/lib/linear/config.js.map +1 -1
- package/dist/lib/linear/mapper.d.ts +4 -3
- package/dist/lib/linear/mapper.js +20 -13
- package/dist/lib/linear/mapper.js.map +1 -1
- package/dist/lib/mcp/tools/action.js +34 -0
- package/dist/lib/mcp/tools/action.js.map +1 -1
- package/dist/lib/monday/config.d.ts +1 -1
- package/dist/lib/monday/config.js +16 -32
- package/dist/lib/monday/config.js.map +1 -1
- package/dist/lib/monday/mapper.d.ts +4 -3
- package/dist/lib/monday/mapper.js +19 -12
- package/dist/lib/monday/mapper.js.map +1 -1
- package/dist/lib/onboarding/wizard.d.ts +2 -2
- package/dist/lib/onboarding/wizard.js +32 -24
- package/dist/lib/onboarding/wizard.js.map +1 -1
- package/dist/lib/pmo/diet.d.ts +1 -1
- package/dist/lib/pmo/schema.d.ts +1 -1
- package/dist/lib/pmo/schema.js +1 -0
- package/dist/lib/pmo/schema.js.map +1 -1
- package/dist/lib/pmo/storage/actions.js +9 -3
- package/dist/lib/pmo/storage/actions.js.map +1 -1
- package/dist/lib/pmo/storage/index.d.ts +9 -0
- package/dist/lib/pmo/storage/index.js +16 -1
- package/dist/lib/pmo/storage/index.js.map +1 -1
- package/dist/lib/pmo/storage/tickets.d.ts +7 -0
- package/dist/lib/pmo/storage/tickets.js +33 -2
- package/dist/lib/pmo/storage/tickets.js.map +1 -1
- package/dist/lib/pmo/storage/types.d.ts +5 -1
- package/dist/lib/pmo/types.d.ts +10 -0
- package/dist/lib/pmo/types.js.map +1 -1
- package/dist/lib/pmo/utils.d.ts +38 -0
- package/dist/lib/pmo/utils.js +61 -0
- package/dist/lib/pmo/utils.js.map +1 -1
- package/dist/lib/providers/event-emitting-provider.js +13 -2
- package/dist/lib/providers/event-emitting-provider.js.map +1 -1
- package/dist/lib/shortcut/config.d.ts +1 -7
- package/dist/lib/shortcut/config.js +13 -32
- package/dist/lib/shortcut/config.js.map +1 -1
- package/dist/lib/telemetry/analytics.d.ts +47 -0
- package/dist/lib/telemetry/analytics.js +52 -0
- package/dist/lib/telemetry/analytics.js.map +1 -1
- package/dist/lib/telemetry/telemetry-bridge.d.ts +35 -0
- package/dist/lib/telemetry/telemetry-bridge.js +139 -0
- package/dist/lib/telemetry/telemetry-bridge.js.map +1 -0
- package/dist/lib/trello/config.d.ts +1 -26
- package/dist/lib/trello/config.js +23 -64
- package/dist/lib/trello/config.js.map +1 -1
- package/dist/lib/trello/mapper.d.ts +4 -3
- package/dist/lib/trello/mapper.js +17 -10
- package/dist/lib/trello/mapper.js.map +1 -1
- package/dist/lib/work-lifecycle/post-execution.d.ts +6 -2
- package/dist/lib/work-lifecycle/post-execution.js +30 -18
- package/dist/lib/work-lifecycle/post-execution.js.map +1 -1
- package/dist/lib/work-source/config.d.ts +1 -1
- package/dist/lib/work-source/config.js +14 -24
- package/dist/lib/work-source/config.js.map +1 -1
- package/dist/lib/work-source/provider-sources.d.ts +1 -1
- package/dist/lib/work-source/provider-sources.js +8 -20
- package/dist/lib/work-source/provider-sources.js.map +1 -1
- package/oclif.manifest.json +1035 -987
- package/package.json +9 -9
package/oclif.manifest.json
CHANGED
|
@@ -322,11 +322,9 @@
|
|
|
322
322
|
"init": {
|
|
323
323
|
"aliases": [],
|
|
324
324
|
"args": {},
|
|
325
|
-
"description": "Initialize
|
|
325
|
+
"description": "Initialize a new headquarters (deprecated — use `prlt new` instead)",
|
|
326
326
|
"examples": [
|
|
327
|
-
"<%= config.bin %>
|
|
328
|
-
"<%= config.bin %> <%= command.id %> --json",
|
|
329
|
-
"<%= config.bin %> <%= command.id %> --json --setup claude-code"
|
|
327
|
+
"<%= config.bin %> new"
|
|
330
328
|
],
|
|
331
329
|
"flags": {
|
|
332
330
|
"json": {
|
|
@@ -342,6 +340,44 @@
|
|
|
342
340
|
"allowNo": false,
|
|
343
341
|
"type": "boolean"
|
|
344
342
|
},
|
|
343
|
+
"name": {
|
|
344
|
+
"char": "n",
|
|
345
|
+
"description": "HQ name",
|
|
346
|
+
"name": "name",
|
|
347
|
+
"hasDynamicHelp": false,
|
|
348
|
+
"multiple": false,
|
|
349
|
+
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"path": {
|
|
352
|
+
"char": "p",
|
|
353
|
+
"description": "HQ path (defaults to ./{name}-hq)",
|
|
354
|
+
"name": "path",
|
|
355
|
+
"hasDynamicHelp": false,
|
|
356
|
+
"multiple": false,
|
|
357
|
+
"type": "option"
|
|
358
|
+
},
|
|
359
|
+
"agents": {
|
|
360
|
+
"char": "a",
|
|
361
|
+
"description": "Comma-separated list of agent names",
|
|
362
|
+
"name": "agents",
|
|
363
|
+
"hasDynamicHelp": false,
|
|
364
|
+
"multiple": false,
|
|
365
|
+
"type": "option"
|
|
366
|
+
},
|
|
367
|
+
"repos": {
|
|
368
|
+
"char": "r",
|
|
369
|
+
"description": "Comma-separated list of repository paths to clone/move",
|
|
370
|
+
"name": "repos",
|
|
371
|
+
"hasDynamicHelp": false,
|
|
372
|
+
"multiple": false,
|
|
373
|
+
"type": "option"
|
|
374
|
+
},
|
|
375
|
+
"pmo": {
|
|
376
|
+
"description": "Include PMO (Project Management Org)",
|
|
377
|
+
"name": "pmo",
|
|
378
|
+
"allowNo": true,
|
|
379
|
+
"type": "boolean"
|
|
380
|
+
},
|
|
345
381
|
"setup": {
|
|
346
382
|
"description": "Setup method for agent-driven onboarding (claude-code, codex, or manual)",
|
|
347
383
|
"name": "setup",
|
|
@@ -356,6 +392,7 @@
|
|
|
356
392
|
}
|
|
357
393
|
},
|
|
358
394
|
"hasDynamicHelp": false,
|
|
395
|
+
"hidden": true,
|
|
359
396
|
"hiddenAliases": [],
|
|
360
397
|
"id": "init",
|
|
361
398
|
"pluginAlias": "@proletariat/cli",
|
|
@@ -507,6 +544,18 @@
|
|
|
507
544
|
"name": "pmo",
|
|
508
545
|
"allowNo": true,
|
|
509
546
|
"type": "boolean"
|
|
547
|
+
},
|
|
548
|
+
"setup": {
|
|
549
|
+
"description": "Setup method for agent-driven onboarding (claude-code, codex, or manual)",
|
|
550
|
+
"name": "setup",
|
|
551
|
+
"hasDynamicHelp": false,
|
|
552
|
+
"multiple": false,
|
|
553
|
+
"options": [
|
|
554
|
+
"claude-code",
|
|
555
|
+
"codex",
|
|
556
|
+
"manual"
|
|
557
|
+
],
|
|
558
|
+
"type": "option"
|
|
510
559
|
}
|
|
511
560
|
},
|
|
512
561
|
"hasDynamicHelp": false,
|
|
@@ -3509,6 +3558,7 @@
|
|
|
3509
3558
|
"<%= config.bin %> <%= command.id %> --set terminal.app iTerm",
|
|
3510
3559
|
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
3511
3560
|
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
3561
|
+
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
3512
3562
|
"<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
|
|
3513
3563
|
],
|
|
3514
3564
|
"flags": {
|
|
@@ -4203,28 +4253,15 @@
|
|
|
4203
4253
|
"sync.js"
|
|
4204
4254
|
]
|
|
4205
4255
|
},
|
|
4206
|
-
"
|
|
4256
|
+
"feedback": {
|
|
4207
4257
|
"aliases": [],
|
|
4208
4258
|
"args": {},
|
|
4209
|
-
"description": "
|
|
4259
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
4210
4260
|
"examples": [
|
|
4211
|
-
"<%= config.bin %>
|
|
4212
|
-
"<%= config.bin %>
|
|
4213
|
-
"<%= config.bin %> execution config --list # Show all settings",
|
|
4214
|
-
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
4215
|
-
"<%= config.bin %> execution config --set outputMode interactive",
|
|
4216
|
-
"<%= config.bin %> execution config --set permissionMode safe",
|
|
4217
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
4261
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4262
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
4218
4263
|
],
|
|
4219
4264
|
"flags": {
|
|
4220
|
-
"project": {
|
|
4221
|
-
"char": "P",
|
|
4222
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4223
|
-
"name": "project",
|
|
4224
|
-
"hasDynamicHelp": false,
|
|
4225
|
-
"multiple": false,
|
|
4226
|
-
"type": "option"
|
|
4227
|
-
},
|
|
4228
4265
|
"json": {
|
|
4229
4266
|
"description": "Output as JSON for AI agents/scripts",
|
|
4230
4267
|
"name": "json",
|
|
@@ -4238,63 +4275,47 @@
|
|
|
4238
4275
|
"allowNo": false,
|
|
4239
4276
|
"type": "boolean"
|
|
4240
4277
|
},
|
|
4241
|
-
"
|
|
4242
|
-
"char": "
|
|
4243
|
-
"description": "
|
|
4244
|
-
"name": "
|
|
4245
|
-
"hasDynamicHelp": false,
|
|
4246
|
-
"multiple": true,
|
|
4247
|
-
"type": "option"
|
|
4248
|
-
},
|
|
4249
|
-
"list": {
|
|
4250
|
-
"char": "l",
|
|
4251
|
-
"description": "List all configuration values",
|
|
4252
|
-
"name": "list",
|
|
4253
|
-
"allowNo": false,
|
|
4254
|
-
"type": "boolean"
|
|
4255
|
-
},
|
|
4256
|
-
"setting": {
|
|
4257
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
4258
|
-
"name": "setting",
|
|
4278
|
+
"action": {
|
|
4279
|
+
"char": "a",
|
|
4280
|
+
"description": "Action to perform (submit, list, view)",
|
|
4281
|
+
"name": "action",
|
|
4259
4282
|
"hasDynamicHelp": false,
|
|
4260
4283
|
"multiple": false,
|
|
4284
|
+
"options": [
|
|
4285
|
+
"submit",
|
|
4286
|
+
"list",
|
|
4287
|
+
"view"
|
|
4288
|
+
],
|
|
4261
4289
|
"type": "option"
|
|
4262
4290
|
}
|
|
4263
4291
|
},
|
|
4264
4292
|
"hasDynamicHelp": false,
|
|
4265
4293
|
"hiddenAliases": [],
|
|
4266
|
-
"id": "
|
|
4294
|
+
"id": "feedback",
|
|
4267
4295
|
"pluginAlias": "@proletariat/cli",
|
|
4268
4296
|
"pluginName": "@proletariat/cli",
|
|
4269
4297
|
"pluginType": "core",
|
|
4270
4298
|
"strict": true,
|
|
4299
|
+
"enableJsonFlag": false,
|
|
4271
4300
|
"isESM": true,
|
|
4272
4301
|
"relativePath": [
|
|
4273
4302
|
"dist",
|
|
4274
4303
|
"commands",
|
|
4275
|
-
"
|
|
4276
|
-
"
|
|
4304
|
+
"feedback",
|
|
4305
|
+
"index.js"
|
|
4277
4306
|
]
|
|
4278
4307
|
},
|
|
4279
|
-
"
|
|
4308
|
+
"feedback:list": {
|
|
4280
4309
|
"aliases": [],
|
|
4281
4310
|
"args": {},
|
|
4282
|
-
"description": "
|
|
4311
|
+
"description": "List recent feedback issues from the repository",
|
|
4283
4312
|
"examples": [
|
|
4284
4313
|
"<%= config.bin %> <%= command.id %>",
|
|
4285
|
-
"<%= config.bin %> <%= command.id %>
|
|
4286
|
-
"<%= config.bin %> <%= command.id %>
|
|
4287
|
-
"<%= config.bin %> <%= command.id %>
|
|
4314
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
4315
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
4316
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4288
4317
|
],
|
|
4289
4318
|
"flags": {
|
|
4290
|
-
"project": {
|
|
4291
|
-
"char": "P",
|
|
4292
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4293
|
-
"name": "project",
|
|
4294
|
-
"hasDynamicHelp": false,
|
|
4295
|
-
"multiple": false,
|
|
4296
|
-
"type": "option"
|
|
4297
|
-
},
|
|
4298
4319
|
"json": {
|
|
4299
4320
|
"description": "Output as JSON for AI agents/scripts",
|
|
4300
4321
|
"name": "json",
|
|
@@ -4307,42 +4328,70 @@
|
|
|
4307
4328
|
"name": "machine",
|
|
4308
4329
|
"allowNo": false,
|
|
4309
4330
|
"type": "boolean"
|
|
4331
|
+
},
|
|
4332
|
+
"category": {
|
|
4333
|
+
"char": "c",
|
|
4334
|
+
"description": "Filter by category (bug, feature, general)",
|
|
4335
|
+
"name": "category",
|
|
4336
|
+
"hasDynamicHelp": false,
|
|
4337
|
+
"multiple": false,
|
|
4338
|
+
"options": [
|
|
4339
|
+
"bug",
|
|
4340
|
+
"feature",
|
|
4341
|
+
"general"
|
|
4342
|
+
],
|
|
4343
|
+
"type": "option"
|
|
4344
|
+
},
|
|
4345
|
+
"state": {
|
|
4346
|
+
"char": "s",
|
|
4347
|
+
"description": "Filter by state",
|
|
4348
|
+
"name": "state",
|
|
4349
|
+
"default": "open",
|
|
4350
|
+
"hasDynamicHelp": false,
|
|
4351
|
+
"multiple": false,
|
|
4352
|
+
"options": [
|
|
4353
|
+
"open",
|
|
4354
|
+
"closed",
|
|
4355
|
+
"all"
|
|
4356
|
+
],
|
|
4357
|
+
"type": "option"
|
|
4358
|
+
},
|
|
4359
|
+
"limit": {
|
|
4360
|
+
"char": "l",
|
|
4361
|
+
"description": "Maximum number of issues to show",
|
|
4362
|
+
"name": "limit",
|
|
4363
|
+
"default": 20,
|
|
4364
|
+
"hasDynamicHelp": false,
|
|
4365
|
+
"multiple": false,
|
|
4366
|
+
"type": "option"
|
|
4310
4367
|
}
|
|
4311
4368
|
},
|
|
4312
4369
|
"hasDynamicHelp": false,
|
|
4313
4370
|
"hiddenAliases": [],
|
|
4314
|
-
"id": "
|
|
4371
|
+
"id": "feedback:list",
|
|
4315
4372
|
"pluginAlias": "@proletariat/cli",
|
|
4316
4373
|
"pluginName": "@proletariat/cli",
|
|
4317
4374
|
"pluginType": "core",
|
|
4318
4375
|
"strict": true,
|
|
4376
|
+
"enableJsonFlag": false,
|
|
4319
4377
|
"isESM": true,
|
|
4320
4378
|
"relativePath": [
|
|
4321
4379
|
"dist",
|
|
4322
4380
|
"commands",
|
|
4323
|
-
"
|
|
4324
|
-
"
|
|
4381
|
+
"feedback",
|
|
4382
|
+
"list.js"
|
|
4325
4383
|
]
|
|
4326
4384
|
},
|
|
4327
|
-
"
|
|
4385
|
+
"feedback:submit": {
|
|
4328
4386
|
"aliases": [],
|
|
4329
4387
|
"args": {},
|
|
4330
|
-
"description": "
|
|
4388
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
4331
4389
|
"examples": [
|
|
4332
4390
|
"<%= config.bin %> <%= command.id %>",
|
|
4333
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4334
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4335
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4391
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
4392
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4336
4393
|
],
|
|
4337
4394
|
"flags": {
|
|
4338
|
-
"project": {
|
|
4339
|
-
"char": "P",
|
|
4340
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4341
|
-
"name": "project",
|
|
4342
|
-
"hasDynamicHelp": false,
|
|
4343
|
-
"multiple": false,
|
|
4344
|
-
"type": "option"
|
|
4345
|
-
},
|
|
4346
4395
|
"json": {
|
|
4347
4396
|
"description": "Output as JSON for AI agents/scripts",
|
|
4348
4397
|
"name": "json",
|
|
@@ -4356,42 +4405,39 @@
|
|
|
4356
4405
|
"allowNo": false,
|
|
4357
4406
|
"type": "boolean"
|
|
4358
4407
|
},
|
|
4359
|
-
"
|
|
4360
|
-
"char": "
|
|
4361
|
-
"description": "
|
|
4362
|
-
"name": "
|
|
4408
|
+
"title": {
|
|
4409
|
+
"char": "t",
|
|
4410
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
4411
|
+
"name": "title",
|
|
4363
4412
|
"hasDynamicHelp": false,
|
|
4364
4413
|
"multiple": false,
|
|
4365
|
-
"options": [
|
|
4366
|
-
"starting",
|
|
4367
|
-
"running",
|
|
4368
|
-
"completed",
|
|
4369
|
-
"failed",
|
|
4370
|
-
"stopped"
|
|
4371
|
-
],
|
|
4372
4414
|
"type": "option"
|
|
4373
4415
|
},
|
|
4374
|
-
"
|
|
4375
|
-
"char": "
|
|
4376
|
-
"description": "
|
|
4377
|
-
"name": "
|
|
4416
|
+
"body": {
|
|
4417
|
+
"char": "b",
|
|
4418
|
+
"description": "Issue description [required for non-interactive]",
|
|
4419
|
+
"name": "body",
|
|
4378
4420
|
"hasDynamicHelp": false,
|
|
4379
4421
|
"multiple": false,
|
|
4380
4422
|
"type": "option"
|
|
4381
4423
|
},
|
|
4382
|
-
"
|
|
4383
|
-
"char": "
|
|
4384
|
-
"description": "
|
|
4385
|
-
"name": "
|
|
4386
|
-
"default": 20,
|
|
4424
|
+
"category": {
|
|
4425
|
+
"char": "c",
|
|
4426
|
+
"description": "Feedback category",
|
|
4427
|
+
"name": "category",
|
|
4387
4428
|
"hasDynamicHelp": false,
|
|
4388
4429
|
"multiple": false,
|
|
4430
|
+
"options": [
|
|
4431
|
+
"bug",
|
|
4432
|
+
"feature",
|
|
4433
|
+
"general"
|
|
4434
|
+
],
|
|
4389
4435
|
"type": "option"
|
|
4390
4436
|
}
|
|
4391
4437
|
},
|
|
4392
4438
|
"hasDynamicHelp": false,
|
|
4393
4439
|
"hiddenAliases": [],
|
|
4394
|
-
"id": "
|
|
4440
|
+
"id": "feedback:submit",
|
|
4395
4441
|
"pluginAlias": "@proletariat/cli",
|
|
4396
4442
|
"pluginName": "@proletariat/cli",
|
|
4397
4443
|
"pluginType": "core",
|
|
@@ -4400,35 +4446,25 @@
|
|
|
4400
4446
|
"relativePath": [
|
|
4401
4447
|
"dist",
|
|
4402
4448
|
"commands",
|
|
4403
|
-
"
|
|
4404
|
-
"
|
|
4449
|
+
"feedback",
|
|
4450
|
+
"submit.js"
|
|
4405
4451
|
]
|
|
4406
4452
|
},
|
|
4407
|
-
"
|
|
4453
|
+
"feedback:view": {
|
|
4408
4454
|
"aliases": [],
|
|
4409
4455
|
"args": {
|
|
4410
|
-
"
|
|
4411
|
-
"description": "
|
|
4412
|
-
"name": "
|
|
4413
|
-
"required":
|
|
4456
|
+
"number": {
|
|
4457
|
+
"description": "Issue number to view",
|
|
4458
|
+
"name": "number",
|
|
4459
|
+
"required": true
|
|
4414
4460
|
}
|
|
4415
4461
|
},
|
|
4416
|
-
"description": "View
|
|
4462
|
+
"description": "View details of a specific feedback issue",
|
|
4417
4463
|
"examples": [
|
|
4418
|
-
"<%= config.bin %> <%= command.id %>
|
|
4419
|
-
"<%= config.bin %> <%= command.id %>
|
|
4420
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
4421
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4464
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
4465
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4422
4466
|
],
|
|
4423
4467
|
"flags": {
|
|
4424
|
-
"project": {
|
|
4425
|
-
"char": "P",
|
|
4426
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4427
|
-
"name": "project",
|
|
4428
|
-
"hasDynamicHelp": false,
|
|
4429
|
-
"multiple": false,
|
|
4430
|
-
"type": "option"
|
|
4431
|
-
},
|
|
4432
4468
|
"json": {
|
|
4433
4469
|
"description": "Output as JSON for AI agents/scripts",
|
|
4434
4470
|
"name": "json",
|
|
@@ -4441,55 +4477,36 @@
|
|
|
4441
4477
|
"name": "machine",
|
|
4442
4478
|
"allowNo": false,
|
|
4443
4479
|
"type": "boolean"
|
|
4444
|
-
},
|
|
4445
|
-
"follow": {
|
|
4446
|
-
"char": "f",
|
|
4447
|
-
"description": "Stream logs in real-time",
|
|
4448
|
-
"name": "follow",
|
|
4449
|
-
"allowNo": false,
|
|
4450
|
-
"type": "boolean"
|
|
4451
|
-
},
|
|
4452
|
-
"tail": {
|
|
4453
|
-
"char": "n",
|
|
4454
|
-
"description": "Show last n lines",
|
|
4455
|
-
"name": "tail",
|
|
4456
|
-
"hasDynamicHelp": false,
|
|
4457
|
-
"multiple": false,
|
|
4458
|
-
"type": "option"
|
|
4459
4480
|
}
|
|
4460
4481
|
},
|
|
4461
4482
|
"hasDynamicHelp": false,
|
|
4462
4483
|
"hiddenAliases": [],
|
|
4463
|
-
"id": "
|
|
4484
|
+
"id": "feedback:view",
|
|
4464
4485
|
"pluginAlias": "@proletariat/cli",
|
|
4465
4486
|
"pluginName": "@proletariat/cli",
|
|
4466
4487
|
"pluginType": "core",
|
|
4467
4488
|
"strict": true,
|
|
4489
|
+
"enableJsonFlag": false,
|
|
4468
4490
|
"isESM": true,
|
|
4469
4491
|
"relativePath": [
|
|
4470
4492
|
"dist",
|
|
4471
4493
|
"commands",
|
|
4472
|
-
"
|
|
4473
|
-
"
|
|
4494
|
+
"feedback",
|
|
4495
|
+
"view.js"
|
|
4474
4496
|
]
|
|
4475
4497
|
},
|
|
4476
|
-
"execution:
|
|
4498
|
+
"execution:config": {
|
|
4477
4499
|
"aliases": [],
|
|
4478
|
-
"args": {
|
|
4479
|
-
|
|
4480
|
-
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
4481
|
-
"name": "id",
|
|
4482
|
-
"required": false
|
|
4483
|
-
}
|
|
4484
|
-
},
|
|
4485
|
-
"description": "Stop running execution(s)",
|
|
4500
|
+
"args": {},
|
|
4501
|
+
"description": "View and update execution preferences",
|
|
4486
4502
|
"examples": [
|
|
4487
|
-
"<%= config.bin %>
|
|
4488
|
-
"<%= config.bin %>
|
|
4489
|
-
"<%= config.bin %>
|
|
4490
|
-
"<%= config.bin %>
|
|
4491
|
-
"<%= config.bin %>
|
|
4492
|
-
"<%= config.bin %>
|
|
4503
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
4504
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
4505
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
4506
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
4507
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
4508
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
4509
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
4493
4510
|
],
|
|
4494
4511
|
"flags": {
|
|
4495
4512
|
"project": {
|
|
@@ -4513,23 +4530,24 @@
|
|
|
4513
4530
|
"allowNo": false,
|
|
4514
4531
|
"type": "boolean"
|
|
4515
4532
|
},
|
|
4516
|
-
"
|
|
4517
|
-
"char": "
|
|
4518
|
-
"description": "
|
|
4519
|
-
"name": "
|
|
4520
|
-
"
|
|
4521
|
-
"
|
|
4533
|
+
"set": {
|
|
4534
|
+
"char": "s",
|
|
4535
|
+
"description": "Set a config value (format: key value)",
|
|
4536
|
+
"name": "set",
|
|
4537
|
+
"hasDynamicHelp": false,
|
|
4538
|
+
"multiple": true,
|
|
4539
|
+
"type": "option"
|
|
4522
4540
|
},
|
|
4523
|
-
"
|
|
4524
|
-
"
|
|
4525
|
-
"
|
|
4541
|
+
"list": {
|
|
4542
|
+
"char": "l",
|
|
4543
|
+
"description": "List all configuration values",
|
|
4544
|
+
"name": "list",
|
|
4526
4545
|
"allowNo": false,
|
|
4527
4546
|
"type": "boolean"
|
|
4528
4547
|
},
|
|
4529
|
-
"
|
|
4530
|
-
"
|
|
4531
|
-
"
|
|
4532
|
-
"name": "agent",
|
|
4548
|
+
"setting": {
|
|
4549
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
4550
|
+
"name": "setting",
|
|
4533
4551
|
"hasDynamicHelp": false,
|
|
4534
4552
|
"multiple": false,
|
|
4535
4553
|
"type": "option"
|
|
@@ -4537,7 +4555,7 @@
|
|
|
4537
4555
|
},
|
|
4538
4556
|
"hasDynamicHelp": false,
|
|
4539
4557
|
"hiddenAliases": [],
|
|
4540
|
-
"id": "execution:
|
|
4558
|
+
"id": "execution:config",
|
|
4541
4559
|
"pluginAlias": "@proletariat/cli",
|
|
4542
4560
|
"pluginName": "@proletariat/cli",
|
|
4543
4561
|
"pluginType": "core",
|
|
@@ -4547,22 +4565,18 @@
|
|
|
4547
4565
|
"dist",
|
|
4548
4566
|
"commands",
|
|
4549
4567
|
"execution",
|
|
4550
|
-
"
|
|
4568
|
+
"config.js"
|
|
4551
4569
|
]
|
|
4552
4570
|
},
|
|
4553
|
-
"execution
|
|
4571
|
+
"execution": {
|
|
4554
4572
|
"aliases": [],
|
|
4555
|
-
"args": {
|
|
4556
|
-
|
|
4557
|
-
"description": "Execution ID - prompts if not provided",
|
|
4558
|
-
"name": "id",
|
|
4559
|
-
"required": false
|
|
4560
|
-
}
|
|
4561
|
-
},
|
|
4562
|
-
"description": "View details of a specific execution",
|
|
4573
|
+
"args": {},
|
|
4574
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
4563
4575
|
"examples": [
|
|
4564
|
-
"<%= config.bin %> <%= command.id %>
|
|
4565
|
-
"<%= config.bin %> <%= command.id %>
|
|
4576
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4577
|
+
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
4578
|
+
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
4579
|
+
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
4566
4580
|
],
|
|
4567
4581
|
"flags": {
|
|
4568
4582
|
"project": {
|
|
@@ -4589,7 +4603,7 @@
|
|
|
4589
4603
|
},
|
|
4590
4604
|
"hasDynamicHelp": false,
|
|
4591
4605
|
"hiddenAliases": [],
|
|
4592
|
-
"id": "execution
|
|
4606
|
+
"id": "execution",
|
|
4593
4607
|
"pluginAlias": "@proletariat/cli",
|
|
4594
4608
|
"pluginName": "@proletariat/cli",
|
|
4595
4609
|
"pluginType": "core",
|
|
@@ -4599,18 +4613,28 @@
|
|
|
4599
4613
|
"dist",
|
|
4600
4614
|
"commands",
|
|
4601
4615
|
"execution",
|
|
4602
|
-
"
|
|
4616
|
+
"index.js"
|
|
4603
4617
|
]
|
|
4604
4618
|
},
|
|
4605
|
-
"
|
|
4619
|
+
"execution:list": {
|
|
4606
4620
|
"aliases": [],
|
|
4607
4621
|
"args": {},
|
|
4608
|
-
"description": "
|
|
4622
|
+
"description": "List running and recent executions",
|
|
4609
4623
|
"examples": [
|
|
4610
4624
|
"<%= config.bin %> <%= command.id %>",
|
|
4611
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4625
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
4626
|
+
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
4627
|
+
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4612
4628
|
],
|
|
4613
4629
|
"flags": {
|
|
4630
|
+
"project": {
|
|
4631
|
+
"char": "P",
|
|
4632
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4633
|
+
"name": "project",
|
|
4634
|
+
"hasDynamicHelp": false,
|
|
4635
|
+
"multiple": false,
|
|
4636
|
+
"type": "option"
|
|
4637
|
+
},
|
|
4614
4638
|
"json": {
|
|
4615
4639
|
"description": "Output as JSON for AI agents/scripts",
|
|
4616
4640
|
"name": "json",
|
|
@@ -4624,47 +4648,79 @@
|
|
|
4624
4648
|
"allowNo": false,
|
|
4625
4649
|
"type": "boolean"
|
|
4626
4650
|
},
|
|
4627
|
-
"
|
|
4628
|
-
"char": "
|
|
4629
|
-
"description": "
|
|
4630
|
-
"name": "
|
|
4651
|
+
"status": {
|
|
4652
|
+
"char": "s",
|
|
4653
|
+
"description": "Filter by status",
|
|
4654
|
+
"name": "status",
|
|
4631
4655
|
"hasDynamicHelp": false,
|
|
4632
4656
|
"multiple": false,
|
|
4633
4657
|
"options": [
|
|
4634
|
-
"
|
|
4635
|
-
"
|
|
4636
|
-
"
|
|
4658
|
+
"starting",
|
|
4659
|
+
"running",
|
|
4660
|
+
"completed",
|
|
4661
|
+
"failed",
|
|
4662
|
+
"stopped"
|
|
4637
4663
|
],
|
|
4638
4664
|
"type": "option"
|
|
4665
|
+
},
|
|
4666
|
+
"agent": {
|
|
4667
|
+
"char": "a",
|
|
4668
|
+
"description": "Filter by agent name",
|
|
4669
|
+
"name": "agent",
|
|
4670
|
+
"hasDynamicHelp": false,
|
|
4671
|
+
"multiple": false,
|
|
4672
|
+
"type": "option"
|
|
4673
|
+
},
|
|
4674
|
+
"limit": {
|
|
4675
|
+
"char": "l",
|
|
4676
|
+
"description": "Number of results",
|
|
4677
|
+
"name": "limit",
|
|
4678
|
+
"default": 20,
|
|
4679
|
+
"hasDynamicHelp": false,
|
|
4680
|
+
"multiple": false,
|
|
4681
|
+
"type": "option"
|
|
4639
4682
|
}
|
|
4640
4683
|
},
|
|
4641
4684
|
"hasDynamicHelp": false,
|
|
4642
4685
|
"hiddenAliases": [],
|
|
4643
|
-
"id": "
|
|
4686
|
+
"id": "execution:list",
|
|
4644
4687
|
"pluginAlias": "@proletariat/cli",
|
|
4645
4688
|
"pluginName": "@proletariat/cli",
|
|
4646
4689
|
"pluginType": "core",
|
|
4647
4690
|
"strict": true,
|
|
4648
|
-
"enableJsonFlag": false,
|
|
4649
4691
|
"isESM": true,
|
|
4650
4692
|
"relativePath": [
|
|
4651
4693
|
"dist",
|
|
4652
4694
|
"commands",
|
|
4653
|
-
"
|
|
4654
|
-
"
|
|
4695
|
+
"execution",
|
|
4696
|
+
"list.js"
|
|
4655
4697
|
]
|
|
4656
4698
|
},
|
|
4657
|
-
"
|
|
4699
|
+
"execution:logs": {
|
|
4658
4700
|
"aliases": [],
|
|
4659
|
-
"args": {
|
|
4660
|
-
|
|
4701
|
+
"args": {
|
|
4702
|
+
"id": {
|
|
4703
|
+
"description": "Execution ID - prompts if not provided",
|
|
4704
|
+
"name": "id",
|
|
4705
|
+
"required": false
|
|
4706
|
+
}
|
|
4707
|
+
},
|
|
4708
|
+
"description": "View execution logs",
|
|
4661
4709
|
"examples": [
|
|
4662
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4663
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4664
|
-
"<%= config.bin %> <%= command.id %>
|
|
4665
|
-
"<%= config.bin %> <%= command.id %>
|
|
4710
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4711
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
4712
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
4713
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4666
4714
|
],
|
|
4667
4715
|
"flags": {
|
|
4716
|
+
"project": {
|
|
4717
|
+
"char": "P",
|
|
4718
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4719
|
+
"name": "project",
|
|
4720
|
+
"hasDynamicHelp": false,
|
|
4721
|
+
"multiple": false,
|
|
4722
|
+
"type": "option"
|
|
4723
|
+
},
|
|
4668
4724
|
"json": {
|
|
4669
4725
|
"description": "Output as JSON for AI agents/scripts",
|
|
4670
4726
|
"name": "json",
|
|
@@ -4678,38 +4734,17 @@
|
|
|
4678
4734
|
"allowNo": false,
|
|
4679
4735
|
"type": "boolean"
|
|
4680
4736
|
},
|
|
4681
|
-
"
|
|
4682
|
-
"char": "
|
|
4683
|
-
"description": "
|
|
4684
|
-
"name": "
|
|
4685
|
-
"
|
|
4686
|
-
"
|
|
4687
|
-
"options": [
|
|
4688
|
-
"bug",
|
|
4689
|
-
"feature",
|
|
4690
|
-
"general"
|
|
4691
|
-
],
|
|
4692
|
-
"type": "option"
|
|
4693
|
-
},
|
|
4694
|
-
"state": {
|
|
4695
|
-
"char": "s",
|
|
4696
|
-
"description": "Filter by state",
|
|
4697
|
-
"name": "state",
|
|
4698
|
-
"default": "open",
|
|
4699
|
-
"hasDynamicHelp": false,
|
|
4700
|
-
"multiple": false,
|
|
4701
|
-
"options": [
|
|
4702
|
-
"open",
|
|
4703
|
-
"closed",
|
|
4704
|
-
"all"
|
|
4705
|
-
],
|
|
4706
|
-
"type": "option"
|
|
4737
|
+
"follow": {
|
|
4738
|
+
"char": "f",
|
|
4739
|
+
"description": "Stream logs in real-time",
|
|
4740
|
+
"name": "follow",
|
|
4741
|
+
"allowNo": false,
|
|
4742
|
+
"type": "boolean"
|
|
4707
4743
|
},
|
|
4708
|
-
"
|
|
4709
|
-
"char": "
|
|
4710
|
-
"description": "
|
|
4711
|
-
"name": "
|
|
4712
|
-
"default": 20,
|
|
4744
|
+
"tail": {
|
|
4745
|
+
"char": "n",
|
|
4746
|
+
"description": "Show last n lines",
|
|
4747
|
+
"name": "tail",
|
|
4713
4748
|
"hasDynamicHelp": false,
|
|
4714
4749
|
"multiple": false,
|
|
4715
4750
|
"type": "option"
|
|
@@ -4717,35 +4752,51 @@
|
|
|
4717
4752
|
},
|
|
4718
4753
|
"hasDynamicHelp": false,
|
|
4719
4754
|
"hiddenAliases": [],
|
|
4720
|
-
"id": "
|
|
4755
|
+
"id": "execution:logs",
|
|
4721
4756
|
"pluginAlias": "@proletariat/cli",
|
|
4722
4757
|
"pluginName": "@proletariat/cli",
|
|
4723
4758
|
"pluginType": "core",
|
|
4724
4759
|
"strict": true,
|
|
4725
|
-
"enableJsonFlag": false,
|
|
4726
4760
|
"isESM": true,
|
|
4727
4761
|
"relativePath": [
|
|
4728
4762
|
"dist",
|
|
4729
4763
|
"commands",
|
|
4730
|
-
"
|
|
4731
|
-
"
|
|
4764
|
+
"execution",
|
|
4765
|
+
"logs.js"
|
|
4732
4766
|
]
|
|
4733
4767
|
},
|
|
4734
|
-
"
|
|
4768
|
+
"execution:stop": {
|
|
4735
4769
|
"aliases": [],
|
|
4736
|
-
"args": {
|
|
4737
|
-
|
|
4770
|
+
"args": {
|
|
4771
|
+
"id": {
|
|
4772
|
+
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
4773
|
+
"name": "id",
|
|
4774
|
+
"required": false
|
|
4775
|
+
}
|
|
4776
|
+
},
|
|
4777
|
+
"description": "Stop running execution(s)",
|
|
4738
4778
|
"examples": [
|
|
4739
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4740
|
-
"<%= config.bin %> <%= command.id %>
|
|
4741
|
-
"<%= config.bin %> <%= command.id %>
|
|
4779
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4780
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
4781
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
4782
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
4783
|
+
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4784
|
+
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4742
4785
|
],
|
|
4743
4786
|
"flags": {
|
|
4744
|
-
"
|
|
4745
|
-
"
|
|
4746
|
-
"
|
|
4747
|
-
"
|
|
4748
|
-
"
|
|
4787
|
+
"project": {
|
|
4788
|
+
"char": "P",
|
|
4789
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4790
|
+
"name": "project",
|
|
4791
|
+
"hasDynamicHelp": false,
|
|
4792
|
+
"multiple": false,
|
|
4793
|
+
"type": "option"
|
|
4794
|
+
},
|
|
4795
|
+
"json": {
|
|
4796
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4797
|
+
"name": "json",
|
|
4798
|
+
"allowNo": false,
|
|
4799
|
+
"type": "boolean"
|
|
4749
4800
|
},
|
|
4750
4801
|
"machine": {
|
|
4751
4802
|
"char": "m",
|
|
@@ -4754,39 +4805,31 @@
|
|
|
4754
4805
|
"allowNo": false,
|
|
4755
4806
|
"type": "boolean"
|
|
4756
4807
|
},
|
|
4757
|
-
"
|
|
4758
|
-
"char": "
|
|
4759
|
-
"description": "
|
|
4760
|
-
"name": "
|
|
4761
|
-
"
|
|
4762
|
-
"
|
|
4763
|
-
"type": "option"
|
|
4808
|
+
"force": {
|
|
4809
|
+
"char": "f",
|
|
4810
|
+
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
4811
|
+
"name": "force",
|
|
4812
|
+
"allowNo": false,
|
|
4813
|
+
"type": "boolean"
|
|
4764
4814
|
},
|
|
4765
|
-
"
|
|
4766
|
-
"
|
|
4767
|
-
"
|
|
4768
|
-
"
|
|
4769
|
-
"
|
|
4770
|
-
"multiple": false,
|
|
4771
|
-
"type": "option"
|
|
4815
|
+
"all": {
|
|
4816
|
+
"description": "Stop all running executions",
|
|
4817
|
+
"name": "all",
|
|
4818
|
+
"allowNo": false,
|
|
4819
|
+
"type": "boolean"
|
|
4772
4820
|
},
|
|
4773
|
-
"
|
|
4774
|
-
"char": "
|
|
4775
|
-
"description": "
|
|
4776
|
-
"name": "
|
|
4821
|
+
"agent": {
|
|
4822
|
+
"char": "a",
|
|
4823
|
+
"description": "Stop all executions for a specific agent",
|
|
4824
|
+
"name": "agent",
|
|
4777
4825
|
"hasDynamicHelp": false,
|
|
4778
4826
|
"multiple": false,
|
|
4779
|
-
"options": [
|
|
4780
|
-
"bug",
|
|
4781
|
-
"feature",
|
|
4782
|
-
"general"
|
|
4783
|
-
],
|
|
4784
4827
|
"type": "option"
|
|
4785
4828
|
}
|
|
4786
4829
|
},
|
|
4787
4830
|
"hasDynamicHelp": false,
|
|
4788
4831
|
"hiddenAliases": [],
|
|
4789
|
-
"id": "
|
|
4832
|
+
"id": "execution:stop",
|
|
4790
4833
|
"pluginAlias": "@proletariat/cli",
|
|
4791
4834
|
"pluginName": "@proletariat/cli",
|
|
4792
4835
|
"pluginType": "core",
|
|
@@ -4795,25 +4838,33 @@
|
|
|
4795
4838
|
"relativePath": [
|
|
4796
4839
|
"dist",
|
|
4797
4840
|
"commands",
|
|
4798
|
-
"
|
|
4799
|
-
"
|
|
4841
|
+
"execution",
|
|
4842
|
+
"stop.js"
|
|
4800
4843
|
]
|
|
4801
4844
|
},
|
|
4802
|
-
"
|
|
4845
|
+
"execution:view": {
|
|
4803
4846
|
"aliases": [],
|
|
4804
4847
|
"args": {
|
|
4805
|
-
"
|
|
4806
|
-
"description": "
|
|
4807
|
-
"name": "
|
|
4808
|
-
"required":
|
|
4848
|
+
"id": {
|
|
4849
|
+
"description": "Execution ID - prompts if not provided",
|
|
4850
|
+
"name": "id",
|
|
4851
|
+
"required": false
|
|
4809
4852
|
}
|
|
4810
4853
|
},
|
|
4811
|
-
"description": "View details of a specific
|
|
4854
|
+
"description": "View details of a specific execution",
|
|
4812
4855
|
"examples": [
|
|
4813
|
-
"<%= config.bin %> <%= command.id %>
|
|
4814
|
-
"<%= config.bin %> <%= command.id %>
|
|
4856
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4857
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4815
4858
|
],
|
|
4816
4859
|
"flags": {
|
|
4860
|
+
"project": {
|
|
4861
|
+
"char": "P",
|
|
4862
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4863
|
+
"name": "project",
|
|
4864
|
+
"hasDynamicHelp": false,
|
|
4865
|
+
"multiple": false,
|
|
4866
|
+
"type": "option"
|
|
4867
|
+
},
|
|
4817
4868
|
"json": {
|
|
4818
4869
|
"description": "Output as JSON for AI agents/scripts",
|
|
4819
4870
|
"name": "json",
|
|
@@ -4830,17 +4881,16 @@
|
|
|
4830
4881
|
},
|
|
4831
4882
|
"hasDynamicHelp": false,
|
|
4832
4883
|
"hiddenAliases": [],
|
|
4833
|
-
"id": "
|
|
4884
|
+
"id": "execution:view",
|
|
4834
4885
|
"pluginAlias": "@proletariat/cli",
|
|
4835
4886
|
"pluginName": "@proletariat/cli",
|
|
4836
4887
|
"pluginType": "core",
|
|
4837
4888
|
"strict": true,
|
|
4838
|
-
"enableJsonFlag": false,
|
|
4839
4889
|
"isESM": true,
|
|
4840
4890
|
"relativePath": [
|
|
4841
4891
|
"dist",
|
|
4842
4892
|
"commands",
|
|
4843
|
-
"
|
|
4893
|
+
"execution",
|
|
4844
4894
|
"view.js"
|
|
4845
4895
|
]
|
|
4846
4896
|
},
|
|
@@ -7233,99 +7283,6 @@
|
|
|
7233
7283
|
"index.js"
|
|
7234
7284
|
]
|
|
7235
7285
|
},
|
|
7236
|
-
"run": {
|
|
7237
|
-
"aliases": [],
|
|
7238
|
-
"args": {
|
|
7239
|
-
"task": {
|
|
7240
|
-
"description": "Task description for the agent",
|
|
7241
|
-
"name": "task",
|
|
7242
|
-
"required": true
|
|
7243
|
-
}
|
|
7244
|
-
},
|
|
7245
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
7246
|
-
"examples": [
|
|
7247
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
7248
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
7249
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
7250
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
7251
|
-
],
|
|
7252
|
-
"flags": {
|
|
7253
|
-
"json": {
|
|
7254
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7255
|
-
"name": "json",
|
|
7256
|
-
"allowNo": false,
|
|
7257
|
-
"type": "boolean"
|
|
7258
|
-
},
|
|
7259
|
-
"machine": {
|
|
7260
|
-
"char": "m",
|
|
7261
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7262
|
-
"name": "machine",
|
|
7263
|
-
"allowNo": false,
|
|
7264
|
-
"type": "boolean"
|
|
7265
|
-
},
|
|
7266
|
-
"runner": {
|
|
7267
|
-
"char": "r",
|
|
7268
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
7269
|
-
"name": "runner",
|
|
7270
|
-
"hasDynamicHelp": false,
|
|
7271
|
-
"multiple": false,
|
|
7272
|
-
"type": "option"
|
|
7273
|
-
},
|
|
7274
|
-
"detached": {
|
|
7275
|
-
"char": "d",
|
|
7276
|
-
"description": "Run in background (detached)",
|
|
7277
|
-
"name": "detached",
|
|
7278
|
-
"allowNo": false,
|
|
7279
|
-
"type": "boolean"
|
|
7280
|
-
},
|
|
7281
|
-
"directory": {
|
|
7282
|
-
"description": "Working directory (default: cwd)",
|
|
7283
|
-
"name": "directory",
|
|
7284
|
-
"hasDynamicHelp": false,
|
|
7285
|
-
"multiple": false,
|
|
7286
|
-
"type": "option"
|
|
7287
|
-
},
|
|
7288
|
-
"permission-mode": {
|
|
7289
|
-
"char": "p",
|
|
7290
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
7291
|
-
"name": "permission-mode",
|
|
7292
|
-
"hasDynamicHelp": false,
|
|
7293
|
-
"multiple": false,
|
|
7294
|
-
"options": [
|
|
7295
|
-
"danger",
|
|
7296
|
-
"safe"
|
|
7297
|
-
],
|
|
7298
|
-
"type": "option"
|
|
7299
|
-
},
|
|
7300
|
-
"environment": {
|
|
7301
|
-
"char": "e",
|
|
7302
|
-
"description": "Environment to run in",
|
|
7303
|
-
"name": "environment",
|
|
7304
|
-
"hasDynamicHelp": false,
|
|
7305
|
-
"multiple": false,
|
|
7306
|
-
"options": [
|
|
7307
|
-
"host",
|
|
7308
|
-
"docker",
|
|
7309
|
-
"podman"
|
|
7310
|
-
],
|
|
7311
|
-
"type": "option"
|
|
7312
|
-
}
|
|
7313
|
-
},
|
|
7314
|
-
"hasDynamicHelp": false,
|
|
7315
|
-
"hiddenAliases": [],
|
|
7316
|
-
"id": "run",
|
|
7317
|
-
"pluginAlias": "@proletariat/cli",
|
|
7318
|
-
"pluginName": "@proletariat/cli",
|
|
7319
|
-
"pluginType": "core",
|
|
7320
|
-
"strict": true,
|
|
7321
|
-
"isESM": true,
|
|
7322
|
-
"relativePath": [
|
|
7323
|
-
"dist",
|
|
7324
|
-
"commands",
|
|
7325
|
-
"run",
|
|
7326
|
-
"index.js"
|
|
7327
|
-
]
|
|
7328
|
-
},
|
|
7329
7286
|
"repo:add": {
|
|
7330
7287
|
"aliases": [],
|
|
7331
7288
|
"args": {
|
|
@@ -7771,27 +7728,23 @@
|
|
|
7771
7728
|
"view.js"
|
|
7772
7729
|
]
|
|
7773
7730
|
},
|
|
7774
|
-
"
|
|
7731
|
+
"run": {
|
|
7775
7732
|
"aliases": [],
|
|
7776
|
-
"args": {
|
|
7777
|
-
|
|
7733
|
+
"args": {
|
|
7734
|
+
"task": {
|
|
7735
|
+
"description": "Task description for the agent",
|
|
7736
|
+
"name": "task",
|
|
7737
|
+
"required": true
|
|
7738
|
+
}
|
|
7739
|
+
},
|
|
7740
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
7778
7741
|
"examples": [
|
|
7779
|
-
"<%= config.bin %>
|
|
7780
|
-
"<%= config.bin %>
|
|
7781
|
-
"<%= config.bin %>
|
|
7782
|
-
"<%= config.bin %>
|
|
7783
|
-
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
7784
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
7742
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
7743
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
7744
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
7745
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
7785
7746
|
],
|
|
7786
7747
|
"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
7748
|
"json": {
|
|
7796
7749
|
"description": "Output as JSON for AI agents/scripts",
|
|
7797
7750
|
"name": "json",
|
|
@@ -7805,46 +7758,143 @@
|
|
|
7805
7758
|
"allowNo": false,
|
|
7806
7759
|
"type": "boolean"
|
|
7807
7760
|
},
|
|
7808
|
-
"
|
|
7809
|
-
"
|
|
7810
|
-
"
|
|
7811
|
-
"
|
|
7812
|
-
"
|
|
7761
|
+
"runner": {
|
|
7762
|
+
"char": "r",
|
|
7763
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
7764
|
+
"name": "runner",
|
|
7765
|
+
"hasDynamicHelp": false,
|
|
7766
|
+
"multiple": false,
|
|
7767
|
+
"type": "option"
|
|
7813
7768
|
},
|
|
7814
|
-
"
|
|
7815
|
-
"
|
|
7816
|
-
"
|
|
7769
|
+
"detached": {
|
|
7770
|
+
"char": "d",
|
|
7771
|
+
"description": "Run in background (detached)",
|
|
7772
|
+
"name": "detached",
|
|
7817
7773
|
"allowNo": false,
|
|
7818
7774
|
"type": "boolean"
|
|
7819
7775
|
},
|
|
7820
|
-
"
|
|
7821
|
-
"description": "
|
|
7822
|
-
"name": "
|
|
7823
|
-
"
|
|
7824
|
-
"
|
|
7825
|
-
|
|
7826
|
-
|
|
7827
|
-
|
|
7828
|
-
|
|
7829
|
-
|
|
7830
|
-
|
|
7831
|
-
|
|
7832
|
-
|
|
7833
|
-
|
|
7834
|
-
|
|
7835
|
-
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
"
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
|
|
7847
|
-
|
|
7776
|
+
"directory": {
|
|
7777
|
+
"description": "Working directory (default: cwd)",
|
|
7778
|
+
"name": "directory",
|
|
7779
|
+
"hasDynamicHelp": false,
|
|
7780
|
+
"multiple": false,
|
|
7781
|
+
"type": "option"
|
|
7782
|
+
},
|
|
7783
|
+
"permission-mode": {
|
|
7784
|
+
"char": "p",
|
|
7785
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
7786
|
+
"name": "permission-mode",
|
|
7787
|
+
"hasDynamicHelp": false,
|
|
7788
|
+
"multiple": false,
|
|
7789
|
+
"options": [
|
|
7790
|
+
"danger",
|
|
7791
|
+
"safe"
|
|
7792
|
+
],
|
|
7793
|
+
"type": "option"
|
|
7794
|
+
},
|
|
7795
|
+
"environment": {
|
|
7796
|
+
"char": "e",
|
|
7797
|
+
"description": "Environment to run in",
|
|
7798
|
+
"name": "environment",
|
|
7799
|
+
"hasDynamicHelp": false,
|
|
7800
|
+
"multiple": false,
|
|
7801
|
+
"options": [
|
|
7802
|
+
"host",
|
|
7803
|
+
"docker",
|
|
7804
|
+
"podman"
|
|
7805
|
+
],
|
|
7806
|
+
"type": "option"
|
|
7807
|
+
}
|
|
7808
|
+
},
|
|
7809
|
+
"hasDynamicHelp": false,
|
|
7810
|
+
"hiddenAliases": [],
|
|
7811
|
+
"id": "run",
|
|
7812
|
+
"pluginAlias": "@proletariat/cli",
|
|
7813
|
+
"pluginName": "@proletariat/cli",
|
|
7814
|
+
"pluginType": "core",
|
|
7815
|
+
"strict": true,
|
|
7816
|
+
"isESM": true,
|
|
7817
|
+
"relativePath": [
|
|
7818
|
+
"dist",
|
|
7819
|
+
"commands",
|
|
7820
|
+
"run",
|
|
7821
|
+
"index.js"
|
|
7822
|
+
]
|
|
7823
|
+
},
|
|
7824
|
+
"shortcut:connect": {
|
|
7825
|
+
"aliases": [],
|
|
7826
|
+
"args": {},
|
|
7827
|
+
"description": "Connect to Shortcut workspace and configure authentication",
|
|
7828
|
+
"examples": [
|
|
7829
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7830
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
7831
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
7832
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
7833
|
+
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
7834
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7835
|
+
],
|
|
7836
|
+
"flags": {
|
|
7837
|
+
"project": {
|
|
7838
|
+
"char": "P",
|
|
7839
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7840
|
+
"name": "project",
|
|
7841
|
+
"hasDynamicHelp": false,
|
|
7842
|
+
"multiple": false,
|
|
7843
|
+
"type": "option"
|
|
7844
|
+
},
|
|
7845
|
+
"json": {
|
|
7846
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7847
|
+
"name": "json",
|
|
7848
|
+
"allowNo": false,
|
|
7849
|
+
"type": "boolean"
|
|
7850
|
+
},
|
|
7851
|
+
"machine": {
|
|
7852
|
+
"char": "m",
|
|
7853
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7854
|
+
"name": "machine",
|
|
7855
|
+
"allowNo": false,
|
|
7856
|
+
"type": "boolean"
|
|
7857
|
+
},
|
|
7858
|
+
"check": {
|
|
7859
|
+
"description": "Only check if Shortcut credentials are valid (do not prompt)",
|
|
7860
|
+
"name": "check",
|
|
7861
|
+
"allowNo": false,
|
|
7862
|
+
"type": "boolean"
|
|
7863
|
+
},
|
|
7864
|
+
"force": {
|
|
7865
|
+
"description": "Force re-authentication even if credentials exist",
|
|
7866
|
+
"name": "force",
|
|
7867
|
+
"allowNo": false,
|
|
7868
|
+
"type": "boolean"
|
|
7869
|
+
},
|
|
7870
|
+
"disconnect": {
|
|
7871
|
+
"description": "Remove stored Shortcut credentials and configuration",
|
|
7872
|
+
"name": "disconnect",
|
|
7873
|
+
"allowNo": false,
|
|
7874
|
+
"type": "boolean"
|
|
7875
|
+
}
|
|
7876
|
+
},
|
|
7877
|
+
"hasDynamicHelp": false,
|
|
7878
|
+
"hiddenAliases": [],
|
|
7879
|
+
"id": "shortcut:connect",
|
|
7880
|
+
"pluginAlias": "@proletariat/cli",
|
|
7881
|
+
"pluginName": "@proletariat/cli",
|
|
7882
|
+
"pluginType": "core",
|
|
7883
|
+
"strict": true,
|
|
7884
|
+
"isESM": true,
|
|
7885
|
+
"relativePath": [
|
|
7886
|
+
"dist",
|
|
7887
|
+
"commands",
|
|
7888
|
+
"shortcut",
|
|
7889
|
+
"connect.js"
|
|
7890
|
+
]
|
|
7891
|
+
},
|
|
7892
|
+
"session:attach": {
|
|
7893
|
+
"aliases": [],
|
|
7894
|
+
"args": {
|
|
7895
|
+
"session": {
|
|
7896
|
+
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
7897
|
+
"name": "session",
|
|
7848
7898
|
"required": false
|
|
7849
7899
|
}
|
|
7850
7900
|
},
|
|
@@ -8483,14 +8533,6 @@
|
|
|
8483
8533
|
"echo \"multi-line message\" | <%= config.bin %> session poke altman -"
|
|
8484
8534
|
],
|
|
8485
8535
|
"flags": {
|
|
8486
|
-
"project": {
|
|
8487
|
-
"char": "P",
|
|
8488
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8489
|
-
"name": "project",
|
|
8490
|
-
"hasDynamicHelp": false,
|
|
8491
|
-
"multiple": false,
|
|
8492
|
-
"type": "option"
|
|
8493
|
-
},
|
|
8494
8536
|
"json": {
|
|
8495
8537
|
"description": "Output as JSON for AI agents/scripts",
|
|
8496
8538
|
"name": "json",
|
|
@@ -9468,27 +9510,30 @@
|
|
|
9468
9510
|
"set.js"
|
|
9469
9511
|
]
|
|
9470
9512
|
},
|
|
9471
|
-
"
|
|
9513
|
+
"tools:add": {
|
|
9472
9514
|
"aliases": [],
|
|
9473
|
-
"args": {
|
|
9474
|
-
|
|
9515
|
+
"args": {
|
|
9516
|
+
"type": {
|
|
9517
|
+
"description": "Tool type (mcp or cli)",
|
|
9518
|
+
"name": "type",
|
|
9519
|
+
"options": [
|
|
9520
|
+
"mcp",
|
|
9521
|
+
"cli"
|
|
9522
|
+
],
|
|
9523
|
+
"required": true
|
|
9524
|
+
},
|
|
9525
|
+
"name": {
|
|
9526
|
+
"description": "Tool name (unique identifier)",
|
|
9527
|
+
"name": "name",
|
|
9528
|
+
"required": true
|
|
9529
|
+
}
|
|
9530
|
+
},
|
|
9531
|
+
"description": "Register an MCP server or CLI tool",
|
|
9475
9532
|
"examples": [
|
|
9476
|
-
"<%= config.bin %>
|
|
9477
|
-
"<%= config.bin %>
|
|
9478
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
9479
|
-
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
9480
|
-
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
9481
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
9533
|
+
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
9534
|
+
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
9482
9535
|
],
|
|
9483
9536
|
"flags": {
|
|
9484
|
-
"project": {
|
|
9485
|
-
"char": "P",
|
|
9486
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9487
|
-
"name": "project",
|
|
9488
|
-
"hasDynamicHelp": false,
|
|
9489
|
-
"multiple": false,
|
|
9490
|
-
"type": "option"
|
|
9491
|
-
},
|
|
9492
9537
|
"json": {
|
|
9493
9538
|
"description": "Output as JSON for AI agents/scripts",
|
|
9494
9539
|
"name": "json",
|
|
@@ -9502,27 +9547,46 @@
|
|
|
9502
9547
|
"allowNo": false,
|
|
9503
9548
|
"type": "boolean"
|
|
9504
9549
|
},
|
|
9505
|
-
"
|
|
9506
|
-
"description": "
|
|
9507
|
-
"name": "
|
|
9508
|
-
"
|
|
9509
|
-
"
|
|
9550
|
+
"url": {
|
|
9551
|
+
"description": "MCP server URL (for remote servers)",
|
|
9552
|
+
"name": "url",
|
|
9553
|
+
"hasDynamicHelp": false,
|
|
9554
|
+
"multiple": false,
|
|
9555
|
+
"type": "option"
|
|
9510
9556
|
},
|
|
9511
|
-
"
|
|
9512
|
-
"description": "
|
|
9513
|
-
"name": "
|
|
9514
|
-
"
|
|
9515
|
-
"
|
|
9557
|
+
"command": {
|
|
9558
|
+
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
9559
|
+
"name": "command",
|
|
9560
|
+
"hasDynamicHelp": false,
|
|
9561
|
+
"multiple": false,
|
|
9562
|
+
"type": "option"
|
|
9516
9563
|
},
|
|
9517
|
-
"
|
|
9518
|
-
"description": "
|
|
9519
|
-
"name": "
|
|
9520
|
-
"
|
|
9521
|
-
"
|
|
9564
|
+
"auth": {
|
|
9565
|
+
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
9566
|
+
"name": "auth",
|
|
9567
|
+
"hasDynamicHelp": false,
|
|
9568
|
+
"multiple": false,
|
|
9569
|
+
"type": "option"
|
|
9522
9570
|
},
|
|
9523
|
-
"
|
|
9524
|
-
"description": "
|
|
9525
|
-
"name": "
|
|
9571
|
+
"detect": {
|
|
9572
|
+
"description": "Shell command to detect if CLI tool is installed",
|
|
9573
|
+
"name": "detect",
|
|
9574
|
+
"hasDynamicHelp": false,
|
|
9575
|
+
"multiple": false,
|
|
9576
|
+
"type": "option"
|
|
9577
|
+
},
|
|
9578
|
+
"install": {
|
|
9579
|
+
"description": "Shell command to install the CLI tool",
|
|
9580
|
+
"name": "install",
|
|
9581
|
+
"hasDynamicHelp": false,
|
|
9582
|
+
"multiple": false,
|
|
9583
|
+
"type": "option"
|
|
9584
|
+
},
|
|
9585
|
+
"description": {
|
|
9586
|
+
"char": "d",
|
|
9587
|
+
"description": "Human-readable description",
|
|
9588
|
+
"name": "description",
|
|
9589
|
+
"required": true,
|
|
9526
9590
|
"hasDynamicHelp": false,
|
|
9527
9591
|
"multiple": false,
|
|
9528
9592
|
"type": "option"
|
|
@@ -9530,7 +9594,7 @@
|
|
|
9530
9594
|
},
|
|
9531
9595
|
"hasDynamicHelp": false,
|
|
9532
9596
|
"hiddenAliases": [],
|
|
9533
|
-
"id": "
|
|
9597
|
+
"id": "tools:add",
|
|
9534
9598
|
"pluginAlias": "@proletariat/cli",
|
|
9535
9599
|
"pluginName": "@proletariat/cli",
|
|
9536
9600
|
"pluginType": "core",
|
|
@@ -9539,265 +9603,17 @@
|
|
|
9539
9603
|
"relativePath": [
|
|
9540
9604
|
"dist",
|
|
9541
9605
|
"commands",
|
|
9542
|
-
"
|
|
9543
|
-
"
|
|
9606
|
+
"tools",
|
|
9607
|
+
"add.js"
|
|
9544
9608
|
]
|
|
9545
9609
|
},
|
|
9546
|
-
"
|
|
9610
|
+
"tools:check": {
|
|
9547
9611
|
"aliases": [],
|
|
9548
9612
|
"args": {},
|
|
9549
|
-
"description": "
|
|
9613
|
+
"description": "Verify all registered tools are available and healthy",
|
|
9550
9614
|
"examples": [
|
|
9551
|
-
"<%= config.bin %>
|
|
9552
|
-
"<%= config.bin %>
|
|
9553
|
-
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
9554
|
-
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
9555
|
-
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
9556
|
-
],
|
|
9557
|
-
"flags": {
|
|
9558
|
-
"project": {
|
|
9559
|
-
"char": "P",
|
|
9560
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9561
|
-
"name": "project",
|
|
9562
|
-
"hasDynamicHelp": false,
|
|
9563
|
-
"multiple": false,
|
|
9564
|
-
"type": "option"
|
|
9565
|
-
},
|
|
9566
|
-
"json": {
|
|
9567
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9568
|
-
"name": "json",
|
|
9569
|
-
"allowNo": false,
|
|
9570
|
-
"type": "boolean"
|
|
9571
|
-
},
|
|
9572
|
-
"machine": {
|
|
9573
|
-
"char": "m",
|
|
9574
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9575
|
-
"name": "machine",
|
|
9576
|
-
"allowNo": false,
|
|
9577
|
-
"type": "boolean"
|
|
9578
|
-
},
|
|
9579
|
-
"limit": {
|
|
9580
|
-
"char": "n",
|
|
9581
|
-
"description": "Maximum number of cards to import",
|
|
9582
|
-
"name": "limit",
|
|
9583
|
-
"default": 50,
|
|
9584
|
-
"hasDynamicHelp": false,
|
|
9585
|
-
"multiple": false,
|
|
9586
|
-
"type": "option"
|
|
9587
|
-
},
|
|
9588
|
-
"all": {
|
|
9589
|
-
"char": "a",
|
|
9590
|
-
"description": "Import all matching cards without interactive selection",
|
|
9591
|
-
"name": "all",
|
|
9592
|
-
"allowNo": false,
|
|
9593
|
-
"type": "boolean"
|
|
9594
|
-
},
|
|
9595
|
-
"dry-run": {
|
|
9596
|
-
"description": "Preview cards that would be imported without creating tickets",
|
|
9597
|
-
"name": "dry-run",
|
|
9598
|
-
"allowNo": false,
|
|
9599
|
-
"type": "boolean"
|
|
9600
|
-
}
|
|
9601
|
-
},
|
|
9602
|
-
"hasDynamicHelp": false,
|
|
9603
|
-
"hiddenAliases": [],
|
|
9604
|
-
"id": "trello:import",
|
|
9605
|
-
"pluginAlias": "@proletariat/cli",
|
|
9606
|
-
"pluginName": "@proletariat/cli",
|
|
9607
|
-
"pluginType": "core",
|
|
9608
|
-
"strict": true,
|
|
9609
|
-
"isESM": true,
|
|
9610
|
-
"relativePath": [
|
|
9611
|
-
"dist",
|
|
9612
|
-
"commands",
|
|
9613
|
-
"trello",
|
|
9614
|
-
"import.js"
|
|
9615
|
-
]
|
|
9616
|
-
},
|
|
9617
|
-
"trello:sync": {
|
|
9618
|
-
"aliases": [],
|
|
9619
|
-
"args": {},
|
|
9620
|
-
"description": "Sync PMO tickets to Trello cards",
|
|
9621
|
-
"examples": [
|
|
9622
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
9623
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
9624
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
9625
|
-
],
|
|
9626
|
-
"flags": {
|
|
9627
|
-
"project": {
|
|
9628
|
-
"char": "P",
|
|
9629
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9630
|
-
"name": "project",
|
|
9631
|
-
"hasDynamicHelp": false,
|
|
9632
|
-
"multiple": false,
|
|
9633
|
-
"type": "option"
|
|
9634
|
-
},
|
|
9635
|
-
"json": {
|
|
9636
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9637
|
-
"name": "json",
|
|
9638
|
-
"allowNo": false,
|
|
9639
|
-
"type": "boolean"
|
|
9640
|
-
},
|
|
9641
|
-
"machine": {
|
|
9642
|
-
"char": "m",
|
|
9643
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9644
|
-
"name": "machine",
|
|
9645
|
-
"allowNo": false,
|
|
9646
|
-
"type": "boolean"
|
|
9647
|
-
},
|
|
9648
|
-
"ticket": {
|
|
9649
|
-
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
9650
|
-
"name": "ticket",
|
|
9651
|
-
"hasDynamicHelp": false,
|
|
9652
|
-
"multiple": false,
|
|
9653
|
-
"type": "option"
|
|
9654
|
-
},
|
|
9655
|
-
"card": {
|
|
9656
|
-
"description": "Trello card ID to map to --ticket",
|
|
9657
|
-
"name": "card",
|
|
9658
|
-
"hasDynamicHelp": false,
|
|
9659
|
-
"multiple": false,
|
|
9660
|
-
"type": "option"
|
|
9661
|
-
},
|
|
9662
|
-
"list": {
|
|
9663
|
-
"description": "Trello list ID used with --create-missing",
|
|
9664
|
-
"name": "list",
|
|
9665
|
-
"hasDynamicHelp": false,
|
|
9666
|
-
"multiple": false,
|
|
9667
|
-
"type": "option"
|
|
9668
|
-
},
|
|
9669
|
-
"create-missing": {
|
|
9670
|
-
"description": "Create Trello card when no mapping exists (requires list)",
|
|
9671
|
-
"name": "create-missing",
|
|
9672
|
-
"allowNo": false,
|
|
9673
|
-
"type": "boolean"
|
|
9674
|
-
},
|
|
9675
|
-
"dry-run": {
|
|
9676
|
-
"description": "Preview sync operations without making changes",
|
|
9677
|
-
"name": "dry-run",
|
|
9678
|
-
"allowNo": false,
|
|
9679
|
-
"type": "boolean"
|
|
9680
|
-
}
|
|
9681
|
-
},
|
|
9682
|
-
"hasDynamicHelp": false,
|
|
9683
|
-
"hiddenAliases": [],
|
|
9684
|
-
"id": "trello:sync",
|
|
9685
|
-
"pluginAlias": "@proletariat/cli",
|
|
9686
|
-
"pluginName": "@proletariat/cli",
|
|
9687
|
-
"pluginType": "core",
|
|
9688
|
-
"strict": true,
|
|
9689
|
-
"isESM": true,
|
|
9690
|
-
"relativePath": [
|
|
9691
|
-
"dist",
|
|
9692
|
-
"commands",
|
|
9693
|
-
"trello",
|
|
9694
|
-
"sync.js"
|
|
9695
|
-
]
|
|
9696
|
-
},
|
|
9697
|
-
"tools:add": {
|
|
9698
|
-
"aliases": [],
|
|
9699
|
-
"args": {
|
|
9700
|
-
"type": {
|
|
9701
|
-
"description": "Tool type (mcp or cli)",
|
|
9702
|
-
"name": "type",
|
|
9703
|
-
"options": [
|
|
9704
|
-
"mcp",
|
|
9705
|
-
"cli"
|
|
9706
|
-
],
|
|
9707
|
-
"required": true
|
|
9708
|
-
},
|
|
9709
|
-
"name": {
|
|
9710
|
-
"description": "Tool name (unique identifier)",
|
|
9711
|
-
"name": "name",
|
|
9712
|
-
"required": true
|
|
9713
|
-
}
|
|
9714
|
-
},
|
|
9715
|
-
"description": "Register an MCP server or CLI tool",
|
|
9716
|
-
"examples": [
|
|
9717
|
-
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
9718
|
-
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
9719
|
-
],
|
|
9720
|
-
"flags": {
|
|
9721
|
-
"json": {
|
|
9722
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9723
|
-
"name": "json",
|
|
9724
|
-
"allowNo": false,
|
|
9725
|
-
"type": "boolean"
|
|
9726
|
-
},
|
|
9727
|
-
"machine": {
|
|
9728
|
-
"char": "m",
|
|
9729
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9730
|
-
"name": "machine",
|
|
9731
|
-
"allowNo": false,
|
|
9732
|
-
"type": "boolean"
|
|
9733
|
-
},
|
|
9734
|
-
"url": {
|
|
9735
|
-
"description": "MCP server URL (for remote servers)",
|
|
9736
|
-
"name": "url",
|
|
9737
|
-
"hasDynamicHelp": false,
|
|
9738
|
-
"multiple": false,
|
|
9739
|
-
"type": "option"
|
|
9740
|
-
},
|
|
9741
|
-
"command": {
|
|
9742
|
-
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
9743
|
-
"name": "command",
|
|
9744
|
-
"hasDynamicHelp": false,
|
|
9745
|
-
"multiple": false,
|
|
9746
|
-
"type": "option"
|
|
9747
|
-
},
|
|
9748
|
-
"auth": {
|
|
9749
|
-
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
9750
|
-
"name": "auth",
|
|
9751
|
-
"hasDynamicHelp": false,
|
|
9752
|
-
"multiple": false,
|
|
9753
|
-
"type": "option"
|
|
9754
|
-
},
|
|
9755
|
-
"detect": {
|
|
9756
|
-
"description": "Shell command to detect if CLI tool is installed",
|
|
9757
|
-
"name": "detect",
|
|
9758
|
-
"hasDynamicHelp": false,
|
|
9759
|
-
"multiple": false,
|
|
9760
|
-
"type": "option"
|
|
9761
|
-
},
|
|
9762
|
-
"install": {
|
|
9763
|
-
"description": "Shell command to install the CLI tool",
|
|
9764
|
-
"name": "install",
|
|
9765
|
-
"hasDynamicHelp": false,
|
|
9766
|
-
"multiple": false,
|
|
9767
|
-
"type": "option"
|
|
9768
|
-
},
|
|
9769
|
-
"description": {
|
|
9770
|
-
"char": "d",
|
|
9771
|
-
"description": "Human-readable description",
|
|
9772
|
-
"name": "description",
|
|
9773
|
-
"required": true,
|
|
9774
|
-
"hasDynamicHelp": false,
|
|
9775
|
-
"multiple": false,
|
|
9776
|
-
"type": "option"
|
|
9777
|
-
}
|
|
9778
|
-
},
|
|
9779
|
-
"hasDynamicHelp": false,
|
|
9780
|
-
"hiddenAliases": [],
|
|
9781
|
-
"id": "tools:add",
|
|
9782
|
-
"pluginAlias": "@proletariat/cli",
|
|
9783
|
-
"pluginName": "@proletariat/cli",
|
|
9784
|
-
"pluginType": "core",
|
|
9785
|
-
"strict": true,
|
|
9786
|
-
"isESM": true,
|
|
9787
|
-
"relativePath": [
|
|
9788
|
-
"dist",
|
|
9789
|
-
"commands",
|
|
9790
|
-
"tools",
|
|
9791
|
-
"add.js"
|
|
9792
|
-
]
|
|
9793
|
-
},
|
|
9794
|
-
"tools:check": {
|
|
9795
|
-
"aliases": [],
|
|
9796
|
-
"args": {},
|
|
9797
|
-
"description": "Verify all registered tools are available and healthy",
|
|
9798
|
-
"examples": [
|
|
9799
|
-
"<%= config.bin %> tools check",
|
|
9800
|
-
"<%= config.bin %> tools check --json"
|
|
9615
|
+
"<%= config.bin %> tools check",
|
|
9616
|
+
"<%= config.bin %> tools check --json"
|
|
9801
9617
|
],
|
|
9802
9618
|
"flags": {
|
|
9803
9619
|
"json": {
|
|
@@ -11573,26 +11389,487 @@
|
|
|
11573
11389
|
"view.js"
|
|
11574
11390
|
]
|
|
11575
11391
|
},
|
|
11576
|
-
"
|
|
11392
|
+
"trello:configure": {
|
|
11577
11393
|
"aliases": [],
|
|
11578
|
-
"args": {
|
|
11579
|
-
|
|
11580
|
-
"description": "Version bump type",
|
|
11581
|
-
"name": "type",
|
|
11582
|
-
"options": [
|
|
11583
|
-
"major",
|
|
11584
|
-
"minor",
|
|
11585
|
-
"patch"
|
|
11586
|
-
],
|
|
11587
|
-
"required": true
|
|
11588
|
-
}
|
|
11589
|
-
},
|
|
11590
|
-
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
11394
|
+
"args": {},
|
|
11395
|
+
"description": "Connect to Trello and configure authentication",
|
|
11591
11396
|
"examples": [
|
|
11592
|
-
"<%= config.bin %>
|
|
11593
|
-
"<%= config.bin %>
|
|
11594
|
-
"<%= config.bin %>
|
|
11595
|
-
"<%= config.bin %>
|
|
11397
|
+
"<%= config.bin %> <%= command.id %>",
|
|
11398
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
11399
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
11400
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
11401
|
+
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
11402
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
11403
|
+
],
|
|
11404
|
+
"flags": {
|
|
11405
|
+
"project": {
|
|
11406
|
+
"char": "P",
|
|
11407
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11408
|
+
"name": "project",
|
|
11409
|
+
"hasDynamicHelp": false,
|
|
11410
|
+
"multiple": false,
|
|
11411
|
+
"type": "option"
|
|
11412
|
+
},
|
|
11413
|
+
"json": {
|
|
11414
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11415
|
+
"name": "json",
|
|
11416
|
+
"allowNo": false,
|
|
11417
|
+
"type": "boolean"
|
|
11418
|
+
},
|
|
11419
|
+
"machine": {
|
|
11420
|
+
"char": "m",
|
|
11421
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11422
|
+
"name": "machine",
|
|
11423
|
+
"allowNo": false,
|
|
11424
|
+
"type": "boolean"
|
|
11425
|
+
},
|
|
11426
|
+
"check": {
|
|
11427
|
+
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
11428
|
+
"name": "check",
|
|
11429
|
+
"allowNo": false,
|
|
11430
|
+
"type": "boolean"
|
|
11431
|
+
},
|
|
11432
|
+
"force": {
|
|
11433
|
+
"description": "Force re-authentication even if credentials exist",
|
|
11434
|
+
"name": "force",
|
|
11435
|
+
"allowNo": false,
|
|
11436
|
+
"type": "boolean"
|
|
11437
|
+
},
|
|
11438
|
+
"disconnect": {
|
|
11439
|
+
"description": "Remove stored Trello credentials and configuration",
|
|
11440
|
+
"name": "disconnect",
|
|
11441
|
+
"allowNo": false,
|
|
11442
|
+
"type": "boolean"
|
|
11443
|
+
},
|
|
11444
|
+
"board": {
|
|
11445
|
+
"description": "Default board ID or name",
|
|
11446
|
+
"name": "board",
|
|
11447
|
+
"hasDynamicHelp": false,
|
|
11448
|
+
"multiple": false,
|
|
11449
|
+
"type": "option"
|
|
11450
|
+
}
|
|
11451
|
+
},
|
|
11452
|
+
"hasDynamicHelp": false,
|
|
11453
|
+
"hiddenAliases": [],
|
|
11454
|
+
"id": "trello:configure",
|
|
11455
|
+
"pluginAlias": "@proletariat/cli",
|
|
11456
|
+
"pluginName": "@proletariat/cli",
|
|
11457
|
+
"pluginType": "core",
|
|
11458
|
+
"strict": true,
|
|
11459
|
+
"isESM": true,
|
|
11460
|
+
"relativePath": [
|
|
11461
|
+
"dist",
|
|
11462
|
+
"commands",
|
|
11463
|
+
"trello",
|
|
11464
|
+
"configure.js"
|
|
11465
|
+
]
|
|
11466
|
+
},
|
|
11467
|
+
"trello:import": {
|
|
11468
|
+
"aliases": [],
|
|
11469
|
+
"args": {},
|
|
11470
|
+
"description": "Import Trello cards into PMO as tickets",
|
|
11471
|
+
"examples": [
|
|
11472
|
+
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
11473
|
+
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
11474
|
+
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
11475
|
+
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
11476
|
+
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
11477
|
+
],
|
|
11478
|
+
"flags": {
|
|
11479
|
+
"project": {
|
|
11480
|
+
"char": "P",
|
|
11481
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11482
|
+
"name": "project",
|
|
11483
|
+
"hasDynamicHelp": false,
|
|
11484
|
+
"multiple": false,
|
|
11485
|
+
"type": "option"
|
|
11486
|
+
},
|
|
11487
|
+
"json": {
|
|
11488
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11489
|
+
"name": "json",
|
|
11490
|
+
"allowNo": false,
|
|
11491
|
+
"type": "boolean"
|
|
11492
|
+
},
|
|
11493
|
+
"machine": {
|
|
11494
|
+
"char": "m",
|
|
11495
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11496
|
+
"name": "machine",
|
|
11497
|
+
"allowNo": false,
|
|
11498
|
+
"type": "boolean"
|
|
11499
|
+
},
|
|
11500
|
+
"limit": {
|
|
11501
|
+
"char": "n",
|
|
11502
|
+
"description": "Maximum number of cards to import",
|
|
11503
|
+
"name": "limit",
|
|
11504
|
+
"default": 50,
|
|
11505
|
+
"hasDynamicHelp": false,
|
|
11506
|
+
"multiple": false,
|
|
11507
|
+
"type": "option"
|
|
11508
|
+
},
|
|
11509
|
+
"all": {
|
|
11510
|
+
"char": "a",
|
|
11511
|
+
"description": "Import all matching cards without interactive selection",
|
|
11512
|
+
"name": "all",
|
|
11513
|
+
"allowNo": false,
|
|
11514
|
+
"type": "boolean"
|
|
11515
|
+
},
|
|
11516
|
+
"dry-run": {
|
|
11517
|
+
"description": "Preview cards that would be imported without creating tickets",
|
|
11518
|
+
"name": "dry-run",
|
|
11519
|
+
"allowNo": false,
|
|
11520
|
+
"type": "boolean"
|
|
11521
|
+
}
|
|
11522
|
+
},
|
|
11523
|
+
"hasDynamicHelp": false,
|
|
11524
|
+
"hiddenAliases": [],
|
|
11525
|
+
"id": "trello:import",
|
|
11526
|
+
"pluginAlias": "@proletariat/cli",
|
|
11527
|
+
"pluginName": "@proletariat/cli",
|
|
11528
|
+
"pluginType": "core",
|
|
11529
|
+
"strict": true,
|
|
11530
|
+
"isESM": true,
|
|
11531
|
+
"relativePath": [
|
|
11532
|
+
"dist",
|
|
11533
|
+
"commands",
|
|
11534
|
+
"trello",
|
|
11535
|
+
"import.js"
|
|
11536
|
+
]
|
|
11537
|
+
},
|
|
11538
|
+
"trello:sync": {
|
|
11539
|
+
"aliases": [],
|
|
11540
|
+
"args": {},
|
|
11541
|
+
"description": "Sync PMO tickets to Trello cards",
|
|
11542
|
+
"examples": [
|
|
11543
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
11544
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
11545
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
11546
|
+
],
|
|
11547
|
+
"flags": {
|
|
11548
|
+
"project": {
|
|
11549
|
+
"char": "P",
|
|
11550
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11551
|
+
"name": "project",
|
|
11552
|
+
"hasDynamicHelp": false,
|
|
11553
|
+
"multiple": false,
|
|
11554
|
+
"type": "option"
|
|
11555
|
+
},
|
|
11556
|
+
"json": {
|
|
11557
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11558
|
+
"name": "json",
|
|
11559
|
+
"allowNo": false,
|
|
11560
|
+
"type": "boolean"
|
|
11561
|
+
},
|
|
11562
|
+
"machine": {
|
|
11563
|
+
"char": "m",
|
|
11564
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11565
|
+
"name": "machine",
|
|
11566
|
+
"allowNo": false,
|
|
11567
|
+
"type": "boolean"
|
|
11568
|
+
},
|
|
11569
|
+
"ticket": {
|
|
11570
|
+
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
11571
|
+
"name": "ticket",
|
|
11572
|
+
"hasDynamicHelp": false,
|
|
11573
|
+
"multiple": false,
|
|
11574
|
+
"type": "option"
|
|
11575
|
+
},
|
|
11576
|
+
"card": {
|
|
11577
|
+
"description": "Trello card ID to map to --ticket",
|
|
11578
|
+
"name": "card",
|
|
11579
|
+
"hasDynamicHelp": false,
|
|
11580
|
+
"multiple": false,
|
|
11581
|
+
"type": "option"
|
|
11582
|
+
},
|
|
11583
|
+
"list": {
|
|
11584
|
+
"description": "Trello list ID used with --create-missing",
|
|
11585
|
+
"name": "list",
|
|
11586
|
+
"hasDynamicHelp": false,
|
|
11587
|
+
"multiple": false,
|
|
11588
|
+
"type": "option"
|
|
11589
|
+
},
|
|
11590
|
+
"create-missing": {
|
|
11591
|
+
"description": "Create Trello card when no mapping exists (requires list)",
|
|
11592
|
+
"name": "create-missing",
|
|
11593
|
+
"allowNo": false,
|
|
11594
|
+
"type": "boolean"
|
|
11595
|
+
},
|
|
11596
|
+
"dry-run": {
|
|
11597
|
+
"description": "Preview sync operations without making changes",
|
|
11598
|
+
"name": "dry-run",
|
|
11599
|
+
"allowNo": false,
|
|
11600
|
+
"type": "boolean"
|
|
11601
|
+
}
|
|
11602
|
+
},
|
|
11603
|
+
"hasDynamicHelp": false,
|
|
11604
|
+
"hiddenAliases": [],
|
|
11605
|
+
"id": "trello:sync",
|
|
11606
|
+
"pluginAlias": "@proletariat/cli",
|
|
11607
|
+
"pluginName": "@proletariat/cli",
|
|
11608
|
+
"pluginType": "core",
|
|
11609
|
+
"strict": true,
|
|
11610
|
+
"isESM": true,
|
|
11611
|
+
"relativePath": [
|
|
11612
|
+
"dist",
|
|
11613
|
+
"commands",
|
|
11614
|
+
"trello",
|
|
11615
|
+
"sync.js"
|
|
11616
|
+
]
|
|
11617
|
+
},
|
|
11618
|
+
"version:bump": {
|
|
11619
|
+
"aliases": [],
|
|
11620
|
+
"args": {
|
|
11621
|
+
"type": {
|
|
11622
|
+
"description": "Version bump type",
|
|
11623
|
+
"name": "type",
|
|
11624
|
+
"options": [
|
|
11625
|
+
"major",
|
|
11626
|
+
"minor",
|
|
11627
|
+
"patch"
|
|
11628
|
+
],
|
|
11629
|
+
"required": true
|
|
11630
|
+
}
|
|
11631
|
+
},
|
|
11632
|
+
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
11633
|
+
"examples": [
|
|
11634
|
+
"<%= config.bin %> version bump patch",
|
|
11635
|
+
"<%= config.bin %> version bump minor",
|
|
11636
|
+
"<%= config.bin %> version bump major",
|
|
11637
|
+
"<%= config.bin %> version bump patch --json"
|
|
11638
|
+
],
|
|
11639
|
+
"flags": {
|
|
11640
|
+
"json": {
|
|
11641
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11642
|
+
"name": "json",
|
|
11643
|
+
"allowNo": false,
|
|
11644
|
+
"type": "boolean"
|
|
11645
|
+
},
|
|
11646
|
+
"machine": {
|
|
11647
|
+
"char": "m",
|
|
11648
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11649
|
+
"name": "machine",
|
|
11650
|
+
"allowNo": false,
|
|
11651
|
+
"type": "boolean"
|
|
11652
|
+
}
|
|
11653
|
+
},
|
|
11654
|
+
"hasDynamicHelp": false,
|
|
11655
|
+
"hiddenAliases": [],
|
|
11656
|
+
"id": "version:bump",
|
|
11657
|
+
"pluginAlias": "@proletariat/cli",
|
|
11658
|
+
"pluginName": "@proletariat/cli",
|
|
11659
|
+
"pluginType": "core",
|
|
11660
|
+
"strict": true,
|
|
11661
|
+
"enableJsonFlag": false,
|
|
11662
|
+
"isESM": true,
|
|
11663
|
+
"relativePath": [
|
|
11664
|
+
"dist",
|
|
11665
|
+
"commands",
|
|
11666
|
+
"version",
|
|
11667
|
+
"bump.js"
|
|
11668
|
+
]
|
|
11669
|
+
},
|
|
11670
|
+
"workspace:add": {
|
|
11671
|
+
"aliases": [],
|
|
11672
|
+
"args": {
|
|
11673
|
+
"path": {
|
|
11674
|
+
"description": "Path to the workspace to register",
|
|
11675
|
+
"name": "path",
|
|
11676
|
+
"required": true
|
|
11677
|
+
}
|
|
11678
|
+
},
|
|
11679
|
+
"description": "Register an existing workspace in the machine config",
|
|
11680
|
+
"examples": [
|
|
11681
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
11682
|
+
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
11683
|
+
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
11684
|
+
],
|
|
11685
|
+
"flags": {
|
|
11686
|
+
"json": {
|
|
11687
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11688
|
+
"name": "json",
|
|
11689
|
+
"allowNo": false,
|
|
11690
|
+
"type": "boolean"
|
|
11691
|
+
},
|
|
11692
|
+
"machine": {
|
|
11693
|
+
"char": "m",
|
|
11694
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11695
|
+
"name": "machine",
|
|
11696
|
+
"allowNo": false,
|
|
11697
|
+
"type": "boolean"
|
|
11698
|
+
},
|
|
11699
|
+
"name": {
|
|
11700
|
+
"char": "n",
|
|
11701
|
+
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
11702
|
+
"name": "name",
|
|
11703
|
+
"hasDynamicHelp": false,
|
|
11704
|
+
"multiple": false,
|
|
11705
|
+
"type": "option"
|
|
11706
|
+
}
|
|
11707
|
+
},
|
|
11708
|
+
"hasDynamicHelp": false,
|
|
11709
|
+
"hiddenAliases": [],
|
|
11710
|
+
"id": "workspace:add",
|
|
11711
|
+
"pluginAlias": "@proletariat/cli",
|
|
11712
|
+
"pluginName": "@proletariat/cli",
|
|
11713
|
+
"pluginType": "core",
|
|
11714
|
+
"strict": true,
|
|
11715
|
+
"enableJsonFlag": false,
|
|
11716
|
+
"isESM": true,
|
|
11717
|
+
"relativePath": [
|
|
11718
|
+
"dist",
|
|
11719
|
+
"commands",
|
|
11720
|
+
"workspace",
|
|
11721
|
+
"add.js"
|
|
11722
|
+
]
|
|
11723
|
+
},
|
|
11724
|
+
"workspace:list": {
|
|
11725
|
+
"aliases": [],
|
|
11726
|
+
"args": {},
|
|
11727
|
+
"description": "List all registered and discovered HQ workspaces",
|
|
11728
|
+
"examples": [
|
|
11729
|
+
"<%= config.bin %> <%= command.id %>",
|
|
11730
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
11731
|
+
],
|
|
11732
|
+
"flags": {
|
|
11733
|
+
"json": {
|
|
11734
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11735
|
+
"name": "json",
|
|
11736
|
+
"allowNo": false,
|
|
11737
|
+
"type": "boolean"
|
|
11738
|
+
},
|
|
11739
|
+
"machine": {
|
|
11740
|
+
"char": "m",
|
|
11741
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11742
|
+
"name": "machine",
|
|
11743
|
+
"allowNo": false,
|
|
11744
|
+
"type": "boolean"
|
|
11745
|
+
}
|
|
11746
|
+
},
|
|
11747
|
+
"hasDynamicHelp": false,
|
|
11748
|
+
"hiddenAliases": [],
|
|
11749
|
+
"id": "workspace:list",
|
|
11750
|
+
"pluginAlias": "@proletariat/cli",
|
|
11751
|
+
"pluginName": "@proletariat/cli",
|
|
11752
|
+
"pluginType": "core",
|
|
11753
|
+
"strict": true,
|
|
11754
|
+
"enableJsonFlag": false,
|
|
11755
|
+
"isESM": true,
|
|
11756
|
+
"relativePath": [
|
|
11757
|
+
"dist",
|
|
11758
|
+
"commands",
|
|
11759
|
+
"workspace",
|
|
11760
|
+
"list.js"
|
|
11761
|
+
]
|
|
11762
|
+
},
|
|
11763
|
+
"workspace:prune": {
|
|
11764
|
+
"aliases": [],
|
|
11765
|
+
"args": {},
|
|
11766
|
+
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
11767
|
+
"examples": [
|
|
11768
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
11769
|
+
"<%= config.bin %> <%= command.id %>",
|
|
11770
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
11771
|
+
],
|
|
11772
|
+
"flags": {
|
|
11773
|
+
"json": {
|
|
11774
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11775
|
+
"name": "json",
|
|
11776
|
+
"allowNo": false,
|
|
11777
|
+
"type": "boolean"
|
|
11778
|
+
},
|
|
11779
|
+
"machine": {
|
|
11780
|
+
"char": "m",
|
|
11781
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11782
|
+
"name": "machine",
|
|
11783
|
+
"allowNo": false,
|
|
11784
|
+
"type": "boolean"
|
|
11785
|
+
},
|
|
11786
|
+
"dry-run": {
|
|
11787
|
+
"char": "d",
|
|
11788
|
+
"description": "Show what would be removed without removing",
|
|
11789
|
+
"name": "dry-run",
|
|
11790
|
+
"allowNo": false,
|
|
11791
|
+
"type": "boolean"
|
|
11792
|
+
},
|
|
11793
|
+
"force": {
|
|
11794
|
+
"char": "f",
|
|
11795
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
11796
|
+
"name": "force",
|
|
11797
|
+
"allowNo": false,
|
|
11798
|
+
"type": "boolean"
|
|
11799
|
+
}
|
|
11800
|
+
},
|
|
11801
|
+
"hasDynamicHelp": false,
|
|
11802
|
+
"hiddenAliases": [],
|
|
11803
|
+
"id": "workspace:prune",
|
|
11804
|
+
"pluginAlias": "@proletariat/cli",
|
|
11805
|
+
"pluginName": "@proletariat/cli",
|
|
11806
|
+
"pluginType": "core",
|
|
11807
|
+
"strict": true,
|
|
11808
|
+
"isESM": true,
|
|
11809
|
+
"relativePath": [
|
|
11810
|
+
"dist",
|
|
11811
|
+
"commands",
|
|
11812
|
+
"workspace",
|
|
11813
|
+
"prune.js"
|
|
11814
|
+
]
|
|
11815
|
+
},
|
|
11816
|
+
"workspace:remove": {
|
|
11817
|
+
"aliases": [],
|
|
11818
|
+
"args": {
|
|
11819
|
+
"nameOrPath": {
|
|
11820
|
+
"description": "Workspace name or path to unregister",
|
|
11821
|
+
"name": "nameOrPath",
|
|
11822
|
+
"required": true
|
|
11823
|
+
}
|
|
11824
|
+
},
|
|
11825
|
+
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
11826
|
+
"examples": [
|
|
11827
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
11828
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
11829
|
+
],
|
|
11830
|
+
"flags": {
|
|
11831
|
+
"json": {
|
|
11832
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11833
|
+
"name": "json",
|
|
11834
|
+
"allowNo": false,
|
|
11835
|
+
"type": "boolean"
|
|
11836
|
+
},
|
|
11837
|
+
"machine": {
|
|
11838
|
+
"char": "m",
|
|
11839
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11840
|
+
"name": "machine",
|
|
11841
|
+
"allowNo": false,
|
|
11842
|
+
"type": "boolean"
|
|
11843
|
+
}
|
|
11844
|
+
},
|
|
11845
|
+
"hasDynamicHelp": false,
|
|
11846
|
+
"hiddenAliases": [],
|
|
11847
|
+
"id": "workspace:remove",
|
|
11848
|
+
"pluginAlias": "@proletariat/cli",
|
|
11849
|
+
"pluginName": "@proletariat/cli",
|
|
11850
|
+
"pluginType": "core",
|
|
11851
|
+
"strict": true,
|
|
11852
|
+
"isESM": true,
|
|
11853
|
+
"relativePath": [
|
|
11854
|
+
"dist",
|
|
11855
|
+
"commands",
|
|
11856
|
+
"workspace",
|
|
11857
|
+
"remove.js"
|
|
11858
|
+
]
|
|
11859
|
+
},
|
|
11860
|
+
"workspace:use": {
|
|
11861
|
+
"aliases": [],
|
|
11862
|
+
"args": {
|
|
11863
|
+
"nameOrPath": {
|
|
11864
|
+
"description": "Workspace name or path",
|
|
11865
|
+
"name": "nameOrPath",
|
|
11866
|
+
"required": true
|
|
11867
|
+
}
|
|
11868
|
+
},
|
|
11869
|
+
"description": "Set the active workspace",
|
|
11870
|
+
"examples": [
|
|
11871
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
11872
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
11596
11873
|
],
|
|
11597
11874
|
"flags": {
|
|
11598
11875
|
"json": {
|
|
@@ -11611,18 +11888,17 @@
|
|
|
11611
11888
|
},
|
|
11612
11889
|
"hasDynamicHelp": false,
|
|
11613
11890
|
"hiddenAliases": [],
|
|
11614
|
-
"id": "
|
|
11891
|
+
"id": "workspace:use",
|
|
11615
11892
|
"pluginAlias": "@proletariat/cli",
|
|
11616
11893
|
"pluginName": "@proletariat/cli",
|
|
11617
11894
|
"pluginType": "core",
|
|
11618
11895
|
"strict": true,
|
|
11619
|
-
"enableJsonFlag": false,
|
|
11620
11896
|
"isESM": true,
|
|
11621
11897
|
"relativePath": [
|
|
11622
11898
|
"dist",
|
|
11623
11899
|
"commands",
|
|
11624
|
-
"
|
|
11625
|
-
"
|
|
11900
|
+
"workspace",
|
|
11901
|
+
"use.js"
|
|
11626
11902
|
]
|
|
11627
11903
|
},
|
|
11628
11904
|
"work:asana": {
|
|
@@ -12387,14 +12663,6 @@
|
|
|
12387
12663
|
"<%= config.bin %> work steer TKT-001 \"Add error handling\""
|
|
12388
12664
|
],
|
|
12389
12665
|
"flags": {
|
|
12390
|
-
"project": {
|
|
12391
|
-
"char": "P",
|
|
12392
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
12393
|
-
"name": "project",
|
|
12394
|
-
"hasDynamicHelp": false,
|
|
12395
|
-
"multiple": false,
|
|
12396
|
-
"type": "option"
|
|
12397
|
-
},
|
|
12398
12666
|
"json": {
|
|
12399
12667
|
"aliases": [
|
|
12400
12668
|
"machine"
|
|
@@ -13195,7 +13463,9 @@
|
|
|
13195
13463
|
"<%= config.bin %> <%= command.id %> --from shortcut:sc-123 # Unified: Shortcut shorthand",
|
|
13196
13464
|
"<%= config.bin %> <%= command.id %> --from trello:abc123 # Unified: Trello shorthand",
|
|
13197
13465
|
"<%= config.bin %> <%= command.id %> PRLT-933 # Auto-detect: resolves via default source",
|
|
13198
|
-
"<%= config.bin %> <%= command.id %> --from-issue # Uses workspace default source"
|
|
13466
|
+
"<%= config.bin %> <%= command.id %> --from-issue # Uses workspace default source",
|
|
13467
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --review-gate auto # Ship directly, no approval needed",
|
|
13468
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --review-gate post # Ship then human reviews after"
|
|
13199
13469
|
],
|
|
13200
13470
|
"flags": {
|
|
13201
13471
|
"project": {
|
|
@@ -13427,6 +13697,18 @@
|
|
|
13427
13697
|
"allowNo": false,
|
|
13428
13698
|
"type": "boolean"
|
|
13429
13699
|
},
|
|
13700
|
+
"review-gate": {
|
|
13701
|
+
"description": "Review gate mode: required (human approves before landing), auto (ship directly), post (ship then review)",
|
|
13702
|
+
"name": "review-gate",
|
|
13703
|
+
"hasDynamicHelp": false,
|
|
13704
|
+
"multiple": false,
|
|
13705
|
+
"options": [
|
|
13706
|
+
"required",
|
|
13707
|
+
"auto",
|
|
13708
|
+
"post"
|
|
13709
|
+
],
|
|
13710
|
+
"type": "option"
|
|
13711
|
+
},
|
|
13430
13712
|
"session-action": {
|
|
13431
13713
|
"description": "Action when existing session found (attach, spawn, kill, cancel). Skips interactive menu.",
|
|
13432
13714
|
"name": "session-action",
|
|
@@ -13723,240 +14005,6 @@
|
|
|
13723
14005
|
"watch.js"
|
|
13724
14006
|
]
|
|
13725
14007
|
},
|
|
13726
|
-
"workspace:add": {
|
|
13727
|
-
"aliases": [],
|
|
13728
|
-
"args": {
|
|
13729
|
-
"path": {
|
|
13730
|
-
"description": "Path to the workspace to register",
|
|
13731
|
-
"name": "path",
|
|
13732
|
-
"required": true
|
|
13733
|
-
}
|
|
13734
|
-
},
|
|
13735
|
-
"description": "Register an existing workspace in the machine config",
|
|
13736
|
-
"examples": [
|
|
13737
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
13738
|
-
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
13739
|
-
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
13740
|
-
],
|
|
13741
|
-
"flags": {
|
|
13742
|
-
"json": {
|
|
13743
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13744
|
-
"name": "json",
|
|
13745
|
-
"allowNo": false,
|
|
13746
|
-
"type": "boolean"
|
|
13747
|
-
},
|
|
13748
|
-
"machine": {
|
|
13749
|
-
"char": "m",
|
|
13750
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13751
|
-
"name": "machine",
|
|
13752
|
-
"allowNo": false,
|
|
13753
|
-
"type": "boolean"
|
|
13754
|
-
},
|
|
13755
|
-
"name": {
|
|
13756
|
-
"char": "n",
|
|
13757
|
-
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
13758
|
-
"name": "name",
|
|
13759
|
-
"hasDynamicHelp": false,
|
|
13760
|
-
"multiple": false,
|
|
13761
|
-
"type": "option"
|
|
13762
|
-
}
|
|
13763
|
-
},
|
|
13764
|
-
"hasDynamicHelp": false,
|
|
13765
|
-
"hiddenAliases": [],
|
|
13766
|
-
"id": "workspace:add",
|
|
13767
|
-
"pluginAlias": "@proletariat/cli",
|
|
13768
|
-
"pluginName": "@proletariat/cli",
|
|
13769
|
-
"pluginType": "core",
|
|
13770
|
-
"strict": true,
|
|
13771
|
-
"enableJsonFlag": false,
|
|
13772
|
-
"isESM": true,
|
|
13773
|
-
"relativePath": [
|
|
13774
|
-
"dist",
|
|
13775
|
-
"commands",
|
|
13776
|
-
"workspace",
|
|
13777
|
-
"add.js"
|
|
13778
|
-
]
|
|
13779
|
-
},
|
|
13780
|
-
"workspace:list": {
|
|
13781
|
-
"aliases": [],
|
|
13782
|
-
"args": {},
|
|
13783
|
-
"description": "List all registered and discovered HQ workspaces",
|
|
13784
|
-
"examples": [
|
|
13785
|
-
"<%= config.bin %> <%= command.id %>",
|
|
13786
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
13787
|
-
],
|
|
13788
|
-
"flags": {
|
|
13789
|
-
"json": {
|
|
13790
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13791
|
-
"name": "json",
|
|
13792
|
-
"allowNo": false,
|
|
13793
|
-
"type": "boolean"
|
|
13794
|
-
},
|
|
13795
|
-
"machine": {
|
|
13796
|
-
"char": "m",
|
|
13797
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13798
|
-
"name": "machine",
|
|
13799
|
-
"allowNo": false,
|
|
13800
|
-
"type": "boolean"
|
|
13801
|
-
}
|
|
13802
|
-
},
|
|
13803
|
-
"hasDynamicHelp": false,
|
|
13804
|
-
"hiddenAliases": [],
|
|
13805
|
-
"id": "workspace:list",
|
|
13806
|
-
"pluginAlias": "@proletariat/cli",
|
|
13807
|
-
"pluginName": "@proletariat/cli",
|
|
13808
|
-
"pluginType": "core",
|
|
13809
|
-
"strict": true,
|
|
13810
|
-
"enableJsonFlag": false,
|
|
13811
|
-
"isESM": true,
|
|
13812
|
-
"relativePath": [
|
|
13813
|
-
"dist",
|
|
13814
|
-
"commands",
|
|
13815
|
-
"workspace",
|
|
13816
|
-
"list.js"
|
|
13817
|
-
]
|
|
13818
|
-
},
|
|
13819
|
-
"workspace:prune": {
|
|
13820
|
-
"aliases": [],
|
|
13821
|
-
"args": {},
|
|
13822
|
-
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
13823
|
-
"examples": [
|
|
13824
|
-
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
13825
|
-
"<%= config.bin %> <%= command.id %>",
|
|
13826
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
13827
|
-
],
|
|
13828
|
-
"flags": {
|
|
13829
|
-
"json": {
|
|
13830
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13831
|
-
"name": "json",
|
|
13832
|
-
"allowNo": false,
|
|
13833
|
-
"type": "boolean"
|
|
13834
|
-
},
|
|
13835
|
-
"machine": {
|
|
13836
|
-
"char": "m",
|
|
13837
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13838
|
-
"name": "machine",
|
|
13839
|
-
"allowNo": false,
|
|
13840
|
-
"type": "boolean"
|
|
13841
|
-
},
|
|
13842
|
-
"dry-run": {
|
|
13843
|
-
"char": "d",
|
|
13844
|
-
"description": "Show what would be removed without removing",
|
|
13845
|
-
"name": "dry-run",
|
|
13846
|
-
"allowNo": false,
|
|
13847
|
-
"type": "boolean"
|
|
13848
|
-
},
|
|
13849
|
-
"force": {
|
|
13850
|
-
"char": "f",
|
|
13851
|
-
"description": "Skip confirmation prompt and prune immediately",
|
|
13852
|
-
"name": "force",
|
|
13853
|
-
"allowNo": false,
|
|
13854
|
-
"type": "boolean"
|
|
13855
|
-
}
|
|
13856
|
-
},
|
|
13857
|
-
"hasDynamicHelp": false,
|
|
13858
|
-
"hiddenAliases": [],
|
|
13859
|
-
"id": "workspace:prune",
|
|
13860
|
-
"pluginAlias": "@proletariat/cli",
|
|
13861
|
-
"pluginName": "@proletariat/cli",
|
|
13862
|
-
"pluginType": "core",
|
|
13863
|
-
"strict": true,
|
|
13864
|
-
"isESM": true,
|
|
13865
|
-
"relativePath": [
|
|
13866
|
-
"dist",
|
|
13867
|
-
"commands",
|
|
13868
|
-
"workspace",
|
|
13869
|
-
"prune.js"
|
|
13870
|
-
]
|
|
13871
|
-
},
|
|
13872
|
-
"workspace:remove": {
|
|
13873
|
-
"aliases": [],
|
|
13874
|
-
"args": {
|
|
13875
|
-
"nameOrPath": {
|
|
13876
|
-
"description": "Workspace name or path to unregister",
|
|
13877
|
-
"name": "nameOrPath",
|
|
13878
|
-
"required": true
|
|
13879
|
-
}
|
|
13880
|
-
},
|
|
13881
|
-
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
13882
|
-
"examples": [
|
|
13883
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13884
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13885
|
-
],
|
|
13886
|
-
"flags": {
|
|
13887
|
-
"json": {
|
|
13888
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13889
|
-
"name": "json",
|
|
13890
|
-
"allowNo": false,
|
|
13891
|
-
"type": "boolean"
|
|
13892
|
-
},
|
|
13893
|
-
"machine": {
|
|
13894
|
-
"char": "m",
|
|
13895
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13896
|
-
"name": "machine",
|
|
13897
|
-
"allowNo": false,
|
|
13898
|
-
"type": "boolean"
|
|
13899
|
-
}
|
|
13900
|
-
},
|
|
13901
|
-
"hasDynamicHelp": false,
|
|
13902
|
-
"hiddenAliases": [],
|
|
13903
|
-
"id": "workspace:remove",
|
|
13904
|
-
"pluginAlias": "@proletariat/cli",
|
|
13905
|
-
"pluginName": "@proletariat/cli",
|
|
13906
|
-
"pluginType": "core",
|
|
13907
|
-
"strict": true,
|
|
13908
|
-
"isESM": true,
|
|
13909
|
-
"relativePath": [
|
|
13910
|
-
"dist",
|
|
13911
|
-
"commands",
|
|
13912
|
-
"workspace",
|
|
13913
|
-
"remove.js"
|
|
13914
|
-
]
|
|
13915
|
-
},
|
|
13916
|
-
"workspace:use": {
|
|
13917
|
-
"aliases": [],
|
|
13918
|
-
"args": {
|
|
13919
|
-
"nameOrPath": {
|
|
13920
|
-
"description": "Workspace name or path",
|
|
13921
|
-
"name": "nameOrPath",
|
|
13922
|
-
"required": true
|
|
13923
|
-
}
|
|
13924
|
-
},
|
|
13925
|
-
"description": "Set the active workspace",
|
|
13926
|
-
"examples": [
|
|
13927
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13928
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13929
|
-
],
|
|
13930
|
-
"flags": {
|
|
13931
|
-
"json": {
|
|
13932
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13933
|
-
"name": "json",
|
|
13934
|
-
"allowNo": false,
|
|
13935
|
-
"type": "boolean"
|
|
13936
|
-
},
|
|
13937
|
-
"machine": {
|
|
13938
|
-
"char": "m",
|
|
13939
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13940
|
-
"name": "machine",
|
|
13941
|
-
"allowNo": false,
|
|
13942
|
-
"type": "boolean"
|
|
13943
|
-
}
|
|
13944
|
-
},
|
|
13945
|
-
"hasDynamicHelp": false,
|
|
13946
|
-
"hiddenAliases": [],
|
|
13947
|
-
"id": "workspace:use",
|
|
13948
|
-
"pluginAlias": "@proletariat/cli",
|
|
13949
|
-
"pluginName": "@proletariat/cli",
|
|
13950
|
-
"pluginType": "core",
|
|
13951
|
-
"strict": true,
|
|
13952
|
-
"isESM": true,
|
|
13953
|
-
"relativePath": [
|
|
13954
|
-
"dist",
|
|
13955
|
-
"commands",
|
|
13956
|
-
"workspace",
|
|
13957
|
-
"use.js"
|
|
13958
|
-
]
|
|
13959
|
-
},
|
|
13960
14008
|
"agent:staff:add": {
|
|
13961
14009
|
"aliases": [],
|
|
13962
14010
|
"args": {
|
|
@@ -15022,5 +15070,5 @@
|
|
|
15022
15070
|
]
|
|
15023
15071
|
}
|
|
15024
15072
|
},
|
|
15025
|
-
"version": "0.3.
|
|
15073
|
+
"version": "0.3.88"
|
|
15026
15074
|
}
|