@proletariat/cli 0.3.112 → 0.3.114

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 (47) hide show
  1. package/dist/commands/orchestrate/index.js +11 -2
  2. package/dist/commands/orchestrate/index.js.map +1 -1
  3. package/dist/commands/pr/merge.js +44 -80
  4. package/dist/commands/pr/merge.js.map +1 -1
  5. package/dist/commands/work/start.js +30 -0
  6. package/dist/commands/work/start.js.map +1 -1
  7. package/dist/hooks/init.js +14 -1
  8. package/dist/hooks/init.js.map +1 -1
  9. package/dist/lib/events/events.d.ts +19 -0
  10. package/dist/lib/execution/devcontainer.js +26 -2
  11. package/dist/lib/execution/devcontainer.js.map +1 -1
  12. package/dist/lib/execution/prompt-watcher.d.ts +120 -0
  13. package/dist/lib/execution/prompt-watcher.js +222 -0
  14. package/dist/lib/execution/prompt-watcher.js.map +1 -0
  15. package/dist/lib/execution/runners/devcontainer-tmux.js +14 -0
  16. package/dist/lib/execution/runners/devcontainer-tmux.js.map +1 -1
  17. package/dist/lib/execution/runners/devcontainer.js +5 -1
  18. package/dist/lib/execution/runners/devcontainer.js.map +1 -1
  19. package/dist/lib/execution/runners/docker-credentials.d.ts +13 -0
  20. package/dist/lib/execution/runners/docker-credentials.js +55 -0
  21. package/dist/lib/execution/runners/docker-credentials.js.map +1 -1
  22. package/dist/lib/execution/runners/docker-management.d.ts +7 -0
  23. package/dist/lib/execution/runners/docker-management.js +38 -4
  24. package/dist/lib/execution/runners/docker-management.js.map +1 -1
  25. package/dist/lib/execution/runners/shared.d.ts +2 -2
  26. package/dist/lib/execution/runners/shared.js +2 -2
  27. package/dist/lib/execution/runners/shared.js.map +1 -1
  28. package/dist/lib/execution/spawner.js +31 -0
  29. package/dist/lib/execution/spawner.js.map +1 -1
  30. package/dist/lib/orchestrate/index.d.ts +1 -1
  31. package/dist/lib/orchestrate/index.js +1 -1
  32. package/dist/lib/orchestrate/index.js.map +1 -1
  33. package/dist/lib/orchestrate/llm-agent.d.ts +7 -0
  34. package/dist/lib/orchestrate/llm-agent.js +48 -1
  35. package/dist/lib/orchestrate/llm-agent.js.map +1 -1
  36. package/dist/lib/pr/index.d.ts +9 -0
  37. package/dist/lib/pr/index.js +46 -0
  38. package/dist/lib/pr/index.js.map +1 -1
  39. package/dist/lib/reconcile/index.d.ts +7 -2
  40. package/dist/lib/reconcile/index.js +130 -8
  41. package/dist/lib/reconcile/index.js.map +1 -1
  42. package/dist/lib/reconcile/types.d.ts +18 -1
  43. package/dist/lib/update-check.d.ts +39 -0
  44. package/dist/lib/update-check.js +139 -0
  45. package/dist/lib/update-check.js.map +1 -1
  46. package/oclif.manifest.json +675 -675
  47. package/package.json +1 -1
@@ -2046,254 +2046,6 @@
2046
2046
  "sync.js"
2047
2047
  ]
2048
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
- },
2109
- "caffeinate": {
2110
- "aliases": [],
2111
- "args": {},
2112
- "description": "Manage caffeinate to keep macOS awake",
2113
- "examples": [
2114
- "<%= config.bin %> caffeinate",
2115
- "<%= config.bin %> caffeinate start",
2116
- "<%= config.bin %> caffeinate status",
2117
- "<%= config.bin %> caffeinate stop",
2118
- "<%= config.bin %> caffeinate start --duration 3600",
2119
- "<%= config.bin %> caffeinate start --display"
2120
- ],
2121
- "flags": {
2122
- "json": {
2123
- "description": "Output as JSON for AI agents/scripts",
2124
- "name": "json",
2125
- "allowNo": false,
2126
- "type": "boolean"
2127
- },
2128
- "machine": {
2129
- "char": "m",
2130
- "description": "Output as JSON for AI agents/scripts",
2131
- "name": "machine",
2132
- "allowNo": false,
2133
- "type": "boolean"
2134
- }
2135
- },
2136
- "hasDynamicHelp": false,
2137
- "hiddenAliases": [],
2138
- "id": "caffeinate",
2139
- "pluginAlias": "@proletariat/cli",
2140
- "pluginName": "@proletariat/cli",
2141
- "pluginType": "core",
2142
- "strict": true,
2143
- "enableJsonFlag": false,
2144
- "isESM": true,
2145
- "relativePath": [
2146
- "dist",
2147
- "commands",
2148
- "caffeinate",
2149
- "index.js"
2150
- ]
2151
- },
2152
- "caffeinate:start": {
2153
- "aliases": [],
2154
- "args": {},
2155
- "description": "Start caffeinate to prevent macOS from sleeping",
2156
- "examples": [
2157
- "<%= config.bin %> caffeinate start",
2158
- "<%= config.bin %> caffeinate start --duration 3600",
2159
- "<%= config.bin %> caffeinate start --display"
2160
- ],
2161
- "flags": {
2162
- "json": {
2163
- "description": "Output as JSON for AI agents/scripts",
2164
- "name": "json",
2165
- "allowNo": false,
2166
- "type": "boolean"
2167
- },
2168
- "machine": {
2169
- "char": "m",
2170
- "description": "Output as JSON for AI agents/scripts",
2171
- "name": "machine",
2172
- "allowNo": false,
2173
- "type": "boolean"
2174
- },
2175
- "duration": {
2176
- "char": "t",
2177
- "description": "Duration in seconds (default: indefinite)",
2178
- "name": "duration",
2179
- "hasDynamicHelp": false,
2180
- "multiple": false,
2181
- "type": "option"
2182
- },
2183
- "display": {
2184
- "char": "d",
2185
- "description": "Prevent display from sleeping (adds -d flag)",
2186
- "name": "display",
2187
- "allowNo": false,
2188
- "type": "boolean"
2189
- },
2190
- "idle": {
2191
- "char": "i",
2192
- "description": "Prevent idle sleep (adds -i flag)",
2193
- "name": "idle",
2194
- "allowNo": false,
2195
- "type": "boolean"
2196
- },
2197
- "system": {
2198
- "char": "s",
2199
- "description": "Prevent system sleep (adds -s flag)",
2200
- "name": "system",
2201
- "allowNo": false,
2202
- "type": "boolean"
2203
- }
2204
- },
2205
- "hasDynamicHelp": false,
2206
- "hiddenAliases": [],
2207
- "id": "caffeinate:start",
2208
- "pluginAlias": "@proletariat/cli",
2209
- "pluginName": "@proletariat/cli",
2210
- "pluginType": "core",
2211
- "strict": true,
2212
- "enableJsonFlag": false,
2213
- "isESM": true,
2214
- "relativePath": [
2215
- "dist",
2216
- "commands",
2217
- "caffeinate",
2218
- "start.js"
2219
- ]
2220
- },
2221
- "caffeinate:status": {
2222
- "aliases": [],
2223
- "args": {},
2224
- "description": "Check if caffeinate is running",
2225
- "examples": [
2226
- "<%= config.bin %> caffeinate status"
2227
- ],
2228
- "flags": {
2229
- "json": {
2230
- "description": "Output as JSON for AI agents/scripts",
2231
- "name": "json",
2232
- "allowNo": false,
2233
- "type": "boolean"
2234
- },
2235
- "machine": {
2236
- "char": "m",
2237
- "description": "Output as JSON for AI agents/scripts",
2238
- "name": "machine",
2239
- "allowNo": false,
2240
- "type": "boolean"
2241
- }
2242
- },
2243
- "hasDynamicHelp": false,
2244
- "hiddenAliases": [],
2245
- "id": "caffeinate:status",
2246
- "pluginAlias": "@proletariat/cli",
2247
- "pluginName": "@proletariat/cli",
2248
- "pluginType": "core",
2249
- "strict": true,
2250
- "enableJsonFlag": false,
2251
- "isESM": true,
2252
- "relativePath": [
2253
- "dist",
2254
- "commands",
2255
- "caffeinate",
2256
- "status.js"
2257
- ]
2258
- },
2259
- "caffeinate:stop": {
2260
- "aliases": [],
2261
- "args": {},
2262
- "description": "Stop the managed caffeinate process",
2263
- "examples": [
2264
- "<%= config.bin %> caffeinate stop"
2265
- ],
2266
- "flags": {
2267
- "json": {
2268
- "description": "Output as JSON for AI agents/scripts",
2269
- "name": "json",
2270
- "allowNo": false,
2271
- "type": "boolean"
2272
- },
2273
- "machine": {
2274
- "char": "m",
2275
- "description": "Output as JSON for AI agents/scripts",
2276
- "name": "machine",
2277
- "allowNo": false,
2278
- "type": "boolean"
2279
- }
2280
- },
2281
- "hasDynamicHelp": false,
2282
- "hiddenAliases": [],
2283
- "id": "caffeinate:stop",
2284
- "pluginAlias": "@proletariat/cli",
2285
- "pluginName": "@proletariat/cli",
2286
- "pluginType": "core",
2287
- "strict": true,
2288
- "enableJsonFlag": false,
2289
- "isESM": true,
2290
- "relativePath": [
2291
- "dist",
2292
- "commands",
2293
- "caffeinate",
2294
- "stop.js"
2295
- ]
2296
- },
2297
2049
  "branch:create": {
2298
2050
  "aliases": [],
2299
2051
  "args": {
@@ -2650,16 +2402,264 @@
2650
2402
  "where.js"
2651
2403
  ]
2652
2404
  },
2653
- "claude": {
2405
+ "autocomplete:setup": {
2654
2406
  "aliases": [],
2655
2407
  "args": {},
2656
- "description": "Quick launch Claude Code for ad-hoc sessions (works anywhere)",
2408
+ "description": "Auto-detect shell and set up autocomplete",
2657
2409
  "examples": [
2658
2410
  "<%= config.bin %> <%= command.id %>",
2659
- "<%= config.bin %> <%= command.id %> --slug debug-auth --permission-mode danger",
2660
- "<%= config.bin %> <%= command.id %> --environment devcontainer --display-mode background",
2661
- "<%= config.bin %> <%= command.id %> --prompt \"help me debug this function\""
2662
- ],
2411
+ "<%= config.bin %> <%= command.id %> --install",
2412
+ "<%= config.bin %> <%= command.id %> --shell zsh",
2413
+ "<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
2414
+ ],
2415
+ "flags": {
2416
+ "json": {
2417
+ "description": "Output as JSON for AI agents/scripts",
2418
+ "name": "json",
2419
+ "allowNo": false,
2420
+ "type": "boolean"
2421
+ },
2422
+ "machine": {
2423
+ "char": "m",
2424
+ "description": "Output as JSON for AI agents/scripts",
2425
+ "name": "machine",
2426
+ "allowNo": false,
2427
+ "type": "boolean"
2428
+ },
2429
+ "install": {
2430
+ "char": "i",
2431
+ "description": "Automatically install to shell config file",
2432
+ "name": "install",
2433
+ "allowNo": false,
2434
+ "type": "boolean"
2435
+ },
2436
+ "shell": {
2437
+ "char": "s",
2438
+ "description": "Override shell detection (zsh, bash, powershell)",
2439
+ "name": "shell",
2440
+ "hasDynamicHelp": false,
2441
+ "multiple": false,
2442
+ "options": [
2443
+ "zsh",
2444
+ "bash",
2445
+ "powershell"
2446
+ ],
2447
+ "type": "option"
2448
+ }
2449
+ },
2450
+ "hasDynamicHelp": false,
2451
+ "hiddenAliases": [],
2452
+ "id": "autocomplete:setup",
2453
+ "pluginAlias": "@proletariat/cli",
2454
+ "pluginName": "@proletariat/cli",
2455
+ "pluginType": "core",
2456
+ "strict": true,
2457
+ "isESM": true,
2458
+ "relativePath": [
2459
+ "dist",
2460
+ "commands",
2461
+ "autocomplete",
2462
+ "setup.js"
2463
+ ]
2464
+ },
2465
+ "caffeinate": {
2466
+ "aliases": [],
2467
+ "args": {},
2468
+ "description": "Manage caffeinate to keep macOS awake",
2469
+ "examples": [
2470
+ "<%= config.bin %> caffeinate",
2471
+ "<%= config.bin %> caffeinate start",
2472
+ "<%= config.bin %> caffeinate status",
2473
+ "<%= config.bin %> caffeinate stop",
2474
+ "<%= config.bin %> caffeinate start --duration 3600",
2475
+ "<%= config.bin %> caffeinate start --display"
2476
+ ],
2477
+ "flags": {
2478
+ "json": {
2479
+ "description": "Output as JSON for AI agents/scripts",
2480
+ "name": "json",
2481
+ "allowNo": false,
2482
+ "type": "boolean"
2483
+ },
2484
+ "machine": {
2485
+ "char": "m",
2486
+ "description": "Output as JSON for AI agents/scripts",
2487
+ "name": "machine",
2488
+ "allowNo": false,
2489
+ "type": "boolean"
2490
+ }
2491
+ },
2492
+ "hasDynamicHelp": false,
2493
+ "hiddenAliases": [],
2494
+ "id": "caffeinate",
2495
+ "pluginAlias": "@proletariat/cli",
2496
+ "pluginName": "@proletariat/cli",
2497
+ "pluginType": "core",
2498
+ "strict": true,
2499
+ "enableJsonFlag": false,
2500
+ "isESM": true,
2501
+ "relativePath": [
2502
+ "dist",
2503
+ "commands",
2504
+ "caffeinate",
2505
+ "index.js"
2506
+ ]
2507
+ },
2508
+ "caffeinate:start": {
2509
+ "aliases": [],
2510
+ "args": {},
2511
+ "description": "Start caffeinate to prevent macOS from sleeping",
2512
+ "examples": [
2513
+ "<%= config.bin %> caffeinate start",
2514
+ "<%= config.bin %> caffeinate start --duration 3600",
2515
+ "<%= config.bin %> caffeinate start --display"
2516
+ ],
2517
+ "flags": {
2518
+ "json": {
2519
+ "description": "Output as JSON for AI agents/scripts",
2520
+ "name": "json",
2521
+ "allowNo": false,
2522
+ "type": "boolean"
2523
+ },
2524
+ "machine": {
2525
+ "char": "m",
2526
+ "description": "Output as JSON for AI agents/scripts",
2527
+ "name": "machine",
2528
+ "allowNo": false,
2529
+ "type": "boolean"
2530
+ },
2531
+ "duration": {
2532
+ "char": "t",
2533
+ "description": "Duration in seconds (default: indefinite)",
2534
+ "name": "duration",
2535
+ "hasDynamicHelp": false,
2536
+ "multiple": false,
2537
+ "type": "option"
2538
+ },
2539
+ "display": {
2540
+ "char": "d",
2541
+ "description": "Prevent display from sleeping (adds -d flag)",
2542
+ "name": "display",
2543
+ "allowNo": false,
2544
+ "type": "boolean"
2545
+ },
2546
+ "idle": {
2547
+ "char": "i",
2548
+ "description": "Prevent idle sleep (adds -i flag)",
2549
+ "name": "idle",
2550
+ "allowNo": false,
2551
+ "type": "boolean"
2552
+ },
2553
+ "system": {
2554
+ "char": "s",
2555
+ "description": "Prevent system sleep (adds -s flag)",
2556
+ "name": "system",
2557
+ "allowNo": false,
2558
+ "type": "boolean"
2559
+ }
2560
+ },
2561
+ "hasDynamicHelp": false,
2562
+ "hiddenAliases": [],
2563
+ "id": "caffeinate:start",
2564
+ "pluginAlias": "@proletariat/cli",
2565
+ "pluginName": "@proletariat/cli",
2566
+ "pluginType": "core",
2567
+ "strict": true,
2568
+ "enableJsonFlag": false,
2569
+ "isESM": true,
2570
+ "relativePath": [
2571
+ "dist",
2572
+ "commands",
2573
+ "caffeinate",
2574
+ "start.js"
2575
+ ]
2576
+ },
2577
+ "caffeinate:status": {
2578
+ "aliases": [],
2579
+ "args": {},
2580
+ "description": "Check if caffeinate is running",
2581
+ "examples": [
2582
+ "<%= config.bin %> caffeinate status"
2583
+ ],
2584
+ "flags": {
2585
+ "json": {
2586
+ "description": "Output as JSON for AI agents/scripts",
2587
+ "name": "json",
2588
+ "allowNo": false,
2589
+ "type": "boolean"
2590
+ },
2591
+ "machine": {
2592
+ "char": "m",
2593
+ "description": "Output as JSON for AI agents/scripts",
2594
+ "name": "machine",
2595
+ "allowNo": false,
2596
+ "type": "boolean"
2597
+ }
2598
+ },
2599
+ "hasDynamicHelp": false,
2600
+ "hiddenAliases": [],
2601
+ "id": "caffeinate:status",
2602
+ "pluginAlias": "@proletariat/cli",
2603
+ "pluginName": "@proletariat/cli",
2604
+ "pluginType": "core",
2605
+ "strict": true,
2606
+ "enableJsonFlag": false,
2607
+ "isESM": true,
2608
+ "relativePath": [
2609
+ "dist",
2610
+ "commands",
2611
+ "caffeinate",
2612
+ "status.js"
2613
+ ]
2614
+ },
2615
+ "caffeinate:stop": {
2616
+ "aliases": [],
2617
+ "args": {},
2618
+ "description": "Stop the managed caffeinate process",
2619
+ "examples": [
2620
+ "<%= config.bin %> caffeinate stop"
2621
+ ],
2622
+ "flags": {
2623
+ "json": {
2624
+ "description": "Output as JSON for AI agents/scripts",
2625
+ "name": "json",
2626
+ "allowNo": false,
2627
+ "type": "boolean"
2628
+ },
2629
+ "machine": {
2630
+ "char": "m",
2631
+ "description": "Output as JSON for AI agents/scripts",
2632
+ "name": "machine",
2633
+ "allowNo": false,
2634
+ "type": "boolean"
2635
+ }
2636
+ },
2637
+ "hasDynamicHelp": false,
2638
+ "hiddenAliases": [],
2639
+ "id": "caffeinate:stop",
2640
+ "pluginAlias": "@proletariat/cli",
2641
+ "pluginName": "@proletariat/cli",
2642
+ "pluginType": "core",
2643
+ "strict": true,
2644
+ "enableJsonFlag": false,
2645
+ "isESM": true,
2646
+ "relativePath": [
2647
+ "dist",
2648
+ "commands",
2649
+ "caffeinate",
2650
+ "stop.js"
2651
+ ]
2652
+ },
2653
+ "claude": {
2654
+ "aliases": [],
2655
+ "args": {},
2656
+ "description": "Quick launch Claude Code for ad-hoc sessions (works anywhere)",
2657
+ "examples": [
2658
+ "<%= config.bin %> <%= command.id %>",
2659
+ "<%= config.bin %> <%= command.id %> --slug debug-auth --permission-mode danger",
2660
+ "<%= config.bin %> <%= command.id %> --environment devcontainer --display-mode background",
2661
+ "<%= config.bin %> <%= command.id %> --prompt \"help me debug this function\""
2662
+ ],
2663
2663
  "flags": {
2664
2664
  "json": {
2665
2665
  "description": "Output as JSON for AI agents/scripts",
@@ -3776,13 +3776,18 @@
3776
3776
  "sync.js"
3777
3777
  ]
3778
3778
  },
3779
- "feedback": {
3779
+ "execution:config": {
3780
3780
  "aliases": [],
3781
3781
  "args": {},
3782
- "description": "Interactive menu for feedback and issue operations",
3782
+ "description": "View and update execution preferences",
3783
3783
  "examples": [
3784
- "<%= config.bin %> <%= command.id %>",
3785
- "<%= config.bin %> <%= command.id %> --action submit"
3784
+ "<%= config.bin %> execution config # Interactive menu",
3785
+ "<%= config.bin %> execution config --json # Output current config as JSON",
3786
+ "<%= config.bin %> execution config --list # Show all settings",
3787
+ "<%= config.bin %> execution config --set defaultEnvironment host",
3788
+ "<%= config.bin %> execution config --set outputMode interactive",
3789
+ "<%= config.bin %> execution config --set permissionMode safe",
3790
+ "<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
3786
3791
  ],
3787
3792
  "flags": {
3788
3793
  "json": {
@@ -3798,45 +3803,53 @@
3798
3803
  "allowNo": false,
3799
3804
  "type": "boolean"
3800
3805
  },
3801
- "action": {
3802
- "char": "a",
3803
- "description": "Action to perform (submit, list, view)",
3804
- "name": "action",
3806
+ "set": {
3807
+ "char": "s",
3808
+ "description": "Set a config value (format: key value)",
3809
+ "name": "set",
3810
+ "hasDynamicHelp": false,
3811
+ "multiple": true,
3812
+ "type": "option"
3813
+ },
3814
+ "list": {
3815
+ "char": "l",
3816
+ "description": "List all configuration values",
3817
+ "name": "list",
3818
+ "allowNo": false,
3819
+ "type": "boolean"
3820
+ },
3821
+ "setting": {
3822
+ "description": "Navigate to a specific setting prompt (for agent navigation)",
3823
+ "name": "setting",
3805
3824
  "hasDynamicHelp": false,
3806
3825
  "multiple": false,
3807
- "options": [
3808
- "submit",
3809
- "list",
3810
- "view"
3811
- ],
3812
3826
  "type": "option"
3813
3827
  }
3814
3828
  },
3815
3829
  "hasDynamicHelp": false,
3816
3830
  "hiddenAliases": [],
3817
- "id": "feedback",
3831
+ "id": "execution:config",
3818
3832
  "pluginAlias": "@proletariat/cli",
3819
3833
  "pluginName": "@proletariat/cli",
3820
3834
  "pluginType": "core",
3821
3835
  "strict": true,
3822
- "enableJsonFlag": false,
3823
3836
  "isESM": true,
3824
3837
  "relativePath": [
3825
3838
  "dist",
3826
3839
  "commands",
3827
- "feedback",
3828
- "index.js"
3840
+ "execution",
3841
+ "config.js"
3829
3842
  ]
3830
3843
  },
3831
- "feedback:list": {
3844
+ "execution": {
3832
3845
  "aliases": [],
3833
3846
  "args": {},
3834
- "description": "List recent feedback issues from the repository",
3847
+ "description": "Single execution operations (view, logs, stop)",
3835
3848
  "examples": [
3836
3849
  "<%= config.bin %> <%= command.id %>",
3837
- "<%= config.bin %> <%= command.id %> --category bug",
3838
- "<%= config.bin %> <%= command.id %> --state closed --limit 10",
3839
- "<%= config.bin %> <%= command.id %> --json"
3850
+ "<%= config.bin %> <%= command.id %> view WORK-001",
3851
+ "<%= config.bin %> <%= command.id %> logs WORK-001",
3852
+ "<%= config.bin %> <%= command.id %> stop WORK-001"
3840
3853
  ],
3841
3854
  "flags": {
3842
3855
  "json": {
@@ -3851,68 +3864,32 @@
3851
3864
  "name": "machine",
3852
3865
  "allowNo": false,
3853
3866
  "type": "boolean"
3854
- },
3855
- "category": {
3856
- "char": "c",
3857
- "description": "Filter by category (bug, feature, general)",
3858
- "name": "category",
3859
- "hasDynamicHelp": false,
3860
- "multiple": false,
3861
- "options": [
3862
- "bug",
3863
- "feature",
3864
- "general"
3865
- ],
3866
- "type": "option"
3867
- },
3868
- "state": {
3869
- "char": "s",
3870
- "description": "Filter by state",
3871
- "name": "state",
3872
- "default": "open",
3873
- "hasDynamicHelp": false,
3874
- "multiple": false,
3875
- "options": [
3876
- "open",
3877
- "closed",
3878
- "all"
3879
- ],
3880
- "type": "option"
3881
- },
3882
- "limit": {
3883
- "char": "l",
3884
- "description": "Maximum number of issues to show",
3885
- "name": "limit",
3886
- "default": 20,
3887
- "hasDynamicHelp": false,
3888
- "multiple": false,
3889
- "type": "option"
3890
3867
  }
3891
3868
  },
3892
3869
  "hasDynamicHelp": false,
3893
3870
  "hiddenAliases": [],
3894
- "id": "feedback:list",
3871
+ "id": "execution",
3895
3872
  "pluginAlias": "@proletariat/cli",
3896
3873
  "pluginName": "@proletariat/cli",
3897
3874
  "pluginType": "core",
3898
3875
  "strict": true,
3899
- "enableJsonFlag": false,
3900
3876
  "isESM": true,
3901
3877
  "relativePath": [
3902
3878
  "dist",
3903
3879
  "commands",
3904
- "feedback",
3905
- "list.js"
3880
+ "execution",
3881
+ "index.js"
3906
3882
  ]
3907
3883
  },
3908
- "feedback:submit": {
3884
+ "execution:list": {
3909
3885
  "aliases": [],
3910
3886
  "args": {},
3911
- "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
3887
+ "description": "List running and recent executions",
3912
3888
  "examples": [
3913
3889
  "<%= config.bin %> <%= command.id %>",
3914
- "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
3915
- "<%= config.bin %> <%= command.id %> --json"
3890
+ "<%= config.bin %> <%= command.id %> --status running",
3891
+ "<%= config.bin %> <%= command.id %> --agent alice",
3892
+ "<%= config.bin %> <%= command.id %> --limit 50"
3916
3893
  ],
3917
3894
  "flags": {
3918
3895
  "json": {
@@ -3928,39 +3905,42 @@
3928
3905
  "allowNo": false,
3929
3906
  "type": "boolean"
3930
3907
  },
3931
- "title": {
3932
- "char": "t",
3933
- "description": "Issue title (one-liner) [required for non-interactive]",
3934
- "name": "title",
3908
+ "status": {
3909
+ "char": "s",
3910
+ "description": "Filter by status",
3911
+ "name": "status",
3935
3912
  "hasDynamicHelp": false,
3936
3913
  "multiple": false,
3914
+ "options": [
3915
+ "starting",
3916
+ "running",
3917
+ "completed",
3918
+ "failed",
3919
+ "stopped"
3920
+ ],
3937
3921
  "type": "option"
3938
3922
  },
3939
- "body": {
3940
- "char": "b",
3941
- "description": "Issue description [required for non-interactive]",
3942
- "name": "body",
3923
+ "agent": {
3924
+ "char": "a",
3925
+ "description": "Filter by agent name",
3926
+ "name": "agent",
3943
3927
  "hasDynamicHelp": false,
3944
3928
  "multiple": false,
3945
3929
  "type": "option"
3946
3930
  },
3947
- "category": {
3948
- "char": "c",
3949
- "description": "Feedback category",
3950
- "name": "category",
3931
+ "limit": {
3932
+ "char": "l",
3933
+ "description": "Number of results",
3934
+ "name": "limit",
3935
+ "default": 20,
3951
3936
  "hasDynamicHelp": false,
3952
3937
  "multiple": false,
3953
- "options": [
3954
- "bug",
3955
- "feature",
3956
- "general"
3957
- ],
3958
3938
  "type": "option"
3959
3939
  }
3960
3940
  },
3961
3941
  "hasDynamicHelp": false,
3962
3942
  "hiddenAliases": [],
3963
- "id": "feedback:submit",
3943
+ "id": "execution:list",
3964
3944
  "pluginAlias": "@proletariat/cli",
3965
3945
  "pluginName": "@proletariat/cli",
3966
3946
  "pluginType": "core",
@@ -3969,23 +3949,25 @@
3969
3949
  "relativePath": [
3970
3950
  "dist",
3971
3951
  "commands",
3972
- "feedback",
3973
- "submit.js"
3952
+ "execution",
3953
+ "list.js"
3974
3954
  ]
3975
3955
  },
3976
- "feedback:view": {
3956
+ "execution:logs": {
3977
3957
  "aliases": [],
3978
3958
  "args": {
3979
- "number": {
3980
- "description": "Issue number to view",
3981
- "name": "number",
3982
- "required": true
3959
+ "id": {
3960
+ "description": "Execution ID - prompts if not provided",
3961
+ "name": "id",
3962
+ "required": false
3983
3963
  }
3984
3964
  },
3985
- "description": "View details of a specific feedback issue",
3965
+ "description": "View execution logs",
3986
3966
  "examples": [
3987
- "<%= config.bin %> <%= command.id %> 123",
3988
- "<%= config.bin %> <%= command.id %> 123 --json"
3967
+ "<%= config.bin %> <%= command.id %> WORK-001",
3968
+ "<%= config.bin %> <%= command.id %> WORK-001 --follow",
3969
+ "<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
3970
+ "<%= config.bin %> <%= command.id %> # Interactive mode"
3989
3971
  ],
3990
3972
  "flags": {
3991
3973
  "json": {
@@ -4000,36 +3982,55 @@
4000
3982
  "name": "machine",
4001
3983
  "allowNo": false,
4002
3984
  "type": "boolean"
3985
+ },
3986
+ "follow": {
3987
+ "char": "f",
3988
+ "description": "Stream logs in real-time",
3989
+ "name": "follow",
3990
+ "allowNo": false,
3991
+ "type": "boolean"
3992
+ },
3993
+ "tail": {
3994
+ "char": "n",
3995
+ "description": "Show last n lines",
3996
+ "name": "tail",
3997
+ "hasDynamicHelp": false,
3998
+ "multiple": false,
3999
+ "type": "option"
4003
4000
  }
4004
4001
  },
4005
4002
  "hasDynamicHelp": false,
4006
4003
  "hiddenAliases": [],
4007
- "id": "feedback:view",
4004
+ "id": "execution:logs",
4008
4005
  "pluginAlias": "@proletariat/cli",
4009
4006
  "pluginName": "@proletariat/cli",
4010
4007
  "pluginType": "core",
4011
4008
  "strict": true,
4012
- "enableJsonFlag": false,
4013
4009
  "isESM": true,
4014
4010
  "relativePath": [
4015
4011
  "dist",
4016
4012
  "commands",
4017
- "feedback",
4018
- "view.js"
4013
+ "execution",
4014
+ "logs.js"
4019
4015
  ]
4020
4016
  },
4021
- "execution:config": {
4017
+ "execution:stop": {
4022
4018
  "aliases": [],
4023
- "args": {},
4024
- "description": "View and update execution preferences",
4019
+ "args": {
4020
+ "id": {
4021
+ "description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
4022
+ "name": "id",
4023
+ "required": false
4024
+ }
4025
+ },
4026
+ "description": "Stop running execution(s)",
4025
4027
  "examples": [
4026
- "<%= config.bin %> execution config # Interactive menu",
4027
- "<%= config.bin %> execution config --json # Output current config as JSON",
4028
- "<%= config.bin %> execution config --list # Show all settings",
4029
- "<%= config.bin %> execution config --set defaultEnvironment host",
4030
- "<%= config.bin %> execution config --set outputMode interactive",
4031
- "<%= config.bin %> execution config --set permissionMode safe",
4032
- "<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
4028
+ "<%= config.bin %> <%= command.id %> WORK-001",
4029
+ "<%= config.bin %> <%= command.id %> WORK-001 --force",
4030
+ "<%= config.bin %> <%= command.id %> # Interactive mode",
4031
+ "<%= config.bin %> <%= command.id %> --all",
4032
+ "<%= config.bin %> <%= command.id %> --all --force",
4033
+ "<%= config.bin %> <%= command.id %> --agent altman"
4033
4034
  ],
4034
4035
  "flags": {
4035
4036
  "json": {
@@ -4045,24 +4046,23 @@
4045
4046
  "allowNo": false,
4046
4047
  "type": "boolean"
4047
4048
  },
4048
- "set": {
4049
- "char": "s",
4050
- "description": "Set a config value (format: key value)",
4051
- "name": "set",
4052
- "hasDynamicHelp": false,
4053
- "multiple": true,
4054
- "type": "option"
4049
+ "force": {
4050
+ "char": "f",
4051
+ "description": "Force kill (SIGKILL instead of SIGTERM)",
4052
+ "name": "force",
4053
+ "allowNo": false,
4054
+ "type": "boolean"
4055
4055
  },
4056
- "list": {
4057
- "char": "l",
4058
- "description": "List all configuration values",
4059
- "name": "list",
4056
+ "all": {
4057
+ "description": "Stop all running executions",
4058
+ "name": "all",
4060
4059
  "allowNo": false,
4061
4060
  "type": "boolean"
4062
4061
  },
4063
- "setting": {
4064
- "description": "Navigate to a specific setting prompt (for agent navigation)",
4065
- "name": "setting",
4062
+ "agent": {
4063
+ "char": "a",
4064
+ "description": "Stop all executions for a specific agent",
4065
+ "name": "agent",
4066
4066
  "hasDynamicHelp": false,
4067
4067
  "multiple": false,
4068
4068
  "type": "option"
@@ -4070,7 +4070,7 @@
4070
4070
  },
4071
4071
  "hasDynamicHelp": false,
4072
4072
  "hiddenAliases": [],
4073
- "id": "execution:config",
4073
+ "id": "execution:stop",
4074
4074
  "pluginAlias": "@proletariat/cli",
4075
4075
  "pluginName": "@proletariat/cli",
4076
4076
  "pluginType": "core",
@@ -4080,18 +4080,22 @@
4080
4080
  "dist",
4081
4081
  "commands",
4082
4082
  "execution",
4083
- "config.js"
4083
+ "stop.js"
4084
4084
  ]
4085
4085
  },
4086
- "execution": {
4086
+ "execution:view": {
4087
4087
  "aliases": [],
4088
- "args": {},
4089
- "description": "Single execution operations (view, logs, stop)",
4088
+ "args": {
4089
+ "id": {
4090
+ "description": "Execution ID - prompts if not provided",
4091
+ "name": "id",
4092
+ "required": false
4093
+ }
4094
+ },
4095
+ "description": "View details of a specific execution",
4090
4096
  "examples": [
4091
- "<%= config.bin %> <%= command.id %>",
4092
- "<%= config.bin %> <%= command.id %> view WORK-001",
4093
- "<%= config.bin %> <%= command.id %> logs WORK-001",
4094
- "<%= config.bin %> <%= command.id %> stop WORK-001"
4097
+ "<%= config.bin %> <%= command.id %> WORK-001",
4098
+ "<%= config.bin %> <%= command.id %> # Interactive mode"
4095
4099
  ],
4096
4100
  "flags": {
4097
4101
  "json": {
@@ -4110,7 +4114,7 @@
4110
4114
  },
4111
4115
  "hasDynamicHelp": false,
4112
4116
  "hiddenAliases": [],
4113
- "id": "execution",
4117
+ "id": "execution:view",
4114
4118
  "pluginAlias": "@proletariat/cli",
4115
4119
  "pluginName": "@proletariat/cli",
4116
4120
  "pluginType": "core",
@@ -4120,18 +4124,16 @@
4120
4124
  "dist",
4121
4125
  "commands",
4122
4126
  "execution",
4123
- "index.js"
4127
+ "view.js"
4124
4128
  ]
4125
4129
  },
4126
- "execution:list": {
4130
+ "feedback": {
4127
4131
  "aliases": [],
4128
4132
  "args": {},
4129
- "description": "List running and recent executions",
4133
+ "description": "Interactive menu for feedback and issue operations",
4130
4134
  "examples": [
4131
4135
  "<%= config.bin %> <%= command.id %>",
4132
- "<%= config.bin %> <%= command.id %> --status running",
4133
- "<%= config.bin %> <%= command.id %> --agent alice",
4134
- "<%= config.bin %> <%= command.id %> --limit 50"
4136
+ "<%= config.bin %> <%= command.id %> --action submit"
4135
4137
  ],
4136
4138
  "flags": {
4137
4139
  "json": {
@@ -4147,69 +4149,45 @@
4147
4149
  "allowNo": false,
4148
4150
  "type": "boolean"
4149
4151
  },
4150
- "status": {
4151
- "char": "s",
4152
- "description": "Filter by status",
4153
- "name": "status",
4152
+ "action": {
4153
+ "char": "a",
4154
+ "description": "Action to perform (submit, list, view)",
4155
+ "name": "action",
4154
4156
  "hasDynamicHelp": false,
4155
4157
  "multiple": false,
4156
4158
  "options": [
4157
- "starting",
4158
- "running",
4159
- "completed",
4160
- "failed",
4161
- "stopped"
4159
+ "submit",
4160
+ "list",
4161
+ "view"
4162
4162
  ],
4163
4163
  "type": "option"
4164
- },
4165
- "agent": {
4166
- "char": "a",
4167
- "description": "Filter by agent name",
4168
- "name": "agent",
4169
- "hasDynamicHelp": false,
4170
- "multiple": false,
4171
- "type": "option"
4172
- },
4173
- "limit": {
4174
- "char": "l",
4175
- "description": "Number of results",
4176
- "name": "limit",
4177
- "default": 20,
4178
- "hasDynamicHelp": false,
4179
- "multiple": false,
4180
- "type": "option"
4181
4164
  }
4182
4165
  },
4183
4166
  "hasDynamicHelp": false,
4184
4167
  "hiddenAliases": [],
4185
- "id": "execution:list",
4168
+ "id": "feedback",
4186
4169
  "pluginAlias": "@proletariat/cli",
4187
4170
  "pluginName": "@proletariat/cli",
4188
4171
  "pluginType": "core",
4189
4172
  "strict": true,
4173
+ "enableJsonFlag": false,
4190
4174
  "isESM": true,
4191
4175
  "relativePath": [
4192
4176
  "dist",
4193
4177
  "commands",
4194
- "execution",
4195
- "list.js"
4196
- ]
4197
- },
4198
- "execution:logs": {
4199
- "aliases": [],
4200
- "args": {
4201
- "id": {
4202
- "description": "Execution ID - prompts if not provided",
4203
- "name": "id",
4204
- "required": false
4205
- }
4206
- },
4207
- "description": "View execution logs",
4178
+ "feedback",
4179
+ "index.js"
4180
+ ]
4181
+ },
4182
+ "feedback:list": {
4183
+ "aliases": [],
4184
+ "args": {},
4185
+ "description": "List recent feedback issues from the repository",
4208
4186
  "examples": [
4209
- "<%= config.bin %> <%= command.id %> WORK-001",
4210
- "<%= config.bin %> <%= command.id %> WORK-001 --follow",
4211
- "<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
4212
- "<%= config.bin %> <%= command.id %> # Interactive mode"
4187
+ "<%= config.bin %> <%= command.id %>",
4188
+ "<%= config.bin %> <%= command.id %> --category bug",
4189
+ "<%= config.bin %> <%= command.id %> --state closed --limit 10",
4190
+ "<%= config.bin %> <%= command.id %> --json"
4213
4191
  ],
4214
4192
  "flags": {
4215
4193
  "json": {
@@ -4225,17 +4203,38 @@
4225
4203
  "allowNo": false,
4226
4204
  "type": "boolean"
4227
4205
  },
4228
- "follow": {
4229
- "char": "f",
4230
- "description": "Stream logs in real-time",
4231
- "name": "follow",
4232
- "allowNo": false,
4233
- "type": "boolean"
4206
+ "category": {
4207
+ "char": "c",
4208
+ "description": "Filter by category (bug, feature, general)",
4209
+ "name": "category",
4210
+ "hasDynamicHelp": false,
4211
+ "multiple": false,
4212
+ "options": [
4213
+ "bug",
4214
+ "feature",
4215
+ "general"
4216
+ ],
4217
+ "type": "option"
4234
4218
  },
4235
- "tail": {
4236
- "char": "n",
4237
- "description": "Show last n lines",
4238
- "name": "tail",
4219
+ "state": {
4220
+ "char": "s",
4221
+ "description": "Filter by state",
4222
+ "name": "state",
4223
+ "default": "open",
4224
+ "hasDynamicHelp": false,
4225
+ "multiple": false,
4226
+ "options": [
4227
+ "open",
4228
+ "closed",
4229
+ "all"
4230
+ ],
4231
+ "type": "option"
4232
+ },
4233
+ "limit": {
4234
+ "char": "l",
4235
+ "description": "Maximum number of issues to show",
4236
+ "name": "limit",
4237
+ "default": 20,
4239
4238
  "hasDynamicHelp": false,
4240
4239
  "multiple": false,
4241
4240
  "type": "option"
@@ -4243,36 +4242,28 @@
4243
4242
  },
4244
4243
  "hasDynamicHelp": false,
4245
4244
  "hiddenAliases": [],
4246
- "id": "execution:logs",
4245
+ "id": "feedback:list",
4247
4246
  "pluginAlias": "@proletariat/cli",
4248
4247
  "pluginName": "@proletariat/cli",
4249
4248
  "pluginType": "core",
4250
4249
  "strict": true,
4250
+ "enableJsonFlag": false,
4251
4251
  "isESM": true,
4252
4252
  "relativePath": [
4253
4253
  "dist",
4254
4254
  "commands",
4255
- "execution",
4256
- "logs.js"
4255
+ "feedback",
4256
+ "list.js"
4257
4257
  ]
4258
4258
  },
4259
- "execution:stop": {
4259
+ "feedback:submit": {
4260
4260
  "aliases": [],
4261
- "args": {
4262
- "id": {
4263
- "description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
4264
- "name": "id",
4265
- "required": false
4266
- }
4267
- },
4268
- "description": "Stop running execution(s)",
4261
+ "args": {},
4262
+ "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
4269
4263
  "examples": [
4270
- "<%= config.bin %> <%= command.id %> WORK-001",
4271
- "<%= config.bin %> <%= command.id %> WORK-001 --force",
4272
- "<%= config.bin %> <%= command.id %> # Interactive mode",
4273
- "<%= config.bin %> <%= command.id %> --all",
4274
- "<%= config.bin %> <%= command.id %> --all --force",
4275
- "<%= config.bin %> <%= command.id %> --agent altman"
4264
+ "<%= config.bin %> <%= command.id %>",
4265
+ "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
4266
+ "<%= config.bin %> <%= command.id %> --json"
4276
4267
  ],
4277
4268
  "flags": {
4278
4269
  "json": {
@@ -4288,31 +4279,39 @@
4288
4279
  "allowNo": false,
4289
4280
  "type": "boolean"
4290
4281
  },
4291
- "force": {
4292
- "char": "f",
4293
- "description": "Force kill (SIGKILL instead of SIGTERM)",
4294
- "name": "force",
4295
- "allowNo": false,
4296
- "type": "boolean"
4282
+ "title": {
4283
+ "char": "t",
4284
+ "description": "Issue title (one-liner) [required for non-interactive]",
4285
+ "name": "title",
4286
+ "hasDynamicHelp": false,
4287
+ "multiple": false,
4288
+ "type": "option"
4297
4289
  },
4298
- "all": {
4299
- "description": "Stop all running executions",
4300
- "name": "all",
4301
- "allowNo": false,
4302
- "type": "boolean"
4290
+ "body": {
4291
+ "char": "b",
4292
+ "description": "Issue description [required for non-interactive]",
4293
+ "name": "body",
4294
+ "hasDynamicHelp": false,
4295
+ "multiple": false,
4296
+ "type": "option"
4303
4297
  },
4304
- "agent": {
4305
- "char": "a",
4306
- "description": "Stop all executions for a specific agent",
4307
- "name": "agent",
4298
+ "category": {
4299
+ "char": "c",
4300
+ "description": "Feedback category",
4301
+ "name": "category",
4308
4302
  "hasDynamicHelp": false,
4309
4303
  "multiple": false,
4304
+ "options": [
4305
+ "bug",
4306
+ "feature",
4307
+ "general"
4308
+ ],
4310
4309
  "type": "option"
4311
4310
  }
4312
4311
  },
4313
4312
  "hasDynamicHelp": false,
4314
4313
  "hiddenAliases": [],
4315
- "id": "execution:stop",
4314
+ "id": "feedback:submit",
4316
4315
  "pluginAlias": "@proletariat/cli",
4317
4316
  "pluginName": "@proletariat/cli",
4318
4317
  "pluginType": "core",
@@ -4321,23 +4320,23 @@
4321
4320
  "relativePath": [
4322
4321
  "dist",
4323
4322
  "commands",
4324
- "execution",
4325
- "stop.js"
4323
+ "feedback",
4324
+ "submit.js"
4326
4325
  ]
4327
4326
  },
4328
- "execution:view": {
4327
+ "feedback:view": {
4329
4328
  "aliases": [],
4330
4329
  "args": {
4331
- "id": {
4332
- "description": "Execution ID - prompts if not provided",
4333
- "name": "id",
4334
- "required": false
4330
+ "number": {
4331
+ "description": "Issue number to view",
4332
+ "name": "number",
4333
+ "required": true
4335
4334
  }
4336
4335
  },
4337
- "description": "View details of a specific execution",
4336
+ "description": "View details of a specific feedback issue",
4338
4337
  "examples": [
4339
- "<%= config.bin %> <%= command.id %> WORK-001",
4340
- "<%= config.bin %> <%= command.id %> # Interactive mode"
4338
+ "<%= config.bin %> <%= command.id %> 123",
4339
+ "<%= config.bin %> <%= command.id %> 123 --json"
4341
4340
  ],
4342
4341
  "flags": {
4343
4342
  "json": {
@@ -4356,16 +4355,17 @@
4356
4355
  },
4357
4356
  "hasDynamicHelp": false,
4358
4357
  "hiddenAliases": [],
4359
- "id": "execution:view",
4358
+ "id": "feedback:view",
4360
4359
  "pluginAlias": "@proletariat/cli",
4361
4360
  "pluginName": "@proletariat/cli",
4362
4361
  "pluginType": "core",
4363
4362
  "strict": true,
4363
+ "enableJsonFlag": false,
4364
4364
  "isESM": true,
4365
4365
  "relativePath": [
4366
4366
  "dist",
4367
4367
  "commands",
4368
- "execution",
4368
+ "feedback",
4369
4369
  "view.js"
4370
4370
  ]
4371
4371
  },
@@ -8820,23 +8820,15 @@
8820
8820
  "watch.js"
8821
8821
  ]
8822
8822
  },
8823
- "sync": {
8823
+ "support:book": {
8824
8824
  "aliases": [],
8825
8825
  "args": {},
8826
- "description": "Reconcile ticket state with GitHub PR status",
8826
+ "description": "Book a call for support",
8827
8827
  "examples": [
8828
8828
  "<%= config.bin %> <%= command.id %>",
8829
- "<%= config.bin %> <%= command.id %> --dry-run"
8829
+ "<%= config.bin %> <%= command.id %> --json"
8830
8830
  ],
8831
8831
  "flags": {
8832
- "project": {
8833
- "char": "P",
8834
- "description": "Project ID (uses first project if only one exists)",
8835
- "name": "project",
8836
- "hasDynamicHelp": false,
8837
- "multiple": false,
8838
- "type": "option"
8839
- },
8840
8832
  "json": {
8841
8833
  "description": "Output as JSON for AI agents/scripts",
8842
8834
  "name": "json",
@@ -8849,35 +8841,31 @@
8849
8841
  "name": "machine",
8850
8842
  "allowNo": false,
8851
8843
  "type": "boolean"
8852
- },
8853
- "dry-run": {
8854
- "description": "Show what would change without applying",
8855
- "name": "dry-run",
8856
- "allowNo": false,
8857
- "type": "boolean"
8858
8844
  }
8859
8845
  },
8860
8846
  "hasDynamicHelp": false,
8861
8847
  "hiddenAliases": [],
8862
- "id": "sync",
8848
+ "id": "support:book",
8863
8849
  "pluginAlias": "@proletariat/cli",
8864
8850
  "pluginName": "@proletariat/cli",
8865
8851
  "pluginType": "core",
8866
8852
  "strict": true,
8853
+ "enableJsonFlag": false,
8867
8854
  "isESM": true,
8868
8855
  "relativePath": [
8869
8856
  "dist",
8870
8857
  "commands",
8871
- "sync",
8872
- "index.js"
8858
+ "support",
8859
+ "book.js"
8873
8860
  ]
8874
8861
  },
8875
- "sync:pause": {
8862
+ "support:discord": {
8876
8863
  "aliases": [],
8877
8864
  "args": {},
8878
- "description": "Pause the merge queue (keep monitoring but stop merging)",
8865
+ "description": "Join the Discord community",
8879
8866
  "examples": [
8880
- "<%= config.bin %> <%= command.id %>"
8867
+ "<%= config.bin %> <%= command.id %>",
8868
+ "<%= config.bin %> <%= command.id %> --json"
8881
8869
  ],
8882
8870
  "flags": {
8883
8871
  "json": {
@@ -8896,25 +8884,27 @@
8896
8884
  },
8897
8885
  "hasDynamicHelp": false,
8898
8886
  "hiddenAliases": [],
8899
- "id": "sync:pause",
8887
+ "id": "support:discord",
8900
8888
  "pluginAlias": "@proletariat/cli",
8901
8889
  "pluginName": "@proletariat/cli",
8902
8890
  "pluginType": "core",
8903
8891
  "strict": true,
8892
+ "enableJsonFlag": false,
8904
8893
  "isESM": true,
8905
8894
  "relativePath": [
8906
8895
  "dist",
8907
8896
  "commands",
8908
- "sync",
8909
- "pause.js"
8897
+ "support",
8898
+ "discord.js"
8910
8899
  ]
8911
8900
  },
8912
- "sync:queue": {
8901
+ "support:docs": {
8913
8902
  "aliases": [],
8914
8903
  "args": {},
8915
- "description": "Show the merge queue state",
8904
+ "description": "Open documentation in browser",
8916
8905
  "examples": [
8917
- "<%= config.bin %> <%= command.id %>"
8906
+ "<%= config.bin %> <%= command.id %>",
8907
+ "<%= config.bin %> <%= command.id %> --json"
8918
8908
  ],
8919
8909
  "flags": {
8920
8910
  "json": {
@@ -8933,25 +8923,31 @@
8933
8923
  },
8934
8924
  "hasDynamicHelp": false,
8935
8925
  "hiddenAliases": [],
8936
- "id": "sync:queue",
8926
+ "id": "support:docs",
8937
8927
  "pluginAlias": "@proletariat/cli",
8938
8928
  "pluginName": "@proletariat/cli",
8939
8929
  "pluginType": "core",
8940
8930
  "strict": true,
8931
+ "enableJsonFlag": false,
8941
8932
  "isESM": true,
8942
8933
  "relativePath": [
8943
8934
  "dist",
8944
8935
  "commands",
8945
- "sync",
8946
- "queue.js"
8936
+ "support",
8937
+ "docs.js"
8947
8938
  ]
8948
8939
  },
8949
- "sync:resume": {
8940
+ "support": {
8950
8941
  "aliases": [],
8951
8942
  "args": {},
8952
- "description": "Resume the merge queue",
8943
+ "description": "Get help, troubleshoot, and connect with the community",
8953
8944
  "examples": [
8954
- "<%= config.bin %> <%= command.id %>"
8945
+ "<%= config.bin %> <%= command.id %>",
8946
+ "<%= config.bin %> <%= command.id %> book",
8947
+ "<%= config.bin %> <%= command.id %> docs",
8948
+ "<%= config.bin %> <%= command.id %> discord",
8949
+ "<%= config.bin %> <%= command.id %> issues",
8950
+ "<%= config.bin %> <%= command.id %> logs"
8955
8951
  ],
8956
8952
  "flags": {
8957
8953
  "json": {
@@ -8970,26 +8966,28 @@
8970
8966
  },
8971
8967
  "hasDynamicHelp": false,
8972
8968
  "hiddenAliases": [],
8973
- "id": "sync:resume",
8969
+ "id": "support",
8974
8970
  "pluginAlias": "@proletariat/cli",
8975
8971
  "pluginName": "@proletariat/cli",
8976
8972
  "pluginType": "core",
8977
8973
  "strict": true,
8974
+ "enableJsonFlag": false,
8978
8975
  "isESM": true,
8979
8976
  "relativePath": [
8980
8977
  "dist",
8981
8978
  "commands",
8982
- "sync",
8983
- "resume.js"
8979
+ "support",
8980
+ "index.js"
8984
8981
  ]
8985
8982
  },
8986
- "sync:start": {
8983
+ "support:issues": {
8987
8984
  "aliases": [],
8988
8985
  "args": {},
8989
- "description": "Start the board sync daemon",
8986
+ "description": "Browse GitHub Issues",
8990
8987
  "examples": [
8991
8988
  "<%= config.bin %> <%= command.id %>",
8992
- "<%= config.bin %> <%= command.id %> --interval 30"
8989
+ "<%= config.bin %> <%= command.id %> --browser",
8990
+ "<%= config.bin %> <%= command.id %> --json"
8993
8991
  ],
8994
8992
  "flags": {
8995
8993
  "json": {
@@ -9005,39 +9003,47 @@
9005
9003
  "allowNo": false,
9006
9004
  "type": "boolean"
9007
9005
  },
9008
- "interval": {
9009
- "char": "i",
9010
- "description": "Poll interval in seconds",
9011
- "name": "interval",
9012
- "default": 60,
9013
- "hasDynamicHelp": false,
9014
- "multiple": false,
9015
- "type": "option"
9006
+ "browser": {
9007
+ "description": "Open issues in browser (default behavior)",
9008
+ "name": "browser",
9009
+ "allowNo": true,
9010
+ "type": "boolean"
9016
9011
  }
9017
9012
  },
9018
9013
  "hasDynamicHelp": false,
9019
9014
  "hiddenAliases": [],
9020
- "id": "sync:start",
9015
+ "id": "support:issues",
9021
9016
  "pluginAlias": "@proletariat/cli",
9022
9017
  "pluginName": "@proletariat/cli",
9023
9018
  "pluginType": "core",
9024
9019
  "strict": true,
9020
+ "enableJsonFlag": false,
9025
9021
  "isESM": true,
9026
9022
  "relativePath": [
9027
9023
  "dist",
9028
9024
  "commands",
9029
- "sync",
9030
- "start.js"
9025
+ "support",
9026
+ "issues.js"
9031
9027
  ]
9032
9028
  },
9033
- "sync:status": {
9029
+ "support:logs": {
9034
9030
  "aliases": [],
9035
9031
  "args": {},
9036
- "description": "Check the board sync daemon status",
9032
+ "description": "Collect diagnostic info for troubleshooting",
9037
9033
  "examples": [
9038
- "<%= config.bin %> <%= command.id %>"
9034
+ "<%= config.bin %> <%= command.id %>",
9035
+ "<%= config.bin %> <%= command.id %> --clipboard",
9036
+ "<%= config.bin %> <%= command.id %> --json"
9039
9037
  ],
9040
9038
  "flags": {
9039
+ "project": {
9040
+ "char": "P",
9041
+ "description": "Project ID (uses first project if only one exists)",
9042
+ "name": "project",
9043
+ "hasDynamicHelp": false,
9044
+ "multiple": false,
9045
+ "type": "option"
9046
+ },
9041
9047
  "json": {
9042
9048
  "description": "Output as JSON for AI agents/scripts",
9043
9049
  "name": "json",
@@ -9050,11 +9056,17 @@
9050
9056
  "name": "machine",
9051
9057
  "allowNo": false,
9052
9058
  "type": "boolean"
9059
+ },
9060
+ "clipboard": {
9061
+ "description": "Copy diagnostics to clipboard",
9062
+ "name": "clipboard",
9063
+ "allowNo": false,
9064
+ "type": "boolean"
9053
9065
  }
9054
9066
  },
9055
9067
  "hasDynamicHelp": false,
9056
9068
  "hiddenAliases": [],
9057
- "id": "sync:status",
9069
+ "id": "support:logs",
9058
9070
  "pluginAlias": "@proletariat/cli",
9059
9071
  "pluginName": "@proletariat/cli",
9060
9072
  "pluginType": "core",
@@ -9063,14 +9075,14 @@
9063
9075
  "relativePath": [
9064
9076
  "dist",
9065
9077
  "commands",
9066
- "sync",
9067
- "status.js"
9078
+ "support",
9079
+ "logs.js"
9068
9080
  ]
9069
9081
  },
9070
- "sync:stop": {
9082
+ "telemetry:disable": {
9071
9083
  "aliases": [],
9072
9084
  "args": {},
9073
- "description": "Stop the board sync daemon",
9085
+ "description": "Disable anonymous telemetry",
9074
9086
  "examples": [
9075
9087
  "<%= config.bin %> <%= command.id %>"
9076
9088
  ],
@@ -9091,26 +9103,26 @@
9091
9103
  },
9092
9104
  "hasDynamicHelp": false,
9093
9105
  "hiddenAliases": [],
9094
- "id": "sync:stop",
9106
+ "id": "telemetry:disable",
9095
9107
  "pluginAlias": "@proletariat/cli",
9096
9108
  "pluginName": "@proletariat/cli",
9097
9109
  "pluginType": "core",
9098
9110
  "strict": true,
9111
+ "enableJsonFlag": false,
9099
9112
  "isESM": true,
9100
9113
  "relativePath": [
9101
9114
  "dist",
9102
9115
  "commands",
9103
- "sync",
9104
- "stop.js"
9116
+ "telemetry",
9117
+ "disable.js"
9105
9118
  ]
9106
9119
  },
9107
- "support:book": {
9120
+ "telemetry:enable": {
9108
9121
  "aliases": [],
9109
9122
  "args": {},
9110
- "description": "Book a call for support",
9123
+ "description": "Enable anonymous telemetry",
9111
9124
  "examples": [
9112
- "<%= config.bin %> <%= command.id %>",
9113
- "<%= config.bin %> <%= command.id %> --json"
9125
+ "<%= config.bin %> <%= command.id %>"
9114
9126
  ],
9115
9127
  "flags": {
9116
9128
  "json": {
@@ -9129,7 +9141,7 @@
9129
9141
  },
9130
9142
  "hasDynamicHelp": false,
9131
9143
  "hiddenAliases": [],
9132
- "id": "support:book",
9144
+ "id": "telemetry:enable",
9133
9145
  "pluginAlias": "@proletariat/cli",
9134
9146
  "pluginName": "@proletariat/cli",
9135
9147
  "pluginType": "core",
@@ -9139,14 +9151,14 @@
9139
9151
  "relativePath": [
9140
9152
  "dist",
9141
9153
  "commands",
9142
- "support",
9143
- "book.js"
9154
+ "telemetry",
9155
+ "enable.js"
9144
9156
  ]
9145
9157
  },
9146
- "support:discord": {
9158
+ "telemetry": {
9147
9159
  "aliases": [],
9148
9160
  "args": {},
9149
- "description": "Join the Discord community",
9161
+ "description": "Show telemetry status",
9150
9162
  "examples": [
9151
9163
  "<%= config.bin %> <%= command.id %>",
9152
9164
  "<%= config.bin %> <%= command.id %> --json"
@@ -9168,7 +9180,7 @@
9168
9180
  },
9169
9181
  "hasDynamicHelp": false,
9170
9182
  "hiddenAliases": [],
9171
- "id": "support:discord",
9183
+ "id": "telemetry",
9172
9184
  "pluginAlias": "@proletariat/cli",
9173
9185
  "pluginName": "@proletariat/cli",
9174
9186
  "pluginType": "core",
@@ -9178,17 +9190,16 @@
9178
9190
  "relativePath": [
9179
9191
  "dist",
9180
9192
  "commands",
9181
- "support",
9182
- "discord.js"
9193
+ "telemetry",
9194
+ "index.js"
9183
9195
  ]
9184
9196
  },
9185
- "support:docs": {
9197
+ "telemetry:status": {
9186
9198
  "aliases": [],
9187
9199
  "args": {},
9188
- "description": "Open documentation in browser",
9200
+ "description": "Show telemetry status",
9189
9201
  "examples": [
9190
- "<%= config.bin %> <%= command.id %>",
9191
- "<%= config.bin %> <%= command.id %> --json"
9202
+ "<%= config.bin %> telemetry status"
9192
9203
  ],
9193
9204
  "flags": {
9194
9205
  "json": {
@@ -9207,7 +9218,7 @@
9207
9218
  },
9208
9219
  "hasDynamicHelp": false,
9209
9220
  "hiddenAliases": [],
9210
- "id": "support:docs",
9221
+ "id": "telemetry:status",
9211
9222
  "pluginAlias": "@proletariat/cli",
9212
9223
  "pluginName": "@proletariat/cli",
9213
9224
  "pluginType": "core",
@@ -9217,23 +9228,27 @@
9217
9228
  "relativePath": [
9218
9229
  "dist",
9219
9230
  "commands",
9220
- "support",
9221
- "docs.js"
9231
+ "telemetry",
9232
+ "status.js"
9222
9233
  ]
9223
9234
  },
9224
- "support": {
9235
+ "sync": {
9225
9236
  "aliases": [],
9226
9237
  "args": {},
9227
- "description": "Get help, troubleshoot, and connect with the community",
9238
+ "description": "Reconcile ticket state with GitHub PR status",
9228
9239
  "examples": [
9229
9240
  "<%= config.bin %> <%= command.id %>",
9230
- "<%= config.bin %> <%= command.id %> book",
9231
- "<%= config.bin %> <%= command.id %> docs",
9232
- "<%= config.bin %> <%= command.id %> discord",
9233
- "<%= config.bin %> <%= command.id %> issues",
9234
- "<%= config.bin %> <%= command.id %> logs"
9241
+ "<%= config.bin %> <%= command.id %> --dry-run"
9235
9242
  ],
9236
9243
  "flags": {
9244
+ "project": {
9245
+ "char": "P",
9246
+ "description": "Project ID (uses first project if only one exists)",
9247
+ "name": "project",
9248
+ "hasDynamicHelp": false,
9249
+ "multiple": false,
9250
+ "type": "option"
9251
+ },
9237
9252
  "json": {
9238
9253
  "description": "Output as JSON for AI agents/scripts",
9239
9254
  "name": "json",
@@ -9246,32 +9261,35 @@
9246
9261
  "name": "machine",
9247
9262
  "allowNo": false,
9248
9263
  "type": "boolean"
9264
+ },
9265
+ "dry-run": {
9266
+ "description": "Show what would change without applying",
9267
+ "name": "dry-run",
9268
+ "allowNo": false,
9269
+ "type": "boolean"
9249
9270
  }
9250
9271
  },
9251
9272
  "hasDynamicHelp": false,
9252
9273
  "hiddenAliases": [],
9253
- "id": "support",
9274
+ "id": "sync",
9254
9275
  "pluginAlias": "@proletariat/cli",
9255
9276
  "pluginName": "@proletariat/cli",
9256
9277
  "pluginType": "core",
9257
9278
  "strict": true,
9258
- "enableJsonFlag": false,
9259
9279
  "isESM": true,
9260
9280
  "relativePath": [
9261
9281
  "dist",
9262
9282
  "commands",
9263
- "support",
9283
+ "sync",
9264
9284
  "index.js"
9265
9285
  ]
9266
9286
  },
9267
- "support:issues": {
9287
+ "sync:pause": {
9268
9288
  "aliases": [],
9269
9289
  "args": {},
9270
- "description": "Browse GitHub Issues",
9290
+ "description": "Pause the merge queue (keep monitoring but stop merging)",
9271
9291
  "examples": [
9272
- "<%= config.bin %> <%= command.id %>",
9273
- "<%= config.bin %> <%= command.id %> --browser",
9274
- "<%= config.bin %> <%= command.id %> --json"
9292
+ "<%= config.bin %> <%= command.id %>"
9275
9293
  ],
9276
9294
  "flags": {
9277
9295
  "json": {
@@ -9286,48 +9304,31 @@
9286
9304
  "name": "machine",
9287
9305
  "allowNo": false,
9288
9306
  "type": "boolean"
9289
- },
9290
- "browser": {
9291
- "description": "Open issues in browser (default behavior)",
9292
- "name": "browser",
9293
- "allowNo": true,
9294
- "type": "boolean"
9295
9307
  }
9296
9308
  },
9297
9309
  "hasDynamicHelp": false,
9298
9310
  "hiddenAliases": [],
9299
- "id": "support:issues",
9311
+ "id": "sync:pause",
9300
9312
  "pluginAlias": "@proletariat/cli",
9301
9313
  "pluginName": "@proletariat/cli",
9302
9314
  "pluginType": "core",
9303
9315
  "strict": true,
9304
- "enableJsonFlag": false,
9305
9316
  "isESM": true,
9306
9317
  "relativePath": [
9307
9318
  "dist",
9308
9319
  "commands",
9309
- "support",
9310
- "issues.js"
9320
+ "sync",
9321
+ "pause.js"
9311
9322
  ]
9312
9323
  },
9313
- "support:logs": {
9324
+ "sync:queue": {
9314
9325
  "aliases": [],
9315
9326
  "args": {},
9316
- "description": "Collect diagnostic info for troubleshooting",
9327
+ "description": "Show the merge queue state",
9317
9328
  "examples": [
9318
- "<%= config.bin %> <%= command.id %>",
9319
- "<%= config.bin %> <%= command.id %> --clipboard",
9320
- "<%= config.bin %> <%= command.id %> --json"
9329
+ "<%= config.bin %> <%= command.id %>"
9321
9330
  ],
9322
9331
  "flags": {
9323
- "project": {
9324
- "char": "P",
9325
- "description": "Project ID (uses first project if only one exists)",
9326
- "name": "project",
9327
- "hasDynamicHelp": false,
9328
- "multiple": false,
9329
- "type": "option"
9330
- },
9331
9332
  "json": {
9332
9333
  "description": "Output as JSON for AI agents/scripts",
9333
9334
  "name": "json",
@@ -9340,17 +9341,11 @@
9340
9341
  "name": "machine",
9341
9342
  "allowNo": false,
9342
9343
  "type": "boolean"
9343
- },
9344
- "clipboard": {
9345
- "description": "Copy diagnostics to clipboard",
9346
- "name": "clipboard",
9347
- "allowNo": false,
9348
- "type": "boolean"
9349
9344
  }
9350
9345
  },
9351
9346
  "hasDynamicHelp": false,
9352
9347
  "hiddenAliases": [],
9353
- "id": "support:logs",
9348
+ "id": "sync:queue",
9354
9349
  "pluginAlias": "@proletariat/cli",
9355
9350
  "pluginName": "@proletariat/cli",
9356
9351
  "pluginType": "core",
@@ -9359,34 +9354,18 @@
9359
9354
  "relativePath": [
9360
9355
  "dist",
9361
9356
  "commands",
9362
- "support",
9363
- "logs.js"
9357
+ "sync",
9358
+ "queue.js"
9364
9359
  ]
9365
9360
  },
9366
- "terminal:title": {
9361
+ "sync:resume": {
9367
9362
  "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",
9363
+ "args": {},
9364
+ "description": "Resume the merge queue",
9376
9365
  "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"
9366
+ "<%= config.bin %> <%= command.id %>"
9381
9367
  ],
9382
9368
  "flags": {
9383
- "reset": {
9384
- "char": "r",
9385
- "description": "Reset terminal title to default",
9386
- "name": "reset",
9387
- "allowNo": false,
9388
- "type": "boolean"
9389
- },
9390
9369
  "json": {
9391
9370
  "description": "Output as JSON for AI agents/scripts",
9392
9371
  "name": "json",
@@ -9403,7 +9382,7 @@
9403
9382
  },
9404
9383
  "hasDynamicHelp": false,
9405
9384
  "hiddenAliases": [],
9406
- "id": "terminal:title",
9385
+ "id": "sync:resume",
9407
9386
  "pluginAlias": "@proletariat/cli",
9408
9387
  "pluginName": "@proletariat/cli",
9409
9388
  "pluginType": "core",
@@ -9412,16 +9391,17 @@
9412
9391
  "relativePath": [
9413
9392
  "dist",
9414
9393
  "commands",
9415
- "terminal",
9416
- "title.js"
9394
+ "sync",
9395
+ "resume.js"
9417
9396
  ]
9418
9397
  },
9419
- "telemetry:disable": {
9398
+ "sync:start": {
9420
9399
  "aliases": [],
9421
9400
  "args": {},
9422
- "description": "Disable anonymous telemetry",
9401
+ "description": "Start the board sync daemon",
9423
9402
  "examples": [
9424
- "<%= config.bin %> <%= command.id %>"
9403
+ "<%= config.bin %> <%= command.id %>",
9404
+ "<%= config.bin %> <%= command.id %> --interval 30"
9425
9405
  ],
9426
9406
  "flags": {
9427
9407
  "json": {
@@ -9436,28 +9416,36 @@
9436
9416
  "name": "machine",
9437
9417
  "allowNo": false,
9438
9418
  "type": "boolean"
9419
+ },
9420
+ "interval": {
9421
+ "char": "i",
9422
+ "description": "Poll interval in seconds",
9423
+ "name": "interval",
9424
+ "default": 60,
9425
+ "hasDynamicHelp": false,
9426
+ "multiple": false,
9427
+ "type": "option"
9439
9428
  }
9440
9429
  },
9441
9430
  "hasDynamicHelp": false,
9442
9431
  "hiddenAliases": [],
9443
- "id": "telemetry:disable",
9432
+ "id": "sync:start",
9444
9433
  "pluginAlias": "@proletariat/cli",
9445
9434
  "pluginName": "@proletariat/cli",
9446
9435
  "pluginType": "core",
9447
9436
  "strict": true,
9448
- "enableJsonFlag": false,
9449
9437
  "isESM": true,
9450
9438
  "relativePath": [
9451
9439
  "dist",
9452
9440
  "commands",
9453
- "telemetry",
9454
- "disable.js"
9441
+ "sync",
9442
+ "start.js"
9455
9443
  ]
9456
9444
  },
9457
- "telemetry:enable": {
9445
+ "sync:status": {
9458
9446
  "aliases": [],
9459
9447
  "args": {},
9460
- "description": "Enable anonymous telemetry",
9448
+ "description": "Check the board sync daemon status",
9461
9449
  "examples": [
9462
9450
  "<%= config.bin %> <%= command.id %>"
9463
9451
  ],
@@ -9478,27 +9466,25 @@
9478
9466
  },
9479
9467
  "hasDynamicHelp": false,
9480
9468
  "hiddenAliases": [],
9481
- "id": "telemetry:enable",
9469
+ "id": "sync:status",
9482
9470
  "pluginAlias": "@proletariat/cli",
9483
9471
  "pluginName": "@proletariat/cli",
9484
9472
  "pluginType": "core",
9485
9473
  "strict": true,
9486
- "enableJsonFlag": false,
9487
9474
  "isESM": true,
9488
9475
  "relativePath": [
9489
9476
  "dist",
9490
9477
  "commands",
9491
- "telemetry",
9492
- "enable.js"
9478
+ "sync",
9479
+ "status.js"
9493
9480
  ]
9494
9481
  },
9495
- "telemetry": {
9482
+ "sync:stop": {
9496
9483
  "aliases": [],
9497
9484
  "args": {},
9498
- "description": "Show telemetry status",
9485
+ "description": "Stop the board sync daemon",
9499
9486
  "examples": [
9500
- "<%= config.bin %> <%= command.id %>",
9501
- "<%= config.bin %> <%= command.id %> --json"
9487
+ "<%= config.bin %> <%= command.id %>"
9502
9488
  ],
9503
9489
  "flags": {
9504
9490
  "json": {
@@ -9517,28 +9503,43 @@
9517
9503
  },
9518
9504
  "hasDynamicHelp": false,
9519
9505
  "hiddenAliases": [],
9520
- "id": "telemetry",
9506
+ "id": "sync:stop",
9521
9507
  "pluginAlias": "@proletariat/cli",
9522
9508
  "pluginName": "@proletariat/cli",
9523
9509
  "pluginType": "core",
9524
9510
  "strict": true,
9525
- "enableJsonFlag": false,
9526
9511
  "isESM": true,
9527
9512
  "relativePath": [
9528
9513
  "dist",
9529
9514
  "commands",
9530
- "telemetry",
9531
- "index.js"
9515
+ "sync",
9516
+ "stop.js"
9532
9517
  ]
9533
9518
  },
9534
- "telemetry:status": {
9519
+ "terminal:title": {
9535
9520
  "aliases": [],
9536
- "args": {},
9537
- "description": "Show telemetry status",
9521
+ "args": {
9522
+ "title": {
9523
+ "description": "Title to set for the terminal tab/window",
9524
+ "name": "title",
9525
+ "required": false
9526
+ }
9527
+ },
9528
+ "description": "Set the terminal tab/window title",
9538
9529
  "examples": [
9539
- "<%= config.bin %> telemetry status"
9530
+ "<%= config.bin %> <%= command.id %> \"My Custom Name\"",
9531
+ "<%= config.bin %> <%= command.id %> # Interactive prompt",
9532
+ "<%= config.bin %> <%= command.id %> --reset",
9533
+ "<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
9540
9534
  ],
9541
9535
  "flags": {
9536
+ "reset": {
9537
+ "char": "r",
9538
+ "description": "Reset terminal title to default",
9539
+ "name": "reset",
9540
+ "allowNo": false,
9541
+ "type": "boolean"
9542
+ },
9542
9543
  "json": {
9543
9544
  "description": "Output as JSON for AI agents/scripts",
9544
9545
  "name": "json",
@@ -9555,18 +9556,17 @@
9555
9556
  },
9556
9557
  "hasDynamicHelp": false,
9557
9558
  "hiddenAliases": [],
9558
- "id": "telemetry:status",
9559
+ "id": "terminal:title",
9559
9560
  "pluginAlias": "@proletariat/cli",
9560
9561
  "pluginName": "@proletariat/cli",
9561
9562
  "pluginType": "core",
9562
9563
  "strict": true,
9563
- "enableJsonFlag": false,
9564
9564
  "isESM": true,
9565
9565
  "relativePath": [
9566
9566
  "dist",
9567
9567
  "commands",
9568
- "telemetry",
9569
- "status.js"
9568
+ "terminal",
9569
+ "title.js"
9570
9570
  ]
9571
9571
  },
9572
9572
  "theme:add-names": {
@@ -15118,5 +15118,5 @@
15118
15118
  ]
15119
15119
  }
15120
15120
  },
15121
- "version": "0.3.112"
15121
+ "version": "0.3.114"
15122
15122
  }