@proletariat/cli 0.3.111 → 0.3.113

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.
Files changed (70) hide show
  1. package/dist/commands/gateway/connect.d.ts +33 -0
  2. package/dist/commands/gateway/connect.js +130 -0
  3. package/dist/commands/gateway/connect.js.map +1 -0
  4. package/dist/commands/gateway/disconnect.d.ts +21 -0
  5. package/dist/commands/gateway/disconnect.js +69 -0
  6. package/dist/commands/gateway/disconnect.js.map +1 -0
  7. package/dist/commands/gateway/start.d.ts +23 -0
  8. package/dist/commands/gateway/start.js +133 -0
  9. package/dist/commands/gateway/start.js.map +1 -0
  10. package/dist/commands/gateway/status.d.ts +16 -0
  11. package/dist/commands/gateway/status.js +76 -0
  12. package/dist/commands/gateway/status.js.map +1 -0
  13. package/dist/commands/gateway/test.d.ts +22 -0
  14. package/dist/commands/gateway/test.js +83 -0
  15. package/dist/commands/gateway/test.js.map +1 -0
  16. package/dist/commands/orchestrate/index.js +11 -2
  17. package/dist/commands/orchestrate/index.js.map +1 -1
  18. package/dist/commands/pr/merge.js +44 -80
  19. package/dist/commands/pr/merge.js.map +1 -1
  20. package/dist/commands/reconcile.d.ts +29 -0
  21. package/dist/commands/reconcile.js +140 -0
  22. package/dist/commands/reconcile.js.map +1 -0
  23. package/dist/commands/work/ship.js +131 -61
  24. package/dist/commands/work/ship.js.map +1 -1
  25. package/dist/commands/work/start.js +30 -0
  26. package/dist/commands/work/start.js.map +1 -1
  27. package/dist/lib/events/events.d.ts +19 -0
  28. package/dist/lib/execution/prompt-watcher.d.ts +120 -0
  29. package/dist/lib/execution/prompt-watcher.js +222 -0
  30. package/dist/lib/execution/prompt-watcher.js.map +1 -0
  31. package/dist/lib/execution/spawner.js +31 -0
  32. package/dist/lib/execution/spawner.js.map +1 -1
  33. package/dist/lib/gateway/channel-factory.d.ts +13 -0
  34. package/dist/lib/gateway/channel-factory.js +37 -0
  35. package/dist/lib/gateway/channel-factory.js.map +1 -0
  36. package/dist/lib/gateway/channels/telegram.d.ts +115 -0
  37. package/dist/lib/gateway/channels/telegram.js +215 -0
  38. package/dist/lib/gateway/channels/telegram.js.map +1 -0
  39. package/dist/lib/gateway/router.d.ts +84 -0
  40. package/dist/lib/gateway/router.js +140 -0
  41. package/dist/lib/gateway/router.js.map +1 -0
  42. package/dist/lib/gateway/session-poker.d.ts +35 -0
  43. package/dist/lib/gateway/session-poker.js +85 -0
  44. package/dist/lib/gateway/session-poker.js.map +1 -0
  45. package/dist/lib/gateway/types.d.ts +124 -0
  46. package/dist/lib/gateway/types.js +17 -0
  47. package/dist/lib/gateway/types.js.map +1 -0
  48. package/dist/lib/machine-db.d.ts +87 -0
  49. package/dist/lib/machine-db.js +135 -0
  50. package/dist/lib/machine-db.js.map +1 -1
  51. package/dist/lib/orchestrate/index.d.ts +1 -1
  52. package/dist/lib/orchestrate/index.js +1 -1
  53. package/dist/lib/orchestrate/index.js.map +1 -1
  54. package/dist/lib/orchestrate/llm-agent.d.ts +7 -0
  55. package/dist/lib/orchestrate/llm-agent.js +48 -1
  56. package/dist/lib/orchestrate/llm-agent.js.map +1 -1
  57. package/dist/lib/pr/index.d.ts +43 -2
  58. package/dist/lib/pr/index.js +141 -4
  59. package/dist/lib/pr/index.js.map +1 -1
  60. package/dist/lib/reconcile/core.d.ts +62 -0
  61. package/dist/lib/reconcile/core.js +137 -0
  62. package/dist/lib/reconcile/core.js.map +1 -0
  63. package/dist/lib/reconcile/index.d.ts +59 -0
  64. package/dist/lib/reconcile/index.js +499 -0
  65. package/dist/lib/reconcile/index.js.map +1 -0
  66. package/dist/lib/reconcile/types.d.ts +150 -0
  67. package/dist/lib/reconcile/types.js +16 -0
  68. package/dist/lib/reconcile/types.js.map +1 -0
  69. package/oclif.manifest.json +1021 -679
  70. package/package.json +1 -1
@@ -799,6 +799,74 @@
799
799
  "pull.js"
800
800
  ]
801
801
  },
802
+ "reconcile": {
803
+ "aliases": [],
804
+ "args": {},
805
+ "description": "Tier 2 state reconciler — poll GitHub for linked PRs and fix board drift",
806
+ "examples": [
807
+ "<%= config.bin %> <%= command.id %>",
808
+ "<%= config.bin %> <%= command.id %> --dry-run",
809
+ "<%= config.bin %> <%= command.id %> --watch",
810
+ "<%= config.bin %> <%= command.id %> --watch --interval 60",
811
+ "<%= config.bin %> <%= command.id %> -P proj-001"
812
+ ],
813
+ "flags": {
814
+ "project": {
815
+ "char": "P",
816
+ "description": "Project ID (uses first project if only one exists)",
817
+ "name": "project",
818
+ "hasDynamicHelp": false,
819
+ "multiple": false,
820
+ "type": "option"
821
+ },
822
+ "json": {
823
+ "description": "Output as JSON for AI agents/scripts",
824
+ "name": "json",
825
+ "allowNo": false,
826
+ "type": "boolean"
827
+ },
828
+ "machine": {
829
+ "char": "m",
830
+ "description": "Output as JSON for AI agents/scripts",
831
+ "name": "machine",
832
+ "allowNo": false,
833
+ "type": "boolean"
834
+ },
835
+ "dry-run": {
836
+ "description": "Print the transitions that would be made, but do not execute them",
837
+ "name": "dry-run",
838
+ "allowNo": false,
839
+ "type": "boolean"
840
+ },
841
+ "watch": {
842
+ "description": "Run on a timer until killed (default interval: 5 minutes)",
843
+ "name": "watch",
844
+ "allowNo": false,
845
+ "type": "boolean"
846
+ },
847
+ "interval": {
848
+ "description": "Watch interval in seconds (used with --watch)",
849
+ "name": "interval",
850
+ "default": 300,
851
+ "hasDynamicHelp": false,
852
+ "multiple": false,
853
+ "type": "option"
854
+ }
855
+ },
856
+ "hasDynamicHelp": false,
857
+ "hiddenAliases": [],
858
+ "id": "reconcile",
859
+ "pluginAlias": "@proletariat/cli",
860
+ "pluginName": "@proletariat/cli",
861
+ "pluginType": "core",
862
+ "strict": true,
863
+ "isESM": true,
864
+ "relativePath": [
865
+ "dist",
866
+ "commands",
867
+ "reconcile.js"
868
+ ]
869
+ },
802
870
  "self-update": {
803
871
  "aliases": [
804
872
  "self-update"
@@ -1978,6 +2046,66 @@
1978
2046
  "sync.js"
1979
2047
  ]
1980
2048
  },
2049
+ "autocomplete:setup": {
2050
+ "aliases": [],
2051
+ "args": {},
2052
+ "description": "Auto-detect shell and set up autocomplete",
2053
+ "examples": [
2054
+ "<%= config.bin %> <%= command.id %>",
2055
+ "<%= config.bin %> <%= command.id %> --install",
2056
+ "<%= config.bin %> <%= command.id %> --shell zsh",
2057
+ "<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
2058
+ ],
2059
+ "flags": {
2060
+ "json": {
2061
+ "description": "Output as JSON for AI agents/scripts",
2062
+ "name": "json",
2063
+ "allowNo": false,
2064
+ "type": "boolean"
2065
+ },
2066
+ "machine": {
2067
+ "char": "m",
2068
+ "description": "Output as JSON for AI agents/scripts",
2069
+ "name": "machine",
2070
+ "allowNo": false,
2071
+ "type": "boolean"
2072
+ },
2073
+ "install": {
2074
+ "char": "i",
2075
+ "description": "Automatically install to shell config file",
2076
+ "name": "install",
2077
+ "allowNo": false,
2078
+ "type": "boolean"
2079
+ },
2080
+ "shell": {
2081
+ "char": "s",
2082
+ "description": "Override shell detection (zsh, bash, powershell)",
2083
+ "name": "shell",
2084
+ "hasDynamicHelp": false,
2085
+ "multiple": false,
2086
+ "options": [
2087
+ "zsh",
2088
+ "bash",
2089
+ "powershell"
2090
+ ],
2091
+ "type": "option"
2092
+ }
2093
+ },
2094
+ "hasDynamicHelp": false,
2095
+ "hiddenAliases": [],
2096
+ "id": "autocomplete:setup",
2097
+ "pluginAlias": "@proletariat/cli",
2098
+ "pluginName": "@proletariat/cli",
2099
+ "pluginType": "core",
2100
+ "strict": true,
2101
+ "isESM": true,
2102
+ "relativePath": [
2103
+ "dist",
2104
+ "commands",
2105
+ "autocomplete",
2106
+ "setup.js"
2107
+ ]
2108
+ },
1981
2109
  "branch:create": {
1982
2110
  "aliases": [],
1983
2111
  "args": {
@@ -2334,66 +2462,6 @@
2334
2462
  "where.js"
2335
2463
  ]
2336
2464
  },
2337
- "autocomplete:setup": {
2338
- "aliases": [],
2339
- "args": {},
2340
- "description": "Auto-detect shell and set up autocomplete",
2341
- "examples": [
2342
- "<%= config.bin %> <%= command.id %>",
2343
- "<%= config.bin %> <%= command.id %> --install",
2344
- "<%= config.bin %> <%= command.id %> --shell zsh",
2345
- "<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
2346
- ],
2347
- "flags": {
2348
- "json": {
2349
- "description": "Output as JSON for AI agents/scripts",
2350
- "name": "json",
2351
- "allowNo": false,
2352
- "type": "boolean"
2353
- },
2354
- "machine": {
2355
- "char": "m",
2356
- "description": "Output as JSON for AI agents/scripts",
2357
- "name": "machine",
2358
- "allowNo": false,
2359
- "type": "boolean"
2360
- },
2361
- "install": {
2362
- "char": "i",
2363
- "description": "Automatically install to shell config file",
2364
- "name": "install",
2365
- "allowNo": false,
2366
- "type": "boolean"
2367
- },
2368
- "shell": {
2369
- "char": "s",
2370
- "description": "Override shell detection (zsh, bash, powershell)",
2371
- "name": "shell",
2372
- "hasDynamicHelp": false,
2373
- "multiple": false,
2374
- "options": [
2375
- "zsh",
2376
- "bash",
2377
- "powershell"
2378
- ],
2379
- "type": "option"
2380
- }
2381
- },
2382
- "hasDynamicHelp": false,
2383
- "hiddenAliases": [],
2384
- "id": "autocomplete:setup",
2385
- "pluginAlias": "@proletariat/cli",
2386
- "pluginName": "@proletariat/cli",
2387
- "pluginType": "core",
2388
- "strict": true,
2389
- "isESM": true,
2390
- "relativePath": [
2391
- "dist",
2392
- "commands",
2393
- "autocomplete",
2394
- "setup.js"
2395
- ]
2396
- },
2397
2465
  "caffeinate": {
2398
2466
  "aliases": [],
2399
2467
  "args": {},
@@ -4301,15 +4369,22 @@
4301
4369
  "view.js"
4302
4370
  ]
4303
4371
  },
4304
- "gh": {
4372
+ "gateway:connect": {
4305
4373
  "aliases": [],
4306
- "args": {},
4307
- "description": "GitHub CLI setup and status for PR workflow",
4374
+ "args": {
4375
+ "type": {
4376
+ "description": "Channel type",
4377
+ "name": "type",
4378
+ "options": [
4379
+ "telegram"
4380
+ ],
4381
+ "required": true
4382
+ }
4383
+ },
4384
+ "description": "Register a messaging channel (Telegram) with the gateway",
4308
4385
  "examples": [
4309
- "<%= config.bin %> <%= command.id %>",
4310
- "<%= config.bin %> <%= command.id %> status",
4311
- "<%= config.bin %> <%= command.id %> login",
4312
- "<%= config.bin %> <%= command.id %> token"
4386
+ "<%= config.bin %> gateway connect telegram --token 123:abc --allow 111 --allow 222",
4387
+ "<%= config.bin %> gateway connect telegram --token 123:abc --allow 111,222 --name my-bot"
4313
4388
  ],
4314
4389
  "flags": {
4315
4390
  "json": {
@@ -4324,30 +4399,64 @@
4324
4399
  "name": "machine",
4325
4400
  "allowNo": false,
4326
4401
  "type": "boolean"
4402
+ },
4403
+ "name": {
4404
+ "description": "Channel name (primary key). Defaults to the channel type.",
4405
+ "name": "name",
4406
+ "hasDynamicHelp": false,
4407
+ "multiple": false,
4408
+ "type": "option"
4409
+ },
4410
+ "token": {
4411
+ "description": "Telegram bot token from @BotFather",
4412
+ "name": "token",
4413
+ "hasDynamicHelp": false,
4414
+ "multiple": false,
4415
+ "type": "option"
4416
+ },
4417
+ "allow": {
4418
+ "description": "Telegram user id(s) allowed to message agents (repeatable, or comma-separated)",
4419
+ "name": "allow",
4420
+ "hasDynamicHelp": false,
4421
+ "multiple": true,
4422
+ "type": "option"
4423
+ },
4424
+ "poll-interval-ms": {
4425
+ "description": "Delay between getUpdates polls (0 uses Telegram long-poll)",
4426
+ "name": "poll-interval-ms",
4427
+ "hasDynamicHelp": false,
4428
+ "multiple": false,
4429
+ "type": "option"
4327
4430
  }
4328
4431
  },
4329
4432
  "hasDynamicHelp": false,
4330
4433
  "hiddenAliases": [],
4331
- "id": "gh",
4434
+ "id": "gateway:connect",
4332
4435
  "pluginAlias": "@proletariat/cli",
4333
4436
  "pluginName": "@proletariat/cli",
4334
4437
  "pluginType": "core",
4335
4438
  "strict": true,
4336
- "enableJsonFlag": false,
4337
4439
  "isESM": true,
4338
4440
  "relativePath": [
4339
4441
  "dist",
4340
4442
  "commands",
4341
- "gh",
4342
- "index.js"
4443
+ "gateway",
4444
+ "connect.js"
4343
4445
  ]
4344
4446
  },
4345
- "gh:login": {
4447
+ "gateway:disconnect": {
4346
4448
  "aliases": [],
4347
- "args": {},
4348
- "description": "Login to GitHub CLI for PR workflow",
4449
+ "args": {
4450
+ "name": {
4451
+ "description": "Channel name (as registered with `gateway connect`)",
4452
+ "name": "name",
4453
+ "required": true
4454
+ }
4455
+ },
4456
+ "description": "Disconnect a registered messaging channel",
4349
4457
  "examples": [
4350
- "<%= config.bin %> <%= command.id %>"
4458
+ "<%= config.bin %> gateway disconnect telegram",
4459
+ "<%= config.bin %> gateway disconnect telegram --deactivate"
4351
4460
  ],
4352
4461
  "flags": {
4353
4462
  "json": {
@@ -4362,30 +4471,36 @@
4362
4471
  "name": "machine",
4363
4472
  "allowNo": false,
4364
4473
  "type": "boolean"
4474
+ },
4475
+ "deactivate": {
4476
+ "description": "Mark the channel inactive instead of deleting it",
4477
+ "name": "deactivate",
4478
+ "allowNo": false,
4479
+ "type": "boolean"
4365
4480
  }
4366
4481
  },
4367
4482
  "hasDynamicHelp": false,
4368
4483
  "hiddenAliases": [],
4369
- "id": "gh:login",
4484
+ "id": "gateway:disconnect",
4370
4485
  "pluginAlias": "@proletariat/cli",
4371
4486
  "pluginName": "@proletariat/cli",
4372
4487
  "pluginType": "core",
4373
4488
  "strict": true,
4374
- "enableJsonFlag": false,
4375
4489
  "isESM": true,
4376
4490
  "relativePath": [
4377
4491
  "dist",
4378
4492
  "commands",
4379
- "gh",
4380
- "login.js"
4493
+ "gateway",
4494
+ "disconnect.js"
4381
4495
  ]
4382
4496
  },
4383
- "gh:status": {
4497
+ "gateway:start": {
4384
4498
  "aliases": [],
4385
4499
  "args": {},
4386
- "description": "Check GitHub CLI status for PR workflow",
4500
+ "description": "Start the messaging gateway daemon (foreground)",
4387
4501
  "examples": [
4388
- "<%= config.bin %> <%= command.id %>"
4502
+ "<%= config.bin %> gateway start",
4503
+ "<%= config.bin %> gateway start --default-agent altman"
4389
4504
  ],
4390
4505
  "flags": {
4391
4506
  "json": {
@@ -4400,30 +4515,44 @@
4400
4515
  "name": "machine",
4401
4516
  "allowNo": false,
4402
4517
  "type": "boolean"
4518
+ },
4519
+ "default-agent": {
4520
+ "description": "Agent session id to bind newly-seen users to (required unless a static resolver is configured)",
4521
+ "name": "default-agent",
4522
+ "hasDynamicHelp": false,
4523
+ "multiple": false,
4524
+ "type": "option"
4525
+ },
4526
+ "wait-timeout": {
4527
+ "description": "Max seconds to wait for an agent response before giving up",
4528
+ "name": "wait-timeout",
4529
+ "default": 90,
4530
+ "hasDynamicHelp": false,
4531
+ "multiple": false,
4532
+ "type": "option"
4403
4533
  }
4404
4534
  },
4405
4535
  "hasDynamicHelp": false,
4406
4536
  "hiddenAliases": [],
4407
- "id": "gh:status",
4537
+ "id": "gateway:start",
4408
4538
  "pluginAlias": "@proletariat/cli",
4409
4539
  "pluginName": "@proletariat/cli",
4410
4540
  "pluginType": "core",
4411
4541
  "strict": true,
4412
- "enableJsonFlag": false,
4413
4542
  "isESM": true,
4414
4543
  "relativePath": [
4415
4544
  "dist",
4416
4545
  "commands",
4417
- "gh",
4418
- "status.js"
4546
+ "gateway",
4547
+ "start.js"
4419
4548
  ]
4420
4549
  },
4421
- "gh:token": {
4550
+ "gateway:status": {
4422
4551
  "aliases": [],
4423
4552
  "args": {},
4424
- "description": "Show GH_TOKEN setup for devcontainer PR creation",
4553
+ "description": "Show registered messaging channels and their activity",
4425
4554
  "examples": [
4426
- "<%= config.bin %> <%= command.id %>"
4555
+ "<%= config.bin %> gateway status"
4427
4556
  ],
4428
4557
  "flags": {
4429
4558
  "json": {
@@ -4442,12 +4571,225 @@
4442
4571
  },
4443
4572
  "hasDynamicHelp": false,
4444
4573
  "hiddenAliases": [],
4445
- "id": "gh:token",
4574
+ "id": "gateway:status",
4446
4575
  "pluginAlias": "@proletariat/cli",
4447
4576
  "pluginName": "@proletariat/cli",
4448
4577
  "pluginType": "core",
4449
4578
  "strict": true,
4450
- "enableJsonFlag": false,
4579
+ "isESM": true,
4580
+ "relativePath": [
4581
+ "dist",
4582
+ "commands",
4583
+ "gateway",
4584
+ "status.js"
4585
+ ]
4586
+ },
4587
+ "gateway:test": {
4588
+ "aliases": [],
4589
+ "args": {
4590
+ "name": {
4591
+ "description": "Channel name (as registered with `gateway connect`)",
4592
+ "name": "name",
4593
+ "required": true
4594
+ }
4595
+ },
4596
+ "description": "Send a test message through a registered messaging channel",
4597
+ "examples": [
4598
+ "<%= config.bin %> gateway test telegram --to 123456789 --message \"hello from prlt\""
4599
+ ],
4600
+ "flags": {
4601
+ "json": {
4602
+ "description": "Output as JSON for AI agents/scripts",
4603
+ "name": "json",
4604
+ "allowNo": false,
4605
+ "type": "boolean"
4606
+ },
4607
+ "machine": {
4608
+ "char": "m",
4609
+ "description": "Output as JSON for AI agents/scripts",
4610
+ "name": "machine",
4611
+ "allowNo": false,
4612
+ "type": "boolean"
4613
+ },
4614
+ "to": {
4615
+ "description": "Recipient id on the channel (e.g. Telegram chat id)",
4616
+ "name": "to",
4617
+ "required": true,
4618
+ "hasDynamicHelp": false,
4619
+ "multiple": false,
4620
+ "type": "option"
4621
+ },
4622
+ "message": {
4623
+ "description": "Text to send",
4624
+ "name": "message",
4625
+ "default": "hello from prlt",
4626
+ "hasDynamicHelp": false,
4627
+ "multiple": false,
4628
+ "type": "option"
4629
+ }
4630
+ },
4631
+ "hasDynamicHelp": false,
4632
+ "hiddenAliases": [],
4633
+ "id": "gateway:test",
4634
+ "pluginAlias": "@proletariat/cli",
4635
+ "pluginName": "@proletariat/cli",
4636
+ "pluginType": "core",
4637
+ "strict": true,
4638
+ "isESM": true,
4639
+ "relativePath": [
4640
+ "dist",
4641
+ "commands",
4642
+ "gateway",
4643
+ "test.js"
4644
+ ]
4645
+ },
4646
+ "gh": {
4647
+ "aliases": [],
4648
+ "args": {},
4649
+ "description": "GitHub CLI setup and status for PR workflow",
4650
+ "examples": [
4651
+ "<%= config.bin %> <%= command.id %>",
4652
+ "<%= config.bin %> <%= command.id %> status",
4653
+ "<%= config.bin %> <%= command.id %> login",
4654
+ "<%= config.bin %> <%= command.id %> token"
4655
+ ],
4656
+ "flags": {
4657
+ "json": {
4658
+ "description": "Output as JSON for AI agents/scripts",
4659
+ "name": "json",
4660
+ "allowNo": false,
4661
+ "type": "boolean"
4662
+ },
4663
+ "machine": {
4664
+ "char": "m",
4665
+ "description": "Output as JSON for AI agents/scripts",
4666
+ "name": "machine",
4667
+ "allowNo": false,
4668
+ "type": "boolean"
4669
+ }
4670
+ },
4671
+ "hasDynamicHelp": false,
4672
+ "hiddenAliases": [],
4673
+ "id": "gh",
4674
+ "pluginAlias": "@proletariat/cli",
4675
+ "pluginName": "@proletariat/cli",
4676
+ "pluginType": "core",
4677
+ "strict": true,
4678
+ "enableJsonFlag": false,
4679
+ "isESM": true,
4680
+ "relativePath": [
4681
+ "dist",
4682
+ "commands",
4683
+ "gh",
4684
+ "index.js"
4685
+ ]
4686
+ },
4687
+ "gh:login": {
4688
+ "aliases": [],
4689
+ "args": {},
4690
+ "description": "Login to GitHub CLI for PR workflow",
4691
+ "examples": [
4692
+ "<%= config.bin %> <%= command.id %>"
4693
+ ],
4694
+ "flags": {
4695
+ "json": {
4696
+ "description": "Output as JSON for AI agents/scripts",
4697
+ "name": "json",
4698
+ "allowNo": false,
4699
+ "type": "boolean"
4700
+ },
4701
+ "machine": {
4702
+ "char": "m",
4703
+ "description": "Output as JSON for AI agents/scripts",
4704
+ "name": "machine",
4705
+ "allowNo": false,
4706
+ "type": "boolean"
4707
+ }
4708
+ },
4709
+ "hasDynamicHelp": false,
4710
+ "hiddenAliases": [],
4711
+ "id": "gh:login",
4712
+ "pluginAlias": "@proletariat/cli",
4713
+ "pluginName": "@proletariat/cli",
4714
+ "pluginType": "core",
4715
+ "strict": true,
4716
+ "enableJsonFlag": false,
4717
+ "isESM": true,
4718
+ "relativePath": [
4719
+ "dist",
4720
+ "commands",
4721
+ "gh",
4722
+ "login.js"
4723
+ ]
4724
+ },
4725
+ "gh:status": {
4726
+ "aliases": [],
4727
+ "args": {},
4728
+ "description": "Check GitHub CLI status for PR workflow",
4729
+ "examples": [
4730
+ "<%= config.bin %> <%= command.id %>"
4731
+ ],
4732
+ "flags": {
4733
+ "json": {
4734
+ "description": "Output as JSON for AI agents/scripts",
4735
+ "name": "json",
4736
+ "allowNo": false,
4737
+ "type": "boolean"
4738
+ },
4739
+ "machine": {
4740
+ "char": "m",
4741
+ "description": "Output as JSON for AI agents/scripts",
4742
+ "name": "machine",
4743
+ "allowNo": false,
4744
+ "type": "boolean"
4745
+ }
4746
+ },
4747
+ "hasDynamicHelp": false,
4748
+ "hiddenAliases": [],
4749
+ "id": "gh:status",
4750
+ "pluginAlias": "@proletariat/cli",
4751
+ "pluginName": "@proletariat/cli",
4752
+ "pluginType": "core",
4753
+ "strict": true,
4754
+ "enableJsonFlag": false,
4755
+ "isESM": true,
4756
+ "relativePath": [
4757
+ "dist",
4758
+ "commands",
4759
+ "gh",
4760
+ "status.js"
4761
+ ]
4762
+ },
4763
+ "gh:token": {
4764
+ "aliases": [],
4765
+ "args": {},
4766
+ "description": "Show GH_TOKEN setup for devcontainer PR creation",
4767
+ "examples": [
4768
+ "<%= config.bin %> <%= command.id %>"
4769
+ ],
4770
+ "flags": {
4771
+ "json": {
4772
+ "description": "Output as JSON for AI agents/scripts",
4773
+ "name": "json",
4774
+ "allowNo": false,
4775
+ "type": "boolean"
4776
+ },
4777
+ "machine": {
4778
+ "char": "m",
4779
+ "description": "Output as JSON for AI agents/scripts",
4780
+ "name": "machine",
4781
+ "allowNo": false,
4782
+ "type": "boolean"
4783
+ }
4784
+ },
4785
+ "hasDynamicHelp": false,
4786
+ "hiddenAliases": [],
4787
+ "id": "gh:token",
4788
+ "pluginAlias": "@proletariat/cli",
4789
+ "pluginName": "@proletariat/cli",
4790
+ "pluginType": "core",
4791
+ "strict": true,
4792
+ "enableJsonFlag": false,
4451
4793
  "isESM": true,
4452
4794
  "relativePath": [
4453
4795
  "dist",
@@ -5300,16 +5642,29 @@
5300
5642
  "sync.js"
5301
5643
  ]
5302
5644
  },
5303
- "orchestrate": {
5645
+ "notify:connect": {
5304
5646
  "aliases": [],
5305
- "args": {},
5306
- "description": "Start the autonomous pipeline daemon with event-driven hooks",
5647
+ "args": {
5648
+ "type": {
5649
+ "description": "Provider type",
5650
+ "name": "type",
5651
+ "options": [
5652
+ "slack",
5653
+ "email",
5654
+ "sms",
5655
+ "terminal",
5656
+ "browser_push"
5657
+ ],
5658
+ "required": true
5659
+ }
5660
+ },
5661
+ "description": "Connect a notification provider (Slack, Email, SMS, etc.)",
5307
5662
  "examples": [
5308
- "<%= config.bin %> <%= command.id %>",
5309
- "<%= config.bin %> <%= command.id %> --preset supervised",
5310
- "<%= config.bin %> <%= command.id %> --load-yaml",
5311
- "<%= config.bin %> <%= command.id %> --poll-interval 300",
5312
- "<%= config.bin %> <%= command.id %> --once on_ci_green --pr 123"
5663
+ "<%= config.bin %> notify connect slack --webhook-url https://hooks.slack.com/...",
5664
+ "<%= config.bin %> notify connect email --provider sendgrid --api-key sk-... --from alerts@co.com --to team@co.com",
5665
+ "<%= config.bin %> notify connect sms --account-sid AC... --auth-token ... --from +1234567890 --to +0987654321",
5666
+ "<%= config.bin %> notify connect terminal",
5667
+ "<%= config.bin %> notify connect slack --name my-slack --webhook-url https://..."
5313
5668
  ],
5314
5669
  "flags": {
5315
5670
  "json": {
@@ -5325,79 +5680,84 @@
5325
5680
  "allowNo": false,
5326
5681
  "type": "boolean"
5327
5682
  },
5328
- "preset": {
5329
- "description": "Apply a preset before starting (aggressive, conservative, supervised)",
5330
- "name": "preset",
5683
+ "name": {
5684
+ "description": "Provider name (defaults to type)",
5685
+ "name": "name",
5331
5686
  "hasDynamicHelp": false,
5332
5687
  "multiple": false,
5333
- "options": [
5334
- "aggressive",
5335
- "conservative",
5336
- "supervised"
5337
- ],
5338
5688
  "type": "option"
5339
5689
  },
5340
- "load-yaml": {
5341
- "description": "Load hooks from .proletariat/hooks.yml before starting",
5342
- "name": "load-yaml",
5343
- "allowNo": false,
5344
- "type": "boolean"
5690
+ "webhook-url": {
5691
+ "description": "Slack webhook URL",
5692
+ "name": "webhook-url",
5693
+ "hasDynamicHelp": false,
5694
+ "multiple": false,
5695
+ "type": "option"
5345
5696
  },
5346
- "poll-interval": {
5347
- "description": "Poll interval in seconds for external event sources (0 to disable)",
5348
- "name": "poll-interval",
5349
- "default": 0,
5697
+ "channel": {
5698
+ "description": "Slack channel override",
5699
+ "name": "channel",
5350
5700
  "hasDynamicHelp": false,
5351
5701
  "multiple": false,
5352
5702
  "type": "option"
5353
5703
  },
5354
- "once": {
5355
- "description": "Fire a single event and exit (useful for CI/GitHub Actions)",
5356
- "name": "once",
5704
+ "username": {
5705
+ "description": "Slack username override",
5706
+ "name": "username",
5357
5707
  "hasDynamicHelp": false,
5358
5708
  "multiple": false,
5359
5709
  "type": "option"
5360
5710
  },
5361
- "ticket": {
5362
- "char": "t",
5363
- "description": "Ticket ID (for --once)",
5364
- "name": "ticket",
5711
+ "provider": {
5712
+ "description": "Email provider (sendgrid or ses)",
5713
+ "name": "provider",
5365
5714
  "hasDynamicHelp": false,
5366
5715
  "multiple": false,
5716
+ "options": [
5717
+ "sendgrid",
5718
+ "ses"
5719
+ ],
5367
5720
  "type": "option"
5368
5721
  },
5369
- "pr": {
5370
- "description": "PR number (for --once)",
5371
- "name": "pr",
5722
+ "api-key": {
5723
+ "description": "API key for email/SMS provider",
5724
+ "name": "api-key",
5372
5725
  "hasDynamicHelp": false,
5373
5726
  "multiple": false,
5374
5727
  "type": "option"
5375
5728
  },
5376
- "branch": {
5377
- "description": "Branch name (for --once)",
5378
- "name": "branch",
5729
+ "from": {
5730
+ "description": "Sender address (email or phone)",
5731
+ "name": "from",
5379
5732
  "hasDynamicHelp": false,
5380
5733
  "multiple": false,
5381
5734
  "type": "option"
5382
5735
  },
5383
- "agent": {
5384
- "description": "Agent name (for --once)",
5385
- "name": "agent",
5736
+ "to": {
5737
+ "description": "Recipient(s), comma-separated",
5738
+ "name": "to",
5739
+ "hasDynamicHelp": false,
5740
+ "multiple": true,
5741
+ "type": "option"
5742
+ },
5743
+ "account-sid": {
5744
+ "description": "Twilio account SID",
5745
+ "name": "account-sid",
5386
5746
  "hasDynamicHelp": false,
5387
5747
  "multiple": false,
5388
5748
  "type": "option"
5389
5749
  },
5390
- "verbose": {
5391
- "char": "v",
5392
- "description": "Show detailed output",
5393
- "name": "verbose",
5394
- "allowNo": false,
5395
- "type": "boolean"
5750
+ "auth-token": {
5751
+ "description": "Twilio auth token",
5752
+ "name": "auth-token",
5753
+ "hasDynamicHelp": false,
5754
+ "multiple": false,
5755
+ "type": "option"
5396
5756
  }
5397
5757
  },
5398
5758
  "hasDynamicHelp": false,
5399
5759
  "hiddenAliases": [],
5400
- "id": "orchestrate",
5760
+ "id": "notify:connect",
5401
5761
  "pluginAlias": "@proletariat/cli",
5402
5762
  "pluginName": "@proletariat/cli",
5403
5763
  "pluginType": "core",
@@ -5406,70 +5766,25 @@
5406
5766
  "relativePath": [
5407
5767
  "dist",
5408
5768
  "commands",
5409
- "orchestrate",
5410
- "index.js"
5769
+ "notify",
5770
+ "connect.js"
5411
5771
  ]
5412
5772
  },
5413
- "orchestrate:machine": {
5773
+ "notify:disconnect": {
5414
5774
  "aliases": [],
5415
- "args": {},
5416
- "description": "Start the machine-level orchestrator — root supervisor for all agents across all repos",
5775
+ "args": {
5776
+ "name": {
5777
+ "description": "Provider name to disconnect",
5778
+ "name": "name",
5779
+ "required": true
5780
+ }
5781
+ },
5782
+ "description": "Remove a notification provider",
5417
5783
  "examples": [
5418
- "<%= config.bin %> <%= command.id %>",
5419
- "<%= config.bin %> <%= command.id %> --prompt \"restart died agents, then assess all repos\"",
5420
- "<%= config.bin %> <%= command.id %> --name supervisor",
5421
- "<%= config.bin %> <%= command.id %> --background"
5784
+ "<%= config.bin %> notify disconnect slack",
5785
+ "<%= config.bin %> notify disconnect my-slack"
5422
5786
  ],
5423
5787
  "flags": {
5424
- "prompt": {
5425
- "char": "p",
5426
- "description": "Initial instructions for the orchestrator",
5427
- "name": "prompt",
5428
- "hasDynamicHelp": false,
5429
- "multiple": false,
5430
- "type": "option"
5431
- },
5432
- "name": {
5433
- "char": "n",
5434
- "description": "Orchestrator name (default: machine-orchestrator)",
5435
- "name": "name",
5436
- "hasDynamicHelp": false,
5437
- "multiple": false,
5438
- "type": "option"
5439
- },
5440
- "background": {
5441
- "char": "b",
5442
- "description": "Start detached (reattach later with prlt session attach)",
5443
- "exclusive": [
5444
- "foreground"
5445
- ],
5446
- "name": "background",
5447
- "allowNo": false,
5448
- "type": "boolean"
5449
- },
5450
- "foreground": {
5451
- "char": "f",
5452
- "description": "Attach to the session in the current terminal (blocking)",
5453
- "exclusive": [
5454
- "background"
5455
- ],
5456
- "name": "foreground",
5457
- "allowNo": false,
5458
- "type": "boolean"
5459
- },
5460
- "executor": {
5461
- "char": "e",
5462
- "description": "AI executor to use",
5463
- "name": "executor",
5464
- "default": "claude-code",
5465
- "hasDynamicHelp": false,
5466
- "multiple": false,
5467
- "options": [
5468
- "claude-code",
5469
- "codex"
5470
- ],
5471
- "type": "option"
5472
- },
5473
5788
  "json": {
5474
5789
  "description": "Output as JSON for AI agents/scripts",
5475
5790
  "name": "json",
@@ -5486,7 +5801,7 @@
5486
5801
  },
5487
5802
  "hasDynamicHelp": false,
5488
5803
  "hiddenAliases": [],
5489
- "id": "orchestrate:machine",
5804
+ "id": "notify:disconnect",
5490
5805
  "pluginAlias": "@proletariat/cli",
5491
5806
  "pluginName": "@proletariat/cli",
5492
5807
  "pluginType": "core",
@@ -5495,33 +5810,18 @@
5495
5810
  "relativePath": [
5496
5811
  "dist",
5497
5812
  "commands",
5498
- "orchestrate",
5499
- "machine.js"
5813
+ "notify",
5814
+ "disconnect.js"
5500
5815
  ]
5501
5816
  },
5502
- "notify:connect": {
5817
+ "notify:list": {
5503
5818
  "aliases": [],
5504
- "args": {
5505
- "type": {
5506
- "description": "Provider type",
5507
- "name": "type",
5508
- "options": [
5509
- "slack",
5510
- "email",
5511
- "sms",
5512
- "terminal",
5513
- "browser_push"
5514
- ],
5515
- "required": true
5516
- }
5517
- },
5518
- "description": "Connect a notification provider (Slack, Email, SMS, etc.)",
5819
+ "args": {},
5820
+ "description": "List configured notification providers and rules",
5519
5821
  "examples": [
5520
- "<%= config.bin %> notify connect slack --webhook-url https://hooks.slack.com/...",
5521
- "<%= config.bin %> notify connect email --provider sendgrid --api-key sk-... --from alerts@co.com --to team@co.com",
5522
- "<%= config.bin %> notify connect sms --account-sid AC... --auth-token ... --from +1234567890 --to +0987654321",
5523
- "<%= config.bin %> notify connect terminal",
5524
- "<%= config.bin %> notify connect slack --name my-slack --webhook-url https://..."
5822
+ "<%= config.bin %> notify list",
5823
+ "<%= config.bin %> notify list --rules",
5824
+ "<%= config.bin %> notify list --type slack"
5525
5825
  ],
5526
5826
  "flags": {
5527
5827
  "json": {
@@ -5537,84 +5837,30 @@
5537
5837
  "allowNo": false,
5538
5838
  "type": "boolean"
5539
5839
  },
5540
- "name": {
5541
- "description": "Provider name (defaults to type)",
5542
- "name": "name",
5543
- "hasDynamicHelp": false,
5544
- "multiple": false,
5545
- "type": "option"
5546
- },
5547
- "webhook-url": {
5548
- "description": "Slack webhook URL",
5549
- "name": "webhook-url",
5550
- "hasDynamicHelp": false,
5551
- "multiple": false,
5552
- "type": "option"
5553
- },
5554
- "channel": {
5555
- "description": "Slack channel override",
5556
- "name": "channel",
5557
- "hasDynamicHelp": false,
5558
- "multiple": false,
5559
- "type": "option"
5560
- },
5561
- "username": {
5562
- "description": "Slack username override",
5563
- "name": "username",
5564
- "hasDynamicHelp": false,
5565
- "multiple": false,
5566
- "type": "option"
5567
- },
5568
- "provider": {
5569
- "description": "Email provider (sendgrid or ses)",
5570
- "name": "provider",
5840
+ "type": {
5841
+ "description": "Filter providers by type",
5842
+ "name": "type",
5571
5843
  "hasDynamicHelp": false,
5572
5844
  "multiple": false,
5573
5845
  "options": [
5574
- "sendgrid",
5575
- "ses"
5846
+ "slack",
5847
+ "email",
5848
+ "sms",
5849
+ "terminal",
5850
+ "browser_push"
5576
5851
  ],
5577
5852
  "type": "option"
5578
5853
  },
5579
- "api-key": {
5580
- "description": "API key for email/SMS provider",
5581
- "name": "api-key",
5582
- "hasDynamicHelp": false,
5583
- "multiple": false,
5584
- "type": "option"
5585
- },
5586
- "from": {
5587
- "description": "Sender address (email or phone)",
5588
- "name": "from",
5589
- "hasDynamicHelp": false,
5590
- "multiple": false,
5591
- "type": "option"
5592
- },
5593
- "to": {
5594
- "description": "Recipient(s), comma-separated",
5595
- "name": "to",
5596
- "hasDynamicHelp": false,
5597
- "multiple": true,
5598
- "type": "option"
5599
- },
5600
- "account-sid": {
5601
- "description": "Twilio account SID",
5602
- "name": "account-sid",
5603
- "hasDynamicHelp": false,
5604
- "multiple": false,
5605
- "type": "option"
5606
- },
5607
- "auth-token": {
5608
- "description": "Twilio auth token",
5609
- "name": "auth-token",
5610
- "hasDynamicHelp": false,
5611
- "multiple": false,
5612
- "type": "option"
5854
+ "rules": {
5855
+ "description": "Also show notification rules",
5856
+ "name": "rules",
5857
+ "allowNo": false,
5858
+ "type": "boolean"
5613
5859
  }
5614
5860
  },
5615
5861
  "hasDynamicHelp": false,
5616
5862
  "hiddenAliases": [],
5617
- "id": "notify:connect",
5863
+ "id": "notify:list",
5618
5864
  "pluginAlias": "@proletariat/cli",
5619
5865
  "pluginName": "@proletariat/cli",
5620
5866
  "pluginType": "core",
@@ -5624,22 +5870,22 @@
5624
5870
  "dist",
5625
5871
  "commands",
5626
5872
  "notify",
5627
- "connect.js"
5873
+ "list.js"
5628
5874
  ]
5629
5875
  },
5630
- "notify:disconnect": {
5876
+ "notify:test": {
5631
5877
  "aliases": [],
5632
5878
  "args": {
5633
5879
  "name": {
5634
- "description": "Provider name to disconnect",
5880
+ "description": "Provider name to test",
5635
5881
  "name": "name",
5636
5882
  "required": true
5637
5883
  }
5638
5884
  },
5639
- "description": "Remove a notification provider",
5885
+ "description": "Send a test notification through a provider",
5640
5886
  "examples": [
5641
- "<%= config.bin %> notify disconnect slack",
5642
- "<%= config.bin %> notify disconnect my-slack"
5887
+ "<%= config.bin %> notify test slack",
5888
+ "<%= config.bin %> notify test my-email"
5643
5889
  ],
5644
5890
  "flags": {
5645
5891
  "json": {
@@ -5648,17 +5894,127 @@
5648
5894
  "allowNo": false,
5649
5895
  "type": "boolean"
5650
5896
  },
5651
- "machine": {
5652
- "char": "m",
5653
- "description": "Output as JSON for AI agents/scripts",
5654
- "name": "machine",
5897
+ "machine": {
5898
+ "char": "m",
5899
+ "description": "Output as JSON for AI agents/scripts",
5900
+ "name": "machine",
5901
+ "allowNo": false,
5902
+ "type": "boolean"
5903
+ }
5904
+ },
5905
+ "hasDynamicHelp": false,
5906
+ "hiddenAliases": [],
5907
+ "id": "notify:test",
5908
+ "pluginAlias": "@proletariat/cli",
5909
+ "pluginName": "@proletariat/cli",
5910
+ "pluginType": "core",
5911
+ "strict": true,
5912
+ "isESM": true,
5913
+ "relativePath": [
5914
+ "dist",
5915
+ "commands",
5916
+ "notify",
5917
+ "test.js"
5918
+ ]
5919
+ },
5920
+ "orchestrate": {
5921
+ "aliases": [],
5922
+ "args": {},
5923
+ "description": "Start the autonomous pipeline daemon with event-driven hooks",
5924
+ "examples": [
5925
+ "<%= config.bin %> <%= command.id %>",
5926
+ "<%= config.bin %> <%= command.id %> --preset supervised",
5927
+ "<%= config.bin %> <%= command.id %> --load-yaml",
5928
+ "<%= config.bin %> <%= command.id %> --poll-interval 300",
5929
+ "<%= config.bin %> <%= command.id %> --once on_ci_green --pr 123"
5930
+ ],
5931
+ "flags": {
5932
+ "json": {
5933
+ "description": "Output as JSON for AI agents/scripts",
5934
+ "name": "json",
5935
+ "allowNo": false,
5936
+ "type": "boolean"
5937
+ },
5938
+ "machine": {
5939
+ "char": "m",
5940
+ "description": "Output as JSON for AI agents/scripts",
5941
+ "name": "machine",
5942
+ "allowNo": false,
5943
+ "type": "boolean"
5944
+ },
5945
+ "preset": {
5946
+ "description": "Apply a preset before starting (aggressive, conservative, supervised)",
5947
+ "name": "preset",
5948
+ "hasDynamicHelp": false,
5949
+ "multiple": false,
5950
+ "options": [
5951
+ "aggressive",
5952
+ "conservative",
5953
+ "supervised"
5954
+ ],
5955
+ "type": "option"
5956
+ },
5957
+ "load-yaml": {
5958
+ "description": "Load hooks from .proletariat/hooks.yml before starting",
5959
+ "name": "load-yaml",
5960
+ "allowNo": false,
5961
+ "type": "boolean"
5962
+ },
5963
+ "poll-interval": {
5964
+ "description": "Poll interval in seconds for external event sources (0 to disable)",
5965
+ "name": "poll-interval",
5966
+ "default": 0,
5967
+ "hasDynamicHelp": false,
5968
+ "multiple": false,
5969
+ "type": "option"
5970
+ },
5971
+ "once": {
5972
+ "description": "Fire a single event and exit (useful for CI/GitHub Actions)",
5973
+ "name": "once",
5974
+ "hasDynamicHelp": false,
5975
+ "multiple": false,
5976
+ "type": "option"
5977
+ },
5978
+ "ticket": {
5979
+ "char": "t",
5980
+ "description": "Ticket ID (for --once)",
5981
+ "name": "ticket",
5982
+ "hasDynamicHelp": false,
5983
+ "multiple": false,
5984
+ "type": "option"
5985
+ },
5986
+ "pr": {
5987
+ "description": "PR number (for --once)",
5988
+ "name": "pr",
5989
+ "hasDynamicHelp": false,
5990
+ "multiple": false,
5991
+ "type": "option"
5992
+ },
5993
+ "branch": {
5994
+ "description": "Branch name (for --once)",
5995
+ "name": "branch",
5996
+ "hasDynamicHelp": false,
5997
+ "multiple": false,
5998
+ "type": "option"
5999
+ },
6000
+ "agent": {
6001
+ "description": "Agent name (for --once)",
6002
+ "name": "agent",
6003
+ "hasDynamicHelp": false,
6004
+ "multiple": false,
6005
+ "type": "option"
6006
+ },
6007
+ "verbose": {
6008
+ "char": "v",
6009
+ "description": "Show detailed output",
6010
+ "name": "verbose",
5655
6011
  "allowNo": false,
5656
6012
  "type": "boolean"
5657
6013
  }
5658
6014
  },
5659
6015
  "hasDynamicHelp": false,
5660
6016
  "hiddenAliases": [],
5661
- "id": "notify:disconnect",
6017
+ "id": "orchestrate",
5662
6018
  "pluginAlias": "@proletariat/cli",
5663
6019
  "pluginName": "@proletariat/cli",
5664
6020
  "pluginType": "core",
@@ -5667,84 +6023,70 @@
5667
6023
  "relativePath": [
5668
6024
  "dist",
5669
6025
  "commands",
5670
- "notify",
5671
- "disconnect.js"
6026
+ "orchestrate",
6027
+ "index.js"
5672
6028
  ]
5673
6029
  },
5674
- "notify:list": {
6030
+ "orchestrate:machine": {
5675
6031
  "aliases": [],
5676
6032
  "args": {},
5677
- "description": "List configured notification providers and rules",
6033
+ "description": "Start the machine-level orchestrator root supervisor for all agents across all repos",
5678
6034
  "examples": [
5679
- "<%= config.bin %> notify list",
5680
- "<%= config.bin %> notify list --rules",
5681
- "<%= config.bin %> notify list --type slack"
6035
+ "<%= config.bin %> <%= command.id %>",
6036
+ "<%= config.bin %> <%= command.id %> --prompt \"restart died agents, then assess all repos\"",
6037
+ "<%= config.bin %> <%= command.id %> --name supervisor",
6038
+ "<%= config.bin %> <%= command.id %> --background"
5682
6039
  ],
5683
6040
  "flags": {
5684
- "json": {
5685
- "description": "Output as JSON for AI agents/scripts",
5686
- "name": "json",
6041
+ "prompt": {
6042
+ "char": "p",
6043
+ "description": "Initial instructions for the orchestrator",
6044
+ "name": "prompt",
6045
+ "hasDynamicHelp": false,
6046
+ "multiple": false,
6047
+ "type": "option"
6048
+ },
6049
+ "name": {
6050
+ "char": "n",
6051
+ "description": "Orchestrator name (default: machine-orchestrator)",
6052
+ "name": "name",
6053
+ "hasDynamicHelp": false,
6054
+ "multiple": false,
6055
+ "type": "option"
6056
+ },
6057
+ "background": {
6058
+ "char": "b",
6059
+ "description": "Start detached (reattach later with prlt session attach)",
6060
+ "exclusive": [
6061
+ "foreground"
6062
+ ],
6063
+ "name": "background",
5687
6064
  "allowNo": false,
5688
6065
  "type": "boolean"
5689
6066
  },
5690
- "machine": {
5691
- "char": "m",
5692
- "description": "Output as JSON for AI agents/scripts",
5693
- "name": "machine",
6067
+ "foreground": {
6068
+ "char": "f",
6069
+ "description": "Attach to the session in the current terminal (blocking)",
6070
+ "exclusive": [
6071
+ "background"
6072
+ ],
6073
+ "name": "foreground",
5694
6074
  "allowNo": false,
5695
6075
  "type": "boolean"
5696
6076
  },
5697
- "type": {
5698
- "description": "Filter providers by type",
5699
- "name": "type",
6077
+ "executor": {
6078
+ "char": "e",
6079
+ "description": "AI executor to use",
6080
+ "name": "executor",
6081
+ "default": "claude-code",
5700
6082
  "hasDynamicHelp": false,
5701
6083
  "multiple": false,
5702
6084
  "options": [
5703
- "slack",
5704
- "email",
5705
- "sms",
5706
- "terminal",
5707
- "browser_push"
6085
+ "claude-code",
6086
+ "codex"
5708
6087
  ],
5709
6088
  "type": "option"
5710
6089
  },
5711
- "rules": {
5712
- "description": "Also show notification rules",
5713
- "name": "rules",
5714
- "allowNo": false,
5715
- "type": "boolean"
5716
- }
5717
- },
5718
- "hasDynamicHelp": false,
5719
- "hiddenAliases": [],
5720
- "id": "notify:list",
5721
- "pluginAlias": "@proletariat/cli",
5722
- "pluginName": "@proletariat/cli",
5723
- "pluginType": "core",
5724
- "strict": true,
5725
- "isESM": true,
5726
- "relativePath": [
5727
- "dist",
5728
- "commands",
5729
- "notify",
5730
- "list.js"
5731
- ]
5732
- },
5733
- "notify:test": {
5734
- "aliases": [],
5735
- "args": {
5736
- "name": {
5737
- "description": "Provider name to test",
5738
- "name": "name",
5739
- "required": true
5740
- }
5741
- },
5742
- "description": "Send a test notification through a provider",
5743
- "examples": [
5744
- "<%= config.bin %> notify test slack",
5745
- "<%= config.bin %> notify test my-email"
5746
- ],
5747
- "flags": {
5748
6090
  "json": {
5749
6091
  "description": "Output as JSON for AI agents/scripts",
5750
6092
  "name": "json",
@@ -5761,7 +6103,7 @@
5761
6103
  },
5762
6104
  "hasDynamicHelp": false,
5763
6105
  "hiddenAliases": [],
5764
- "id": "notify:test",
6106
+ "id": "orchestrate:machine",
5765
6107
  "pluginAlias": "@proletariat/cli",
5766
6108
  "pluginName": "@proletariat/cli",
5767
6109
  "pluginType": "core",
@@ -5770,8 +6112,8 @@
5770
6112
  "relativePath": [
5771
6113
  "dist",
5772
6114
  "commands",
5773
- "notify",
5774
- "test.js"
6115
+ "orchestrate",
6116
+ "machine.js"
5775
6117
  ]
5776
6118
  },
5777
6119
  "orchestrator:attach": {
@@ -6196,6 +6538,65 @@
6196
6538
  "stop.js"
6197
6539
  ]
6198
6540
  },
6541
+ "project:configure": {
6542
+ "aliases": [],
6543
+ "args": {},
6544
+ "description": "Configure workflow column mapping for a project",
6545
+ "examples": [
6546
+ "<%= config.bin %> <%= command.id %> --workflow",
6547
+ "<%= config.bin %> <%= command.id %> --workflow --show"
6548
+ ],
6549
+ "flags": {
6550
+ "project": {
6551
+ "char": "P",
6552
+ "description": "Project ID (uses first project if only one exists)",
6553
+ "name": "project",
6554
+ "hasDynamicHelp": false,
6555
+ "multiple": false,
6556
+ "type": "option"
6557
+ },
6558
+ "json": {
6559
+ "description": "Output as JSON for AI agents/scripts",
6560
+ "name": "json",
6561
+ "allowNo": false,
6562
+ "type": "boolean"
6563
+ },
6564
+ "machine": {
6565
+ "char": "m",
6566
+ "description": "Output as JSON for AI agents/scripts",
6567
+ "name": "machine",
6568
+ "allowNo": false,
6569
+ "type": "boolean"
6570
+ },
6571
+ "workflow": {
6572
+ "char": "w",
6573
+ "description": "Configure workflow column mapping",
6574
+ "name": "workflow",
6575
+ "allowNo": false,
6576
+ "type": "boolean"
6577
+ },
6578
+ "show": {
6579
+ "description": "Show current workflow mapping without prompting",
6580
+ "name": "show",
6581
+ "allowNo": false,
6582
+ "type": "boolean"
6583
+ }
6584
+ },
6585
+ "hasDynamicHelp": false,
6586
+ "hiddenAliases": [],
6587
+ "id": "project:configure",
6588
+ "pluginAlias": "@proletariat/cli",
6589
+ "pluginName": "@proletariat/cli",
6590
+ "pluginType": "core",
6591
+ "strict": true,
6592
+ "isESM": true,
6593
+ "relativePath": [
6594
+ "dist",
6595
+ "commands",
6596
+ "project",
6597
+ "configure.js"
6598
+ ]
6599
+ },
6199
6600
  "pr:checks": {
6200
6601
  "aliases": [],
6201
6602
  "args": {
@@ -6749,72 +7150,13 @@
6749
7150
  "description": "Ticket ID to check (alternative to positional arg)",
6750
7151
  "name": "ticket",
6751
7152
  "hasDynamicHelp": false,
6752
- "multiple": false,
6753
- "type": "option"
6754
- }
6755
- },
6756
- "hasDynamicHelp": false,
6757
- "hiddenAliases": [],
6758
- "id": "pr:status",
6759
- "pluginAlias": "@proletariat/cli",
6760
- "pluginName": "@proletariat/cli",
6761
- "pluginType": "core",
6762
- "strict": true,
6763
- "isESM": true,
6764
- "relativePath": [
6765
- "dist",
6766
- "commands",
6767
- "pr",
6768
- "status.js"
6769
- ]
6770
- },
6771
- "project:configure": {
6772
- "aliases": [],
6773
- "args": {},
6774
- "description": "Configure workflow column mapping for a project",
6775
- "examples": [
6776
- "<%= config.bin %> <%= command.id %> --workflow",
6777
- "<%= config.bin %> <%= command.id %> --workflow --show"
6778
- ],
6779
- "flags": {
6780
- "project": {
6781
- "char": "P",
6782
- "description": "Project ID (uses first project if only one exists)",
6783
- "name": "project",
6784
- "hasDynamicHelp": false,
6785
- "multiple": false,
6786
- "type": "option"
6787
- },
6788
- "json": {
6789
- "description": "Output as JSON for AI agents/scripts",
6790
- "name": "json",
6791
- "allowNo": false,
6792
- "type": "boolean"
6793
- },
6794
- "machine": {
6795
- "char": "m",
6796
- "description": "Output as JSON for AI agents/scripts",
6797
- "name": "machine",
6798
- "allowNo": false,
6799
- "type": "boolean"
6800
- },
6801
- "workflow": {
6802
- "char": "w",
6803
- "description": "Configure workflow column mapping",
6804
- "name": "workflow",
6805
- "allowNo": false,
6806
- "type": "boolean"
6807
- },
6808
- "show": {
6809
- "description": "Show current workflow mapping without prompting",
6810
- "name": "show",
6811
- "allowNo": false,
6812
- "type": "boolean"
7153
+ "multiple": false,
7154
+ "type": "option"
6813
7155
  }
6814
7156
  },
6815
7157
  "hasDynamicHelp": false,
6816
7158
  "hiddenAliases": [],
6817
- "id": "project:configure",
7159
+ "id": "pr:status",
6818
7160
  "pluginAlias": "@proletariat/cli",
6819
7161
  "pluginName": "@proletariat/cli",
6820
7162
  "pluginType": "core",
@@ -6823,8 +7165,8 @@
6823
7165
  "relativePath": [
6824
7166
  "dist",
6825
7167
  "commands",
6826
- "project",
6827
- "configure.js"
7168
+ "pr",
7169
+ "status.js"
6828
7170
  ]
6829
7171
  },
6830
7172
  "qa": {
@@ -9021,6 +9363,59 @@
9021
9363
  "stop.js"
9022
9364
  ]
9023
9365
  },
9366
+ "terminal:title": {
9367
+ "aliases": [],
9368
+ "args": {
9369
+ "title": {
9370
+ "description": "Title to set for the terminal tab/window",
9371
+ "name": "title",
9372
+ "required": false
9373
+ }
9374
+ },
9375
+ "description": "Set the terminal tab/window title",
9376
+ "examples": [
9377
+ "<%= config.bin %> <%= command.id %> \"My Custom Name\"",
9378
+ "<%= config.bin %> <%= command.id %> # Interactive prompt",
9379
+ "<%= config.bin %> <%= command.id %> --reset",
9380
+ "<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
9381
+ ],
9382
+ "flags": {
9383
+ "reset": {
9384
+ "char": "r",
9385
+ "description": "Reset terminal title to default",
9386
+ "name": "reset",
9387
+ "allowNo": false,
9388
+ "type": "boolean"
9389
+ },
9390
+ "json": {
9391
+ "description": "Output as JSON for AI agents/scripts",
9392
+ "name": "json",
9393
+ "allowNo": false,
9394
+ "type": "boolean"
9395
+ },
9396
+ "machine": {
9397
+ "char": "m",
9398
+ "description": "Output as JSON for AI agents/scripts",
9399
+ "name": "machine",
9400
+ "allowNo": false,
9401
+ "type": "boolean"
9402
+ }
9403
+ },
9404
+ "hasDynamicHelp": false,
9405
+ "hiddenAliases": [],
9406
+ "id": "terminal:title",
9407
+ "pluginAlias": "@proletariat/cli",
9408
+ "pluginName": "@proletariat/cli",
9409
+ "pluginType": "core",
9410
+ "strict": true,
9411
+ "isESM": true,
9412
+ "relativePath": [
9413
+ "dist",
9414
+ "commands",
9415
+ "terminal",
9416
+ "title.js"
9417
+ ]
9418
+ },
9024
9419
  "telemetry:disable": {
9025
9420
  "aliases": [],
9026
9421
  "args": {},
@@ -9174,30 +9569,209 @@
9174
9569
  "status.js"
9175
9570
  ]
9176
9571
  },
9177
- "terminal:title": {
9572
+ "theme:add-names": {
9178
9573
  "aliases": [],
9179
9574
  "args": {
9180
- "title": {
9181
- "description": "Title to set for the terminal tab/window",
9182
- "name": "title",
9575
+ "theme": {
9576
+ "description": "Theme ID",
9577
+ "name": "theme",
9578
+ "required": true
9579
+ },
9580
+ "names": {
9581
+ "description": "Names to add to the theme (space-separated)",
9582
+ "name": "names",
9583
+ "required": false
9584
+ }
9585
+ },
9586
+ "description": "Add names to a theme",
9587
+ "examples": [
9588
+ "<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
9589
+ "<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
9590
+ ],
9591
+ "flags": {
9592
+ "json": {
9593
+ "description": "Output as JSON for AI agents/scripts",
9594
+ "name": "json",
9595
+ "allowNo": false,
9596
+ "type": "boolean"
9597
+ },
9598
+ "machine": {
9599
+ "char": "m",
9600
+ "description": "Output as JSON for AI agents/scripts",
9601
+ "name": "machine",
9602
+ "allowNo": false,
9603
+ "type": "boolean"
9604
+ }
9605
+ },
9606
+ "hasDynamicHelp": false,
9607
+ "hiddenAliases": [],
9608
+ "id": "theme:add-names",
9609
+ "pluginAlias": "@proletariat/cli",
9610
+ "pluginName": "@proletariat/cli",
9611
+ "pluginType": "core",
9612
+ "strict": false,
9613
+ "enableJsonFlag": false,
9614
+ "isESM": true,
9615
+ "relativePath": [
9616
+ "dist",
9617
+ "commands",
9618
+ "theme",
9619
+ "add-names.js"
9620
+ ]
9621
+ },
9622
+ "theme:create": {
9623
+ "aliases": [],
9624
+ "args": {
9625
+ "name": {
9626
+ "description": "Theme name (used as ID, lowercase with hyphens)",
9627
+ "name": "name",
9628
+ "required": true
9629
+ }
9630
+ },
9631
+ "description": "Create a custom agent theme",
9632
+ "examples": [
9633
+ "<%= config.bin %> <%= command.id %> greek-gods",
9634
+ "<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
9635
+ "<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
9636
+ ],
9637
+ "flags": {
9638
+ "json": {
9639
+ "description": "Output as JSON for AI agents/scripts",
9640
+ "name": "json",
9641
+ "allowNo": false,
9642
+ "type": "boolean"
9643
+ },
9644
+ "machine": {
9645
+ "char": "m",
9646
+ "description": "Output as JSON for AI agents/scripts",
9647
+ "name": "machine",
9648
+ "allowNo": false,
9649
+ "type": "boolean"
9650
+ },
9651
+ "description": {
9652
+ "char": "d",
9653
+ "description": "Theme description",
9654
+ "name": "description",
9655
+ "hasDynamicHelp": false,
9656
+ "multiple": false,
9657
+ "type": "option"
9658
+ },
9659
+ "display-name": {
9660
+ "description": "Display name (defaults to formatted name)",
9661
+ "name": "display-name",
9662
+ "hasDynamicHelp": false,
9663
+ "multiple": false,
9664
+ "type": "option"
9665
+ }
9666
+ },
9667
+ "hasDynamicHelp": false,
9668
+ "hiddenAliases": [],
9669
+ "id": "theme:create",
9670
+ "pluginAlias": "@proletariat/cli",
9671
+ "pluginName": "@proletariat/cli",
9672
+ "pluginType": "core",
9673
+ "strict": true,
9674
+ "enableJsonFlag": false,
9675
+ "isESM": true,
9676
+ "relativePath": [
9677
+ "dist",
9678
+ "commands",
9679
+ "theme",
9680
+ "create.js"
9681
+ ]
9682
+ },
9683
+ "theme": {
9684
+ "aliases": [],
9685
+ "args": {},
9686
+ "description": "Manage agent naming themes",
9687
+ "examples": [
9688
+ "<%= config.bin %> <%= command.id %> list",
9689
+ "<%= config.bin %> <%= command.id %> create greek-gods",
9690
+ "<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
9691
+ ],
9692
+ "flags": {
9693
+ "json": {
9694
+ "description": "Output as JSON for AI agents/scripts",
9695
+ "name": "json",
9696
+ "allowNo": false,
9697
+ "type": "boolean"
9698
+ },
9699
+ "machine": {
9700
+ "char": "m",
9701
+ "description": "Output as JSON for AI agents/scripts",
9702
+ "name": "machine",
9703
+ "allowNo": false,
9704
+ "type": "boolean"
9705
+ }
9706
+ },
9707
+ "hasDynamicHelp": false,
9708
+ "hiddenAliases": [],
9709
+ "id": "theme",
9710
+ "pluginAlias": "@proletariat/cli",
9711
+ "pluginName": "@proletariat/cli",
9712
+ "pluginType": "core",
9713
+ "strict": true,
9714
+ "isESM": true,
9715
+ "relativePath": [
9716
+ "dist",
9717
+ "commands",
9718
+ "theme",
9719
+ "index.js"
9720
+ ]
9721
+ },
9722
+ "theme:list": {
9723
+ "aliases": [],
9724
+ "args": {},
9725
+ "description": "List available agent themes",
9726
+ "examples": [
9727
+ "<%= config.bin %> <%= command.id %>"
9728
+ ],
9729
+ "flags": {
9730
+ "json": {
9731
+ "description": "Output as JSON for AI agents/scripts",
9732
+ "name": "json",
9733
+ "allowNo": false,
9734
+ "type": "boolean"
9735
+ },
9736
+ "machine": {
9737
+ "char": "m",
9738
+ "description": "Output as JSON for AI agents/scripts",
9739
+ "name": "machine",
9740
+ "allowNo": false,
9741
+ "type": "boolean"
9742
+ }
9743
+ },
9744
+ "hasDynamicHelp": false,
9745
+ "hiddenAliases": [],
9746
+ "id": "theme:list",
9747
+ "pluginAlias": "@proletariat/cli",
9748
+ "pluginName": "@proletariat/cli",
9749
+ "pluginType": "core",
9750
+ "strict": true,
9751
+ "enableJsonFlag": false,
9752
+ "isESM": true,
9753
+ "relativePath": [
9754
+ "dist",
9755
+ "commands",
9756
+ "theme",
9757
+ "list.js"
9758
+ ]
9759
+ },
9760
+ "theme:set": {
9761
+ "aliases": [],
9762
+ "args": {
9763
+ "theme": {
9764
+ "description": "Theme ID to set as active",
9765
+ "name": "theme",
9183
9766
  "required": false
9184
9767
  }
9185
9768
  },
9186
- "description": "Set the terminal tab/window title",
9769
+ "description": "Set the active theme for this workspace",
9187
9770
  "examples": [
9188
- "<%= config.bin %> <%= command.id %> \"My Custom Name\"",
9189
- "<%= config.bin %> <%= command.id %> # Interactive prompt",
9190
- "<%= config.bin %> <%= command.id %> --reset",
9191
- "<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
9771
+ "<%= config.bin %> <%= command.id %> billionaires",
9772
+ "<%= config.bin %> <%= command.id %>"
9192
9773
  ],
9193
9774
  "flags": {
9194
- "reset": {
9195
- "char": "r",
9196
- "description": "Reset terminal title to default",
9197
- "name": "reset",
9198
- "allowNo": false,
9199
- "type": "boolean"
9200
- },
9201
9775
  "json": {
9202
9776
  "description": "Output as JSON for AI agents/scripts",
9203
9777
  "name": "json",
@@ -9214,7 +9788,7 @@
9214
9788
  },
9215
9789
  "hasDynamicHelp": false,
9216
9790
  "hiddenAliases": [],
9217
- "id": "terminal:title",
9791
+ "id": "theme:set",
9218
9792
  "pluginAlias": "@proletariat/cli",
9219
9793
  "pluginName": "@proletariat/cli",
9220
9794
  "pluginType": "core",
@@ -9223,8 +9797,9 @@
9223
9797
  "relativePath": [
9224
9798
  "dist",
9225
9799
  "commands",
9226
- "terminal",
9227
- "title.js"
9800
+ "agent",
9801
+ "themes",
9802
+ "set.js"
9228
9803
  ]
9229
9804
  },
9230
9805
  "ticket:create": {
@@ -10101,239 +10676,6 @@
10101
10676
  "update.js"
10102
10677
  ]
10103
10678
  },
10104
- "theme:add-names": {
10105
- "aliases": [],
10106
- "args": {
10107
- "theme": {
10108
- "description": "Theme ID",
10109
- "name": "theme",
10110
- "required": true
10111
- },
10112
- "names": {
10113
- "description": "Names to add to the theme (space-separated)",
10114
- "name": "names",
10115
- "required": false
10116
- }
10117
- },
10118
- "description": "Add names to a theme",
10119
- "examples": [
10120
- "<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
10121
- "<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
10122
- ],
10123
- "flags": {
10124
- "json": {
10125
- "description": "Output as JSON for AI agents/scripts",
10126
- "name": "json",
10127
- "allowNo": false,
10128
- "type": "boolean"
10129
- },
10130
- "machine": {
10131
- "char": "m",
10132
- "description": "Output as JSON for AI agents/scripts",
10133
- "name": "machine",
10134
- "allowNo": false,
10135
- "type": "boolean"
10136
- }
10137
- },
10138
- "hasDynamicHelp": false,
10139
- "hiddenAliases": [],
10140
- "id": "theme:add-names",
10141
- "pluginAlias": "@proletariat/cli",
10142
- "pluginName": "@proletariat/cli",
10143
- "pluginType": "core",
10144
- "strict": false,
10145
- "enableJsonFlag": false,
10146
- "isESM": true,
10147
- "relativePath": [
10148
- "dist",
10149
- "commands",
10150
- "theme",
10151
- "add-names.js"
10152
- ]
10153
- },
10154
- "theme:create": {
10155
- "aliases": [],
10156
- "args": {
10157
- "name": {
10158
- "description": "Theme name (used as ID, lowercase with hyphens)",
10159
- "name": "name",
10160
- "required": true
10161
- }
10162
- },
10163
- "description": "Create a custom agent theme",
10164
- "examples": [
10165
- "<%= config.bin %> <%= command.id %> greek-gods",
10166
- "<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
10167
- "<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
10168
- ],
10169
- "flags": {
10170
- "json": {
10171
- "description": "Output as JSON for AI agents/scripts",
10172
- "name": "json",
10173
- "allowNo": false,
10174
- "type": "boolean"
10175
- },
10176
- "machine": {
10177
- "char": "m",
10178
- "description": "Output as JSON for AI agents/scripts",
10179
- "name": "machine",
10180
- "allowNo": false,
10181
- "type": "boolean"
10182
- },
10183
- "description": {
10184
- "char": "d",
10185
- "description": "Theme description",
10186
- "name": "description",
10187
- "hasDynamicHelp": false,
10188
- "multiple": false,
10189
- "type": "option"
10190
- },
10191
- "display-name": {
10192
- "description": "Display name (defaults to formatted name)",
10193
- "name": "display-name",
10194
- "hasDynamicHelp": false,
10195
- "multiple": false,
10196
- "type": "option"
10197
- }
10198
- },
10199
- "hasDynamicHelp": false,
10200
- "hiddenAliases": [],
10201
- "id": "theme:create",
10202
- "pluginAlias": "@proletariat/cli",
10203
- "pluginName": "@proletariat/cli",
10204
- "pluginType": "core",
10205
- "strict": true,
10206
- "enableJsonFlag": false,
10207
- "isESM": true,
10208
- "relativePath": [
10209
- "dist",
10210
- "commands",
10211
- "theme",
10212
- "create.js"
10213
- ]
10214
- },
10215
- "theme": {
10216
- "aliases": [],
10217
- "args": {},
10218
- "description": "Manage agent naming themes",
10219
- "examples": [
10220
- "<%= config.bin %> <%= command.id %> list",
10221
- "<%= config.bin %> <%= command.id %> create greek-gods",
10222
- "<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
10223
- ],
10224
- "flags": {
10225
- "json": {
10226
- "description": "Output as JSON for AI agents/scripts",
10227
- "name": "json",
10228
- "allowNo": false,
10229
- "type": "boolean"
10230
- },
10231
- "machine": {
10232
- "char": "m",
10233
- "description": "Output as JSON for AI agents/scripts",
10234
- "name": "machine",
10235
- "allowNo": false,
10236
- "type": "boolean"
10237
- }
10238
- },
10239
- "hasDynamicHelp": false,
10240
- "hiddenAliases": [],
10241
- "id": "theme",
10242
- "pluginAlias": "@proletariat/cli",
10243
- "pluginName": "@proletariat/cli",
10244
- "pluginType": "core",
10245
- "strict": true,
10246
- "isESM": true,
10247
- "relativePath": [
10248
- "dist",
10249
- "commands",
10250
- "theme",
10251
- "index.js"
10252
- ]
10253
- },
10254
- "theme:list": {
10255
- "aliases": [],
10256
- "args": {},
10257
- "description": "List available agent themes",
10258
- "examples": [
10259
- "<%= config.bin %> <%= command.id %>"
10260
- ],
10261
- "flags": {
10262
- "json": {
10263
- "description": "Output as JSON for AI agents/scripts",
10264
- "name": "json",
10265
- "allowNo": false,
10266
- "type": "boolean"
10267
- },
10268
- "machine": {
10269
- "char": "m",
10270
- "description": "Output as JSON for AI agents/scripts",
10271
- "name": "machine",
10272
- "allowNo": false,
10273
- "type": "boolean"
10274
- }
10275
- },
10276
- "hasDynamicHelp": false,
10277
- "hiddenAliases": [],
10278
- "id": "theme:list",
10279
- "pluginAlias": "@proletariat/cli",
10280
- "pluginName": "@proletariat/cli",
10281
- "pluginType": "core",
10282
- "strict": true,
10283
- "enableJsonFlag": false,
10284
- "isESM": true,
10285
- "relativePath": [
10286
- "dist",
10287
- "commands",
10288
- "theme",
10289
- "list.js"
10290
- ]
10291
- },
10292
- "theme:set": {
10293
- "aliases": [],
10294
- "args": {
10295
- "theme": {
10296
- "description": "Theme ID to set as active",
10297
- "name": "theme",
10298
- "required": false
10299
- }
10300
- },
10301
- "description": "Set the active theme for this workspace",
10302
- "examples": [
10303
- "<%= config.bin %> <%= command.id %> billionaires",
10304
- "<%= config.bin %> <%= command.id %>"
10305
- ],
10306
- "flags": {
10307
- "json": {
10308
- "description": "Output as JSON for AI agents/scripts",
10309
- "name": "json",
10310
- "allowNo": false,
10311
- "type": "boolean"
10312
- },
10313
- "machine": {
10314
- "char": "m",
10315
- "description": "Output as JSON for AI agents/scripts",
10316
- "name": "machine",
10317
- "allowNo": false,
10318
- "type": "boolean"
10319
- }
10320
- },
10321
- "hasDynamicHelp": false,
10322
- "hiddenAliases": [],
10323
- "id": "theme:set",
10324
- "pluginAlias": "@proletariat/cli",
10325
- "pluginName": "@proletariat/cli",
10326
- "pluginType": "core",
10327
- "strict": true,
10328
- "isESM": true,
10329
- "relativePath": [
10330
- "dist",
10331
- "commands",
10332
- "agent",
10333
- "themes",
10334
- "set.js"
10335
- ]
10336
- },
10337
10679
  "tools:add": {
10338
10680
  "aliases": [],
10339
10681
  "args": {
@@ -14776,5 +15118,5 @@
14776
15118
  ]
14777
15119
  }
14778
15120
  },
14779
- "version": "0.3.111"
15121
+ "version": "0.3.113"
14780
15122
  }