@proletariat/cli 0.3.88 → 0.3.89
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/db/repair.d.ts +14 -0
- package/dist/commands/db/repair.js +186 -0
- package/dist/commands/db/repair.js.map +1 -0
- package/dist/commands/session/list.js +42 -0
- package/dist/commands/session/list.js.map +1 -1
- package/dist/commands/session/poke.d.ts +6 -0
- package/dist/commands/session/poke.js +40 -0
- package/dist/commands/session/poke.js.map +1 -1
- package/dist/commands/work/start.d.ts +1 -0
- package/dist/commands/work/start.js +20 -1
- package/dist/commands/work/start.js.map +1 -1
- package/dist/lib/dashboard/data.js +2 -2
- package/dist/lib/dashboard/data.js.map +1 -1
- package/dist/lib/database/db-safety.d.ts +59 -0
- package/dist/lib/database/db-safety.js +295 -0
- package/dist/lib/database/db-safety.js.map +1 -0
- package/dist/lib/database/driver.d.ts +1 -1
- package/dist/lib/database/driver.js +2 -1
- package/dist/lib/database/driver.js.map +1 -1
- package/dist/lib/database/index.d.ts +1 -0
- package/dist/lib/database/index.js +2 -0
- package/dist/lib/database/index.js.map +1 -1
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.d.ts +9 -0
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.js +22 -0
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.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/workspace.d.ts +6 -1
- package/dist/lib/database/workspace.js +37 -1
- package/dist/lib/database/workspace.js.map +1 -1
- package/dist/lib/execution/config.d.ts +13 -0
- package/dist/lib/execution/config.js +60 -0
- package/dist/lib/execution/config.js.map +1 -1
- package/dist/lib/execution/devcontainer.d.ts +2 -0
- package/dist/lib/execution/devcontainer.js +6 -1
- package/dist/lib/execution/devcontainer.js.map +1 -1
- package/dist/lib/execution/runners/docker-management.d.ts +6 -0
- package/dist/lib/execution/runners/docker-management.js +28 -12
- package/dist/lib/execution/runners/docker-management.js.map +1 -1
- package/dist/lib/execution/runners/sandbox.js +2 -1
- package/dist/lib/execution/runners/sandbox.js.map +1 -1
- package/dist/lib/execution/spawner.d.ts +2 -0
- package/dist/lib/execution/spawner.js +1 -0
- package/dist/lib/execution/spawner.js.map +1 -1
- package/dist/lib/execution/storage.d.ts +43 -9
- package/dist/lib/execution/storage.js +58 -43
- 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/pmo/find-pmo.js +10 -10
- package/dist/lib/pmo/find-pmo.js.map +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/types.d.ts +1 -0
- package/dist/lib/pmo/types.d.ts +1 -0
- package/dist/lib/pmo/types.js.map +1 -1
- package/dist/lib/registry/index.d.ts +2 -2
- package/dist/lib/registry/index.js +5 -6
- package/dist/lib/registry/index.js.map +1 -1
- package/dist/lib/session-store.js +2 -2
- package/dist/lib/session-store.js.map +1 -1
- package/dist/lib/work-lifecycle/action-chaining.js +4 -0
- package/dist/lib/work-lifecycle/action-chaining.js.map +1 -1
- package/oclif.manifest.json +950 -889
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -3613,6 +3613,60 @@
|
|
|
3613
3613
|
"index.js"
|
|
3614
3614
|
]
|
|
3615
3615
|
},
|
|
3616
|
+
"db:repair": {
|
|
3617
|
+
"aliases": [],
|
|
3618
|
+
"args": {},
|
|
3619
|
+
"description": "Check database integrity and repair corruption",
|
|
3620
|
+
"examples": [
|
|
3621
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3622
|
+
"<%= config.bin %> <%= command.id %> --check-only",
|
|
3623
|
+
"<%= config.bin %> <%= command.id %> --workspace /path/to/hq"
|
|
3624
|
+
],
|
|
3625
|
+
"flags": {
|
|
3626
|
+
"json": {
|
|
3627
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3628
|
+
"name": "json",
|
|
3629
|
+
"allowNo": false,
|
|
3630
|
+
"type": "boolean"
|
|
3631
|
+
},
|
|
3632
|
+
"machine": {
|
|
3633
|
+
"char": "m",
|
|
3634
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3635
|
+
"name": "machine",
|
|
3636
|
+
"allowNo": false,
|
|
3637
|
+
"type": "boolean"
|
|
3638
|
+
},
|
|
3639
|
+
"check-only": {
|
|
3640
|
+
"description": "Only check integrity, do not attempt repair",
|
|
3641
|
+
"name": "check-only",
|
|
3642
|
+
"allowNo": false,
|
|
3643
|
+
"type": "boolean"
|
|
3644
|
+
},
|
|
3645
|
+
"workspace": {
|
|
3646
|
+
"char": "w",
|
|
3647
|
+
"description": "Path to workspace (defaults to active workspace)",
|
|
3648
|
+
"name": "workspace",
|
|
3649
|
+
"hasDynamicHelp": false,
|
|
3650
|
+
"multiple": false,
|
|
3651
|
+
"type": "option"
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3654
|
+
"hasDynamicHelp": false,
|
|
3655
|
+
"hiddenAliases": [],
|
|
3656
|
+
"id": "db:repair",
|
|
3657
|
+
"pluginAlias": "@proletariat/cli",
|
|
3658
|
+
"pluginName": "@proletariat/cli",
|
|
3659
|
+
"pluginType": "core",
|
|
3660
|
+
"strict": true,
|
|
3661
|
+
"enableJsonFlag": false,
|
|
3662
|
+
"isESM": true,
|
|
3663
|
+
"relativePath": [
|
|
3664
|
+
"dist",
|
|
3665
|
+
"commands",
|
|
3666
|
+
"db",
|
|
3667
|
+
"repair.js"
|
|
3668
|
+
]
|
|
3669
|
+
},
|
|
3616
3670
|
"docker:clean": {
|
|
3617
3671
|
"aliases": [],
|
|
3618
3672
|
"args": {},
|
|
@@ -4253,15 +4307,28 @@
|
|
|
4253
4307
|
"sync.js"
|
|
4254
4308
|
]
|
|
4255
4309
|
},
|
|
4256
|
-
"
|
|
4310
|
+
"execution:config": {
|
|
4257
4311
|
"aliases": [],
|
|
4258
4312
|
"args": {},
|
|
4259
|
-
"description": "
|
|
4313
|
+
"description": "View and update execution preferences",
|
|
4260
4314
|
"examples": [
|
|
4261
|
-
"<%= config.bin %>
|
|
4262
|
-
"<%= config.bin %>
|
|
4315
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
4316
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
4317
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
4318
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
4319
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
4320
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
4321
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
4263
4322
|
],
|
|
4264
4323
|
"flags": {
|
|
4324
|
+
"project": {
|
|
4325
|
+
"char": "P",
|
|
4326
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4327
|
+
"name": "project",
|
|
4328
|
+
"hasDynamicHelp": false,
|
|
4329
|
+
"multiple": false,
|
|
4330
|
+
"type": "option"
|
|
4331
|
+
},
|
|
4265
4332
|
"json": {
|
|
4266
4333
|
"description": "Output as JSON for AI agents/scripts",
|
|
4267
4334
|
"name": "json",
|
|
@@ -4275,47 +4342,63 @@
|
|
|
4275
4342
|
"allowNo": false,
|
|
4276
4343
|
"type": "boolean"
|
|
4277
4344
|
},
|
|
4278
|
-
"
|
|
4279
|
-
"char": "
|
|
4280
|
-
"description": "
|
|
4281
|
-
"name": "
|
|
4345
|
+
"set": {
|
|
4346
|
+
"char": "s",
|
|
4347
|
+
"description": "Set a config value (format: key value)",
|
|
4348
|
+
"name": "set",
|
|
4349
|
+
"hasDynamicHelp": false,
|
|
4350
|
+
"multiple": true,
|
|
4351
|
+
"type": "option"
|
|
4352
|
+
},
|
|
4353
|
+
"list": {
|
|
4354
|
+
"char": "l",
|
|
4355
|
+
"description": "List all configuration values",
|
|
4356
|
+
"name": "list",
|
|
4357
|
+
"allowNo": false,
|
|
4358
|
+
"type": "boolean"
|
|
4359
|
+
},
|
|
4360
|
+
"setting": {
|
|
4361
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
4362
|
+
"name": "setting",
|
|
4282
4363
|
"hasDynamicHelp": false,
|
|
4283
4364
|
"multiple": false,
|
|
4284
|
-
"options": [
|
|
4285
|
-
"submit",
|
|
4286
|
-
"list",
|
|
4287
|
-
"view"
|
|
4288
|
-
],
|
|
4289
4365
|
"type": "option"
|
|
4290
4366
|
}
|
|
4291
4367
|
},
|
|
4292
4368
|
"hasDynamicHelp": false,
|
|
4293
4369
|
"hiddenAliases": [],
|
|
4294
|
-
"id": "
|
|
4370
|
+
"id": "execution:config",
|
|
4295
4371
|
"pluginAlias": "@proletariat/cli",
|
|
4296
4372
|
"pluginName": "@proletariat/cli",
|
|
4297
4373
|
"pluginType": "core",
|
|
4298
4374
|
"strict": true,
|
|
4299
|
-
"enableJsonFlag": false,
|
|
4300
4375
|
"isESM": true,
|
|
4301
4376
|
"relativePath": [
|
|
4302
4377
|
"dist",
|
|
4303
4378
|
"commands",
|
|
4304
|
-
"
|
|
4305
|
-
"
|
|
4379
|
+
"execution",
|
|
4380
|
+
"config.js"
|
|
4306
4381
|
]
|
|
4307
4382
|
},
|
|
4308
|
-
"
|
|
4383
|
+
"execution": {
|
|
4309
4384
|
"aliases": [],
|
|
4310
4385
|
"args": {},
|
|
4311
|
-
"description": "
|
|
4386
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
4312
4387
|
"examples": [
|
|
4313
4388
|
"<%= config.bin %> <%= command.id %>",
|
|
4314
|
-
"<%= config.bin %> <%= command.id %>
|
|
4315
|
-
"<%= config.bin %> <%= command.id %>
|
|
4316
|
-
"<%= config.bin %> <%= command.id %>
|
|
4389
|
+
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
4390
|
+
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
4391
|
+
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
4317
4392
|
],
|
|
4318
4393
|
"flags": {
|
|
4394
|
+
"project": {
|
|
4395
|
+
"char": "P",
|
|
4396
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4397
|
+
"name": "project",
|
|
4398
|
+
"hasDynamicHelp": false,
|
|
4399
|
+
"multiple": false,
|
|
4400
|
+
"type": "option"
|
|
4401
|
+
},
|
|
4319
4402
|
"json": {
|
|
4320
4403
|
"description": "Output as JSON for AI agents/scripts",
|
|
4321
4404
|
"name": "json",
|
|
@@ -4328,70 +4411,42 @@
|
|
|
4328
4411
|
"name": "machine",
|
|
4329
4412
|
"allowNo": false,
|
|
4330
4413
|
"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"
|
|
4367
4414
|
}
|
|
4368
4415
|
},
|
|
4369
4416
|
"hasDynamicHelp": false,
|
|
4370
4417
|
"hiddenAliases": [],
|
|
4371
|
-
"id": "
|
|
4418
|
+
"id": "execution",
|
|
4372
4419
|
"pluginAlias": "@proletariat/cli",
|
|
4373
4420
|
"pluginName": "@proletariat/cli",
|
|
4374
4421
|
"pluginType": "core",
|
|
4375
4422
|
"strict": true,
|
|
4376
|
-
"enableJsonFlag": false,
|
|
4377
4423
|
"isESM": true,
|
|
4378
4424
|
"relativePath": [
|
|
4379
4425
|
"dist",
|
|
4380
4426
|
"commands",
|
|
4381
|
-
"
|
|
4382
|
-
"
|
|
4427
|
+
"execution",
|
|
4428
|
+
"index.js"
|
|
4383
4429
|
]
|
|
4384
4430
|
},
|
|
4385
|
-
"
|
|
4431
|
+
"execution:list": {
|
|
4386
4432
|
"aliases": [],
|
|
4387
4433
|
"args": {},
|
|
4388
|
-
"description": "
|
|
4434
|
+
"description": "List running and recent executions",
|
|
4389
4435
|
"examples": [
|
|
4390
4436
|
"<%= config.bin %> <%= command.id %>",
|
|
4391
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4392
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4437
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
4438
|
+
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
4439
|
+
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4393
4440
|
],
|
|
4394
4441
|
"flags": {
|
|
4442
|
+
"project": {
|
|
4443
|
+
"char": "P",
|
|
4444
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4445
|
+
"name": "project",
|
|
4446
|
+
"hasDynamicHelp": false,
|
|
4447
|
+
"multiple": false,
|
|
4448
|
+
"type": "option"
|
|
4449
|
+
},
|
|
4395
4450
|
"json": {
|
|
4396
4451
|
"description": "Output as JSON for AI agents/scripts",
|
|
4397
4452
|
"name": "json",
|
|
@@ -4405,39 +4460,42 @@
|
|
|
4405
4460
|
"allowNo": false,
|
|
4406
4461
|
"type": "boolean"
|
|
4407
4462
|
},
|
|
4408
|
-
"
|
|
4409
|
-
"char": "
|
|
4410
|
-
"description": "
|
|
4411
|
-
"name": "
|
|
4463
|
+
"status": {
|
|
4464
|
+
"char": "s",
|
|
4465
|
+
"description": "Filter by status",
|
|
4466
|
+
"name": "status",
|
|
4412
4467
|
"hasDynamicHelp": false,
|
|
4413
4468
|
"multiple": false,
|
|
4469
|
+
"options": [
|
|
4470
|
+
"starting",
|
|
4471
|
+
"running",
|
|
4472
|
+
"completed",
|
|
4473
|
+
"failed",
|
|
4474
|
+
"stopped"
|
|
4475
|
+
],
|
|
4414
4476
|
"type": "option"
|
|
4415
4477
|
},
|
|
4416
|
-
"
|
|
4417
|
-
"char": "
|
|
4418
|
-
"description": "
|
|
4419
|
-
"name": "
|
|
4478
|
+
"agent": {
|
|
4479
|
+
"char": "a",
|
|
4480
|
+
"description": "Filter by agent name",
|
|
4481
|
+
"name": "agent",
|
|
4420
4482
|
"hasDynamicHelp": false,
|
|
4421
4483
|
"multiple": false,
|
|
4422
4484
|
"type": "option"
|
|
4423
4485
|
},
|
|
4424
|
-
"
|
|
4425
|
-
"char": "
|
|
4426
|
-
"description": "
|
|
4427
|
-
"name": "
|
|
4486
|
+
"limit": {
|
|
4487
|
+
"char": "l",
|
|
4488
|
+
"description": "Number of results",
|
|
4489
|
+
"name": "limit",
|
|
4490
|
+
"default": 20,
|
|
4428
4491
|
"hasDynamicHelp": false,
|
|
4429
4492
|
"multiple": false,
|
|
4430
|
-
"options": [
|
|
4431
|
-
"bug",
|
|
4432
|
-
"feature",
|
|
4433
|
-
"general"
|
|
4434
|
-
],
|
|
4435
4493
|
"type": "option"
|
|
4436
4494
|
}
|
|
4437
4495
|
},
|
|
4438
4496
|
"hasDynamicHelp": false,
|
|
4439
4497
|
"hiddenAliases": [],
|
|
4440
|
-
"id": "
|
|
4498
|
+
"id": "execution:list",
|
|
4441
4499
|
"pluginAlias": "@proletariat/cli",
|
|
4442
4500
|
"pluginName": "@proletariat/cli",
|
|
4443
4501
|
"pluginType": "core",
|
|
@@ -4446,25 +4504,35 @@
|
|
|
4446
4504
|
"relativePath": [
|
|
4447
4505
|
"dist",
|
|
4448
4506
|
"commands",
|
|
4449
|
-
"
|
|
4450
|
-
"
|
|
4507
|
+
"execution",
|
|
4508
|
+
"list.js"
|
|
4451
4509
|
]
|
|
4452
4510
|
},
|
|
4453
|
-
"
|
|
4511
|
+
"execution:logs": {
|
|
4454
4512
|
"aliases": [],
|
|
4455
4513
|
"args": {
|
|
4456
|
-
"
|
|
4457
|
-
"description": "
|
|
4458
|
-
"name": "
|
|
4459
|
-
"required":
|
|
4514
|
+
"id": {
|
|
4515
|
+
"description": "Execution ID - prompts if not provided",
|
|
4516
|
+
"name": "id",
|
|
4517
|
+
"required": false
|
|
4460
4518
|
}
|
|
4461
4519
|
},
|
|
4462
|
-
"description": "View
|
|
4520
|
+
"description": "View execution logs",
|
|
4463
4521
|
"examples": [
|
|
4464
|
-
"<%= config.bin %> <%= command.id %>
|
|
4465
|
-
"<%= config.bin %> <%= command.id %>
|
|
4522
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4523
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
4524
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
4525
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4466
4526
|
],
|
|
4467
4527
|
"flags": {
|
|
4528
|
+
"project": {
|
|
4529
|
+
"char": "P",
|
|
4530
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4531
|
+
"name": "project",
|
|
4532
|
+
"hasDynamicHelp": false,
|
|
4533
|
+
"multiple": false,
|
|
4534
|
+
"type": "option"
|
|
4535
|
+
},
|
|
4468
4536
|
"json": {
|
|
4469
4537
|
"description": "Output as JSON for AI agents/scripts",
|
|
4470
4538
|
"name": "json",
|
|
@@ -4477,36 +4545,55 @@
|
|
|
4477
4545
|
"name": "machine",
|
|
4478
4546
|
"allowNo": false,
|
|
4479
4547
|
"type": "boolean"
|
|
4480
|
-
}
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4548
|
+
},
|
|
4549
|
+
"follow": {
|
|
4550
|
+
"char": "f",
|
|
4551
|
+
"description": "Stream logs in real-time",
|
|
4552
|
+
"name": "follow",
|
|
4553
|
+
"allowNo": false,
|
|
4554
|
+
"type": "boolean"
|
|
4555
|
+
},
|
|
4556
|
+
"tail": {
|
|
4557
|
+
"char": "n",
|
|
4558
|
+
"description": "Show last n lines",
|
|
4559
|
+
"name": "tail",
|
|
4560
|
+
"hasDynamicHelp": false,
|
|
4561
|
+
"multiple": false,
|
|
4562
|
+
"type": "option"
|
|
4563
|
+
}
|
|
4564
|
+
},
|
|
4565
|
+
"hasDynamicHelp": false,
|
|
4566
|
+
"hiddenAliases": [],
|
|
4567
|
+
"id": "execution:logs",
|
|
4568
|
+
"pluginAlias": "@proletariat/cli",
|
|
4569
|
+
"pluginName": "@proletariat/cli",
|
|
4570
|
+
"pluginType": "core",
|
|
4571
|
+
"strict": true,
|
|
4572
|
+
"isESM": true,
|
|
4491
4573
|
"relativePath": [
|
|
4492
4574
|
"dist",
|
|
4493
4575
|
"commands",
|
|
4494
|
-
"
|
|
4495
|
-
"
|
|
4576
|
+
"execution",
|
|
4577
|
+
"logs.js"
|
|
4496
4578
|
]
|
|
4497
4579
|
},
|
|
4498
|
-
"execution:
|
|
4580
|
+
"execution:stop": {
|
|
4499
4581
|
"aliases": [],
|
|
4500
|
-
"args": {
|
|
4501
|
-
|
|
4582
|
+
"args": {
|
|
4583
|
+
"id": {
|
|
4584
|
+
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
4585
|
+
"name": "id",
|
|
4586
|
+
"required": false
|
|
4587
|
+
}
|
|
4588
|
+
},
|
|
4589
|
+
"description": "Stop running execution(s)",
|
|
4502
4590
|
"examples": [
|
|
4503
|
-
"<%= config.bin %>
|
|
4504
|
-
"<%= config.bin %>
|
|
4505
|
-
"<%= config.bin %>
|
|
4506
|
-
"<%= config.bin %>
|
|
4507
|
-
"<%= config.bin %>
|
|
4508
|
-
"<%= config.bin %>
|
|
4509
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
4591
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4592
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
4593
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
4594
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
4595
|
+
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4596
|
+
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4510
4597
|
],
|
|
4511
4598
|
"flags": {
|
|
4512
4599
|
"project": {
|
|
@@ -4530,24 +4617,23 @@
|
|
|
4530
4617
|
"allowNo": false,
|
|
4531
4618
|
"type": "boolean"
|
|
4532
4619
|
},
|
|
4533
|
-
"
|
|
4534
|
-
"char": "
|
|
4535
|
-
"description": "
|
|
4536
|
-
"name": "
|
|
4537
|
-
"
|
|
4538
|
-
"
|
|
4539
|
-
"type": "option"
|
|
4620
|
+
"force": {
|
|
4621
|
+
"char": "f",
|
|
4622
|
+
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
4623
|
+
"name": "force",
|
|
4624
|
+
"allowNo": false,
|
|
4625
|
+
"type": "boolean"
|
|
4540
4626
|
},
|
|
4541
|
-
"
|
|
4542
|
-
"
|
|
4543
|
-
"
|
|
4544
|
-
"name": "list",
|
|
4627
|
+
"all": {
|
|
4628
|
+
"description": "Stop all running executions",
|
|
4629
|
+
"name": "all",
|
|
4545
4630
|
"allowNo": false,
|
|
4546
4631
|
"type": "boolean"
|
|
4547
4632
|
},
|
|
4548
|
-
"
|
|
4549
|
-
"
|
|
4550
|
-
"
|
|
4633
|
+
"agent": {
|
|
4634
|
+
"char": "a",
|
|
4635
|
+
"description": "Stop all executions for a specific agent",
|
|
4636
|
+
"name": "agent",
|
|
4551
4637
|
"hasDynamicHelp": false,
|
|
4552
4638
|
"multiple": false,
|
|
4553
4639
|
"type": "option"
|
|
@@ -4555,7 +4641,7 @@
|
|
|
4555
4641
|
},
|
|
4556
4642
|
"hasDynamicHelp": false,
|
|
4557
4643
|
"hiddenAliases": [],
|
|
4558
|
-
"id": "execution:
|
|
4644
|
+
"id": "execution:stop",
|
|
4559
4645
|
"pluginAlias": "@proletariat/cli",
|
|
4560
4646
|
"pluginName": "@proletariat/cli",
|
|
4561
4647
|
"pluginType": "core",
|
|
@@ -4565,18 +4651,22 @@
|
|
|
4565
4651
|
"dist",
|
|
4566
4652
|
"commands",
|
|
4567
4653
|
"execution",
|
|
4568
|
-
"
|
|
4654
|
+
"stop.js"
|
|
4569
4655
|
]
|
|
4570
4656
|
},
|
|
4571
|
-
"execution": {
|
|
4657
|
+
"execution:view": {
|
|
4572
4658
|
"aliases": [],
|
|
4573
|
-
"args": {
|
|
4574
|
-
|
|
4659
|
+
"args": {
|
|
4660
|
+
"id": {
|
|
4661
|
+
"description": "Execution ID - prompts if not provided",
|
|
4662
|
+
"name": "id",
|
|
4663
|
+
"required": false
|
|
4664
|
+
}
|
|
4665
|
+
},
|
|
4666
|
+
"description": "View details of a specific execution",
|
|
4575
4667
|
"examples": [
|
|
4576
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4577
|
-
"<%= config.bin %> <%= command.id %>
|
|
4578
|
-
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
4579
|
-
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
4668
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4669
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4580
4670
|
],
|
|
4581
4671
|
"flags": {
|
|
4582
4672
|
"project": {
|
|
@@ -4603,7 +4693,7 @@
|
|
|
4603
4693
|
},
|
|
4604
4694
|
"hasDynamicHelp": false,
|
|
4605
4695
|
"hiddenAliases": [],
|
|
4606
|
-
"id": "execution",
|
|
4696
|
+
"id": "execution:view",
|
|
4607
4697
|
"pluginAlias": "@proletariat/cli",
|
|
4608
4698
|
"pluginName": "@proletariat/cli",
|
|
4609
4699
|
"pluginType": "core",
|
|
@@ -4613,28 +4703,18 @@
|
|
|
4613
4703
|
"dist",
|
|
4614
4704
|
"commands",
|
|
4615
4705
|
"execution",
|
|
4616
|
-
"
|
|
4706
|
+
"view.js"
|
|
4617
4707
|
]
|
|
4618
4708
|
},
|
|
4619
|
-
"
|
|
4709
|
+
"feedback": {
|
|
4620
4710
|
"aliases": [],
|
|
4621
4711
|
"args": {},
|
|
4622
|
-
"description": "
|
|
4712
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
4623
4713
|
"examples": [
|
|
4624
4714
|
"<%= config.bin %> <%= command.id %>",
|
|
4625
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4626
|
-
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
4627
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4715
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
4628
4716
|
],
|
|
4629
4717
|
"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
|
-
},
|
|
4638
4718
|
"json": {
|
|
4639
4719
|
"description": "Output as JSON for AI agents/scripts",
|
|
4640
4720
|
"name": "json",
|
|
@@ -4648,79 +4728,47 @@
|
|
|
4648
4728
|
"allowNo": false,
|
|
4649
4729
|
"type": "boolean"
|
|
4650
4730
|
},
|
|
4651
|
-
"
|
|
4652
|
-
"char": "
|
|
4653
|
-
"description": "
|
|
4654
|
-
"name": "
|
|
4731
|
+
"action": {
|
|
4732
|
+
"char": "a",
|
|
4733
|
+
"description": "Action to perform (submit, list, view)",
|
|
4734
|
+
"name": "action",
|
|
4655
4735
|
"hasDynamicHelp": false,
|
|
4656
4736
|
"multiple": false,
|
|
4657
4737
|
"options": [
|
|
4658
|
-
"
|
|
4659
|
-
"
|
|
4660
|
-
"
|
|
4661
|
-
"failed",
|
|
4662
|
-
"stopped"
|
|
4738
|
+
"submit",
|
|
4739
|
+
"list",
|
|
4740
|
+
"view"
|
|
4663
4741
|
],
|
|
4664
4742
|
"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"
|
|
4682
4743
|
}
|
|
4683
4744
|
},
|
|
4684
4745
|
"hasDynamicHelp": false,
|
|
4685
4746
|
"hiddenAliases": [],
|
|
4686
|
-
"id": "
|
|
4747
|
+
"id": "feedback",
|
|
4687
4748
|
"pluginAlias": "@proletariat/cli",
|
|
4688
4749
|
"pluginName": "@proletariat/cli",
|
|
4689
4750
|
"pluginType": "core",
|
|
4690
4751
|
"strict": true,
|
|
4752
|
+
"enableJsonFlag": false,
|
|
4691
4753
|
"isESM": true,
|
|
4692
4754
|
"relativePath": [
|
|
4693
4755
|
"dist",
|
|
4694
4756
|
"commands",
|
|
4695
|
-
"
|
|
4696
|
-
"
|
|
4757
|
+
"feedback",
|
|
4758
|
+
"index.js"
|
|
4697
4759
|
]
|
|
4698
4760
|
},
|
|
4699
|
-
"
|
|
4761
|
+
"feedback:list": {
|
|
4700
4762
|
"aliases": [],
|
|
4701
|
-
"args": {
|
|
4702
|
-
|
|
4703
|
-
"description": "Execution ID - prompts if not provided",
|
|
4704
|
-
"name": "id",
|
|
4705
|
-
"required": false
|
|
4706
|
-
}
|
|
4707
|
-
},
|
|
4708
|
-
"description": "View execution logs",
|
|
4763
|
+
"args": {},
|
|
4764
|
+
"description": "List recent feedback issues from the repository",
|
|
4709
4765
|
"examples": [
|
|
4710
|
-
"<%= config.bin %> <%= command.id %>
|
|
4711
|
-
"<%= config.bin %> <%= command.id %>
|
|
4712
|
-
"<%= config.bin %> <%= command.id %>
|
|
4713
|
-
"<%= config.bin %> <%= command.id %>
|
|
4766
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4767
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
4768
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
4769
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4714
4770
|
],
|
|
4715
4771
|
"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
|
-
},
|
|
4724
4772
|
"json": {
|
|
4725
4773
|
"description": "Output as JSON for AI agents/scripts",
|
|
4726
4774
|
"name": "json",
|
|
@@ -4734,17 +4782,38 @@
|
|
|
4734
4782
|
"allowNo": false,
|
|
4735
4783
|
"type": "boolean"
|
|
4736
4784
|
},
|
|
4737
|
-
"
|
|
4738
|
-
"char": "
|
|
4739
|
-
"description": "
|
|
4740
|
-
"name": "
|
|
4741
|
-
"
|
|
4742
|
-
"
|
|
4785
|
+
"category": {
|
|
4786
|
+
"char": "c",
|
|
4787
|
+
"description": "Filter by category (bug, feature, general)",
|
|
4788
|
+
"name": "category",
|
|
4789
|
+
"hasDynamicHelp": false,
|
|
4790
|
+
"multiple": false,
|
|
4791
|
+
"options": [
|
|
4792
|
+
"bug",
|
|
4793
|
+
"feature",
|
|
4794
|
+
"general"
|
|
4795
|
+
],
|
|
4796
|
+
"type": "option"
|
|
4743
4797
|
},
|
|
4744
|
-
"
|
|
4745
|
-
"char": "
|
|
4746
|
-
"description": "
|
|
4747
|
-
"name": "
|
|
4798
|
+
"state": {
|
|
4799
|
+
"char": "s",
|
|
4800
|
+
"description": "Filter by state",
|
|
4801
|
+
"name": "state",
|
|
4802
|
+
"default": "open",
|
|
4803
|
+
"hasDynamicHelp": false,
|
|
4804
|
+
"multiple": false,
|
|
4805
|
+
"options": [
|
|
4806
|
+
"open",
|
|
4807
|
+
"closed",
|
|
4808
|
+
"all"
|
|
4809
|
+
],
|
|
4810
|
+
"type": "option"
|
|
4811
|
+
},
|
|
4812
|
+
"limit": {
|
|
4813
|
+
"char": "l",
|
|
4814
|
+
"description": "Maximum number of issues to show",
|
|
4815
|
+
"name": "limit",
|
|
4816
|
+
"default": 20,
|
|
4748
4817
|
"hasDynamicHelp": false,
|
|
4749
4818
|
"multiple": false,
|
|
4750
4819
|
"type": "option"
|
|
@@ -4752,46 +4821,30 @@
|
|
|
4752
4821
|
},
|
|
4753
4822
|
"hasDynamicHelp": false,
|
|
4754
4823
|
"hiddenAliases": [],
|
|
4755
|
-
"id": "
|
|
4824
|
+
"id": "feedback:list",
|
|
4756
4825
|
"pluginAlias": "@proletariat/cli",
|
|
4757
4826
|
"pluginName": "@proletariat/cli",
|
|
4758
4827
|
"pluginType": "core",
|
|
4759
4828
|
"strict": true,
|
|
4829
|
+
"enableJsonFlag": false,
|
|
4760
4830
|
"isESM": true,
|
|
4761
4831
|
"relativePath": [
|
|
4762
4832
|
"dist",
|
|
4763
4833
|
"commands",
|
|
4764
|
-
"
|
|
4765
|
-
"
|
|
4834
|
+
"feedback",
|
|
4835
|
+
"list.js"
|
|
4766
4836
|
]
|
|
4767
4837
|
},
|
|
4768
|
-
"
|
|
4838
|
+
"feedback:submit": {
|
|
4769
4839
|
"aliases": [],
|
|
4770
|
-
"args": {
|
|
4771
|
-
|
|
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)",
|
|
4840
|
+
"args": {},
|
|
4841
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
4778
4842
|
"examples": [
|
|
4779
|
-
"<%= config.bin %> <%= command.id %>
|
|
4780
|
-
"<%= config.bin %> <%= command.id %>
|
|
4781
|
-
"<%= config.bin %> <%= command.id %>
|
|
4782
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
4783
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4784
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4843
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4844
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
4845
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4785
4846
|
],
|
|
4786
4847
|
"flags": {
|
|
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
4848
|
"json": {
|
|
4796
4849
|
"description": "Output as JSON for AI agents/scripts",
|
|
4797
4850
|
"name": "json",
|
|
@@ -4805,31 +4858,39 @@
|
|
|
4805
4858
|
"allowNo": false,
|
|
4806
4859
|
"type": "boolean"
|
|
4807
4860
|
},
|
|
4808
|
-
"
|
|
4809
|
-
"char": "
|
|
4810
|
-
"description": "
|
|
4811
|
-
"name": "
|
|
4812
|
-
"
|
|
4813
|
-
"
|
|
4861
|
+
"title": {
|
|
4862
|
+
"char": "t",
|
|
4863
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
4864
|
+
"name": "title",
|
|
4865
|
+
"hasDynamicHelp": false,
|
|
4866
|
+
"multiple": false,
|
|
4867
|
+
"type": "option"
|
|
4814
4868
|
},
|
|
4815
|
-
"
|
|
4816
|
-
"
|
|
4817
|
-
"
|
|
4818
|
-
"
|
|
4819
|
-
"
|
|
4869
|
+
"body": {
|
|
4870
|
+
"char": "b",
|
|
4871
|
+
"description": "Issue description [required for non-interactive]",
|
|
4872
|
+
"name": "body",
|
|
4873
|
+
"hasDynamicHelp": false,
|
|
4874
|
+
"multiple": false,
|
|
4875
|
+
"type": "option"
|
|
4820
4876
|
},
|
|
4821
|
-
"
|
|
4822
|
-
"char": "
|
|
4823
|
-
"description": "
|
|
4824
|
-
"name": "
|
|
4877
|
+
"category": {
|
|
4878
|
+
"char": "c",
|
|
4879
|
+
"description": "Feedback category",
|
|
4880
|
+
"name": "category",
|
|
4825
4881
|
"hasDynamicHelp": false,
|
|
4826
4882
|
"multiple": false,
|
|
4883
|
+
"options": [
|
|
4884
|
+
"bug",
|
|
4885
|
+
"feature",
|
|
4886
|
+
"general"
|
|
4887
|
+
],
|
|
4827
4888
|
"type": "option"
|
|
4828
4889
|
}
|
|
4829
4890
|
},
|
|
4830
4891
|
"hasDynamicHelp": false,
|
|
4831
4892
|
"hiddenAliases": [],
|
|
4832
|
-
"id": "
|
|
4893
|
+
"id": "feedback:submit",
|
|
4833
4894
|
"pluginAlias": "@proletariat/cli",
|
|
4834
4895
|
"pluginName": "@proletariat/cli",
|
|
4835
4896
|
"pluginType": "core",
|
|
@@ -4838,33 +4899,25 @@
|
|
|
4838
4899
|
"relativePath": [
|
|
4839
4900
|
"dist",
|
|
4840
4901
|
"commands",
|
|
4841
|
-
"
|
|
4842
|
-
"
|
|
4902
|
+
"feedback",
|
|
4903
|
+
"submit.js"
|
|
4843
4904
|
]
|
|
4844
4905
|
},
|
|
4845
|
-
"
|
|
4906
|
+
"feedback:view": {
|
|
4846
4907
|
"aliases": [],
|
|
4847
4908
|
"args": {
|
|
4848
|
-
"
|
|
4849
|
-
"description": "
|
|
4850
|
-
"name": "
|
|
4851
|
-
"required":
|
|
4909
|
+
"number": {
|
|
4910
|
+
"description": "Issue number to view",
|
|
4911
|
+
"name": "number",
|
|
4912
|
+
"required": true
|
|
4852
4913
|
}
|
|
4853
4914
|
},
|
|
4854
|
-
"description": "View details of a specific
|
|
4915
|
+
"description": "View details of a specific feedback issue",
|
|
4855
4916
|
"examples": [
|
|
4856
|
-
"<%= config.bin %> <%= command.id %>
|
|
4857
|
-
"<%= config.bin %> <%= command.id %>
|
|
4917
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
4918
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4858
4919
|
],
|
|
4859
4920
|
"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
|
-
},
|
|
4868
4921
|
"json": {
|
|
4869
4922
|
"description": "Output as JSON for AI agents/scripts",
|
|
4870
4923
|
"name": "json",
|
|
@@ -4881,16 +4934,17 @@
|
|
|
4881
4934
|
},
|
|
4882
4935
|
"hasDynamicHelp": false,
|
|
4883
4936
|
"hiddenAliases": [],
|
|
4884
|
-
"id": "
|
|
4937
|
+
"id": "feedback:view",
|
|
4885
4938
|
"pluginAlias": "@proletariat/cli",
|
|
4886
4939
|
"pluginName": "@proletariat/cli",
|
|
4887
4940
|
"pluginType": "core",
|
|
4888
4941
|
"strict": true,
|
|
4942
|
+
"enableJsonFlag": false,
|
|
4889
4943
|
"isESM": true,
|
|
4890
4944
|
"relativePath": [
|
|
4891
4945
|
"dist",
|
|
4892
4946
|
"commands",
|
|
4893
|
-
"
|
|
4947
|
+
"feedback",
|
|
4894
4948
|
"view.js"
|
|
4895
4949
|
]
|
|
4896
4950
|
},
|
|
@@ -7283,6 +7337,99 @@
|
|
|
7283
7337
|
"index.js"
|
|
7284
7338
|
]
|
|
7285
7339
|
},
|
|
7340
|
+
"run": {
|
|
7341
|
+
"aliases": [],
|
|
7342
|
+
"args": {
|
|
7343
|
+
"task": {
|
|
7344
|
+
"description": "Task description for the agent",
|
|
7345
|
+
"name": "task",
|
|
7346
|
+
"required": true
|
|
7347
|
+
}
|
|
7348
|
+
},
|
|
7349
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
7350
|
+
"examples": [
|
|
7351
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
7352
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
7353
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
7354
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
7355
|
+
],
|
|
7356
|
+
"flags": {
|
|
7357
|
+
"json": {
|
|
7358
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7359
|
+
"name": "json",
|
|
7360
|
+
"allowNo": false,
|
|
7361
|
+
"type": "boolean"
|
|
7362
|
+
},
|
|
7363
|
+
"machine": {
|
|
7364
|
+
"char": "m",
|
|
7365
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7366
|
+
"name": "machine",
|
|
7367
|
+
"allowNo": false,
|
|
7368
|
+
"type": "boolean"
|
|
7369
|
+
},
|
|
7370
|
+
"runner": {
|
|
7371
|
+
"char": "r",
|
|
7372
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
7373
|
+
"name": "runner",
|
|
7374
|
+
"hasDynamicHelp": false,
|
|
7375
|
+
"multiple": false,
|
|
7376
|
+
"type": "option"
|
|
7377
|
+
},
|
|
7378
|
+
"detached": {
|
|
7379
|
+
"char": "d",
|
|
7380
|
+
"description": "Run in background (detached)",
|
|
7381
|
+
"name": "detached",
|
|
7382
|
+
"allowNo": false,
|
|
7383
|
+
"type": "boolean"
|
|
7384
|
+
},
|
|
7385
|
+
"directory": {
|
|
7386
|
+
"description": "Working directory (default: cwd)",
|
|
7387
|
+
"name": "directory",
|
|
7388
|
+
"hasDynamicHelp": false,
|
|
7389
|
+
"multiple": false,
|
|
7390
|
+
"type": "option"
|
|
7391
|
+
},
|
|
7392
|
+
"permission-mode": {
|
|
7393
|
+
"char": "p",
|
|
7394
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
7395
|
+
"name": "permission-mode",
|
|
7396
|
+
"hasDynamicHelp": false,
|
|
7397
|
+
"multiple": false,
|
|
7398
|
+
"options": [
|
|
7399
|
+
"danger",
|
|
7400
|
+
"safe"
|
|
7401
|
+
],
|
|
7402
|
+
"type": "option"
|
|
7403
|
+
},
|
|
7404
|
+
"environment": {
|
|
7405
|
+
"char": "e",
|
|
7406
|
+
"description": "Environment to run in",
|
|
7407
|
+
"name": "environment",
|
|
7408
|
+
"hasDynamicHelp": false,
|
|
7409
|
+
"multiple": false,
|
|
7410
|
+
"options": [
|
|
7411
|
+
"host",
|
|
7412
|
+
"docker",
|
|
7413
|
+
"podman"
|
|
7414
|
+
],
|
|
7415
|
+
"type": "option"
|
|
7416
|
+
}
|
|
7417
|
+
},
|
|
7418
|
+
"hasDynamicHelp": false,
|
|
7419
|
+
"hiddenAliases": [],
|
|
7420
|
+
"id": "run",
|
|
7421
|
+
"pluginAlias": "@proletariat/cli",
|
|
7422
|
+
"pluginName": "@proletariat/cli",
|
|
7423
|
+
"pluginType": "core",
|
|
7424
|
+
"strict": true,
|
|
7425
|
+
"isESM": true,
|
|
7426
|
+
"relativePath": [
|
|
7427
|
+
"dist",
|
|
7428
|
+
"commands",
|
|
7429
|
+
"run",
|
|
7430
|
+
"index.js"
|
|
7431
|
+
]
|
|
7432
|
+
},
|
|
7286
7433
|
"repo:add": {
|
|
7287
7434
|
"aliases": [],
|
|
7288
7435
|
"args": {
|
|
@@ -7694,121 +7841,28 @@
|
|
|
7694
7841
|
"project": {
|
|
7695
7842
|
"char": "P",
|
|
7696
7843
|
"description": "Project ID (uses first project if only one exists)",
|
|
7697
|
-
"name": "project",
|
|
7698
|
-
"hasDynamicHelp": false,
|
|
7699
|
-
"multiple": false,
|
|
7700
|
-
"type": "option"
|
|
7701
|
-
},
|
|
7702
|
-
"json": {
|
|
7703
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7704
|
-
"name": "json",
|
|
7705
|
-
"allowNo": false,
|
|
7706
|
-
"type": "boolean"
|
|
7707
|
-
},
|
|
7708
|
-
"machine": {
|
|
7709
|
-
"char": "m",
|
|
7710
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7711
|
-
"name": "machine",
|
|
7712
|
-
"allowNo": false,
|
|
7713
|
-
"type": "boolean"
|
|
7714
|
-
}
|
|
7715
|
-
},
|
|
7716
|
-
"hasDynamicHelp": false,
|
|
7717
|
-
"hiddenAliases": [],
|
|
7718
|
-
"id": "repo:view",
|
|
7719
|
-
"pluginAlias": "@proletariat/cli",
|
|
7720
|
-
"pluginName": "@proletariat/cli",
|
|
7721
|
-
"pluginType": "core",
|
|
7722
|
-
"strict": true,
|
|
7723
|
-
"isESM": true,
|
|
7724
|
-
"relativePath": [
|
|
7725
|
-
"dist",
|
|
7726
|
-
"commands",
|
|
7727
|
-
"repo",
|
|
7728
|
-
"view.js"
|
|
7729
|
-
]
|
|
7730
|
-
},
|
|
7731
|
-
"run": {
|
|
7732
|
-
"aliases": [],
|
|
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)",
|
|
7741
|
-
"examples": [
|
|
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\""
|
|
7746
|
-
],
|
|
7747
|
-
"flags": {
|
|
7748
|
-
"json": {
|
|
7749
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7750
|
-
"name": "json",
|
|
7751
|
-
"allowNo": false,
|
|
7752
|
-
"type": "boolean"
|
|
7753
|
-
},
|
|
7754
|
-
"machine": {
|
|
7755
|
-
"char": "m",
|
|
7756
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7757
|
-
"name": "machine",
|
|
7758
|
-
"allowNo": false,
|
|
7759
|
-
"type": "boolean"
|
|
7760
|
-
},
|
|
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"
|
|
7768
|
-
},
|
|
7769
|
-
"detached": {
|
|
7770
|
-
"char": "d",
|
|
7771
|
-
"description": "Run in background (detached)",
|
|
7772
|
-
"name": "detached",
|
|
7773
|
-
"allowNo": false,
|
|
7774
|
-
"type": "boolean"
|
|
7775
|
-
},
|
|
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
|
-
],
|
|
7844
|
+
"name": "project",
|
|
7845
|
+
"hasDynamicHelp": false,
|
|
7846
|
+
"multiple": false,
|
|
7806
7847
|
"type": "option"
|
|
7848
|
+
},
|
|
7849
|
+
"json": {
|
|
7850
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7851
|
+
"name": "json",
|
|
7852
|
+
"allowNo": false,
|
|
7853
|
+
"type": "boolean"
|
|
7854
|
+
},
|
|
7855
|
+
"machine": {
|
|
7856
|
+
"char": "m",
|
|
7857
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
7858
|
+
"name": "machine",
|
|
7859
|
+
"allowNo": false,
|
|
7860
|
+
"type": "boolean"
|
|
7807
7861
|
}
|
|
7808
7862
|
},
|
|
7809
7863
|
"hasDynamicHelp": false,
|
|
7810
7864
|
"hiddenAliases": [],
|
|
7811
|
-
"id": "
|
|
7865
|
+
"id": "repo:view",
|
|
7812
7866
|
"pluginAlias": "@proletariat/cli",
|
|
7813
7867
|
"pluginName": "@proletariat/cli",
|
|
7814
7868
|
"pluginType": "core",
|
|
@@ -7817,8 +7871,8 @@
|
|
|
7817
7871
|
"relativePath": [
|
|
7818
7872
|
"dist",
|
|
7819
7873
|
"commands",
|
|
7820
|
-
"
|
|
7821
|
-
"
|
|
7874
|
+
"repo",
|
|
7875
|
+
"view.js"
|
|
7822
7876
|
]
|
|
7823
7877
|
},
|
|
7824
7878
|
"shortcut:connect": {
|
|
@@ -9510,30 +9564,27 @@
|
|
|
9510
9564
|
"set.js"
|
|
9511
9565
|
]
|
|
9512
9566
|
},
|
|
9513
|
-
"
|
|
9567
|
+
"trello:configure": {
|
|
9514
9568
|
"aliases": [],
|
|
9515
|
-
"args": {
|
|
9516
|
-
|
|
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",
|
|
9569
|
+
"args": {},
|
|
9570
|
+
"description": "Connect to Trello and configure authentication",
|
|
9532
9571
|
"examples": [
|
|
9533
|
-
"<%= config.bin %>
|
|
9534
|
-
"<%= config.bin %>
|
|
9572
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9573
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
9574
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
9575
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
9576
|
+
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
9577
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9535
9578
|
],
|
|
9536
9579
|
"flags": {
|
|
9580
|
+
"project": {
|
|
9581
|
+
"char": "P",
|
|
9582
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9583
|
+
"name": "project",
|
|
9584
|
+
"hasDynamicHelp": false,
|
|
9585
|
+
"multiple": false,
|
|
9586
|
+
"type": "option"
|
|
9587
|
+
},
|
|
9537
9588
|
"json": {
|
|
9538
9589
|
"description": "Output as JSON for AI agents/scripts",
|
|
9539
9590
|
"name": "json",
|
|
@@ -9547,46 +9598,27 @@
|
|
|
9547
9598
|
"allowNo": false,
|
|
9548
9599
|
"type": "boolean"
|
|
9549
9600
|
},
|
|
9550
|
-
"
|
|
9551
|
-
"description": "
|
|
9552
|
-
"name": "
|
|
9553
|
-
"
|
|
9554
|
-
"
|
|
9555
|
-
"type": "option"
|
|
9556
|
-
},
|
|
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"
|
|
9563
|
-
},
|
|
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"
|
|
9601
|
+
"check": {
|
|
9602
|
+
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
9603
|
+
"name": "check",
|
|
9604
|
+
"allowNo": false,
|
|
9605
|
+
"type": "boolean"
|
|
9570
9606
|
},
|
|
9571
|
-
"
|
|
9572
|
-
"description": "
|
|
9573
|
-
"name": "
|
|
9574
|
-
"
|
|
9575
|
-
"
|
|
9576
|
-
"type": "option"
|
|
9607
|
+
"force": {
|
|
9608
|
+
"description": "Force re-authentication even if credentials exist",
|
|
9609
|
+
"name": "force",
|
|
9610
|
+
"allowNo": false,
|
|
9611
|
+
"type": "boolean"
|
|
9577
9612
|
},
|
|
9578
|
-
"
|
|
9579
|
-
"description": "
|
|
9580
|
-
"name": "
|
|
9581
|
-
"
|
|
9582
|
-
"
|
|
9583
|
-
"type": "option"
|
|
9613
|
+
"disconnect": {
|
|
9614
|
+
"description": "Remove stored Trello credentials and configuration",
|
|
9615
|
+
"name": "disconnect",
|
|
9616
|
+
"allowNo": false,
|
|
9617
|
+
"type": "boolean"
|
|
9584
9618
|
},
|
|
9585
|
-
"
|
|
9586
|
-
"
|
|
9587
|
-
"
|
|
9588
|
-
"name": "description",
|
|
9589
|
-
"required": true,
|
|
9619
|
+
"board": {
|
|
9620
|
+
"description": "Default board ID or name",
|
|
9621
|
+
"name": "board",
|
|
9590
9622
|
"hasDynamicHelp": false,
|
|
9591
9623
|
"multiple": false,
|
|
9592
9624
|
"type": "option"
|
|
@@ -9594,7 +9626,7 @@
|
|
|
9594
9626
|
},
|
|
9595
9627
|
"hasDynamicHelp": false,
|
|
9596
9628
|
"hiddenAliases": [],
|
|
9597
|
-
"id": "
|
|
9629
|
+
"id": "trello:configure",
|
|
9598
9630
|
"pluginAlias": "@proletariat/cli",
|
|
9599
9631
|
"pluginName": "@proletariat/cli",
|
|
9600
9632
|
"pluginType": "core",
|
|
@@ -9603,59 +9635,30 @@
|
|
|
9603
9635
|
"relativePath": [
|
|
9604
9636
|
"dist",
|
|
9605
9637
|
"commands",
|
|
9606
|
-
"
|
|
9607
|
-
"
|
|
9638
|
+
"trello",
|
|
9639
|
+
"configure.js"
|
|
9608
9640
|
]
|
|
9609
9641
|
},
|
|
9610
|
-
"
|
|
9642
|
+
"trello:import": {
|
|
9611
9643
|
"aliases": [],
|
|
9612
9644
|
"args": {},
|
|
9613
|
-
"description": "
|
|
9645
|
+
"description": "Import Trello cards into PMO as tickets",
|
|
9614
9646
|
"examples": [
|
|
9615
|
-
"<%= config.bin %>
|
|
9616
|
-
"<%= config.bin %>
|
|
9647
|
+
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
9648
|
+
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
9649
|
+
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
9650
|
+
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
9651
|
+
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
9617
9652
|
],
|
|
9618
9653
|
"flags": {
|
|
9619
|
-
"
|
|
9620
|
-
"
|
|
9621
|
-
"
|
|
9622
|
-
"
|
|
9623
|
-
"
|
|
9654
|
+
"project": {
|
|
9655
|
+
"char": "P",
|
|
9656
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9657
|
+
"name": "project",
|
|
9658
|
+
"hasDynamicHelp": false,
|
|
9659
|
+
"multiple": false,
|
|
9660
|
+
"type": "option"
|
|
9624
9661
|
},
|
|
9625
|
-
"machine": {
|
|
9626
|
-
"char": "m",
|
|
9627
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9628
|
-
"name": "machine",
|
|
9629
|
-
"allowNo": false,
|
|
9630
|
-
"type": "boolean"
|
|
9631
|
-
}
|
|
9632
|
-
},
|
|
9633
|
-
"hasDynamicHelp": false,
|
|
9634
|
-
"hiddenAliases": [],
|
|
9635
|
-
"id": "tools:check",
|
|
9636
|
-
"pluginAlias": "@proletariat/cli",
|
|
9637
|
-
"pluginName": "@proletariat/cli",
|
|
9638
|
-
"pluginType": "core",
|
|
9639
|
-
"strict": true,
|
|
9640
|
-
"enableJsonFlag": false,
|
|
9641
|
-
"isESM": true,
|
|
9642
|
-
"relativePath": [
|
|
9643
|
-
"dist",
|
|
9644
|
-
"commands",
|
|
9645
|
-
"tools",
|
|
9646
|
-
"check.js"
|
|
9647
|
-
]
|
|
9648
|
-
},
|
|
9649
|
-
"tools:detect": {
|
|
9650
|
-
"aliases": [],
|
|
9651
|
-
"args": {},
|
|
9652
|
-
"description": "Auto-detect common CLI tools on the system and register them",
|
|
9653
|
-
"examples": [
|
|
9654
|
-
"<%= config.bin %> tools detect",
|
|
9655
|
-
"<%= config.bin %> tools detect --auto",
|
|
9656
|
-
"<%= config.bin %> tools detect --json"
|
|
9657
|
-
],
|
|
9658
|
-
"flags": {
|
|
9659
9662
|
"json": {
|
|
9660
9663
|
"description": "Output as JSON for AI agents/scripts",
|
|
9661
9664
|
"name": "json",
|
|
@@ -9669,85 +9672,62 @@
|
|
|
9669
9672
|
"allowNo": false,
|
|
9670
9673
|
"type": "boolean"
|
|
9671
9674
|
},
|
|
9672
|
-
"
|
|
9673
|
-
"
|
|
9674
|
-
"
|
|
9675
|
-
"
|
|
9676
|
-
"
|
|
9677
|
-
|
|
9678
|
-
|
|
9679
|
-
|
|
9680
|
-
|
|
9681
|
-
|
|
9682
|
-
|
|
9683
|
-
|
|
9684
|
-
|
|
9685
|
-
"strict": true,
|
|
9686
|
-
"enableJsonFlag": false,
|
|
9687
|
-
"isESM": true,
|
|
9688
|
-
"relativePath": [
|
|
9689
|
-
"dist",
|
|
9690
|
-
"commands",
|
|
9691
|
-
"tools",
|
|
9692
|
-
"detect.js"
|
|
9693
|
-
]
|
|
9694
|
-
},
|
|
9695
|
-
"tools": {
|
|
9696
|
-
"aliases": [
|
|
9697
|
-
"tools:list"
|
|
9698
|
-
],
|
|
9699
|
-
"args": {},
|
|
9700
|
-
"description": "Show all registered MCP servers and CLI tools",
|
|
9701
|
-
"examples": [
|
|
9702
|
-
"<%= config.bin %> tools",
|
|
9703
|
-
"<%= config.bin %> tools --json"
|
|
9704
|
-
],
|
|
9705
|
-
"flags": {
|
|
9706
|
-
"json": {
|
|
9707
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9708
|
-
"name": "json",
|
|
9675
|
+
"limit": {
|
|
9676
|
+
"char": "n",
|
|
9677
|
+
"description": "Maximum number of cards to import",
|
|
9678
|
+
"name": "limit",
|
|
9679
|
+
"default": 50,
|
|
9680
|
+
"hasDynamicHelp": false,
|
|
9681
|
+
"multiple": false,
|
|
9682
|
+
"type": "option"
|
|
9683
|
+
},
|
|
9684
|
+
"all": {
|
|
9685
|
+
"char": "a",
|
|
9686
|
+
"description": "Import all matching cards without interactive selection",
|
|
9687
|
+
"name": "all",
|
|
9709
9688
|
"allowNo": false,
|
|
9710
9689
|
"type": "boolean"
|
|
9711
9690
|
},
|
|
9712
|
-
"
|
|
9713
|
-
"
|
|
9714
|
-
"
|
|
9715
|
-
"name": "machine",
|
|
9691
|
+
"dry-run": {
|
|
9692
|
+
"description": "Preview cards that would be imported without creating tickets",
|
|
9693
|
+
"name": "dry-run",
|
|
9716
9694
|
"allowNo": false,
|
|
9717
9695
|
"type": "boolean"
|
|
9718
9696
|
}
|
|
9719
9697
|
},
|
|
9720
9698
|
"hasDynamicHelp": false,
|
|
9721
9699
|
"hiddenAliases": [],
|
|
9722
|
-
"id": "
|
|
9700
|
+
"id": "trello:import",
|
|
9723
9701
|
"pluginAlias": "@proletariat/cli",
|
|
9724
9702
|
"pluginName": "@proletariat/cli",
|
|
9725
9703
|
"pluginType": "core",
|
|
9726
9704
|
"strict": true,
|
|
9727
|
-
"enableJsonFlag": false,
|
|
9728
9705
|
"isESM": true,
|
|
9729
9706
|
"relativePath": [
|
|
9730
9707
|
"dist",
|
|
9731
9708
|
"commands",
|
|
9732
|
-
"
|
|
9733
|
-
"
|
|
9709
|
+
"trello",
|
|
9710
|
+
"import.js"
|
|
9734
9711
|
]
|
|
9735
9712
|
},
|
|
9736
|
-
"
|
|
9713
|
+
"trello:sync": {
|
|
9737
9714
|
"aliases": [],
|
|
9738
|
-
"args": {
|
|
9739
|
-
|
|
9740
|
-
|
|
9741
|
-
|
|
9742
|
-
|
|
9743
|
-
|
|
9744
|
-
},
|
|
9745
|
-
"description": "Remove a tool from the registry",
|
|
9746
|
-
"examples": [
|
|
9747
|
-
"<%= config.bin %> tools remove arcade",
|
|
9748
|
-
"<%= config.bin %> tools remove ffmpeg"
|
|
9715
|
+
"args": {},
|
|
9716
|
+
"description": "Sync PMO tickets to Trello cards",
|
|
9717
|
+
"examples": [
|
|
9718
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
9719
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
9720
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
9749
9721
|
],
|
|
9750
9722
|
"flags": {
|
|
9723
|
+
"project": {
|
|
9724
|
+
"char": "P",
|
|
9725
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9726
|
+
"name": "project",
|
|
9727
|
+
"hasDynamicHelp": false,
|
|
9728
|
+
"multiple": false,
|
|
9729
|
+
"type": "option"
|
|
9730
|
+
},
|
|
9751
9731
|
"json": {
|
|
9752
9732
|
"description": "Output as JSON for AI agents/scripts",
|
|
9753
9733
|
"name": "json",
|
|
@@ -9760,22 +9740,54 @@
|
|
|
9760
9740
|
"name": "machine",
|
|
9761
9741
|
"allowNo": false,
|
|
9762
9742
|
"type": "boolean"
|
|
9743
|
+
},
|
|
9744
|
+
"ticket": {
|
|
9745
|
+
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
9746
|
+
"name": "ticket",
|
|
9747
|
+
"hasDynamicHelp": false,
|
|
9748
|
+
"multiple": false,
|
|
9749
|
+
"type": "option"
|
|
9750
|
+
},
|
|
9751
|
+
"card": {
|
|
9752
|
+
"description": "Trello card ID to map to --ticket",
|
|
9753
|
+
"name": "card",
|
|
9754
|
+
"hasDynamicHelp": false,
|
|
9755
|
+
"multiple": false,
|
|
9756
|
+
"type": "option"
|
|
9757
|
+
},
|
|
9758
|
+
"list": {
|
|
9759
|
+
"description": "Trello list ID used with --create-missing",
|
|
9760
|
+
"name": "list",
|
|
9761
|
+
"hasDynamicHelp": false,
|
|
9762
|
+
"multiple": false,
|
|
9763
|
+
"type": "option"
|
|
9764
|
+
},
|
|
9765
|
+
"create-missing": {
|
|
9766
|
+
"description": "Create Trello card when no mapping exists (requires list)",
|
|
9767
|
+
"name": "create-missing",
|
|
9768
|
+
"allowNo": false,
|
|
9769
|
+
"type": "boolean"
|
|
9770
|
+
},
|
|
9771
|
+
"dry-run": {
|
|
9772
|
+
"description": "Preview sync operations without making changes",
|
|
9773
|
+
"name": "dry-run",
|
|
9774
|
+
"allowNo": false,
|
|
9775
|
+
"type": "boolean"
|
|
9763
9776
|
}
|
|
9764
9777
|
},
|
|
9765
9778
|
"hasDynamicHelp": false,
|
|
9766
9779
|
"hiddenAliases": [],
|
|
9767
|
-
"id": "
|
|
9780
|
+
"id": "trello:sync",
|
|
9768
9781
|
"pluginAlias": "@proletariat/cli",
|
|
9769
9782
|
"pluginName": "@proletariat/cli",
|
|
9770
9783
|
"pluginType": "core",
|
|
9771
9784
|
"strict": true,
|
|
9772
|
-
"enableJsonFlag": false,
|
|
9773
9785
|
"isESM": true,
|
|
9774
9786
|
"relativePath": [
|
|
9775
9787
|
"dist",
|
|
9776
9788
|
"commands",
|
|
9777
|
-
"
|
|
9778
|
-
"
|
|
9789
|
+
"trello",
|
|
9790
|
+
"sync.js"
|
|
9779
9791
|
]
|
|
9780
9792
|
},
|
|
9781
9793
|
"ticket:bulk": {
|
|
@@ -11312,217 +11324,19 @@
|
|
|
11312
11324
|
"description": "Enable bulk mode to update multiple tickets",
|
|
11313
11325
|
"name": "bulk",
|
|
11314
11326
|
"allowNo": false,
|
|
11315
|
-
"type": "boolean"
|
|
11316
|
-
},
|
|
11317
|
-
"force": {
|
|
11318
|
-
"char": "f",
|
|
11319
|
-
"description": "Skip confirmation prompt",
|
|
11320
|
-
"name": "force",
|
|
11321
|
-
"allowNo": false,
|
|
11322
|
-
"type": "boolean"
|
|
11323
|
-
}
|
|
11324
|
-
},
|
|
11325
|
-
"hasDynamicHelp": false,
|
|
11326
|
-
"hiddenAliases": [],
|
|
11327
|
-
"id": "ticket:update",
|
|
11328
|
-
"pluginAlias": "@proletariat/cli",
|
|
11329
|
-
"pluginName": "@proletariat/cli",
|
|
11330
|
-
"pluginType": "core",
|
|
11331
|
-
"strict": true,
|
|
11332
|
-
"isESM": true,
|
|
11333
|
-
"relativePath": [
|
|
11334
|
-
"dist",
|
|
11335
|
-
"commands",
|
|
11336
|
-
"ticket",
|
|
11337
|
-
"update.js"
|
|
11338
|
-
]
|
|
11339
|
-
},
|
|
11340
|
-
"ticket:view": {
|
|
11341
|
-
"aliases": [],
|
|
11342
|
-
"args": {
|
|
11343
|
-
"ticketId": {
|
|
11344
|
-
"description": "Ticket ID to view - prompts with dropdown if not provided",
|
|
11345
|
-
"name": "ticketId",
|
|
11346
|
-
"required": false
|
|
11347
|
-
}
|
|
11348
|
-
},
|
|
11349
|
-
"description": "View detailed ticket information",
|
|
11350
|
-
"examples": [
|
|
11351
|
-
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
11352
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
11353
|
-
],
|
|
11354
|
-
"flags": {
|
|
11355
|
-
"project": {
|
|
11356
|
-
"char": "P",
|
|
11357
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11358
|
-
"name": "project",
|
|
11359
|
-
"hasDynamicHelp": false,
|
|
11360
|
-
"multiple": false,
|
|
11361
|
-
"type": "option"
|
|
11362
|
-
},
|
|
11363
|
-
"json": {
|
|
11364
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11365
|
-
"name": "json",
|
|
11366
|
-
"allowNo": false,
|
|
11367
|
-
"type": "boolean"
|
|
11368
|
-
},
|
|
11369
|
-
"machine": {
|
|
11370
|
-
"char": "m",
|
|
11371
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11372
|
-
"name": "machine",
|
|
11373
|
-
"allowNo": false,
|
|
11374
|
-
"type": "boolean"
|
|
11375
|
-
}
|
|
11376
|
-
},
|
|
11377
|
-
"hasDynamicHelp": false,
|
|
11378
|
-
"hiddenAliases": [],
|
|
11379
|
-
"id": "ticket:view",
|
|
11380
|
-
"pluginAlias": "@proletariat/cli",
|
|
11381
|
-
"pluginName": "@proletariat/cli",
|
|
11382
|
-
"pluginType": "core",
|
|
11383
|
-
"strict": true,
|
|
11384
|
-
"isESM": true,
|
|
11385
|
-
"relativePath": [
|
|
11386
|
-
"dist",
|
|
11387
|
-
"commands",
|
|
11388
|
-
"ticket",
|
|
11389
|
-
"view.js"
|
|
11390
|
-
]
|
|
11391
|
-
},
|
|
11392
|
-
"trello:configure": {
|
|
11393
|
-
"aliases": [],
|
|
11394
|
-
"args": {},
|
|
11395
|
-
"description": "Connect to Trello and configure authentication",
|
|
11396
|
-
"examples": [
|
|
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",
|
|
11327
|
+
"type": "boolean"
|
|
11328
|
+
},
|
|
11329
|
+
"force": {
|
|
11330
|
+
"char": "f",
|
|
11331
|
+
"description": "Skip confirmation prompt",
|
|
11332
|
+
"name": "force",
|
|
11519
11333
|
"allowNo": false,
|
|
11520
11334
|
"type": "boolean"
|
|
11521
11335
|
}
|
|
11522
11336
|
},
|
|
11523
11337
|
"hasDynamicHelp": false,
|
|
11524
11338
|
"hiddenAliases": [],
|
|
11525
|
-
"id": "
|
|
11339
|
+
"id": "ticket:update",
|
|
11526
11340
|
"pluginAlias": "@proletariat/cli",
|
|
11527
11341
|
"pluginName": "@proletariat/cli",
|
|
11528
11342
|
"pluginType": "core",
|
|
@@ -11531,18 +11345,23 @@
|
|
|
11531
11345
|
"relativePath": [
|
|
11532
11346
|
"dist",
|
|
11533
11347
|
"commands",
|
|
11534
|
-
"
|
|
11535
|
-
"
|
|
11348
|
+
"ticket",
|
|
11349
|
+
"update.js"
|
|
11536
11350
|
]
|
|
11537
11351
|
},
|
|
11538
|
-
"
|
|
11352
|
+
"ticket:view": {
|
|
11539
11353
|
"aliases": [],
|
|
11540
|
-
"args": {
|
|
11541
|
-
|
|
11354
|
+
"args": {
|
|
11355
|
+
"ticketId": {
|
|
11356
|
+
"description": "Ticket ID to view - prompts with dropdown if not provided",
|
|
11357
|
+
"name": "ticketId",
|
|
11358
|
+
"required": false
|
|
11359
|
+
}
|
|
11360
|
+
},
|
|
11361
|
+
"description": "View detailed ticket information",
|
|
11542
11362
|
"examples": [
|
|
11543
|
-
"<%= config.bin %> <%= command.id %>
|
|
11544
|
-
"<%= config.bin %> <%= command.id %>
|
|
11545
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
11363
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
11364
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
11546
11365
|
],
|
|
11547
11366
|
"flags": {
|
|
11548
11367
|
"project": {
|
|
@@ -11565,44 +11384,11 @@
|
|
|
11565
11384
|
"name": "machine",
|
|
11566
11385
|
"allowNo": false,
|
|
11567
11386
|
"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
11387
|
}
|
|
11602
11388
|
},
|
|
11603
11389
|
"hasDynamicHelp": false,
|
|
11604
11390
|
"hiddenAliases": [],
|
|
11605
|
-
"id": "
|
|
11391
|
+
"id": "ticket:view",
|
|
11606
11392
|
"pluginAlias": "@proletariat/cli",
|
|
11607
11393
|
"pluginName": "@proletariat/cli",
|
|
11608
11394
|
"pluginType": "core",
|
|
@@ -11611,30 +11397,32 @@
|
|
|
11611
11397
|
"relativePath": [
|
|
11612
11398
|
"dist",
|
|
11613
11399
|
"commands",
|
|
11614
|
-
"
|
|
11615
|
-
"
|
|
11400
|
+
"ticket",
|
|
11401
|
+
"view.js"
|
|
11616
11402
|
]
|
|
11617
11403
|
},
|
|
11618
|
-
"
|
|
11404
|
+
"tools:add": {
|
|
11619
11405
|
"aliases": [],
|
|
11620
11406
|
"args": {
|
|
11621
11407
|
"type": {
|
|
11622
|
-
"description": "
|
|
11408
|
+
"description": "Tool type (mcp or cli)",
|
|
11623
11409
|
"name": "type",
|
|
11624
11410
|
"options": [
|
|
11625
|
-
"
|
|
11626
|
-
"
|
|
11627
|
-
"patch"
|
|
11411
|
+
"mcp",
|
|
11412
|
+
"cli"
|
|
11628
11413
|
],
|
|
11629
11414
|
"required": true
|
|
11415
|
+
},
|
|
11416
|
+
"name": {
|
|
11417
|
+
"description": "Tool name (unique identifier)",
|
|
11418
|
+
"name": "name",
|
|
11419
|
+
"required": true
|
|
11630
11420
|
}
|
|
11631
11421
|
},
|
|
11632
|
-
"description": "
|
|
11422
|
+
"description": "Register an MCP server or CLI tool",
|
|
11633
11423
|
"examples": [
|
|
11634
|
-
"<%= config.bin %>
|
|
11635
|
-
"<%= config.bin %>
|
|
11636
|
-
"<%= config.bin %> version bump major",
|
|
11637
|
-
"<%= config.bin %> version bump patch --json"
|
|
11424
|
+
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
11425
|
+
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
11638
11426
|
],
|
|
11639
11427
|
"flags": {
|
|
11640
11428
|
"json": {
|
|
@@ -11649,38 +11437,74 @@
|
|
|
11649
11437
|
"name": "machine",
|
|
11650
11438
|
"allowNo": false,
|
|
11651
11439
|
"type": "boolean"
|
|
11440
|
+
},
|
|
11441
|
+
"url": {
|
|
11442
|
+
"description": "MCP server URL (for remote servers)",
|
|
11443
|
+
"name": "url",
|
|
11444
|
+
"hasDynamicHelp": false,
|
|
11445
|
+
"multiple": false,
|
|
11446
|
+
"type": "option"
|
|
11447
|
+
},
|
|
11448
|
+
"command": {
|
|
11449
|
+
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
11450
|
+
"name": "command",
|
|
11451
|
+
"hasDynamicHelp": false,
|
|
11452
|
+
"multiple": false,
|
|
11453
|
+
"type": "option"
|
|
11454
|
+
},
|
|
11455
|
+
"auth": {
|
|
11456
|
+
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
11457
|
+
"name": "auth",
|
|
11458
|
+
"hasDynamicHelp": false,
|
|
11459
|
+
"multiple": false,
|
|
11460
|
+
"type": "option"
|
|
11461
|
+
},
|
|
11462
|
+
"detect": {
|
|
11463
|
+
"description": "Shell command to detect if CLI tool is installed",
|
|
11464
|
+
"name": "detect",
|
|
11465
|
+
"hasDynamicHelp": false,
|
|
11466
|
+
"multiple": false,
|
|
11467
|
+
"type": "option"
|
|
11468
|
+
},
|
|
11469
|
+
"install": {
|
|
11470
|
+
"description": "Shell command to install the CLI tool",
|
|
11471
|
+
"name": "install",
|
|
11472
|
+
"hasDynamicHelp": false,
|
|
11473
|
+
"multiple": false,
|
|
11474
|
+
"type": "option"
|
|
11475
|
+
},
|
|
11476
|
+
"description": {
|
|
11477
|
+
"char": "d",
|
|
11478
|
+
"description": "Human-readable description",
|
|
11479
|
+
"name": "description",
|
|
11480
|
+
"required": true,
|
|
11481
|
+
"hasDynamicHelp": false,
|
|
11482
|
+
"multiple": false,
|
|
11483
|
+
"type": "option"
|
|
11652
11484
|
}
|
|
11653
11485
|
},
|
|
11654
11486
|
"hasDynamicHelp": false,
|
|
11655
11487
|
"hiddenAliases": [],
|
|
11656
|
-
"id": "
|
|
11488
|
+
"id": "tools:add",
|
|
11657
11489
|
"pluginAlias": "@proletariat/cli",
|
|
11658
11490
|
"pluginName": "@proletariat/cli",
|
|
11659
11491
|
"pluginType": "core",
|
|
11660
11492
|
"strict": true,
|
|
11661
|
-
"enableJsonFlag": false,
|
|
11662
11493
|
"isESM": true,
|
|
11663
11494
|
"relativePath": [
|
|
11664
11495
|
"dist",
|
|
11665
11496
|
"commands",
|
|
11666
|
-
"
|
|
11667
|
-
"
|
|
11497
|
+
"tools",
|
|
11498
|
+
"add.js"
|
|
11668
11499
|
]
|
|
11669
11500
|
},
|
|
11670
|
-
"
|
|
11501
|
+
"tools:check": {
|
|
11671
11502
|
"aliases": [],
|
|
11672
|
-
"args": {
|
|
11673
|
-
|
|
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",
|
|
11503
|
+
"args": {},
|
|
11504
|
+
"description": "Verify all registered tools are available and healthy",
|
|
11680
11505
|
"examples": [
|
|
11681
|
-
"<%= config.bin %>
|
|
11682
|
-
"<%= config.bin %>
|
|
11683
|
-
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
11506
|
+
"<%= config.bin %> tools check",
|
|
11507
|
+
"<%= config.bin %> tools check --json"
|
|
11684
11508
|
],
|
|
11685
11509
|
"flags": {
|
|
11686
11510
|
"json": {
|
|
@@ -11695,19 +11519,11 @@
|
|
|
11695
11519
|
"name": "machine",
|
|
11696
11520
|
"allowNo": false,
|
|
11697
11521
|
"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
11522
|
}
|
|
11707
11523
|
},
|
|
11708
11524
|
"hasDynamicHelp": false,
|
|
11709
11525
|
"hiddenAliases": [],
|
|
11710
|
-
"id": "
|
|
11526
|
+
"id": "tools:check",
|
|
11711
11527
|
"pluginAlias": "@proletariat/cli",
|
|
11712
11528
|
"pluginName": "@proletariat/cli",
|
|
11713
11529
|
"pluginType": "core",
|
|
@@ -11717,17 +11533,18 @@
|
|
|
11717
11533
|
"relativePath": [
|
|
11718
11534
|
"dist",
|
|
11719
11535
|
"commands",
|
|
11720
|
-
"
|
|
11721
|
-
"
|
|
11536
|
+
"tools",
|
|
11537
|
+
"check.js"
|
|
11722
11538
|
]
|
|
11723
11539
|
},
|
|
11724
|
-
"
|
|
11540
|
+
"tools:detect": {
|
|
11725
11541
|
"aliases": [],
|
|
11726
11542
|
"args": {},
|
|
11727
|
-
"description": "
|
|
11543
|
+
"description": "Auto-detect common CLI tools on the system and register them",
|
|
11728
11544
|
"examples": [
|
|
11729
|
-
"<%= config.bin %>
|
|
11730
|
-
"<%= config.bin %>
|
|
11545
|
+
"<%= config.bin %> tools detect",
|
|
11546
|
+
"<%= config.bin %> tools detect --auto",
|
|
11547
|
+
"<%= config.bin %> tools detect --json"
|
|
11731
11548
|
],
|
|
11732
11549
|
"flags": {
|
|
11733
11550
|
"json": {
|
|
@@ -11742,11 +11559,17 @@
|
|
|
11742
11559
|
"name": "machine",
|
|
11743
11560
|
"allowNo": false,
|
|
11744
11561
|
"type": "boolean"
|
|
11562
|
+
},
|
|
11563
|
+
"auto": {
|
|
11564
|
+
"description": "Automatically register all detected tools without prompting",
|
|
11565
|
+
"name": "auto",
|
|
11566
|
+
"allowNo": false,
|
|
11567
|
+
"type": "boolean"
|
|
11745
11568
|
}
|
|
11746
11569
|
},
|
|
11747
11570
|
"hasDynamicHelp": false,
|
|
11748
11571
|
"hiddenAliases": [],
|
|
11749
|
-
"id": "
|
|
11572
|
+
"id": "tools:detect",
|
|
11750
11573
|
"pluginAlias": "@proletariat/cli",
|
|
11751
11574
|
"pluginName": "@proletariat/cli",
|
|
11752
11575
|
"pluginType": "core",
|
|
@@ -11756,18 +11579,19 @@
|
|
|
11756
11579
|
"relativePath": [
|
|
11757
11580
|
"dist",
|
|
11758
11581
|
"commands",
|
|
11759
|
-
"
|
|
11760
|
-
"
|
|
11582
|
+
"tools",
|
|
11583
|
+
"detect.js"
|
|
11761
11584
|
]
|
|
11762
11585
|
},
|
|
11763
|
-
"
|
|
11764
|
-
"aliases": [
|
|
11586
|
+
"tools": {
|
|
11587
|
+
"aliases": [
|
|
11588
|
+
"tools:list"
|
|
11589
|
+
],
|
|
11765
11590
|
"args": {},
|
|
11766
|
-
"description": "
|
|
11591
|
+
"description": "Show all registered MCP servers and CLI tools",
|
|
11767
11592
|
"examples": [
|
|
11768
|
-
"<%= config.bin %>
|
|
11769
|
-
"<%= config.bin %>
|
|
11770
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
11593
|
+
"<%= config.bin %> tools",
|
|
11594
|
+
"<%= config.bin %> tools --json"
|
|
11771
11595
|
],
|
|
11772
11596
|
"flags": {
|
|
11773
11597
|
"json": {
|
|
@@ -11782,50 +11606,37 @@
|
|
|
11782
11606
|
"name": "machine",
|
|
11783
11607
|
"allowNo": false,
|
|
11784
11608
|
"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
11609
|
}
|
|
11800
11610
|
},
|
|
11801
11611
|
"hasDynamicHelp": false,
|
|
11802
11612
|
"hiddenAliases": [],
|
|
11803
|
-
"id": "
|
|
11613
|
+
"id": "tools",
|
|
11804
11614
|
"pluginAlias": "@proletariat/cli",
|
|
11805
11615
|
"pluginName": "@proletariat/cli",
|
|
11806
11616
|
"pluginType": "core",
|
|
11807
11617
|
"strict": true,
|
|
11618
|
+
"enableJsonFlag": false,
|
|
11808
11619
|
"isESM": true,
|
|
11809
11620
|
"relativePath": [
|
|
11810
11621
|
"dist",
|
|
11811
11622
|
"commands",
|
|
11812
|
-
"
|
|
11813
|
-
"
|
|
11623
|
+
"tools",
|
|
11624
|
+
"index.js"
|
|
11814
11625
|
]
|
|
11815
11626
|
},
|
|
11816
|
-
"
|
|
11627
|
+
"tools:remove": {
|
|
11817
11628
|
"aliases": [],
|
|
11818
11629
|
"args": {
|
|
11819
|
-
"
|
|
11820
|
-
"description": "
|
|
11821
|
-
"name": "
|
|
11630
|
+
"name": {
|
|
11631
|
+
"description": "Tool name to remove",
|
|
11632
|
+
"name": "name",
|
|
11822
11633
|
"required": true
|
|
11823
11634
|
}
|
|
11824
11635
|
},
|
|
11825
|
-
"description": "
|
|
11636
|
+
"description": "Remove a tool from the registry",
|
|
11826
11637
|
"examples": [
|
|
11827
|
-
"<%= config.bin %>
|
|
11828
|
-
"<%= config.bin %>
|
|
11638
|
+
"<%= config.bin %> tools remove arcade",
|
|
11639
|
+
"<%= config.bin %> tools remove ffmpeg"
|
|
11829
11640
|
],
|
|
11830
11641
|
"flags": {
|
|
11831
11642
|
"json": {
|
|
@@ -11844,32 +11655,40 @@
|
|
|
11844
11655
|
},
|
|
11845
11656
|
"hasDynamicHelp": false,
|
|
11846
11657
|
"hiddenAliases": [],
|
|
11847
|
-
"id": "
|
|
11658
|
+
"id": "tools:remove",
|
|
11848
11659
|
"pluginAlias": "@proletariat/cli",
|
|
11849
11660
|
"pluginName": "@proletariat/cli",
|
|
11850
11661
|
"pluginType": "core",
|
|
11851
11662
|
"strict": true,
|
|
11663
|
+
"enableJsonFlag": false,
|
|
11852
11664
|
"isESM": true,
|
|
11853
11665
|
"relativePath": [
|
|
11854
11666
|
"dist",
|
|
11855
11667
|
"commands",
|
|
11856
|
-
"
|
|
11668
|
+
"tools",
|
|
11857
11669
|
"remove.js"
|
|
11858
11670
|
]
|
|
11859
11671
|
},
|
|
11860
|
-
"
|
|
11672
|
+
"version:bump": {
|
|
11861
11673
|
"aliases": [],
|
|
11862
11674
|
"args": {
|
|
11863
|
-
"
|
|
11864
|
-
"description": "
|
|
11865
|
-
"name": "
|
|
11675
|
+
"type": {
|
|
11676
|
+
"description": "Version bump type",
|
|
11677
|
+
"name": "type",
|
|
11678
|
+
"options": [
|
|
11679
|
+
"major",
|
|
11680
|
+
"minor",
|
|
11681
|
+
"patch"
|
|
11682
|
+
],
|
|
11866
11683
|
"required": true
|
|
11867
11684
|
}
|
|
11868
11685
|
},
|
|
11869
|
-
"description": "
|
|
11686
|
+
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
11870
11687
|
"examples": [
|
|
11871
|
-
"<%= config.bin %>
|
|
11872
|
-
"<%= config.bin %>
|
|
11688
|
+
"<%= config.bin %> version bump patch",
|
|
11689
|
+
"<%= config.bin %> version bump minor",
|
|
11690
|
+
"<%= config.bin %> version bump major",
|
|
11691
|
+
"<%= config.bin %> version bump patch --json"
|
|
11873
11692
|
],
|
|
11874
11693
|
"flags": {
|
|
11875
11694
|
"json": {
|
|
@@ -11888,17 +11707,18 @@
|
|
|
11888
11707
|
},
|
|
11889
11708
|
"hasDynamicHelp": false,
|
|
11890
11709
|
"hiddenAliases": [],
|
|
11891
|
-
"id": "
|
|
11710
|
+
"id": "version:bump",
|
|
11892
11711
|
"pluginAlias": "@proletariat/cli",
|
|
11893
11712
|
"pluginName": "@proletariat/cli",
|
|
11894
11713
|
"pluginType": "core",
|
|
11895
11714
|
"strict": true,
|
|
11715
|
+
"enableJsonFlag": false,
|
|
11896
11716
|
"isESM": true,
|
|
11897
11717
|
"relativePath": [
|
|
11898
11718
|
"dist",
|
|
11899
11719
|
"commands",
|
|
11900
|
-
"
|
|
11901
|
-
"
|
|
11720
|
+
"version",
|
|
11721
|
+
"bump.js"
|
|
11902
11722
|
]
|
|
11903
11723
|
},
|
|
11904
11724
|
"work:asana": {
|
|
@@ -13760,6 +13580,13 @@
|
|
|
13760
13580
|
"on-error-keep"
|
|
13761
13581
|
],
|
|
13762
13582
|
"type": "option"
|
|
13583
|
+
},
|
|
13584
|
+
"allow-network": {
|
|
13585
|
+
"description": "Extra domains to allow in container firewall (comma-separated, e.g., api.linear.app,api.slack.com)",
|
|
13586
|
+
"name": "allow-network",
|
|
13587
|
+
"hasDynamicHelp": false,
|
|
13588
|
+
"multiple": false,
|
|
13589
|
+
"type": "option"
|
|
13763
13590
|
}
|
|
13764
13591
|
},
|
|
13765
13592
|
"hasDynamicHelp": false,
|
|
@@ -14005,6 +13832,240 @@
|
|
|
14005
13832
|
"watch.js"
|
|
14006
13833
|
]
|
|
14007
13834
|
},
|
|
13835
|
+
"workspace:add": {
|
|
13836
|
+
"aliases": [],
|
|
13837
|
+
"args": {
|
|
13838
|
+
"path": {
|
|
13839
|
+
"description": "Path to the workspace to register",
|
|
13840
|
+
"name": "path",
|
|
13841
|
+
"required": true
|
|
13842
|
+
}
|
|
13843
|
+
},
|
|
13844
|
+
"description": "Register an existing workspace in the machine config",
|
|
13845
|
+
"examples": [
|
|
13846
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
13847
|
+
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
13848
|
+
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
13849
|
+
],
|
|
13850
|
+
"flags": {
|
|
13851
|
+
"json": {
|
|
13852
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13853
|
+
"name": "json",
|
|
13854
|
+
"allowNo": false,
|
|
13855
|
+
"type": "boolean"
|
|
13856
|
+
},
|
|
13857
|
+
"machine": {
|
|
13858
|
+
"char": "m",
|
|
13859
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13860
|
+
"name": "machine",
|
|
13861
|
+
"allowNo": false,
|
|
13862
|
+
"type": "boolean"
|
|
13863
|
+
},
|
|
13864
|
+
"name": {
|
|
13865
|
+
"char": "n",
|
|
13866
|
+
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
13867
|
+
"name": "name",
|
|
13868
|
+
"hasDynamicHelp": false,
|
|
13869
|
+
"multiple": false,
|
|
13870
|
+
"type": "option"
|
|
13871
|
+
}
|
|
13872
|
+
},
|
|
13873
|
+
"hasDynamicHelp": false,
|
|
13874
|
+
"hiddenAliases": [],
|
|
13875
|
+
"id": "workspace:add",
|
|
13876
|
+
"pluginAlias": "@proletariat/cli",
|
|
13877
|
+
"pluginName": "@proletariat/cli",
|
|
13878
|
+
"pluginType": "core",
|
|
13879
|
+
"strict": true,
|
|
13880
|
+
"enableJsonFlag": false,
|
|
13881
|
+
"isESM": true,
|
|
13882
|
+
"relativePath": [
|
|
13883
|
+
"dist",
|
|
13884
|
+
"commands",
|
|
13885
|
+
"workspace",
|
|
13886
|
+
"add.js"
|
|
13887
|
+
]
|
|
13888
|
+
},
|
|
13889
|
+
"workspace:list": {
|
|
13890
|
+
"aliases": [],
|
|
13891
|
+
"args": {},
|
|
13892
|
+
"description": "List all registered and discovered HQ workspaces",
|
|
13893
|
+
"examples": [
|
|
13894
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13895
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
13896
|
+
],
|
|
13897
|
+
"flags": {
|
|
13898
|
+
"json": {
|
|
13899
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13900
|
+
"name": "json",
|
|
13901
|
+
"allowNo": false,
|
|
13902
|
+
"type": "boolean"
|
|
13903
|
+
},
|
|
13904
|
+
"machine": {
|
|
13905
|
+
"char": "m",
|
|
13906
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13907
|
+
"name": "machine",
|
|
13908
|
+
"allowNo": false,
|
|
13909
|
+
"type": "boolean"
|
|
13910
|
+
}
|
|
13911
|
+
},
|
|
13912
|
+
"hasDynamicHelp": false,
|
|
13913
|
+
"hiddenAliases": [],
|
|
13914
|
+
"id": "workspace:list",
|
|
13915
|
+
"pluginAlias": "@proletariat/cli",
|
|
13916
|
+
"pluginName": "@proletariat/cli",
|
|
13917
|
+
"pluginType": "core",
|
|
13918
|
+
"strict": true,
|
|
13919
|
+
"enableJsonFlag": false,
|
|
13920
|
+
"isESM": true,
|
|
13921
|
+
"relativePath": [
|
|
13922
|
+
"dist",
|
|
13923
|
+
"commands",
|
|
13924
|
+
"workspace",
|
|
13925
|
+
"list.js"
|
|
13926
|
+
]
|
|
13927
|
+
},
|
|
13928
|
+
"workspace:prune": {
|
|
13929
|
+
"aliases": [],
|
|
13930
|
+
"args": {},
|
|
13931
|
+
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
13932
|
+
"examples": [
|
|
13933
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
13934
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13935
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
13936
|
+
],
|
|
13937
|
+
"flags": {
|
|
13938
|
+
"json": {
|
|
13939
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13940
|
+
"name": "json",
|
|
13941
|
+
"allowNo": false,
|
|
13942
|
+
"type": "boolean"
|
|
13943
|
+
},
|
|
13944
|
+
"machine": {
|
|
13945
|
+
"char": "m",
|
|
13946
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13947
|
+
"name": "machine",
|
|
13948
|
+
"allowNo": false,
|
|
13949
|
+
"type": "boolean"
|
|
13950
|
+
},
|
|
13951
|
+
"dry-run": {
|
|
13952
|
+
"char": "d",
|
|
13953
|
+
"description": "Show what would be removed without removing",
|
|
13954
|
+
"name": "dry-run",
|
|
13955
|
+
"allowNo": false,
|
|
13956
|
+
"type": "boolean"
|
|
13957
|
+
},
|
|
13958
|
+
"force": {
|
|
13959
|
+
"char": "f",
|
|
13960
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
13961
|
+
"name": "force",
|
|
13962
|
+
"allowNo": false,
|
|
13963
|
+
"type": "boolean"
|
|
13964
|
+
}
|
|
13965
|
+
},
|
|
13966
|
+
"hasDynamicHelp": false,
|
|
13967
|
+
"hiddenAliases": [],
|
|
13968
|
+
"id": "workspace:prune",
|
|
13969
|
+
"pluginAlias": "@proletariat/cli",
|
|
13970
|
+
"pluginName": "@proletariat/cli",
|
|
13971
|
+
"pluginType": "core",
|
|
13972
|
+
"strict": true,
|
|
13973
|
+
"isESM": true,
|
|
13974
|
+
"relativePath": [
|
|
13975
|
+
"dist",
|
|
13976
|
+
"commands",
|
|
13977
|
+
"workspace",
|
|
13978
|
+
"prune.js"
|
|
13979
|
+
]
|
|
13980
|
+
},
|
|
13981
|
+
"workspace:remove": {
|
|
13982
|
+
"aliases": [],
|
|
13983
|
+
"args": {
|
|
13984
|
+
"nameOrPath": {
|
|
13985
|
+
"description": "Workspace name or path to unregister",
|
|
13986
|
+
"name": "nameOrPath",
|
|
13987
|
+
"required": true
|
|
13988
|
+
}
|
|
13989
|
+
},
|
|
13990
|
+
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
13991
|
+
"examples": [
|
|
13992
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13993
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13994
|
+
],
|
|
13995
|
+
"flags": {
|
|
13996
|
+
"json": {
|
|
13997
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13998
|
+
"name": "json",
|
|
13999
|
+
"allowNo": false,
|
|
14000
|
+
"type": "boolean"
|
|
14001
|
+
},
|
|
14002
|
+
"machine": {
|
|
14003
|
+
"char": "m",
|
|
14004
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14005
|
+
"name": "machine",
|
|
14006
|
+
"allowNo": false,
|
|
14007
|
+
"type": "boolean"
|
|
14008
|
+
}
|
|
14009
|
+
},
|
|
14010
|
+
"hasDynamicHelp": false,
|
|
14011
|
+
"hiddenAliases": [],
|
|
14012
|
+
"id": "workspace:remove",
|
|
14013
|
+
"pluginAlias": "@proletariat/cli",
|
|
14014
|
+
"pluginName": "@proletariat/cli",
|
|
14015
|
+
"pluginType": "core",
|
|
14016
|
+
"strict": true,
|
|
14017
|
+
"isESM": true,
|
|
14018
|
+
"relativePath": [
|
|
14019
|
+
"dist",
|
|
14020
|
+
"commands",
|
|
14021
|
+
"workspace",
|
|
14022
|
+
"remove.js"
|
|
14023
|
+
]
|
|
14024
|
+
},
|
|
14025
|
+
"workspace:use": {
|
|
14026
|
+
"aliases": [],
|
|
14027
|
+
"args": {
|
|
14028
|
+
"nameOrPath": {
|
|
14029
|
+
"description": "Workspace name or path",
|
|
14030
|
+
"name": "nameOrPath",
|
|
14031
|
+
"required": true
|
|
14032
|
+
}
|
|
14033
|
+
},
|
|
14034
|
+
"description": "Set the active workspace",
|
|
14035
|
+
"examples": [
|
|
14036
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
14037
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
14038
|
+
],
|
|
14039
|
+
"flags": {
|
|
14040
|
+
"json": {
|
|
14041
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14042
|
+
"name": "json",
|
|
14043
|
+
"allowNo": false,
|
|
14044
|
+
"type": "boolean"
|
|
14045
|
+
},
|
|
14046
|
+
"machine": {
|
|
14047
|
+
"char": "m",
|
|
14048
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14049
|
+
"name": "machine",
|
|
14050
|
+
"allowNo": false,
|
|
14051
|
+
"type": "boolean"
|
|
14052
|
+
}
|
|
14053
|
+
},
|
|
14054
|
+
"hasDynamicHelp": false,
|
|
14055
|
+
"hiddenAliases": [],
|
|
14056
|
+
"id": "workspace:use",
|
|
14057
|
+
"pluginAlias": "@proletariat/cli",
|
|
14058
|
+
"pluginName": "@proletariat/cli",
|
|
14059
|
+
"pluginType": "core",
|
|
14060
|
+
"strict": true,
|
|
14061
|
+
"isESM": true,
|
|
14062
|
+
"relativePath": [
|
|
14063
|
+
"dist",
|
|
14064
|
+
"commands",
|
|
14065
|
+
"workspace",
|
|
14066
|
+
"use.js"
|
|
14067
|
+
]
|
|
14068
|
+
},
|
|
14008
14069
|
"agent:staff:add": {
|
|
14009
14070
|
"aliases": [],
|
|
14010
14071
|
"args": {
|
|
@@ -15070,5 +15131,5 @@
|
|
|
15070
15131
|
]
|
|
15071
15132
|
}
|
|
15072
15133
|
},
|
|
15073
|
-
"version": "0.3.
|
|
15134
|
+
"version": "0.3.89"
|
|
15074
15135
|
}
|