@proletariat/cli 0.3.96 → 0.3.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/gc.d.ts +1 -0
- package/dist/commands/gc.js +31 -1
- package/dist/commands/gc.js.map +1 -1
- package/dist/commands/linear/connect.d.ts +5 -0
- package/dist/commands/linear/connect.js +84 -0
- package/dist/commands/linear/connect.js.map +1 -1
- package/dist/commands/orchestrate/index.js +18 -10
- package/dist/commands/orchestrate/index.js.map +1 -1
- package/dist/commands/qa/index.js +1 -1
- package/dist/commands/session/watch.d.ts +1 -0
- package/dist/commands/session/watch.js +46 -2
- package/dist/commands/session/watch.js.map +1 -1
- package/dist/commands/watch/index.d.ts +28 -0
- package/dist/commands/watch/index.js +172 -0
- package/dist/commands/watch/index.js.map +1 -0
- package/dist/commands/work/complete.d.ts +1 -0
- package/dist/commands/work/complete.js +38 -31
- package/dist/commands/work/complete.js.map +1 -1
- package/dist/commands/{ticket/index.d.ts → work/drop.d.ts} +5 -4
- package/dist/commands/work/drop.js +215 -0
- package/dist/commands/work/drop.js.map +1 -0
- package/dist/commands/work/linear.js +1 -1
- package/dist/commands/work/linear.js.map +1 -1
- package/dist/commands/work/ready.d.ts +1 -0
- package/dist/commands/work/ready.js +46 -30
- package/dist/commands/work/ready.js.map +1 -1
- package/dist/commands/work/ship.d.ts +1 -0
- package/dist/commands/work/ship.js +56 -40
- package/dist/commands/work/ship.js.map +1 -1
- package/dist/commands/work/start.d.ts +2 -0
- package/dist/commands/work/start.js +238 -83
- package/dist/commands/work/start.js.map +1 -1
- package/dist/commands/work/stop.d.ts +1 -0
- package/dist/commands/work/stop.js +40 -0
- package/dist/commands/work/stop.js.map +1 -1
- package/dist/lib/agents/commands.js +7 -5
- package/dist/lib/agents/commands.js.map +1 -1
- package/dist/lib/asana/client.d.ts +4 -1
- package/dist/lib/asana/client.js +15 -0
- package/dist/lib/asana/client.js.map +1 -1
- package/dist/lib/asana/index.d.ts +1 -1
- package/dist/lib/asana/types.d.ts +4 -0
- package/dist/lib/database/credential-store.js +1 -0
- package/dist/lib/database/credential-store.js.map +1 -1
- package/dist/lib/database/drizzle-schema.d.ts +17 -0
- package/dist/lib/database/drizzle-schema.js +1 -0
- package/dist/lib/database/drizzle-schema.js.map +1 -1
- package/dist/lib/database/migrations/0019_gc_artifact_cleanup.d.ts +9 -0
- package/dist/lib/database/migrations/0019_gc_artifact_cleanup.js +23 -0
- package/dist/lib/database/migrations/0019_gc_artifact_cleanup.js.map +1 -0
- package/dist/lib/database/migrations/0020_transition_map.d.ts +2 -0
- package/dist/lib/database/migrations/0020_transition_map.js +27 -0
- package/dist/lib/database/migrations/0020_transition_map.js.map +1 -0
- package/dist/lib/database/migrations/index.js +4 -0
- package/dist/lib/database/migrations/index.js.map +1 -1
- package/dist/lib/execution/config.d.ts +10 -0
- package/dist/lib/execution/config.js +24 -0
- package/dist/lib/execution/config.js.map +1 -1
- package/dist/lib/execution/preflight.d.ts +51 -0
- package/dist/lib/execution/preflight.js +278 -0
- package/dist/lib/execution/preflight.js.map +1 -0
- package/dist/lib/execution/runners/prompt-builder.d.ts +6 -0
- package/dist/lib/execution/runners/prompt-builder.js +38 -7
- package/dist/lib/execution/runners/prompt-builder.js.map +1 -1
- package/dist/lib/execution/session-utils.d.ts +23 -0
- package/dist/lib/execution/session-utils.js +69 -0
- package/dist/lib/execution/session-utils.js.map +1 -1
- package/dist/lib/execution/spawner.d.ts +11 -1
- package/dist/lib/execution/spawner.js +44 -16
- package/dist/lib/execution/spawner.js.map +1 -1
- package/dist/lib/execution/storage.d.ts +6 -0
- package/dist/lib/execution/storage.js +18 -0
- package/dist/lib/execution/storage.js.map +1 -1
- package/dist/lib/execution/ticket-refs.d.ts +71 -0
- package/dist/lib/execution/ticket-refs.js +125 -0
- package/dist/lib/execution/ticket-refs.js.map +1 -0
- package/dist/lib/execution/types.d.ts +7 -2
- package/dist/lib/execution/types.js +5 -3
- package/dist/lib/execution/types.js.map +1 -1
- package/dist/lib/external-issues/index.d.ts +1 -0
- package/dist/lib/external-issues/index.js +2 -0
- package/dist/lib/external-issues/index.js.map +1 -1
- package/dist/lib/external-issues/linear.js +1 -1
- package/dist/lib/external-issues/linear.js.map +1 -1
- package/dist/lib/external-issues/ticket-builder.d.ts +21 -0
- package/dist/lib/external-issues/ticket-builder.js +43 -0
- package/dist/lib/external-issues/ticket-builder.js.map +1 -0
- package/dist/lib/external-issues/work-start.js +1 -1
- package/dist/lib/external-issues/work-start.js.map +1 -1
- package/dist/lib/gc/index.d.ts +67 -6
- package/dist/lib/gc/index.js +293 -15
- package/dist/lib/gc/index.js.map +1 -1
- package/dist/lib/github/client.d.ts +84 -0
- package/dist/lib/github/client.js +123 -0
- package/dist/lib/github/client.js.map +1 -0
- package/dist/lib/github/config.d.ts +42 -0
- package/dist/lib/github/config.js +115 -0
- package/dist/lib/github/config.js.map +1 -0
- package/dist/lib/github/types.d.ts +71 -0
- package/dist/lib/github/types.js +50 -0
- package/dist/lib/github/types.js.map +1 -0
- package/dist/lib/jira/client.d.ts +113 -0
- package/dist/lib/jira/client.js +208 -0
- package/dist/lib/jira/client.js.map +1 -0
- package/dist/lib/jira/config.d.ts +9 -0
- package/dist/lib/jira/config.js +30 -0
- package/dist/lib/jira/config.js.map +1 -1
- package/dist/lib/jira/index.d.ts +6 -2
- package/dist/lib/jira/index.js +4 -2
- package/dist/lib/jira/index.js.map +1 -1
- package/dist/lib/jira/types.d.ts +118 -0
- package/dist/lib/jira/types.js +45 -0
- package/dist/lib/jira/types.js.map +1 -0
- package/dist/lib/linear/config.d.ts +10 -0
- package/dist/lib/linear/config.js +33 -0
- package/dist/lib/linear/config.js.map +1 -1
- package/dist/lib/mcp/tools/index.d.ts +0 -2
- package/dist/lib/mcp/tools/index.js +0 -2
- package/dist/lib/mcp/tools/index.js.map +1 -1
- package/dist/lib/orchestrate/index.d.ts +2 -0
- package/dist/lib/orchestrate/index.js +1 -0
- package/dist/lib/orchestrate/index.js.map +1 -1
- package/dist/lib/orchestrate/simple-poller.d.ts +57 -0
- package/dist/lib/orchestrate/simple-poller.js +324 -0
- package/dist/lib/orchestrate/simple-poller.js.map +1 -0
- package/dist/lib/pmo/storage/index.js +16 -5
- package/dist/lib/pmo/storage/index.js.map +1 -1
- package/dist/lib/prompt-json.d.ts +31 -0
- package/dist/lib/prompt-json.js.map +1 -1
- package/dist/lib/providers/asana-provider.d.ts +27 -0
- package/dist/lib/providers/asana-provider.js +426 -0
- package/dist/lib/providers/asana-provider.js.map +1 -0
- package/dist/lib/providers/auto-mapper.d.ts +45 -0
- package/dist/lib/providers/auto-mapper.js +138 -0
- package/dist/lib/providers/auto-mapper.js.map +1 -0
- package/dist/lib/providers/github-provider.d.ts +34 -0
- package/dist/lib/providers/github-provider.js +418 -0
- package/dist/lib/providers/github-provider.js.map +1 -0
- package/dist/lib/providers/index.d.ts +3 -0
- package/dist/lib/providers/index.js +3 -0
- package/dist/lib/providers/index.js.map +1 -1
- package/dist/lib/providers/jira-provider.d.ts +31 -0
- package/dist/lib/providers/jira-provider.js +383 -0
- package/dist/lib/providers/jira-provider.js.map +1 -0
- package/dist/lib/providers/linear-provider.js +6 -7
- package/dist/lib/providers/linear-provider.js.map +1 -1
- package/dist/lib/providers/resolver.js +54 -0
- package/dist/lib/providers/resolver.js.map +1 -1
- package/dist/lib/providers/state-intents.d.ts +20 -0
- package/dist/lib/providers/state-intents.js +61 -7
- package/dist/lib/providers/state-intents.js.map +1 -1
- package/dist/lib/providers/state-resolution.d.ts +15 -11
- package/dist/lib/providers/state-resolution.js +54 -48
- package/dist/lib/providers/state-resolution.js.map +1 -1
- package/dist/lib/providers/transition-map.d.ts +59 -0
- package/dist/lib/providers/transition-map.js +113 -0
- package/dist/lib/providers/transition-map.js.map +1 -0
- package/dist/lib/providers/types.d.ts +1 -1
- package/dist/lib/session/index.d.ts +3 -1
- package/dist/lib/session/index.js +3 -1
- package/dist/lib/session/index.js.map +1 -1
- package/dist/lib/session/tmux-watchdog.d.ts +157 -0
- package/dist/lib/session/tmux-watchdog.js +424 -0
- package/dist/lib/session/tmux-watchdog.js.map +1 -0
- package/dist/lib/session/watcher.d.ts +22 -4
- package/dist/lib/session/watcher.js +66 -8
- package/dist/lib/session/watcher.js.map +1 -1
- package/dist/lib/work-lifecycle/post-execution.js +26 -1
- package/dist/lib/work-lifecycle/post-execution.js.map +1 -1
- package/dist/lib/work-lifecycle/transition.d.ts +73 -0
- package/dist/lib/work-lifecycle/transition.js +138 -0
- package/dist/lib/work-lifecycle/transition.js.map +1 -0
- package/dist/lib/work-source/config.d.ts +1 -1
- package/dist/lib/work-source/config.js +11 -1
- package/dist/lib/work-source/config.js.map +1 -1
- package/oclif.manifest.json +936 -1628
- package/package.json +1 -1
- package/dist/commands/ticket/create.d.ts +0 -44
- package/dist/commands/ticket/create.js +0 -760
- package/dist/commands/ticket/create.js.map +0 -1
- package/dist/commands/ticket/delete.d.ts +0 -17
- package/dist/commands/ticket/delete.js +0 -204
- package/dist/commands/ticket/delete.js.map +0 -1
- package/dist/commands/ticket/edit.d.ts +0 -28
- package/dist/commands/ticket/edit.js +0 -402
- package/dist/commands/ticket/edit.js.map +0 -1
- package/dist/commands/ticket/index.js +0 -74
- package/dist/commands/ticket/index.js.map +0 -1
- package/dist/commands/ticket/list.d.ts +0 -33
- package/dist/commands/ticket/list.js +0 -519
- package/dist/commands/ticket/list.js.map +0 -1
- package/dist/commands/ticket/move.d.ts +0 -27
- package/dist/commands/ticket/move.js +0 -413
- package/dist/commands/ticket/move.js.map +0 -1
- package/dist/commands/ticket/show.d.ts +0 -14
- package/dist/commands/ticket/show.js +0 -110
- package/dist/commands/ticket/show.js.map +0 -1
- package/dist/commands/ticket/update.d.ts +0 -28
- package/dist/commands/ticket/update.js +0 -458
- package/dist/commands/ticket/update.js.map +0 -1
- package/dist/lib/mcp/tools/action.d.ts +0 -6
- package/dist/lib/mcp/tools/action.js +0 -123
- package/dist/lib/mcp/tools/action.js.map +0 -1
- package/dist/lib/mcp/tools/ticket.d.ts +0 -6
- package/dist/lib/mcp/tools/ticket.js +0 -464
- package/dist/lib/mcp/tools/ticket.js.map +0 -1
package/oclif.manifest.json
CHANGED
|
@@ -265,6 +265,7 @@
|
|
|
265
265
|
"<%= config.bin %> <%= command.id %> --execute",
|
|
266
266
|
"<%= config.bin %> <%= command.id %> --stale-days 14",
|
|
267
267
|
"<%= config.bin %> <%= command.id %> --status merged",
|
|
268
|
+
"<%= config.bin %> <%= command.id %> --execute --purge-db",
|
|
268
269
|
"<%= config.bin %> <%= command.id %> --execute --json"
|
|
269
270
|
],
|
|
270
271
|
"flags": {
|
|
@@ -306,6 +307,12 @@
|
|
|
306
307
|
"stale"
|
|
307
308
|
],
|
|
308
309
|
"type": "option"
|
|
310
|
+
},
|
|
311
|
+
"purge-db": {
|
|
312
|
+
"description": "DELETE old execution records from database (default: mark as gc_cleaned only)",
|
|
313
|
+
"name": "purge-db",
|
|
314
|
+
"allowNo": false,
|
|
315
|
+
"type": "boolean"
|
|
309
316
|
}
|
|
310
317
|
},
|
|
311
318
|
"hasDynamicHelp": false,
|
|
@@ -1965,6 +1972,66 @@
|
|
|
1965
1972
|
"sync.js"
|
|
1966
1973
|
]
|
|
1967
1974
|
},
|
|
1975
|
+
"autocomplete:setup": {
|
|
1976
|
+
"aliases": [],
|
|
1977
|
+
"args": {},
|
|
1978
|
+
"description": "Auto-detect shell and set up autocomplete",
|
|
1979
|
+
"examples": [
|
|
1980
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1981
|
+
"<%= config.bin %> <%= command.id %> --install",
|
|
1982
|
+
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
1983
|
+
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
1984
|
+
],
|
|
1985
|
+
"flags": {
|
|
1986
|
+
"json": {
|
|
1987
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1988
|
+
"name": "json",
|
|
1989
|
+
"allowNo": false,
|
|
1990
|
+
"type": "boolean"
|
|
1991
|
+
},
|
|
1992
|
+
"machine": {
|
|
1993
|
+
"char": "m",
|
|
1994
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1995
|
+
"name": "machine",
|
|
1996
|
+
"allowNo": false,
|
|
1997
|
+
"type": "boolean"
|
|
1998
|
+
},
|
|
1999
|
+
"install": {
|
|
2000
|
+
"char": "i",
|
|
2001
|
+
"description": "Automatically install to shell config file",
|
|
2002
|
+
"name": "install",
|
|
2003
|
+
"allowNo": false,
|
|
2004
|
+
"type": "boolean"
|
|
2005
|
+
},
|
|
2006
|
+
"shell": {
|
|
2007
|
+
"char": "s",
|
|
2008
|
+
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2009
|
+
"name": "shell",
|
|
2010
|
+
"hasDynamicHelp": false,
|
|
2011
|
+
"multiple": false,
|
|
2012
|
+
"options": [
|
|
2013
|
+
"zsh",
|
|
2014
|
+
"bash",
|
|
2015
|
+
"powershell"
|
|
2016
|
+
],
|
|
2017
|
+
"type": "option"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
"hasDynamicHelp": false,
|
|
2021
|
+
"hiddenAliases": [],
|
|
2022
|
+
"id": "autocomplete:setup",
|
|
2023
|
+
"pluginAlias": "@proletariat/cli",
|
|
2024
|
+
"pluginName": "@proletariat/cli",
|
|
2025
|
+
"pluginType": "core",
|
|
2026
|
+
"strict": true,
|
|
2027
|
+
"isESM": true,
|
|
2028
|
+
"relativePath": [
|
|
2029
|
+
"dist",
|
|
2030
|
+
"commands",
|
|
2031
|
+
"autocomplete",
|
|
2032
|
+
"setup.js"
|
|
2033
|
+
]
|
|
2034
|
+
},
|
|
1968
2035
|
"branch:create": {
|
|
1969
2036
|
"aliases": [],
|
|
1970
2037
|
"args": {
|
|
@@ -2321,66 +2388,6 @@
|
|
|
2321
2388
|
"where.js"
|
|
2322
2389
|
]
|
|
2323
2390
|
},
|
|
2324
|
-
"autocomplete:setup": {
|
|
2325
|
-
"aliases": [],
|
|
2326
|
-
"args": {},
|
|
2327
|
-
"description": "Auto-detect shell and set up autocomplete",
|
|
2328
|
-
"examples": [
|
|
2329
|
-
"<%= config.bin %> <%= command.id %>",
|
|
2330
|
-
"<%= config.bin %> <%= command.id %> --install",
|
|
2331
|
-
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
2332
|
-
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
2333
|
-
],
|
|
2334
|
-
"flags": {
|
|
2335
|
-
"json": {
|
|
2336
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2337
|
-
"name": "json",
|
|
2338
|
-
"allowNo": false,
|
|
2339
|
-
"type": "boolean"
|
|
2340
|
-
},
|
|
2341
|
-
"machine": {
|
|
2342
|
-
"char": "m",
|
|
2343
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2344
|
-
"name": "machine",
|
|
2345
|
-
"allowNo": false,
|
|
2346
|
-
"type": "boolean"
|
|
2347
|
-
},
|
|
2348
|
-
"install": {
|
|
2349
|
-
"char": "i",
|
|
2350
|
-
"description": "Automatically install to shell config file",
|
|
2351
|
-
"name": "install",
|
|
2352
|
-
"allowNo": false,
|
|
2353
|
-
"type": "boolean"
|
|
2354
|
-
},
|
|
2355
|
-
"shell": {
|
|
2356
|
-
"char": "s",
|
|
2357
|
-
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2358
|
-
"name": "shell",
|
|
2359
|
-
"hasDynamicHelp": false,
|
|
2360
|
-
"multiple": false,
|
|
2361
|
-
"options": [
|
|
2362
|
-
"zsh",
|
|
2363
|
-
"bash",
|
|
2364
|
-
"powershell"
|
|
2365
|
-
],
|
|
2366
|
-
"type": "option"
|
|
2367
|
-
}
|
|
2368
|
-
},
|
|
2369
|
-
"hasDynamicHelp": false,
|
|
2370
|
-
"hiddenAliases": [],
|
|
2371
|
-
"id": "autocomplete:setup",
|
|
2372
|
-
"pluginAlias": "@proletariat/cli",
|
|
2373
|
-
"pluginName": "@proletariat/cli",
|
|
2374
|
-
"pluginType": "core",
|
|
2375
|
-
"strict": true,
|
|
2376
|
-
"isESM": true,
|
|
2377
|
-
"relativePath": [
|
|
2378
|
-
"dist",
|
|
2379
|
-
"commands",
|
|
2380
|
-
"autocomplete",
|
|
2381
|
-
"setup.js"
|
|
2382
|
-
]
|
|
2383
|
-
},
|
|
2384
2391
|
"caffeinate": {
|
|
2385
2392
|
"aliases": [],
|
|
2386
2393
|
"args": {},
|
|
@@ -2748,20 +2755,19 @@
|
|
|
2748
2755
|
"open.js"
|
|
2749
2756
|
]
|
|
2750
2757
|
},
|
|
2751
|
-
"
|
|
2758
|
+
"config": {
|
|
2752
2759
|
"aliases": [],
|
|
2753
|
-
"args": {
|
|
2754
|
-
|
|
2755
|
-
"description": "Task description for the agent",
|
|
2756
|
-
"name": "task",
|
|
2757
|
-
"required": false
|
|
2758
|
-
}
|
|
2759
|
-
},
|
|
2760
|
-
"description": "Quick launch Codex for ad-hoc sessions (works anywhere, no HQ required)",
|
|
2760
|
+
"args": {},
|
|
2761
|
+
"description": "View and update workspace configuration",
|
|
2761
2762
|
"examples": [
|
|
2762
|
-
"<%= config.bin %>
|
|
2763
|
-
"<%= config.bin %>
|
|
2764
|
-
"<%= config.bin %>
|
|
2763
|
+
"<%= config.bin %> <%= command.id %> # Interactive menu",
|
|
2764
|
+
"<%= config.bin %> <%= command.id %> --json # Output current config as JSON",
|
|
2765
|
+
"<%= config.bin %> <%= command.id %> --set terminal.app iTerm",
|
|
2766
|
+
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
2767
|
+
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
2768
|
+
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
2769
|
+
"<%= config.bin %> <%= command.id %> --set claude-code.version 2.1.80 # Pin Claude Code version",
|
|
2770
|
+
"<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
|
|
2765
2771
|
],
|
|
2766
2772
|
"flags": {
|
|
2767
2773
|
"json": {
|
|
@@ -2777,36 +2783,32 @@
|
|
|
2777
2783
|
"allowNo": false,
|
|
2778
2784
|
"type": "boolean"
|
|
2779
2785
|
},
|
|
2780
|
-
"
|
|
2781
|
-
"char": "
|
|
2782
|
-
"description": "
|
|
2783
|
-
"name": "
|
|
2786
|
+
"set": {
|
|
2787
|
+
"char": "s",
|
|
2788
|
+
"description": "Set a config value (format: key value)",
|
|
2789
|
+
"name": "set",
|
|
2784
2790
|
"hasDynamicHelp": false,
|
|
2785
|
-
"multiple":
|
|
2786
|
-
"options": [
|
|
2787
|
-
"danger",
|
|
2788
|
-
"safe"
|
|
2789
|
-
],
|
|
2791
|
+
"multiple": true,
|
|
2790
2792
|
"type": "option"
|
|
2791
2793
|
},
|
|
2792
|
-
"
|
|
2793
|
-
"
|
|
2794
|
-
"
|
|
2794
|
+
"list": {
|
|
2795
|
+
"char": "l",
|
|
2796
|
+
"description": "List all configuration values",
|
|
2797
|
+
"name": "list",
|
|
2798
|
+
"allowNo": false,
|
|
2799
|
+
"type": "boolean"
|
|
2800
|
+
},
|
|
2801
|
+
"setting": {
|
|
2802
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
2803
|
+
"name": "setting",
|
|
2795
2804
|
"hasDynamicHelp": false,
|
|
2796
2805
|
"multiple": false,
|
|
2797
2806
|
"type": "option"
|
|
2798
|
-
},
|
|
2799
|
-
"detached": {
|
|
2800
|
-
"char": "d",
|
|
2801
|
-
"description": "Run in background (detached)",
|
|
2802
|
-
"name": "detached",
|
|
2803
|
-
"allowNo": false,
|
|
2804
|
-
"type": "boolean"
|
|
2805
2807
|
}
|
|
2806
2808
|
},
|
|
2807
2809
|
"hasDynamicHelp": false,
|
|
2808
2810
|
"hiddenAliases": [],
|
|
2809
|
-
"id": "
|
|
2811
|
+
"id": "config",
|
|
2810
2812
|
"pluginAlias": "@proletariat/cli",
|
|
2811
2813
|
"pluginName": "@proletariat/cli",
|
|
2812
2814
|
"pluginType": "core",
|
|
@@ -2815,23 +2817,24 @@
|
|
|
2815
2817
|
"relativePath": [
|
|
2816
2818
|
"dist",
|
|
2817
2819
|
"commands",
|
|
2818
|
-
"
|
|
2820
|
+
"config",
|
|
2819
2821
|
"index.js"
|
|
2820
2822
|
]
|
|
2821
2823
|
},
|
|
2822
|
-
"
|
|
2824
|
+
"codex": {
|
|
2823
2825
|
"aliases": [],
|
|
2824
|
-
"args": {
|
|
2825
|
-
|
|
2826
|
+
"args": {
|
|
2827
|
+
"task": {
|
|
2828
|
+
"description": "Task description for the agent",
|
|
2829
|
+
"name": "task",
|
|
2830
|
+
"required": false
|
|
2831
|
+
}
|
|
2832
|
+
},
|
|
2833
|
+
"description": "Quick launch Codex for ad-hoc sessions (works anywhere, no HQ required)",
|
|
2826
2834
|
"examples": [
|
|
2827
|
-
"<%= config.bin %>
|
|
2828
|
-
"<%= config.bin %>
|
|
2829
|
-
"<%= config.bin %>
|
|
2830
|
-
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
2831
|
-
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
2832
|
-
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
2833
|
-
"<%= config.bin %> <%= command.id %> --set claude-code.version 2.1.80 # Pin Claude Code version",
|
|
2834
|
-
"<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
|
|
2835
|
+
"<%= config.bin %> codex \"fix the bug\"",
|
|
2836
|
+
"<%= config.bin %> codex \"add dark mode\" --permission-mode danger",
|
|
2837
|
+
"<%= config.bin %> codex \"add tests\" --directory ./my-project"
|
|
2835
2838
|
],
|
|
2836
2839
|
"flags": {
|
|
2837
2840
|
"json": {
|
|
@@ -2847,32 +2850,36 @@
|
|
|
2847
2850
|
"allowNo": false,
|
|
2848
2851
|
"type": "boolean"
|
|
2849
2852
|
},
|
|
2850
|
-
"
|
|
2851
|
-
"char": "
|
|
2852
|
-
"description": "
|
|
2853
|
-
"name": "
|
|
2853
|
+
"permission-mode": {
|
|
2854
|
+
"char": "p",
|
|
2855
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
2856
|
+
"name": "permission-mode",
|
|
2854
2857
|
"hasDynamicHelp": false,
|
|
2855
|
-
"multiple":
|
|
2858
|
+
"multiple": false,
|
|
2859
|
+
"options": [
|
|
2860
|
+
"danger",
|
|
2861
|
+
"safe"
|
|
2862
|
+
],
|
|
2856
2863
|
"type": "option"
|
|
2857
2864
|
},
|
|
2858
|
-
"
|
|
2859
|
-
"
|
|
2860
|
-
"
|
|
2861
|
-
"name": "list",
|
|
2862
|
-
"allowNo": false,
|
|
2863
|
-
"type": "boolean"
|
|
2864
|
-
},
|
|
2865
|
-
"setting": {
|
|
2866
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
2867
|
-
"name": "setting",
|
|
2865
|
+
"directory": {
|
|
2866
|
+
"description": "Directory to run in (default: cwd)",
|
|
2867
|
+
"name": "directory",
|
|
2868
2868
|
"hasDynamicHelp": false,
|
|
2869
2869
|
"multiple": false,
|
|
2870
2870
|
"type": "option"
|
|
2871
|
+
},
|
|
2872
|
+
"detached": {
|
|
2873
|
+
"char": "d",
|
|
2874
|
+
"description": "Run in background (detached)",
|
|
2875
|
+
"name": "detached",
|
|
2876
|
+
"allowNo": false,
|
|
2877
|
+
"type": "boolean"
|
|
2871
2878
|
}
|
|
2872
2879
|
},
|
|
2873
2880
|
"hasDynamicHelp": false,
|
|
2874
2881
|
"hiddenAliases": [],
|
|
2875
|
-
"id": "
|
|
2882
|
+
"id": "codex",
|
|
2876
2883
|
"pluginAlias": "@proletariat/cli",
|
|
2877
2884
|
"pluginName": "@proletariat/cli",
|
|
2878
2885
|
"pluginType": "core",
|
|
@@ -2881,7 +2888,7 @@
|
|
|
2881
2888
|
"relativePath": [
|
|
2882
2889
|
"dist",
|
|
2883
2890
|
"commands",
|
|
2884
|
-
"
|
|
2891
|
+
"codex",
|
|
2885
2892
|
"index.js"
|
|
2886
2893
|
]
|
|
2887
2894
|
},
|
|
@@ -6431,106 +6438,13 @@
|
|
|
6431
6438
|
"index.js"
|
|
6432
6439
|
]
|
|
6433
6440
|
},
|
|
6434
|
-
"
|
|
6441
|
+
"repo:add": {
|
|
6435
6442
|
"aliases": [],
|
|
6436
6443
|
"args": {
|
|
6437
|
-
"
|
|
6438
|
-
"description": "
|
|
6439
|
-
"name": "
|
|
6440
|
-
"required":
|
|
6441
|
-
}
|
|
6442
|
-
},
|
|
6443
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
6444
|
-
"examples": [
|
|
6445
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
6446
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
6447
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
6448
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
6449
|
-
],
|
|
6450
|
-
"flags": {
|
|
6451
|
-
"json": {
|
|
6452
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6453
|
-
"name": "json",
|
|
6454
|
-
"allowNo": false,
|
|
6455
|
-
"type": "boolean"
|
|
6456
|
-
},
|
|
6457
|
-
"machine": {
|
|
6458
|
-
"char": "m",
|
|
6459
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6460
|
-
"name": "machine",
|
|
6461
|
-
"allowNo": false,
|
|
6462
|
-
"type": "boolean"
|
|
6463
|
-
},
|
|
6464
|
-
"runner": {
|
|
6465
|
-
"char": "r",
|
|
6466
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
6467
|
-
"name": "runner",
|
|
6468
|
-
"hasDynamicHelp": false,
|
|
6469
|
-
"multiple": false,
|
|
6470
|
-
"type": "option"
|
|
6471
|
-
},
|
|
6472
|
-
"detached": {
|
|
6473
|
-
"char": "d",
|
|
6474
|
-
"description": "Run in background (detached)",
|
|
6475
|
-
"name": "detached",
|
|
6476
|
-
"allowNo": false,
|
|
6477
|
-
"type": "boolean"
|
|
6478
|
-
},
|
|
6479
|
-
"directory": {
|
|
6480
|
-
"description": "Working directory (default: cwd)",
|
|
6481
|
-
"name": "directory",
|
|
6482
|
-
"hasDynamicHelp": false,
|
|
6483
|
-
"multiple": false,
|
|
6484
|
-
"type": "option"
|
|
6485
|
-
},
|
|
6486
|
-
"permission-mode": {
|
|
6487
|
-
"char": "p",
|
|
6488
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
6489
|
-
"name": "permission-mode",
|
|
6490
|
-
"hasDynamicHelp": false,
|
|
6491
|
-
"multiple": false,
|
|
6492
|
-
"options": [
|
|
6493
|
-
"danger",
|
|
6494
|
-
"safe"
|
|
6495
|
-
],
|
|
6496
|
-
"type": "option"
|
|
6497
|
-
},
|
|
6498
|
-
"environment": {
|
|
6499
|
-
"char": "e",
|
|
6500
|
-
"description": "Environment to run in",
|
|
6501
|
-
"name": "environment",
|
|
6502
|
-
"hasDynamicHelp": false,
|
|
6503
|
-
"multiple": false,
|
|
6504
|
-
"options": [
|
|
6505
|
-
"host",
|
|
6506
|
-
"docker",
|
|
6507
|
-
"podman"
|
|
6508
|
-
],
|
|
6509
|
-
"type": "option"
|
|
6510
|
-
}
|
|
6511
|
-
},
|
|
6512
|
-
"hasDynamicHelp": false,
|
|
6513
|
-
"hiddenAliases": [],
|
|
6514
|
-
"id": "run",
|
|
6515
|
-
"pluginAlias": "@proletariat/cli",
|
|
6516
|
-
"pluginName": "@proletariat/cli",
|
|
6517
|
-
"pluginType": "core",
|
|
6518
|
-
"strict": true,
|
|
6519
|
-
"isESM": true,
|
|
6520
|
-
"relativePath": [
|
|
6521
|
-
"dist",
|
|
6522
|
-
"commands",
|
|
6523
|
-
"run",
|
|
6524
|
-
"index.js"
|
|
6525
|
-
]
|
|
6526
|
-
},
|
|
6527
|
-
"repo:add": {
|
|
6528
|
-
"aliases": [],
|
|
6529
|
-
"args": {
|
|
6530
|
-
"path": {
|
|
6531
|
-
"description": "Repository path or Git URL",
|
|
6532
|
-
"name": "path",
|
|
6533
|
-
"required": false
|
|
6444
|
+
"path": {
|
|
6445
|
+
"description": "Repository path or Git URL",
|
|
6446
|
+
"name": "path",
|
|
6447
|
+
"required": false
|
|
6534
6448
|
}
|
|
6535
6449
|
},
|
|
6536
6450
|
"description": "Add a repository to the HQ",
|
|
@@ -6929,6 +6843,99 @@
|
|
|
6929
6843
|
"view.js"
|
|
6930
6844
|
]
|
|
6931
6845
|
},
|
|
6846
|
+
"run": {
|
|
6847
|
+
"aliases": [],
|
|
6848
|
+
"args": {
|
|
6849
|
+
"task": {
|
|
6850
|
+
"description": "Task description for the agent",
|
|
6851
|
+
"name": "task",
|
|
6852
|
+
"required": true
|
|
6853
|
+
}
|
|
6854
|
+
},
|
|
6855
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
6856
|
+
"examples": [
|
|
6857
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
6858
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
6859
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
6860
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
6861
|
+
],
|
|
6862
|
+
"flags": {
|
|
6863
|
+
"json": {
|
|
6864
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6865
|
+
"name": "json",
|
|
6866
|
+
"allowNo": false,
|
|
6867
|
+
"type": "boolean"
|
|
6868
|
+
},
|
|
6869
|
+
"machine": {
|
|
6870
|
+
"char": "m",
|
|
6871
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6872
|
+
"name": "machine",
|
|
6873
|
+
"allowNo": false,
|
|
6874
|
+
"type": "boolean"
|
|
6875
|
+
},
|
|
6876
|
+
"runner": {
|
|
6877
|
+
"char": "r",
|
|
6878
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
6879
|
+
"name": "runner",
|
|
6880
|
+
"hasDynamicHelp": false,
|
|
6881
|
+
"multiple": false,
|
|
6882
|
+
"type": "option"
|
|
6883
|
+
},
|
|
6884
|
+
"detached": {
|
|
6885
|
+
"char": "d",
|
|
6886
|
+
"description": "Run in background (detached)",
|
|
6887
|
+
"name": "detached",
|
|
6888
|
+
"allowNo": false,
|
|
6889
|
+
"type": "boolean"
|
|
6890
|
+
},
|
|
6891
|
+
"directory": {
|
|
6892
|
+
"description": "Working directory (default: cwd)",
|
|
6893
|
+
"name": "directory",
|
|
6894
|
+
"hasDynamicHelp": false,
|
|
6895
|
+
"multiple": false,
|
|
6896
|
+
"type": "option"
|
|
6897
|
+
},
|
|
6898
|
+
"permission-mode": {
|
|
6899
|
+
"char": "p",
|
|
6900
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
6901
|
+
"name": "permission-mode",
|
|
6902
|
+
"hasDynamicHelp": false,
|
|
6903
|
+
"multiple": false,
|
|
6904
|
+
"options": [
|
|
6905
|
+
"danger",
|
|
6906
|
+
"safe"
|
|
6907
|
+
],
|
|
6908
|
+
"type": "option"
|
|
6909
|
+
},
|
|
6910
|
+
"environment": {
|
|
6911
|
+
"char": "e",
|
|
6912
|
+
"description": "Environment to run in",
|
|
6913
|
+
"name": "environment",
|
|
6914
|
+
"hasDynamicHelp": false,
|
|
6915
|
+
"multiple": false,
|
|
6916
|
+
"options": [
|
|
6917
|
+
"host",
|
|
6918
|
+
"docker",
|
|
6919
|
+
"podman"
|
|
6920
|
+
],
|
|
6921
|
+
"type": "option"
|
|
6922
|
+
}
|
|
6923
|
+
},
|
|
6924
|
+
"hasDynamicHelp": false,
|
|
6925
|
+
"hiddenAliases": [],
|
|
6926
|
+
"id": "run",
|
|
6927
|
+
"pluginAlias": "@proletariat/cli",
|
|
6928
|
+
"pluginName": "@proletariat/cli",
|
|
6929
|
+
"pluginType": "core",
|
|
6930
|
+
"strict": true,
|
|
6931
|
+
"isESM": true,
|
|
6932
|
+
"relativePath": [
|
|
6933
|
+
"dist",
|
|
6934
|
+
"commands",
|
|
6935
|
+
"run",
|
|
6936
|
+
"index.js"
|
|
6937
|
+
]
|
|
6938
|
+
},
|
|
6932
6939
|
"shortcut:connect": {
|
|
6933
6940
|
"aliases": [],
|
|
6934
6941
|
"args": {},
|
|
@@ -6997,30 +7004,15 @@
|
|
|
6997
7004
|
"connect.js"
|
|
6998
7005
|
]
|
|
6999
7006
|
},
|
|
7000
|
-
"
|
|
7007
|
+
"support:book": {
|
|
7001
7008
|
"aliases": [],
|
|
7002
|
-
"args": {
|
|
7003
|
-
|
|
7004
|
-
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
7005
|
-
"name": "session",
|
|
7006
|
-
"required": false
|
|
7007
|
-
}
|
|
7008
|
-
},
|
|
7009
|
-
"description": "Attach to an active agent session (DB-first: only attaches to tracked executions)",
|
|
7009
|
+
"args": {},
|
|
7010
|
+
"description": "Book a call for support",
|
|
7010
7011
|
"examples": [
|
|
7011
7012
|
"<%= config.bin %> <%= command.id %>",
|
|
7012
|
-
"<%= config.bin %> <%= command.id %>
|
|
7013
|
-
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
7013
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7014
7014
|
],
|
|
7015
7015
|
"flags": {
|
|
7016
|
-
"project": {
|
|
7017
|
-
"char": "P",
|
|
7018
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7019
|
-
"name": "project",
|
|
7020
|
-
"hasDynamicHelp": false,
|
|
7021
|
-
"multiple": false,
|
|
7022
|
-
"type": "option"
|
|
7023
|
-
},
|
|
7024
7016
|
"json": {
|
|
7025
7017
|
"description": "Output as JSON for AI agents/scripts",
|
|
7026
7018
|
"name": "json",
|
|
@@ -7033,55 +7025,31 @@
|
|
|
7033
7025
|
"name": "machine",
|
|
7034
7026
|
"allowNo": false,
|
|
7035
7027
|
"type": "boolean"
|
|
7036
|
-
},
|
|
7037
|
-
"new-tab": {
|
|
7038
|
-
"char": "n",
|
|
7039
|
-
"description": "Open in a new terminal tab (default: true)",
|
|
7040
|
-
"name": "new-tab",
|
|
7041
|
-
"allowNo": false,
|
|
7042
|
-
"type": "boolean"
|
|
7043
|
-
},
|
|
7044
|
-
"current-terminal": {
|
|
7045
|
-
"char": "c",
|
|
7046
|
-
"description": "Attach in current terminal instead of new tab",
|
|
7047
|
-
"name": "current-terminal",
|
|
7048
|
-
"allowNo": false,
|
|
7049
|
-
"type": "boolean"
|
|
7050
|
-
},
|
|
7051
|
-
"terminal": {
|
|
7052
|
-
"char": "t",
|
|
7053
|
-
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7054
|
-
"name": "terminal",
|
|
7055
|
-
"default": "iTerm",
|
|
7056
|
-
"hasDynamicHelp": false,
|
|
7057
|
-
"multiple": false,
|
|
7058
|
-
"type": "option"
|
|
7059
7028
|
}
|
|
7060
7029
|
},
|
|
7061
7030
|
"hasDynamicHelp": false,
|
|
7062
7031
|
"hiddenAliases": [],
|
|
7063
|
-
"id": "
|
|
7032
|
+
"id": "support:book",
|
|
7064
7033
|
"pluginAlias": "@proletariat/cli",
|
|
7065
7034
|
"pluginName": "@proletariat/cli",
|
|
7066
7035
|
"pluginType": "core",
|
|
7067
7036
|
"strict": true,
|
|
7037
|
+
"enableJsonFlag": false,
|
|
7068
7038
|
"isESM": true,
|
|
7069
7039
|
"relativePath": [
|
|
7070
7040
|
"dist",
|
|
7071
7041
|
"commands",
|
|
7072
|
-
"
|
|
7073
|
-
"
|
|
7042
|
+
"support",
|
|
7043
|
+
"book.js"
|
|
7074
7044
|
]
|
|
7075
7045
|
},
|
|
7076
|
-
"
|
|
7046
|
+
"support:discord": {
|
|
7077
7047
|
"aliases": [],
|
|
7078
7048
|
"args": {},
|
|
7079
|
-
"description": "
|
|
7049
|
+
"description": "Join the Discord community",
|
|
7080
7050
|
"examples": [
|
|
7081
|
-
"<%= config.bin %>
|
|
7082
|
-
"<%= config.bin %>
|
|
7083
|
-
"<%= config.bin %> session cleanup --force",
|
|
7084
|
-
"<%= config.bin %> session cleanup --force --yes"
|
|
7051
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7052
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7085
7053
|
],
|
|
7086
7054
|
"flags": {
|
|
7087
7055
|
"json": {
|
|
@@ -7096,58 +7064,31 @@
|
|
|
7096
7064
|
"name": "machine",
|
|
7097
7065
|
"allowNo": false,
|
|
7098
7066
|
"type": "boolean"
|
|
7099
|
-
},
|
|
7100
|
-
"dry-run": {
|
|
7101
|
-
"char": "d",
|
|
7102
|
-
"description": "Show what would be cleaned up without actually doing it",
|
|
7103
|
-
"name": "dry-run",
|
|
7104
|
-
"allowNo": false,
|
|
7105
|
-
"type": "boolean"
|
|
7106
|
-
},
|
|
7107
|
-
"force": {
|
|
7108
|
-
"char": "f",
|
|
7109
|
-
"description": "Remove all agent containers, including those with active executions",
|
|
7110
|
-
"name": "force",
|
|
7111
|
-
"allowNo": false,
|
|
7112
|
-
"type": "boolean"
|
|
7113
|
-
},
|
|
7114
|
-
"yes": {
|
|
7115
|
-
"char": "y",
|
|
7116
|
-
"description": "Skip confirmation prompt when using --force",
|
|
7117
|
-
"name": "yes",
|
|
7118
|
-
"allowNo": false,
|
|
7119
|
-
"type": "boolean"
|
|
7120
7067
|
}
|
|
7121
7068
|
},
|
|
7122
7069
|
"hasDynamicHelp": false,
|
|
7123
7070
|
"hiddenAliases": [],
|
|
7124
|
-
"id": "
|
|
7071
|
+
"id": "support:discord",
|
|
7125
7072
|
"pluginAlias": "@proletariat/cli",
|
|
7126
7073
|
"pluginName": "@proletariat/cli",
|
|
7127
7074
|
"pluginType": "core",
|
|
7128
7075
|
"strict": true,
|
|
7076
|
+
"enableJsonFlag": false,
|
|
7129
7077
|
"isESM": true,
|
|
7130
7078
|
"relativePath": [
|
|
7131
7079
|
"dist",
|
|
7132
7080
|
"commands",
|
|
7133
|
-
"
|
|
7134
|
-
"
|
|
7081
|
+
"support",
|
|
7082
|
+
"discord.js"
|
|
7135
7083
|
]
|
|
7136
7084
|
},
|
|
7137
|
-
"
|
|
7085
|
+
"support:docs": {
|
|
7138
7086
|
"aliases": [],
|
|
7139
|
-
"args": {
|
|
7140
|
-
|
|
7141
|
-
"description": "Name for the new tmux session",
|
|
7142
|
-
"name": "name",
|
|
7143
|
-
"required": true
|
|
7144
|
-
}
|
|
7145
|
-
},
|
|
7146
|
-
"description": "Create a new tmux session",
|
|
7087
|
+
"args": {},
|
|
7088
|
+
"description": "Open documentation in browser",
|
|
7147
7089
|
"examples": [
|
|
7148
|
-
"<%= config.bin %> <%= command.id %>
|
|
7149
|
-
"<%= config.bin %> <%= command.id %>
|
|
7150
|
-
"<%= config.bin %> <%= command.id %> my-session --detach"
|
|
7090
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7091
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7151
7092
|
],
|
|
7152
7093
|
"flags": {
|
|
7153
7094
|
"json": {
|
|
@@ -7162,53 +7103,35 @@
|
|
|
7162
7103
|
"name": "machine",
|
|
7163
7104
|
"allowNo": false,
|
|
7164
7105
|
"type": "boolean"
|
|
7165
|
-
},
|
|
7166
|
-
"command": {
|
|
7167
|
-
"char": "c",
|
|
7168
|
-
"description": "Initial command to run in the session",
|
|
7169
|
-
"name": "command",
|
|
7170
|
-
"hasDynamicHelp": false,
|
|
7171
|
-
"multiple": false,
|
|
7172
|
-
"type": "option"
|
|
7173
|
-
},
|
|
7174
|
-
"detach": {
|
|
7175
|
-
"char": "d",
|
|
7176
|
-
"description": "Create session in detached mode (do not attach)",
|
|
7177
|
-
"name": "detach",
|
|
7178
|
-
"allowNo": false,
|
|
7179
|
-
"type": "boolean"
|
|
7180
7106
|
}
|
|
7181
7107
|
},
|
|
7182
7108
|
"hasDynamicHelp": false,
|
|
7183
7109
|
"hiddenAliases": [],
|
|
7184
|
-
"id": "
|
|
7110
|
+
"id": "support:docs",
|
|
7185
7111
|
"pluginAlias": "@proletariat/cli",
|
|
7186
7112
|
"pluginName": "@proletariat/cli",
|
|
7187
7113
|
"pluginType": "core",
|
|
7188
7114
|
"strict": true,
|
|
7115
|
+
"enableJsonFlag": false,
|
|
7189
7116
|
"isESM": true,
|
|
7190
7117
|
"relativePath": [
|
|
7191
7118
|
"dist",
|
|
7192
7119
|
"commands",
|
|
7193
|
-
"
|
|
7194
|
-
"
|
|
7120
|
+
"support",
|
|
7121
|
+
"docs.js"
|
|
7195
7122
|
]
|
|
7196
7123
|
},
|
|
7197
|
-
"
|
|
7124
|
+
"support": {
|
|
7198
7125
|
"aliases": [],
|
|
7199
|
-
"args": {
|
|
7200
|
-
|
|
7201
|
-
"description": "Agent name or ticket ID",
|
|
7202
|
-
"name": "target",
|
|
7203
|
-
"required": true
|
|
7204
|
-
}
|
|
7205
|
-
},
|
|
7206
|
-
"description": "Run a command in an agent's worktree/container context",
|
|
7126
|
+
"args": {},
|
|
7127
|
+
"description": "Get help, troubleshoot, and connect with the community",
|
|
7207
7128
|
"examples": [
|
|
7208
|
-
"<%= config.bin %>
|
|
7209
|
-
"<%= config.bin %>
|
|
7210
|
-
"<%= config.bin %>
|
|
7211
|
-
"<%= config.bin %>
|
|
7129
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7130
|
+
"<%= config.bin %> <%= command.id %> book",
|
|
7131
|
+
"<%= config.bin %> <%= command.id %> docs",
|
|
7132
|
+
"<%= config.bin %> <%= command.id %> discord",
|
|
7133
|
+
"<%= config.bin %> <%= command.id %> issues",
|
|
7134
|
+
"<%= config.bin %> <%= command.id %> logs"
|
|
7212
7135
|
],
|
|
7213
7136
|
"flags": {
|
|
7214
7137
|
"json": {
|
|
@@ -7223,54 +7146,34 @@
|
|
|
7223
7146
|
"name": "machine",
|
|
7224
7147
|
"allowNo": false,
|
|
7225
7148
|
"type": "boolean"
|
|
7226
|
-
},
|
|
7227
|
-
"timeout": {
|
|
7228
|
-
"char": "t",
|
|
7229
|
-
"description": "Command timeout in seconds",
|
|
7230
|
-
"name": "timeout",
|
|
7231
|
-
"default": 30,
|
|
7232
|
-
"hasDynamicHelp": false,
|
|
7233
|
-
"multiple": false,
|
|
7234
|
-
"type": "option"
|
|
7235
7149
|
}
|
|
7236
7150
|
},
|
|
7237
7151
|
"hasDynamicHelp": false,
|
|
7238
7152
|
"hiddenAliases": [],
|
|
7239
|
-
"id": "
|
|
7153
|
+
"id": "support",
|
|
7240
7154
|
"pluginAlias": "@proletariat/cli",
|
|
7241
7155
|
"pluginName": "@proletariat/cli",
|
|
7242
7156
|
"pluginType": "core",
|
|
7243
|
-
"strict":
|
|
7157
|
+
"strict": true,
|
|
7158
|
+
"enableJsonFlag": false,
|
|
7244
7159
|
"isESM": true,
|
|
7245
7160
|
"relativePath": [
|
|
7246
7161
|
"dist",
|
|
7247
7162
|
"commands",
|
|
7248
|
-
"
|
|
7249
|
-
"
|
|
7163
|
+
"support",
|
|
7164
|
+
"index.js"
|
|
7250
7165
|
]
|
|
7251
7166
|
},
|
|
7252
|
-
"
|
|
7167
|
+
"support:issues": {
|
|
7253
7168
|
"aliases": [],
|
|
7254
7169
|
"args": {},
|
|
7255
|
-
"description": "
|
|
7170
|
+
"description": "Browse GitHub Issues",
|
|
7256
7171
|
"examples": [
|
|
7257
|
-
"<%= config.bin %>
|
|
7258
|
-
"<%= config.bin %>
|
|
7259
|
-
"<%= config.bin %>
|
|
7260
|
-
"<%= config.bin %> session health --fix --poke-idle",
|
|
7261
|
-
"<%= config.bin %> session health --watch",
|
|
7262
|
-
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
7263
|
-
"<%= config.bin %> session health --watch --poke-idle"
|
|
7172
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7173
|
+
"<%= config.bin %> <%= command.id %> --browser",
|
|
7174
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7264
7175
|
],
|
|
7265
7176
|
"flags": {
|
|
7266
|
-
"project": {
|
|
7267
|
-
"char": "P",
|
|
7268
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7269
|
-
"name": "project",
|
|
7270
|
-
"hasDynamicHelp": false,
|
|
7271
|
-
"multiple": false,
|
|
7272
|
-
"type": "option"
|
|
7273
|
-
},
|
|
7274
7177
|
"json": {
|
|
7275
7178
|
"description": "Output as JSON for AI agents/scripts",
|
|
7276
7179
|
"name": "json",
|
|
@@ -7284,67 +7187,47 @@
|
|
|
7284
7187
|
"allowNo": false,
|
|
7285
7188
|
"type": "boolean"
|
|
7286
7189
|
},
|
|
7287
|
-
"
|
|
7288
|
-
"description": "
|
|
7289
|
-
"name": "
|
|
7290
|
-
"allowNo":
|
|
7291
|
-
"type": "boolean"
|
|
7292
|
-
},
|
|
7293
|
-
"poke-idle": {
|
|
7294
|
-
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
7295
|
-
"name": "poke-idle",
|
|
7296
|
-
"allowNo": false,
|
|
7297
|
-
"type": "boolean"
|
|
7298
|
-
},
|
|
7299
|
-
"watch": {
|
|
7300
|
-
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
7301
|
-
"name": "watch",
|
|
7302
|
-
"allowNo": false,
|
|
7190
|
+
"browser": {
|
|
7191
|
+
"description": "Open issues in browser (default behavior)",
|
|
7192
|
+
"name": "browser",
|
|
7193
|
+
"allowNo": true,
|
|
7303
7194
|
"type": "boolean"
|
|
7304
|
-
},
|
|
7305
|
-
"interval": {
|
|
7306
|
-
"description": "Watch polling interval in minutes",
|
|
7307
|
-
"name": "interval",
|
|
7308
|
-
"default": 5,
|
|
7309
|
-
"hasDynamicHelp": false,
|
|
7310
|
-
"multiple": false,
|
|
7311
|
-
"type": "option"
|
|
7312
|
-
},
|
|
7313
|
-
"threshold": {
|
|
7314
|
-
"description": "Minutes an agent must be hung/idle before auto-recovery in watch mode",
|
|
7315
|
-
"name": "threshold",
|
|
7316
|
-
"default": 10,
|
|
7317
|
-
"hasDynamicHelp": false,
|
|
7318
|
-
"multiple": false,
|
|
7319
|
-
"type": "option"
|
|
7320
7195
|
}
|
|
7321
7196
|
},
|
|
7322
7197
|
"hasDynamicHelp": false,
|
|
7323
7198
|
"hiddenAliases": [],
|
|
7324
|
-
"id": "
|
|
7199
|
+
"id": "support:issues",
|
|
7325
7200
|
"pluginAlias": "@proletariat/cli",
|
|
7326
7201
|
"pluginName": "@proletariat/cli",
|
|
7327
7202
|
"pluginType": "core",
|
|
7328
7203
|
"strict": true,
|
|
7204
|
+
"enableJsonFlag": false,
|
|
7329
7205
|
"isESM": true,
|
|
7330
7206
|
"relativePath": [
|
|
7331
7207
|
"dist",
|
|
7332
7208
|
"commands",
|
|
7333
|
-
"
|
|
7334
|
-
"
|
|
7209
|
+
"support",
|
|
7210
|
+
"issues.js"
|
|
7335
7211
|
]
|
|
7336
7212
|
},
|
|
7337
|
-
"
|
|
7213
|
+
"support:logs": {
|
|
7338
7214
|
"aliases": [],
|
|
7339
7215
|
"args": {},
|
|
7340
|
-
"description": "
|
|
7216
|
+
"description": "Collect diagnostic info for troubleshooting",
|
|
7341
7217
|
"examples": [
|
|
7342
7218
|
"<%= config.bin %> <%= command.id %>",
|
|
7343
|
-
"<%= config.bin %> <%= command.id %>
|
|
7344
|
-
"<%= config.bin %> <%= command.id %>
|
|
7345
|
-
"<%= config.bin %> <%= command.id %> create my-session"
|
|
7219
|
+
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
7220
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7346
7221
|
],
|
|
7347
7222
|
"flags": {
|
|
7223
|
+
"project": {
|
|
7224
|
+
"char": "P",
|
|
7225
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7226
|
+
"name": "project",
|
|
7227
|
+
"hasDynamicHelp": false,
|
|
7228
|
+
"multiple": false,
|
|
7229
|
+
"type": "option"
|
|
7230
|
+
},
|
|
7348
7231
|
"json": {
|
|
7349
7232
|
"description": "Output as JSON for AI agents/scripts",
|
|
7350
7233
|
"name": "json",
|
|
@@ -7357,11 +7240,17 @@
|
|
|
7357
7240
|
"name": "machine",
|
|
7358
7241
|
"allowNo": false,
|
|
7359
7242
|
"type": "boolean"
|
|
7243
|
+
},
|
|
7244
|
+
"clipboard": {
|
|
7245
|
+
"description": "Copy diagnostics to clipboard",
|
|
7246
|
+
"name": "clipboard",
|
|
7247
|
+
"allowNo": false,
|
|
7248
|
+
"type": "boolean"
|
|
7360
7249
|
}
|
|
7361
7250
|
},
|
|
7362
7251
|
"hasDynamicHelp": false,
|
|
7363
7252
|
"hiddenAliases": [],
|
|
7364
|
-
"id": "
|
|
7253
|
+
"id": "support:logs",
|
|
7365
7254
|
"pluginAlias": "@proletariat/cli",
|
|
7366
7255
|
"pluginName": "@proletariat/cli",
|
|
7367
7256
|
"pluginType": "core",
|
|
@@ -7370,27 +7259,34 @@
|
|
|
7370
7259
|
"relativePath": [
|
|
7371
7260
|
"dist",
|
|
7372
7261
|
"commands",
|
|
7373
|
-
"
|
|
7374
|
-
"
|
|
7262
|
+
"support",
|
|
7263
|
+
"logs.js"
|
|
7375
7264
|
]
|
|
7376
7265
|
},
|
|
7377
|
-
"session:
|
|
7266
|
+
"session:attach": {
|
|
7378
7267
|
"aliases": [],
|
|
7379
7268
|
"args": {
|
|
7380
|
-
"
|
|
7381
|
-
"description": "
|
|
7382
|
-
"name": "
|
|
7383
|
-
"required":
|
|
7269
|
+
"session": {
|
|
7270
|
+
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
7271
|
+
"name": "session",
|
|
7272
|
+
"required": false
|
|
7384
7273
|
}
|
|
7385
7274
|
},
|
|
7386
|
-
"description": "
|
|
7275
|
+
"description": "Attach to an active agent session (DB-first: only attaches to tracked executions)",
|
|
7387
7276
|
"examples": [
|
|
7388
|
-
"<%= config.bin %>
|
|
7389
|
-
"<%= config.bin %>
|
|
7390
|
-
"<%= config.bin %>
|
|
7391
|
-
"<%= config.bin %> session inspect altman --json"
|
|
7277
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7278
|
+
"<%= config.bin %> <%= command.id %> TKT-347-implement-altman",
|
|
7279
|
+
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
7392
7280
|
],
|
|
7393
7281
|
"flags": {
|
|
7282
|
+
"project": {
|
|
7283
|
+
"char": "P",
|
|
7284
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7285
|
+
"name": "project",
|
|
7286
|
+
"hasDynamicHelp": false,
|
|
7287
|
+
"multiple": false,
|
|
7288
|
+
"type": "option"
|
|
7289
|
+
},
|
|
7394
7290
|
"json": {
|
|
7395
7291
|
"description": "Output as JSON for AI agents/scripts",
|
|
7396
7292
|
"name": "json",
|
|
@@ -7404,11 +7300,25 @@
|
|
|
7404
7300
|
"allowNo": false,
|
|
7405
7301
|
"type": "boolean"
|
|
7406
7302
|
},
|
|
7407
|
-
"
|
|
7408
|
-
"char": "
|
|
7409
|
-
"description": "
|
|
7410
|
-
"name": "
|
|
7411
|
-
"
|
|
7303
|
+
"new-tab": {
|
|
7304
|
+
"char": "n",
|
|
7305
|
+
"description": "Open in a new terminal tab (default: true)",
|
|
7306
|
+
"name": "new-tab",
|
|
7307
|
+
"allowNo": false,
|
|
7308
|
+
"type": "boolean"
|
|
7309
|
+
},
|
|
7310
|
+
"current-terminal": {
|
|
7311
|
+
"char": "c",
|
|
7312
|
+
"description": "Attach in current terminal instead of new tab",
|
|
7313
|
+
"name": "current-terminal",
|
|
7314
|
+
"allowNo": false,
|
|
7315
|
+
"type": "boolean"
|
|
7316
|
+
},
|
|
7317
|
+
"terminal": {
|
|
7318
|
+
"char": "t",
|
|
7319
|
+
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7320
|
+
"name": "terminal",
|
|
7321
|
+
"default": "iTerm",
|
|
7412
7322
|
"hasDynamicHelp": false,
|
|
7413
7323
|
"multiple": false,
|
|
7414
7324
|
"type": "option"
|
|
@@ -7416,7 +7326,7 @@
|
|
|
7416
7326
|
},
|
|
7417
7327
|
"hasDynamicHelp": false,
|
|
7418
7328
|
"hiddenAliases": [],
|
|
7419
|
-
"id": "session:
|
|
7329
|
+
"id": "session:attach",
|
|
7420
7330
|
"pluginAlias": "@proletariat/cli",
|
|
7421
7331
|
"pluginName": "@proletariat/cli",
|
|
7422
7332
|
"pluginType": "core",
|
|
@@ -7426,18 +7336,19 @@
|
|
|
7426
7336
|
"dist",
|
|
7427
7337
|
"commands",
|
|
7428
7338
|
"session",
|
|
7429
|
-
"
|
|
7339
|
+
"attach.js"
|
|
7430
7340
|
]
|
|
7431
7341
|
},
|
|
7432
|
-
"session:
|
|
7342
|
+
"session:cleanup": {
|
|
7433
7343
|
"aliases": [],
|
|
7434
7344
|
"args": {},
|
|
7435
|
-
"description": "
|
|
7345
|
+
"description": "Stop and remove Docker containers for completed agents",
|
|
7436
7346
|
"examples": [
|
|
7437
|
-
"<%= config.bin %>
|
|
7438
|
-
"<%= config.bin %>
|
|
7439
|
-
"<%= config.bin %>
|
|
7440
|
-
|
|
7347
|
+
"<%= config.bin %> session cleanup",
|
|
7348
|
+
"<%= config.bin %> session cleanup --dry-run",
|
|
7349
|
+
"<%= config.bin %> session cleanup --force",
|
|
7350
|
+
"<%= config.bin %> session cleanup --force --yes"
|
|
7351
|
+
],
|
|
7441
7352
|
"flags": {
|
|
7442
7353
|
"json": {
|
|
7443
7354
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -7452,23 +7363,31 @@
|
|
|
7452
7363
|
"allowNo": false,
|
|
7453
7364
|
"type": "boolean"
|
|
7454
7365
|
},
|
|
7455
|
-
"
|
|
7456
|
-
"char": "
|
|
7457
|
-
"description": "Show
|
|
7458
|
-
"name": "
|
|
7366
|
+
"dry-run": {
|
|
7367
|
+
"char": "d",
|
|
7368
|
+
"description": "Show what would be cleaned up without actually doing it",
|
|
7369
|
+
"name": "dry-run",
|
|
7459
7370
|
"allowNo": false,
|
|
7460
7371
|
"type": "boolean"
|
|
7461
7372
|
},
|
|
7462
|
-
"
|
|
7463
|
-
"
|
|
7464
|
-
"
|
|
7373
|
+
"force": {
|
|
7374
|
+
"char": "f",
|
|
7375
|
+
"description": "Remove all agent containers, including those with active executions",
|
|
7376
|
+
"name": "force",
|
|
7377
|
+
"allowNo": false,
|
|
7378
|
+
"type": "boolean"
|
|
7379
|
+
},
|
|
7380
|
+
"yes": {
|
|
7381
|
+
"char": "y",
|
|
7382
|
+
"description": "Skip confirmation prompt when using --force",
|
|
7383
|
+
"name": "yes",
|
|
7465
7384
|
"allowNo": false,
|
|
7466
7385
|
"type": "boolean"
|
|
7467
7386
|
}
|
|
7468
7387
|
},
|
|
7469
7388
|
"hasDynamicHelp": false,
|
|
7470
7389
|
"hiddenAliases": [],
|
|
7471
|
-
"id": "session:
|
|
7390
|
+
"id": "session:cleanup",
|
|
7472
7391
|
"pluginAlias": "@proletariat/cli",
|
|
7473
7392
|
"pluginName": "@proletariat/cli",
|
|
7474
7393
|
"pluginType": "core",
|
|
@@ -7478,39 +7397,25 @@
|
|
|
7478
7397
|
"dist",
|
|
7479
7398
|
"commands",
|
|
7480
7399
|
"session",
|
|
7481
|
-
"
|
|
7400
|
+
"cleanup.js"
|
|
7482
7401
|
]
|
|
7483
7402
|
},
|
|
7484
|
-
"session:
|
|
7403
|
+
"session:create": {
|
|
7485
7404
|
"aliases": [],
|
|
7486
7405
|
"args": {
|
|
7487
|
-
"
|
|
7488
|
-
"description": "
|
|
7489
|
-
"name": "
|
|
7490
|
-
"required":
|
|
7406
|
+
"name": {
|
|
7407
|
+
"description": "Name for the new tmux session",
|
|
7408
|
+
"name": "name",
|
|
7409
|
+
"required": true
|
|
7491
7410
|
}
|
|
7492
7411
|
},
|
|
7493
|
-
"description": "
|
|
7412
|
+
"description": "Create a new tmux session",
|
|
7494
7413
|
"examples": [
|
|
7495
|
-
"<%= config.bin %>
|
|
7496
|
-
"<%= config.bin %> session
|
|
7497
|
-
"<%= config.bin %>
|
|
7498
|
-
"<%= config.bin %> session peek altman --lines 100",
|
|
7499
|
-
"<%= config.bin %> session peek altman --full",
|
|
7500
|
-
"<%= config.bin %> session peek altman --follow",
|
|
7501
|
-
"<%= config.bin %> session peek altman --since 2025-01-01T12:00:00Z",
|
|
7502
|
-
"<%= config.bin %> session peek TKT-123 --json",
|
|
7503
|
-
"<%= config.bin %> session peek altman | grep error"
|
|
7414
|
+
"<%= config.bin %> <%= command.id %> my-session",
|
|
7415
|
+
"<%= config.bin %> <%= command.id %> my-session --command \"npm run dev\"",
|
|
7416
|
+
"<%= config.bin %> <%= command.id %> my-session --detach"
|
|
7504
7417
|
],
|
|
7505
7418
|
"flags": {
|
|
7506
|
-
"project": {
|
|
7507
|
-
"char": "P",
|
|
7508
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7509
|
-
"name": "project",
|
|
7510
|
-
"hasDynamicHelp": false,
|
|
7511
|
-
"multiple": false,
|
|
7512
|
-
"type": "option"
|
|
7513
|
-
},
|
|
7514
7419
|
"json": {
|
|
7515
7420
|
"description": "Output as JSON for AI agents/scripts",
|
|
7516
7421
|
"name": "json",
|
|
@@ -7524,47 +7429,25 @@
|
|
|
7524
7429
|
"allowNo": false,
|
|
7525
7430
|
"type": "boolean"
|
|
7526
7431
|
},
|
|
7527
|
-
"
|
|
7528
|
-
"char": "
|
|
7529
|
-
"description": "
|
|
7530
|
-
"name": "
|
|
7531
|
-
"default": 200,
|
|
7532
|
-
"hasDynamicHelp": false,
|
|
7533
|
-
"multiple": false,
|
|
7534
|
-
"type": "option"
|
|
7535
|
-
},
|
|
7536
|
-
"full": {
|
|
7537
|
-
"description": "Capture entire scrollback buffer (up to 32768 lines)",
|
|
7538
|
-
"name": "full",
|
|
7539
|
-
"allowNo": false,
|
|
7540
|
-
"type": "boolean"
|
|
7541
|
-
},
|
|
7542
|
-
"since": {
|
|
7543
|
-
"description": "Filter output to lines after this timestamp (ISO 8601)",
|
|
7544
|
-
"name": "since",
|
|
7432
|
+
"command": {
|
|
7433
|
+
"char": "c",
|
|
7434
|
+
"description": "Initial command to run in the session",
|
|
7435
|
+
"name": "command",
|
|
7545
7436
|
"hasDynamicHelp": false,
|
|
7546
7437
|
"multiple": false,
|
|
7547
7438
|
"type": "option"
|
|
7548
7439
|
},
|
|
7549
|
-
"
|
|
7550
|
-
"char": "
|
|
7551
|
-
"description": "
|
|
7552
|
-
"name": "
|
|
7440
|
+
"detach": {
|
|
7441
|
+
"char": "d",
|
|
7442
|
+
"description": "Create session in detached mode (do not attach)",
|
|
7443
|
+
"name": "detach",
|
|
7553
7444
|
"allowNo": false,
|
|
7554
7445
|
"type": "boolean"
|
|
7555
|
-
},
|
|
7556
|
-
"interval": {
|
|
7557
|
-
"description": "Polling interval in seconds for --follow mode",
|
|
7558
|
-
"name": "interval",
|
|
7559
|
-
"default": 2,
|
|
7560
|
-
"hasDynamicHelp": false,
|
|
7561
|
-
"multiple": false,
|
|
7562
|
-
"type": "option"
|
|
7563
7446
|
}
|
|
7564
7447
|
},
|
|
7565
7448
|
"hasDynamicHelp": false,
|
|
7566
7449
|
"hiddenAliases": [],
|
|
7567
|
-
"id": "session:
|
|
7450
|
+
"id": "session:create",
|
|
7568
7451
|
"pluginAlias": "@proletariat/cli",
|
|
7569
7452
|
"pluginName": "@proletariat/cli",
|
|
7570
7453
|
"pluginType": "core",
|
|
@@ -7574,30 +7457,24 @@
|
|
|
7574
7457
|
"dist",
|
|
7575
7458
|
"commands",
|
|
7576
7459
|
"session",
|
|
7577
|
-
"
|
|
7460
|
+
"create.js"
|
|
7578
7461
|
]
|
|
7579
7462
|
},
|
|
7580
|
-
"session:
|
|
7463
|
+
"session:exec": {
|
|
7581
7464
|
"aliases": [],
|
|
7582
7465
|
"args": {
|
|
7583
|
-
"
|
|
7584
|
-
"description": "Agent name or ticket ID
|
|
7585
|
-
"name": "
|
|
7466
|
+
"target": {
|
|
7467
|
+
"description": "Agent name or ticket ID",
|
|
7468
|
+
"name": "target",
|
|
7586
7469
|
"required": true
|
|
7587
|
-
},
|
|
7588
|
-
"message": {
|
|
7589
|
-
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
7590
|
-
"name": "message",
|
|
7591
|
-
"required": false
|
|
7592
7470
|
}
|
|
7593
7471
|
},
|
|
7594
|
-
"description": "
|
|
7472
|
+
"description": "Run a command in an agent's worktree/container context",
|
|
7595
7473
|
"examples": [
|
|
7596
|
-
"<%= config.bin %> session
|
|
7597
|
-
"<%= config.bin %> session
|
|
7598
|
-
"<%= config.bin %> session
|
|
7599
|
-
"<%= config.bin %> session
|
|
7600
|
-
"echo \"multi-line message\" | <%= config.bin %> session poke altman -"
|
|
7474
|
+
"<%= config.bin %> session exec altman -- git status",
|
|
7475
|
+
"<%= config.bin %> session exec TKT-123 -- gh pr view --json number,state",
|
|
7476
|
+
"<%= config.bin %> session exec altman -- ls -la",
|
|
7477
|
+
"<%= config.bin %> session exec altman --json -- git log --oneline -5"
|
|
7601
7478
|
],
|
|
7602
7479
|
"flags": {
|
|
7603
7480
|
"json": {
|
|
@@ -7613,25 +7490,11 @@
|
|
|
7613
7490
|
"allowNo": false,
|
|
7614
7491
|
"type": "boolean"
|
|
7615
7492
|
},
|
|
7616
|
-
"file": {
|
|
7617
|
-
"char": "F",
|
|
7618
|
-
"description": "Read message from a file (supports multi-line)",
|
|
7619
|
-
"name": "file",
|
|
7620
|
-
"hasDynamicHelp": false,
|
|
7621
|
-
"multiple": false,
|
|
7622
|
-
"type": "option"
|
|
7623
|
-
},
|
|
7624
|
-
"wait": {
|
|
7625
|
-
"char": "w",
|
|
7626
|
-
"description": "Wait for response after sending (capture output after message is sent)",
|
|
7627
|
-
"name": "wait",
|
|
7628
|
-
"allowNo": false,
|
|
7629
|
-
"type": "boolean"
|
|
7630
|
-
},
|
|
7631
7493
|
"timeout": {
|
|
7632
|
-
"
|
|
7494
|
+
"char": "t",
|
|
7495
|
+
"description": "Command timeout in seconds",
|
|
7633
7496
|
"name": "timeout",
|
|
7634
|
-
"default":
|
|
7497
|
+
"default": 30,
|
|
7635
7498
|
"hasDynamicHelp": false,
|
|
7636
7499
|
"multiple": false,
|
|
7637
7500
|
"type": "option"
|
|
@@ -7639,30 +7502,41 @@
|
|
|
7639
7502
|
},
|
|
7640
7503
|
"hasDynamicHelp": false,
|
|
7641
7504
|
"hiddenAliases": [],
|
|
7642
|
-
"id": "session:
|
|
7505
|
+
"id": "session:exec",
|
|
7643
7506
|
"pluginAlias": "@proletariat/cli",
|
|
7644
7507
|
"pluginName": "@proletariat/cli",
|
|
7645
7508
|
"pluginType": "core",
|
|
7646
|
-
"strict":
|
|
7509
|
+
"strict": false,
|
|
7647
7510
|
"isESM": true,
|
|
7648
7511
|
"relativePath": [
|
|
7649
7512
|
"dist",
|
|
7650
7513
|
"commands",
|
|
7651
7514
|
"session",
|
|
7652
|
-
"
|
|
7515
|
+
"exec.js"
|
|
7653
7516
|
]
|
|
7654
7517
|
},
|
|
7655
|
-
"session:
|
|
7518
|
+
"session:health": {
|
|
7656
7519
|
"aliases": [],
|
|
7657
7520
|
"args": {},
|
|
7658
|
-
"description": "
|
|
7521
|
+
"description": "Check health of running agent sessions, detect/recover hung agents, and auto-poke idle agents",
|
|
7659
7522
|
"examples": [
|
|
7660
|
-
"<%= config.bin %> session
|
|
7661
|
-
"<%= config.bin %> session
|
|
7662
|
-
"<%= config.bin %> session
|
|
7663
|
-
"<%= config.bin %> session
|
|
7523
|
+
"<%= config.bin %> session health",
|
|
7524
|
+
"<%= config.bin %> session health --fix",
|
|
7525
|
+
"<%= config.bin %> session health --poke-idle",
|
|
7526
|
+
"<%= config.bin %> session health --fix --poke-idle",
|
|
7527
|
+
"<%= config.bin %> session health --watch",
|
|
7528
|
+
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
7529
|
+
"<%= config.bin %> session health --watch --poke-idle"
|
|
7664
7530
|
],
|
|
7665
7531
|
"flags": {
|
|
7532
|
+
"project": {
|
|
7533
|
+
"char": "P",
|
|
7534
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7535
|
+
"name": "project",
|
|
7536
|
+
"hasDynamicHelp": false,
|
|
7537
|
+
"multiple": false,
|
|
7538
|
+
"type": "option"
|
|
7539
|
+
},
|
|
7666
7540
|
"json": {
|
|
7667
7541
|
"description": "Output as JSON for AI agents/scripts",
|
|
7668
7542
|
"name": "json",
|
|
@@ -7676,31 +7550,36 @@
|
|
|
7676
7550
|
"allowNo": false,
|
|
7677
7551
|
"type": "boolean"
|
|
7678
7552
|
},
|
|
7679
|
-
"
|
|
7680
|
-
"
|
|
7681
|
-
"
|
|
7682
|
-
"name": "dry-run",
|
|
7553
|
+
"fix": {
|
|
7554
|
+
"description": "Send Escape to hung agents to unstick them",
|
|
7555
|
+
"name": "fix",
|
|
7683
7556
|
"allowNo": false,
|
|
7684
7557
|
"type": "boolean"
|
|
7685
7558
|
},
|
|
7686
|
-
"
|
|
7687
|
-
"
|
|
7688
|
-
"
|
|
7689
|
-
"name": "force",
|
|
7559
|
+
"poke-idle": {
|
|
7560
|
+
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
7561
|
+
"name": "poke-idle",
|
|
7690
7562
|
"allowNo": false,
|
|
7691
7563
|
"type": "boolean"
|
|
7692
7564
|
},
|
|
7693
|
-
"
|
|
7694
|
-
"
|
|
7695
|
-
"
|
|
7696
|
-
"name": "yes",
|
|
7565
|
+
"watch": {
|
|
7566
|
+
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
7567
|
+
"name": "watch",
|
|
7697
7568
|
"allowNo": false,
|
|
7698
7569
|
"type": "boolean"
|
|
7699
7570
|
},
|
|
7700
|
-
"
|
|
7701
|
-
"description": "
|
|
7702
|
-
"name": "
|
|
7703
|
-
"default":
|
|
7571
|
+
"interval": {
|
|
7572
|
+
"description": "Watch polling interval in minutes",
|
|
7573
|
+
"name": "interval",
|
|
7574
|
+
"default": 5,
|
|
7575
|
+
"hasDynamicHelp": false,
|
|
7576
|
+
"multiple": false,
|
|
7577
|
+
"type": "option"
|
|
7578
|
+
},
|
|
7579
|
+
"threshold": {
|
|
7580
|
+
"description": "Minutes an agent must be hung/idle before auto-recovery in watch mode",
|
|
7581
|
+
"name": "threshold",
|
|
7582
|
+
"default": 10,
|
|
7704
7583
|
"hasDynamicHelp": false,
|
|
7705
7584
|
"multiple": false,
|
|
7706
7585
|
"type": "option"
|
|
@@ -7708,7 +7587,7 @@
|
|
|
7708
7587
|
},
|
|
7709
7588
|
"hasDynamicHelp": false,
|
|
7710
7589
|
"hiddenAliases": [],
|
|
7711
|
-
"id": "session:
|
|
7590
|
+
"id": "session:health",
|
|
7712
7591
|
"pluginAlias": "@proletariat/cli",
|
|
7713
7592
|
"pluginName": "@proletariat/cli",
|
|
7714
7593
|
"pluginType": "core",
|
|
@@ -7718,17 +7597,18 @@
|
|
|
7718
7597
|
"dist",
|
|
7719
7598
|
"commands",
|
|
7720
7599
|
"session",
|
|
7721
|
-
"
|
|
7600
|
+
"health.js"
|
|
7722
7601
|
]
|
|
7723
7602
|
},
|
|
7724
|
-
"session
|
|
7603
|
+
"session": {
|
|
7725
7604
|
"aliases": [],
|
|
7726
7605
|
"args": {},
|
|
7727
|
-
"description": "
|
|
7606
|
+
"description": "Manage agent tmux sessions (list, attach, create, detach)",
|
|
7728
7607
|
"examples": [
|
|
7729
|
-
"<%= config.bin %>
|
|
7730
|
-
"<%= config.bin %>
|
|
7731
|
-
"<%= config.bin %>
|
|
7608
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7609
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
7610
|
+
"<%= config.bin %> <%= command.id %> attach TKT-347-implement",
|
|
7611
|
+
"<%= config.bin %> <%= command.id %> create my-session"
|
|
7732
7612
|
],
|
|
7733
7613
|
"flags": {
|
|
7734
7614
|
"json": {
|
|
@@ -7743,33 +7623,11 @@
|
|
|
7743
7623
|
"name": "machine",
|
|
7744
7624
|
"allowNo": false,
|
|
7745
7625
|
"type": "boolean"
|
|
7746
|
-
},
|
|
7747
|
-
"agent": {
|
|
7748
|
-
"description": "Agent name",
|
|
7749
|
-
"name": "agent",
|
|
7750
|
-
"required": true,
|
|
7751
|
-
"hasDynamicHelp": false,
|
|
7752
|
-
"multiple": false,
|
|
7753
|
-
"type": "option"
|
|
7754
|
-
},
|
|
7755
|
-
"status": {
|
|
7756
|
-
"description": "Session status (started, completed, errored, exited)",
|
|
7757
|
-
"name": "status",
|
|
7758
|
-
"required": true,
|
|
7759
|
-
"hasDynamicHelp": false,
|
|
7760
|
-
"multiple": false,
|
|
7761
|
-
"options": [
|
|
7762
|
-
"started",
|
|
7763
|
-
"completed",
|
|
7764
|
-
"errored",
|
|
7765
|
-
"exited"
|
|
7766
|
-
],
|
|
7767
|
-
"type": "option"
|
|
7768
7626
|
}
|
|
7769
7627
|
},
|
|
7770
7628
|
"hasDynamicHelp": false,
|
|
7771
7629
|
"hiddenAliases": [],
|
|
7772
|
-
"id": "session
|
|
7630
|
+
"id": "session",
|
|
7773
7631
|
"pluginAlias": "@proletariat/cli",
|
|
7774
7632
|
"pluginName": "@proletariat/cli",
|
|
7775
7633
|
"pluginType": "core",
|
|
@@ -7779,10 +7637,10 @@
|
|
|
7779
7637
|
"dist",
|
|
7780
7638
|
"commands",
|
|
7781
7639
|
"session",
|
|
7782
|
-
"
|
|
7640
|
+
"index.js"
|
|
7783
7641
|
]
|
|
7784
7642
|
},
|
|
7785
|
-
"session:
|
|
7643
|
+
"session:inspect": {
|
|
7786
7644
|
"aliases": [],
|
|
7787
7645
|
"args": {
|
|
7788
7646
|
"target": {
|
|
@@ -7791,13 +7649,12 @@
|
|
|
7791
7649
|
"required": true
|
|
7792
7650
|
}
|
|
7793
7651
|
},
|
|
7794
|
-
"description": "
|
|
7652
|
+
"description": "Comprehensive agent status inspection (git, PR, process, output) in one call",
|
|
7795
7653
|
"examples": [
|
|
7796
|
-
"<%= config.bin %> session
|
|
7797
|
-
"<%= config.bin %> session
|
|
7798
|
-
"<%= config.bin %> session
|
|
7799
|
-
"<%= config.bin %> session
|
|
7800
|
-
"<%= config.bin %> session restart altman --timeout 30"
|
|
7654
|
+
"<%= config.bin %> session inspect altman",
|
|
7655
|
+
"<%= config.bin %> session inspect TKT-123",
|
|
7656
|
+
"<%= config.bin %> session inspect altman --lines 50",
|
|
7657
|
+
"<%= config.bin %> session inspect altman --json"
|
|
7801
7658
|
],
|
|
7802
7659
|
"flags": {
|
|
7803
7660
|
"json": {
|
|
@@ -7813,28 +7670,11 @@
|
|
|
7813
7670
|
"allowNo": false,
|
|
7814
7671
|
"type": "boolean"
|
|
7815
7672
|
},
|
|
7816
|
-
"
|
|
7817
|
-
"
|
|
7818
|
-
"
|
|
7819
|
-
|
|
7820
|
-
|
|
7821
|
-
"name": "fresh",
|
|
7822
|
-
"allowNo": false,
|
|
7823
|
-
"type": "boolean"
|
|
7824
|
-
},
|
|
7825
|
-
"resume": {
|
|
7826
|
-
"description": "Continue from where the agent left off (pass --resume flag to Claude Code)",
|
|
7827
|
-
"exclusive": [
|
|
7828
|
-
"fresh"
|
|
7829
|
-
],
|
|
7830
|
-
"name": "resume",
|
|
7831
|
-
"allowNo": false,
|
|
7832
|
-
"type": "boolean"
|
|
7833
|
-
},
|
|
7834
|
-
"timeout": {
|
|
7835
|
-
"description": "Seconds to wait for clean exit before force restart",
|
|
7836
|
-
"name": "timeout",
|
|
7837
|
-
"default": 15,
|
|
7673
|
+
"lines": {
|
|
7674
|
+
"char": "l",
|
|
7675
|
+
"description": "Number of output lines to include",
|
|
7676
|
+
"name": "lines",
|
|
7677
|
+
"default": 100,
|
|
7838
7678
|
"hasDynamicHelp": false,
|
|
7839
7679
|
"multiple": false,
|
|
7840
7680
|
"type": "option"
|
|
@@ -7842,7 +7682,7 @@
|
|
|
7842
7682
|
},
|
|
7843
7683
|
"hasDynamicHelp": false,
|
|
7844
7684
|
"hiddenAliases": [],
|
|
7845
|
-
"id": "session:
|
|
7685
|
+
"id": "session:inspect",
|
|
7846
7686
|
"pluginAlias": "@proletariat/cli",
|
|
7847
7687
|
"pluginName": "@proletariat/cli",
|
|
7848
7688
|
"pluginType": "core",
|
|
@@ -7852,18 +7692,17 @@
|
|
|
7852
7692
|
"dist",
|
|
7853
7693
|
"commands",
|
|
7854
7694
|
"session",
|
|
7855
|
-
"
|
|
7695
|
+
"inspect.js"
|
|
7856
7696
|
]
|
|
7857
7697
|
},
|
|
7858
|
-
"session:
|
|
7698
|
+
"session:list": {
|
|
7859
7699
|
"aliases": [],
|
|
7860
7700
|
"args": {},
|
|
7861
|
-
"description": "
|
|
7701
|
+
"description": "List active agent sessions (DB-first: shows tracked executions with runtime liveness)",
|
|
7862
7702
|
"examples": [
|
|
7863
|
-
"<%= config.bin %>
|
|
7864
|
-
"<%= config.bin %>
|
|
7865
|
-
"<%= config.bin %>
|
|
7866
|
-
"<%= config.bin %> session watch --once"
|
|
7703
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7704
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
7705
|
+
"<%= config.bin %> <%= command.id %> --orphans"
|
|
7867
7706
|
],
|
|
7868
7707
|
"flags": {
|
|
7869
7708
|
"json": {
|
|
@@ -7879,38 +7718,23 @@
|
|
|
7879
7718
|
"allowNo": false,
|
|
7880
7719
|
"type": "boolean"
|
|
7881
7720
|
},
|
|
7882
|
-
"
|
|
7883
|
-
"
|
|
7884
|
-
"
|
|
7885
|
-
"
|
|
7886
|
-
"
|
|
7887
|
-
"multiple": false,
|
|
7888
|
-
"type": "option"
|
|
7889
|
-
},
|
|
7890
|
-
"timeout": {
|
|
7891
|
-
"description": "Heartbeat timeout in minutes before marking agent as stale",
|
|
7892
|
-
"name": "timeout",
|
|
7893
|
-
"default": 15,
|
|
7894
|
-
"hasDynamicHelp": false,
|
|
7895
|
-
"multiple": false,
|
|
7896
|
-
"type": "option"
|
|
7897
|
-
},
|
|
7898
|
-
"kill": {
|
|
7899
|
-
"description": "Auto-kill containers for stale agents",
|
|
7900
|
-
"name": "kill",
|
|
7901
|
-
"allowNo": true,
|
|
7721
|
+
"all": {
|
|
7722
|
+
"char": "a",
|
|
7723
|
+
"description": "Show all sessions including stale DB records (dead runtime)",
|
|
7724
|
+
"name": "all",
|
|
7725
|
+
"allowNo": false,
|
|
7902
7726
|
"type": "boolean"
|
|
7903
7727
|
},
|
|
7904
|
-
"
|
|
7905
|
-
"description": "
|
|
7906
|
-
"name": "
|
|
7728
|
+
"orphans": {
|
|
7729
|
+
"description": "Also show orphan tmux sessions not tracked in the DB (garbage to prune)",
|
|
7730
|
+
"name": "orphans",
|
|
7907
7731
|
"allowNo": false,
|
|
7908
7732
|
"type": "boolean"
|
|
7909
7733
|
}
|
|
7910
7734
|
},
|
|
7911
7735
|
"hasDynamicHelp": false,
|
|
7912
7736
|
"hiddenAliases": [],
|
|
7913
|
-
"id": "session:
|
|
7737
|
+
"id": "session:list",
|
|
7914
7738
|
"pluginAlias": "@proletariat/cli",
|
|
7915
7739
|
"pluginName": "@proletariat/cli",
|
|
7916
7740
|
"pluginType": "core",
|
|
@@ -7920,18 +7744,39 @@
|
|
|
7920
7744
|
"dist",
|
|
7921
7745
|
"commands",
|
|
7922
7746
|
"session",
|
|
7923
|
-
"
|
|
7747
|
+
"list.js"
|
|
7924
7748
|
]
|
|
7925
7749
|
},
|
|
7926
|
-
"
|
|
7750
|
+
"session:peek": {
|
|
7927
7751
|
"aliases": [],
|
|
7928
|
-
"args": {
|
|
7929
|
-
|
|
7752
|
+
"args": {
|
|
7753
|
+
"target": {
|
|
7754
|
+
"description": "Agent name, ticket ID (e.g. TKT-123), or execution ID (e.g. WORK-XXXXXXXX)",
|
|
7755
|
+
"name": "target",
|
|
7756
|
+
"required": false
|
|
7757
|
+
}
|
|
7758
|
+
},
|
|
7759
|
+
"description": "View agent tmux pane content without attaching (non-interactive)",
|
|
7930
7760
|
"examples": [
|
|
7931
|
-
"<%= config.bin %>
|
|
7932
|
-
"<%= config.bin %>
|
|
7761
|
+
"<%= config.bin %> session peek altman",
|
|
7762
|
+
"<%= config.bin %> session peek TKT-123",
|
|
7763
|
+
"<%= config.bin %> session peek WORK-ABCD1234",
|
|
7764
|
+
"<%= config.bin %> session peek altman --lines 100",
|
|
7765
|
+
"<%= config.bin %> session peek altman --full",
|
|
7766
|
+
"<%= config.bin %> session peek altman --follow",
|
|
7767
|
+
"<%= config.bin %> session peek altman --since 2025-01-01T12:00:00Z",
|
|
7768
|
+
"<%= config.bin %> session peek TKT-123 --json",
|
|
7769
|
+
"<%= config.bin %> session peek altman | grep error"
|
|
7933
7770
|
],
|
|
7934
7771
|
"flags": {
|
|
7772
|
+
"project": {
|
|
7773
|
+
"char": "P",
|
|
7774
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7775
|
+
"name": "project",
|
|
7776
|
+
"hasDynamicHelp": false,
|
|
7777
|
+
"multiple": false,
|
|
7778
|
+
"type": "option"
|
|
7779
|
+
},
|
|
7935
7780
|
"json": {
|
|
7936
7781
|
"description": "Output as JSON for AI agents/scripts",
|
|
7937
7782
|
"name": "json",
|
|
@@ -7944,31 +7789,81 @@
|
|
|
7944
7789
|
"name": "machine",
|
|
7945
7790
|
"allowNo": false,
|
|
7946
7791
|
"type": "boolean"
|
|
7792
|
+
},
|
|
7793
|
+
"lines": {
|
|
7794
|
+
"char": "l",
|
|
7795
|
+
"description": "Number of scrollback lines to capture",
|
|
7796
|
+
"name": "lines",
|
|
7797
|
+
"default": 200,
|
|
7798
|
+
"hasDynamicHelp": false,
|
|
7799
|
+
"multiple": false,
|
|
7800
|
+
"type": "option"
|
|
7801
|
+
},
|
|
7802
|
+
"full": {
|
|
7803
|
+
"description": "Capture entire scrollback buffer (up to 32768 lines)",
|
|
7804
|
+
"name": "full",
|
|
7805
|
+
"allowNo": false,
|
|
7806
|
+
"type": "boolean"
|
|
7807
|
+
},
|
|
7808
|
+
"since": {
|
|
7809
|
+
"description": "Filter output to lines after this timestamp (ISO 8601)",
|
|
7810
|
+
"name": "since",
|
|
7811
|
+
"hasDynamicHelp": false,
|
|
7812
|
+
"multiple": false,
|
|
7813
|
+
"type": "option"
|
|
7814
|
+
},
|
|
7815
|
+
"follow": {
|
|
7816
|
+
"char": "f",
|
|
7817
|
+
"description": "Stream output continuously (like tail -f)",
|
|
7818
|
+
"name": "follow",
|
|
7819
|
+
"allowNo": false,
|
|
7820
|
+
"type": "boolean"
|
|
7821
|
+
},
|
|
7822
|
+
"interval": {
|
|
7823
|
+
"description": "Polling interval in seconds for --follow mode",
|
|
7824
|
+
"name": "interval",
|
|
7825
|
+
"default": 2,
|
|
7826
|
+
"hasDynamicHelp": false,
|
|
7827
|
+
"multiple": false,
|
|
7828
|
+
"type": "option"
|
|
7947
7829
|
}
|
|
7948
7830
|
},
|
|
7949
7831
|
"hasDynamicHelp": false,
|
|
7950
7832
|
"hiddenAliases": [],
|
|
7951
|
-
"id": "
|
|
7833
|
+
"id": "session:peek",
|
|
7952
7834
|
"pluginAlias": "@proletariat/cli",
|
|
7953
7835
|
"pluginName": "@proletariat/cli",
|
|
7954
7836
|
"pluginType": "core",
|
|
7955
7837
|
"strict": true,
|
|
7956
|
-
"enableJsonFlag": false,
|
|
7957
7838
|
"isESM": true,
|
|
7958
7839
|
"relativePath": [
|
|
7959
7840
|
"dist",
|
|
7960
7841
|
"commands",
|
|
7961
|
-
"
|
|
7962
|
-
"
|
|
7842
|
+
"session",
|
|
7843
|
+
"peek.js"
|
|
7963
7844
|
]
|
|
7964
7845
|
},
|
|
7965
|
-
"
|
|
7846
|
+
"session:poke": {
|
|
7966
7847
|
"aliases": [],
|
|
7967
|
-
"args": {
|
|
7968
|
-
|
|
7848
|
+
"args": {
|
|
7849
|
+
"agent": {
|
|
7850
|
+
"description": "Agent name or ticket ID of the running agent",
|
|
7851
|
+
"name": "agent",
|
|
7852
|
+
"required": true
|
|
7853
|
+
},
|
|
7854
|
+
"message": {
|
|
7855
|
+
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
7856
|
+
"name": "message",
|
|
7857
|
+
"required": false
|
|
7858
|
+
}
|
|
7859
|
+
},
|
|
7860
|
+
"description": "Send a message to a running agent's Claude Code session",
|
|
7969
7861
|
"examples": [
|
|
7970
|
-
"<%= config.bin %>
|
|
7971
|
-
"<%= config.bin %>
|
|
7862
|
+
"<%= config.bin %> session poke altman \"Please focus on the tests first\"",
|
|
7863
|
+
"<%= config.bin %> session poke TKT-123 \"Add error handling for edge cases\"",
|
|
7864
|
+
"<%= config.bin %> session poke altman --file prompt.md",
|
|
7865
|
+
"<%= config.bin %> session poke altman \"Run the tests\" --wait --timeout 60",
|
|
7866
|
+
"echo \"multi-line message\" | <%= config.bin %> session poke altman -"
|
|
7972
7867
|
],
|
|
7973
7868
|
"flags": {
|
|
7974
7869
|
"json": {
|
|
@@ -7983,31 +7878,55 @@
|
|
|
7983
7878
|
"name": "machine",
|
|
7984
7879
|
"allowNo": false,
|
|
7985
7880
|
"type": "boolean"
|
|
7881
|
+
},
|
|
7882
|
+
"file": {
|
|
7883
|
+
"char": "F",
|
|
7884
|
+
"description": "Read message from a file (supports multi-line)",
|
|
7885
|
+
"name": "file",
|
|
7886
|
+
"hasDynamicHelp": false,
|
|
7887
|
+
"multiple": false,
|
|
7888
|
+
"type": "option"
|
|
7889
|
+
},
|
|
7890
|
+
"wait": {
|
|
7891
|
+
"char": "w",
|
|
7892
|
+
"description": "Wait for response after sending (capture output after message is sent)",
|
|
7893
|
+
"name": "wait",
|
|
7894
|
+
"allowNo": false,
|
|
7895
|
+
"type": "boolean"
|
|
7896
|
+
},
|
|
7897
|
+
"timeout": {
|
|
7898
|
+
"description": "Timeout in seconds for --wait mode",
|
|
7899
|
+
"name": "timeout",
|
|
7900
|
+
"default": 120,
|
|
7901
|
+
"hasDynamicHelp": false,
|
|
7902
|
+
"multiple": false,
|
|
7903
|
+
"type": "option"
|
|
7986
7904
|
}
|
|
7987
7905
|
},
|
|
7988
7906
|
"hasDynamicHelp": false,
|
|
7989
7907
|
"hiddenAliases": [],
|
|
7990
|
-
"id": "
|
|
7908
|
+
"id": "session:poke",
|
|
7991
7909
|
"pluginAlias": "@proletariat/cli",
|
|
7992
7910
|
"pluginName": "@proletariat/cli",
|
|
7993
7911
|
"pluginType": "core",
|
|
7994
7912
|
"strict": true,
|
|
7995
|
-
"enableJsonFlag": false,
|
|
7996
7913
|
"isESM": true,
|
|
7997
7914
|
"relativePath": [
|
|
7998
7915
|
"dist",
|
|
7999
7916
|
"commands",
|
|
8000
|
-
"
|
|
8001
|
-
"
|
|
7917
|
+
"session",
|
|
7918
|
+
"poke.js"
|
|
8002
7919
|
]
|
|
8003
7920
|
},
|
|
8004
|
-
"
|
|
7921
|
+
"session:prune": {
|
|
8005
7922
|
"aliases": [],
|
|
8006
7923
|
"args": {},
|
|
8007
|
-
"description": "
|
|
7924
|
+
"description": "Clean up stale sessions, orphan tmux sessions, dead Docker containers, and idle ephemeral agents",
|
|
8008
7925
|
"examples": [
|
|
8009
|
-
"<%= config.bin %>
|
|
8010
|
-
"<%= config.bin %>
|
|
7926
|
+
"<%= config.bin %> session prune",
|
|
7927
|
+
"<%= config.bin %> session prune --dry-run",
|
|
7928
|
+
"<%= config.bin %> session prune --force",
|
|
7929
|
+
"<%= config.bin %> session prune --age 24"
|
|
8011
7930
|
],
|
|
8012
7931
|
"flags": {
|
|
8013
7932
|
"json": {
|
|
@@ -8022,35 +7941,60 @@
|
|
|
8022
7941
|
"name": "machine",
|
|
8023
7942
|
"allowNo": false,
|
|
8024
7943
|
"type": "boolean"
|
|
8025
|
-
}
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
|
|
8040
|
-
"
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
|
|
8044
|
-
|
|
8045
|
-
|
|
8046
|
-
|
|
8047
|
-
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
|
|
7944
|
+
},
|
|
7945
|
+
"dry-run": {
|
|
7946
|
+
"char": "d",
|
|
7947
|
+
"description": "Show what would be pruned without actually doing it",
|
|
7948
|
+
"name": "dry-run",
|
|
7949
|
+
"allowNo": false,
|
|
7950
|
+
"type": "boolean"
|
|
7951
|
+
},
|
|
7952
|
+
"force": {
|
|
7953
|
+
"char": "f",
|
|
7954
|
+
"description": "Force cleanup even if agents have uncommitted/unpushed work",
|
|
7955
|
+
"name": "force",
|
|
7956
|
+
"allowNo": false,
|
|
7957
|
+
"type": "boolean"
|
|
7958
|
+
},
|
|
7959
|
+
"yes": {
|
|
7960
|
+
"char": "y",
|
|
7961
|
+
"description": "Skip confirmation prompt",
|
|
7962
|
+
"name": "yes",
|
|
7963
|
+
"allowNo": false,
|
|
7964
|
+
"type": "boolean"
|
|
7965
|
+
},
|
|
7966
|
+
"age": {
|
|
7967
|
+
"description": "Only prune sessions/agents idle for more than N hours (default: 0 = all idle)",
|
|
7968
|
+
"name": "age",
|
|
7969
|
+
"default": 0,
|
|
7970
|
+
"hasDynamicHelp": false,
|
|
7971
|
+
"multiple": false,
|
|
7972
|
+
"type": "option"
|
|
7973
|
+
}
|
|
7974
|
+
},
|
|
7975
|
+
"hasDynamicHelp": false,
|
|
7976
|
+
"hiddenAliases": [],
|
|
7977
|
+
"id": "session:prune",
|
|
7978
|
+
"pluginAlias": "@proletariat/cli",
|
|
7979
|
+
"pluginName": "@proletariat/cli",
|
|
7980
|
+
"pluginType": "core",
|
|
7981
|
+
"strict": true,
|
|
7982
|
+
"isESM": true,
|
|
7983
|
+
"relativePath": [
|
|
7984
|
+
"dist",
|
|
7985
|
+
"commands",
|
|
7986
|
+
"session",
|
|
7987
|
+
"prune.js"
|
|
7988
|
+
]
|
|
7989
|
+
},
|
|
7990
|
+
"session:report": {
|
|
7991
|
+
"aliases": [],
|
|
7992
|
+
"args": {},
|
|
7993
|
+
"description": "Report agent session lifecycle events and trigger cleanup",
|
|
7994
|
+
"examples": [
|
|
7995
|
+
"<%= config.bin %> session report --agent bold-turing --status exited",
|
|
7996
|
+
"<%= config.bin %> session report --agent bold-turing --status completed",
|
|
7997
|
+
"<%= config.bin %> session report --agent bold-turing --status errored"
|
|
8054
7998
|
],
|
|
8055
7999
|
"flags": {
|
|
8056
8000
|
"json": {
|
|
@@ -8065,32 +8009,61 @@
|
|
|
8065
8009
|
"name": "machine",
|
|
8066
8010
|
"allowNo": false,
|
|
8067
8011
|
"type": "boolean"
|
|
8012
|
+
},
|
|
8013
|
+
"agent": {
|
|
8014
|
+
"description": "Agent name",
|
|
8015
|
+
"name": "agent",
|
|
8016
|
+
"required": true,
|
|
8017
|
+
"hasDynamicHelp": false,
|
|
8018
|
+
"multiple": false,
|
|
8019
|
+
"type": "option"
|
|
8020
|
+
},
|
|
8021
|
+
"status": {
|
|
8022
|
+
"description": "Session status (started, completed, errored, exited)",
|
|
8023
|
+
"name": "status",
|
|
8024
|
+
"required": true,
|
|
8025
|
+
"hasDynamicHelp": false,
|
|
8026
|
+
"multiple": false,
|
|
8027
|
+
"options": [
|
|
8028
|
+
"started",
|
|
8029
|
+
"completed",
|
|
8030
|
+
"errored",
|
|
8031
|
+
"exited"
|
|
8032
|
+
],
|
|
8033
|
+
"type": "option"
|
|
8068
8034
|
}
|
|
8069
8035
|
},
|
|
8070
8036
|
"hasDynamicHelp": false,
|
|
8071
8037
|
"hiddenAliases": [],
|
|
8072
|
-
"id": "
|
|
8038
|
+
"id": "session:report",
|
|
8073
8039
|
"pluginAlias": "@proletariat/cli",
|
|
8074
8040
|
"pluginName": "@proletariat/cli",
|
|
8075
8041
|
"pluginType": "core",
|
|
8076
8042
|
"strict": true,
|
|
8077
|
-
"enableJsonFlag": false,
|
|
8078
8043
|
"isESM": true,
|
|
8079
8044
|
"relativePath": [
|
|
8080
8045
|
"dist",
|
|
8081
8046
|
"commands",
|
|
8082
|
-
"
|
|
8083
|
-
"
|
|
8047
|
+
"session",
|
|
8048
|
+
"report.js"
|
|
8084
8049
|
]
|
|
8085
8050
|
},
|
|
8086
|
-
"
|
|
8051
|
+
"session:restart": {
|
|
8087
8052
|
"aliases": [],
|
|
8088
|
-
"args": {
|
|
8089
|
-
|
|
8053
|
+
"args": {
|
|
8054
|
+
"target": {
|
|
8055
|
+
"description": "Agent name or ticket ID",
|
|
8056
|
+
"name": "target",
|
|
8057
|
+
"required": true
|
|
8058
|
+
}
|
|
8059
|
+
},
|
|
8060
|
+
"description": "Gracefully restart a stuck or completed agent session",
|
|
8090
8061
|
"examples": [
|
|
8091
|
-
"<%= config.bin %>
|
|
8092
|
-
"<%= config.bin %>
|
|
8093
|
-
"<%= config.bin %>
|
|
8062
|
+
"<%= config.bin %> session restart altman",
|
|
8063
|
+
"<%= config.bin %> session restart TKT-123",
|
|
8064
|
+
"<%= config.bin %> session restart altman --fresh",
|
|
8065
|
+
"<%= config.bin %> session restart altman --resume",
|
|
8066
|
+
"<%= config.bin %> session restart altman --timeout 30"
|
|
8094
8067
|
],
|
|
8095
8068
|
"flags": {
|
|
8096
8069
|
"json": {
|
|
@@ -8106,47 +8079,60 @@
|
|
|
8106
8079
|
"allowNo": false,
|
|
8107
8080
|
"type": "boolean"
|
|
8108
8081
|
},
|
|
8109
|
-
"
|
|
8110
|
-
"description": "
|
|
8111
|
-
"
|
|
8112
|
-
|
|
8082
|
+
"fresh": {
|
|
8083
|
+
"description": "Reset worktree to branch HEAD before restarting",
|
|
8084
|
+
"exclusive": [
|
|
8085
|
+
"resume"
|
|
8086
|
+
],
|
|
8087
|
+
"name": "fresh",
|
|
8088
|
+
"allowNo": false,
|
|
8089
|
+
"type": "boolean"
|
|
8090
|
+
},
|
|
8091
|
+
"resume": {
|
|
8092
|
+
"description": "Continue from where the agent left off (pass --resume flag to Claude Code)",
|
|
8093
|
+
"exclusive": [
|
|
8094
|
+
"fresh"
|
|
8095
|
+
],
|
|
8096
|
+
"name": "resume",
|
|
8097
|
+
"allowNo": false,
|
|
8113
8098
|
"type": "boolean"
|
|
8099
|
+
},
|
|
8100
|
+
"timeout": {
|
|
8101
|
+
"description": "Seconds to wait for clean exit before force restart",
|
|
8102
|
+
"name": "timeout",
|
|
8103
|
+
"default": 15,
|
|
8104
|
+
"hasDynamicHelp": false,
|
|
8105
|
+
"multiple": false,
|
|
8106
|
+
"type": "option"
|
|
8114
8107
|
}
|
|
8115
8108
|
},
|
|
8116
8109
|
"hasDynamicHelp": false,
|
|
8117
8110
|
"hiddenAliases": [],
|
|
8118
|
-
"id": "
|
|
8111
|
+
"id": "session:restart",
|
|
8119
8112
|
"pluginAlias": "@proletariat/cli",
|
|
8120
8113
|
"pluginName": "@proletariat/cli",
|
|
8121
8114
|
"pluginType": "core",
|
|
8122
8115
|
"strict": true,
|
|
8123
|
-
"enableJsonFlag": false,
|
|
8124
8116
|
"isESM": true,
|
|
8125
8117
|
"relativePath": [
|
|
8126
8118
|
"dist",
|
|
8127
8119
|
"commands",
|
|
8128
|
-
"
|
|
8129
|
-
"
|
|
8120
|
+
"session",
|
|
8121
|
+
"restart.js"
|
|
8130
8122
|
]
|
|
8131
8123
|
},
|
|
8132
|
-
"
|
|
8124
|
+
"session:watch": {
|
|
8133
8125
|
"aliases": [],
|
|
8134
8126
|
"args": {},
|
|
8135
|
-
"description": "
|
|
8127
|
+
"description": "Watch agent sessions for heartbeat timeouts, tmux server crashes, and auto-recover",
|
|
8136
8128
|
"examples": [
|
|
8137
|
-
"<%= config.bin %>
|
|
8138
|
-
"<%= config.bin %>
|
|
8139
|
-
"<%= config.bin %>
|
|
8129
|
+
"<%= config.bin %> session watch",
|
|
8130
|
+
"<%= config.bin %> session watch --interval 3 --timeout 10",
|
|
8131
|
+
"<%= config.bin %> session watch --no-kill",
|
|
8132
|
+
"<%= config.bin %> session watch --no-recover",
|
|
8133
|
+
"<%= config.bin %> session watch --once"
|
|
8140
8134
|
],
|
|
8141
8135
|
"flags": {
|
|
8142
|
-
"project": {
|
|
8143
|
-
"char": "P",
|
|
8144
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8145
|
-
"name": "project",
|
|
8146
|
-
"hasDynamicHelp": false,
|
|
8147
|
-
"multiple": false,
|
|
8148
|
-
"type": "option"
|
|
8149
|
-
},
|
|
8150
8136
|
"json": {
|
|
8151
8137
|
"description": "Output as JSON for AI agents/scripts",
|
|
8152
8138
|
"name": "json",
|
|
@@ -8160,16 +8146,44 @@
|
|
|
8160
8146
|
"allowNo": false,
|
|
8161
8147
|
"type": "boolean"
|
|
8162
8148
|
},
|
|
8163
|
-
"
|
|
8164
|
-
"description": "
|
|
8165
|
-
"name": "
|
|
8149
|
+
"interval": {
|
|
8150
|
+
"description": "Poll interval in minutes",
|
|
8151
|
+
"name": "interval",
|
|
8152
|
+
"default": 5,
|
|
8153
|
+
"hasDynamicHelp": false,
|
|
8154
|
+
"multiple": false,
|
|
8155
|
+
"type": "option"
|
|
8156
|
+
},
|
|
8157
|
+
"timeout": {
|
|
8158
|
+
"description": "Heartbeat timeout in minutes before marking agent as stale",
|
|
8159
|
+
"name": "timeout",
|
|
8160
|
+
"default": 15,
|
|
8161
|
+
"hasDynamicHelp": false,
|
|
8162
|
+
"multiple": false,
|
|
8163
|
+
"type": "option"
|
|
8164
|
+
},
|
|
8165
|
+
"kill": {
|
|
8166
|
+
"description": "Auto-kill containers for stale agents",
|
|
8167
|
+
"name": "kill",
|
|
8168
|
+
"allowNo": true,
|
|
8169
|
+
"type": "boolean"
|
|
8170
|
+
},
|
|
8171
|
+
"recover": {
|
|
8172
|
+
"description": "Auto-recover agent sessions after tmux server crash",
|
|
8173
|
+
"name": "recover",
|
|
8174
|
+
"allowNo": true,
|
|
8175
|
+
"type": "boolean"
|
|
8176
|
+
},
|
|
8177
|
+
"once": {
|
|
8178
|
+
"description": "Run a single check and exit (no polling loop)",
|
|
8179
|
+
"name": "once",
|
|
8166
8180
|
"allowNo": false,
|
|
8167
8181
|
"type": "boolean"
|
|
8168
8182
|
}
|
|
8169
8183
|
},
|
|
8170
8184
|
"hasDynamicHelp": false,
|
|
8171
8185
|
"hiddenAliases": [],
|
|
8172
|
-
"id": "
|
|
8186
|
+
"id": "session:watch",
|
|
8173
8187
|
"pluginAlias": "@proletariat/cli",
|
|
8174
8188
|
"pluginName": "@proletariat/cli",
|
|
8175
8189
|
"pluginType": "core",
|
|
@@ -8178,8 +8192,8 @@
|
|
|
8178
8192
|
"relativePath": [
|
|
8179
8193
|
"dist",
|
|
8180
8194
|
"commands",
|
|
8181
|
-
"
|
|
8182
|
-
"
|
|
8195
|
+
"session",
|
|
8196
|
+
"watch.js"
|
|
8183
8197
|
]
|
|
8184
8198
|
},
|
|
8185
8199
|
"sync": {
|
|
@@ -8809,778 +8823,7 @@
|
|
|
8809
8823
|
},
|
|
8810
8824
|
"hasDynamicHelp": false,
|
|
8811
8825
|
"hiddenAliases": [],
|
|
8812
|
-
"id": "theme",
|
|
8813
|
-
"pluginAlias": "@proletariat/cli",
|
|
8814
|
-
"pluginName": "@proletariat/cli",
|
|
8815
|
-
"pluginType": "core",
|
|
8816
|
-
"strict": true,
|
|
8817
|
-
"isESM": true,
|
|
8818
|
-
"relativePath": [
|
|
8819
|
-
"dist",
|
|
8820
|
-
"commands",
|
|
8821
|
-
"theme",
|
|
8822
|
-
"index.js"
|
|
8823
|
-
]
|
|
8824
|
-
},
|
|
8825
|
-
"theme:list": {
|
|
8826
|
-
"aliases": [],
|
|
8827
|
-
"args": {},
|
|
8828
|
-
"description": "List available agent themes",
|
|
8829
|
-
"examples": [
|
|
8830
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8831
|
-
],
|
|
8832
|
-
"flags": {
|
|
8833
|
-
"json": {
|
|
8834
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8835
|
-
"name": "json",
|
|
8836
|
-
"allowNo": false,
|
|
8837
|
-
"type": "boolean"
|
|
8838
|
-
},
|
|
8839
|
-
"machine": {
|
|
8840
|
-
"char": "m",
|
|
8841
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8842
|
-
"name": "machine",
|
|
8843
|
-
"allowNo": false,
|
|
8844
|
-
"type": "boolean"
|
|
8845
|
-
}
|
|
8846
|
-
},
|
|
8847
|
-
"hasDynamicHelp": false,
|
|
8848
|
-
"hiddenAliases": [],
|
|
8849
|
-
"id": "theme:list",
|
|
8850
|
-
"pluginAlias": "@proletariat/cli",
|
|
8851
|
-
"pluginName": "@proletariat/cli",
|
|
8852
|
-
"pluginType": "core",
|
|
8853
|
-
"strict": true,
|
|
8854
|
-
"enableJsonFlag": false,
|
|
8855
|
-
"isESM": true,
|
|
8856
|
-
"relativePath": [
|
|
8857
|
-
"dist",
|
|
8858
|
-
"commands",
|
|
8859
|
-
"theme",
|
|
8860
|
-
"list.js"
|
|
8861
|
-
]
|
|
8862
|
-
},
|
|
8863
|
-
"theme:set": {
|
|
8864
|
-
"aliases": [],
|
|
8865
|
-
"args": {
|
|
8866
|
-
"theme": {
|
|
8867
|
-
"description": "Theme ID to set as active",
|
|
8868
|
-
"name": "theme",
|
|
8869
|
-
"required": false
|
|
8870
|
-
}
|
|
8871
|
-
},
|
|
8872
|
-
"description": "Set the active theme for this workspace",
|
|
8873
|
-
"examples": [
|
|
8874
|
-
"<%= config.bin %> <%= command.id %> billionaires",
|
|
8875
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8876
|
-
],
|
|
8877
|
-
"flags": {
|
|
8878
|
-
"json": {
|
|
8879
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8880
|
-
"name": "json",
|
|
8881
|
-
"allowNo": false,
|
|
8882
|
-
"type": "boolean"
|
|
8883
|
-
},
|
|
8884
|
-
"machine": {
|
|
8885
|
-
"char": "m",
|
|
8886
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8887
|
-
"name": "machine",
|
|
8888
|
-
"allowNo": false,
|
|
8889
|
-
"type": "boolean"
|
|
8890
|
-
}
|
|
8891
|
-
},
|
|
8892
|
-
"hasDynamicHelp": false,
|
|
8893
|
-
"hiddenAliases": [],
|
|
8894
|
-
"id": "theme:set",
|
|
8895
|
-
"pluginAlias": "@proletariat/cli",
|
|
8896
|
-
"pluginName": "@proletariat/cli",
|
|
8897
|
-
"pluginType": "core",
|
|
8898
|
-
"strict": true,
|
|
8899
|
-
"isESM": true,
|
|
8900
|
-
"relativePath": [
|
|
8901
|
-
"dist",
|
|
8902
|
-
"commands",
|
|
8903
|
-
"agent",
|
|
8904
|
-
"themes",
|
|
8905
|
-
"set.js"
|
|
8906
|
-
]
|
|
8907
|
-
},
|
|
8908
|
-
"ticket:create": {
|
|
8909
|
-
"aliases": [],
|
|
8910
|
-
"args": {},
|
|
8911
|
-
"description": "Create a new ticket (routes to Linear when configured, or local PMO)",
|
|
8912
|
-
"examples": [
|
|
8913
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8914
|
-
"<%= config.bin %> <%= command.id %> --title \"Fix login bug\" --column Backlog",
|
|
8915
|
-
"<%= config.bin %> <%= command.id %> -t \"Add feature\" -c \"In Progress\" -p P1",
|
|
8916
|
-
"<%= config.bin %> <%= command.id %> --project mobile-app -t \"New feature\"",
|
|
8917
|
-
"<%= config.bin %> <%= command.id %> --epic EPIC-001 -t \"Implement auth flow\"",
|
|
8918
|
-
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file ./ticket-desc.md",
|
|
8919
|
-
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file - # Read from stdin",
|
|
8920
|
-
"<%= config.bin %> <%= command.id %> --json # Output column choices as JSON",
|
|
8921
|
-
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating",
|
|
8922
|
-
"<%= config.bin %> <%= command.id %> --source linear -t \"Fix bug\" --team ENG",
|
|
8923
|
-
"<%= config.bin %> <%= command.id %> --source pmo -t \"Local task\" -c Backlog"
|
|
8924
|
-
],
|
|
8925
|
-
"flags": {
|
|
8926
|
-
"project": {
|
|
8927
|
-
"char": "P",
|
|
8928
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8929
|
-
"name": "project",
|
|
8930
|
-
"hasDynamicHelp": false,
|
|
8931
|
-
"multiple": false,
|
|
8932
|
-
"type": "option"
|
|
8933
|
-
},
|
|
8934
|
-
"json": {
|
|
8935
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8936
|
-
"name": "json",
|
|
8937
|
-
"allowNo": false,
|
|
8938
|
-
"type": "boolean"
|
|
8939
|
-
},
|
|
8940
|
-
"machine": {
|
|
8941
|
-
"char": "m",
|
|
8942
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8943
|
-
"name": "machine",
|
|
8944
|
-
"allowNo": false,
|
|
8945
|
-
"type": "boolean"
|
|
8946
|
-
},
|
|
8947
|
-
"title": {
|
|
8948
|
-
"char": "t",
|
|
8949
|
-
"description": "Ticket title [required for non-interactive]",
|
|
8950
|
-
"name": "title",
|
|
8951
|
-
"hasDynamicHelp": false,
|
|
8952
|
-
"multiple": false,
|
|
8953
|
-
"type": "option"
|
|
8954
|
-
},
|
|
8955
|
-
"column": {
|
|
8956
|
-
"char": "c",
|
|
8957
|
-
"description": "Column to place the ticket in",
|
|
8958
|
-
"name": "column",
|
|
8959
|
-
"hasDynamicHelp": false,
|
|
8960
|
-
"multiple": false,
|
|
8961
|
-
"type": "option"
|
|
8962
|
-
},
|
|
8963
|
-
"priority": {
|
|
8964
|
-
"char": "p",
|
|
8965
|
-
"description": "Ticket priority (uses workspace priority scale)",
|
|
8966
|
-
"name": "priority",
|
|
8967
|
-
"hasDynamicHelp": false,
|
|
8968
|
-
"multiple": false,
|
|
8969
|
-
"type": "option"
|
|
8970
|
-
},
|
|
8971
|
-
"category": {
|
|
8972
|
-
"description": "Ticket category (e.g., bug, feature, refactor)",
|
|
8973
|
-
"name": "category",
|
|
8974
|
-
"hasDynamicHelp": false,
|
|
8975
|
-
"multiple": false,
|
|
8976
|
-
"type": "option"
|
|
8977
|
-
},
|
|
8978
|
-
"description": {
|
|
8979
|
-
"char": "d",
|
|
8980
|
-
"description": "Ticket description",
|
|
8981
|
-
"name": "description",
|
|
8982
|
-
"hasDynamicHelp": false,
|
|
8983
|
-
"multiple": false,
|
|
8984
|
-
"type": "option"
|
|
8985
|
-
},
|
|
8986
|
-
"description-file": {
|
|
8987
|
-
"char": "D",
|
|
8988
|
-
"description": "Path to a markdown file for the ticket description (use - for stdin)",
|
|
8989
|
-
"exclusive": [
|
|
8990
|
-
"description"
|
|
8991
|
-
],
|
|
8992
|
-
"name": "description-file",
|
|
8993
|
-
"hasDynamicHelp": false,
|
|
8994
|
-
"multiple": false,
|
|
8995
|
-
"type": "option"
|
|
8996
|
-
},
|
|
8997
|
-
"id": {
|
|
8998
|
-
"description": "Custom ticket ID (auto-generated if not provided)",
|
|
8999
|
-
"name": "id",
|
|
9000
|
-
"hasDynamicHelp": false,
|
|
9001
|
-
"multiple": false,
|
|
9002
|
-
"type": "option"
|
|
9003
|
-
},
|
|
9004
|
-
"interactive": {
|
|
9005
|
-
"char": "i",
|
|
9006
|
-
"description": "Interactive mode",
|
|
9007
|
-
"name": "interactive",
|
|
9008
|
-
"allowNo": false,
|
|
9009
|
-
"type": "boolean"
|
|
9010
|
-
},
|
|
9011
|
-
"epic": {
|
|
9012
|
-
"char": "e",
|
|
9013
|
-
"description": "Link ticket to an epic (e.g., EPIC-001)",
|
|
9014
|
-
"name": "epic",
|
|
9015
|
-
"hasDynamicHelp": false,
|
|
9016
|
-
"multiple": false,
|
|
9017
|
-
"type": "option"
|
|
9018
|
-
},
|
|
9019
|
-
"template": {
|
|
9020
|
-
"char": "T",
|
|
9021
|
-
"description": "Create from a template (e.g., bug-report, feature-request)",
|
|
9022
|
-
"name": "template",
|
|
9023
|
-
"hasDynamicHelp": false,
|
|
9024
|
-
"multiple": false,
|
|
9025
|
-
"type": "option"
|
|
9026
|
-
},
|
|
9027
|
-
"labels": {
|
|
9028
|
-
"aliases": [
|
|
9029
|
-
"label"
|
|
9030
|
-
],
|
|
9031
|
-
"char": "l",
|
|
9032
|
-
"description": "Labels (comma-separated)",
|
|
9033
|
-
"name": "labels",
|
|
9034
|
-
"hasDynamicHelp": false,
|
|
9035
|
-
"multiple": false,
|
|
9036
|
-
"type": "option"
|
|
9037
|
-
},
|
|
9038
|
-
"dry-run": {
|
|
9039
|
-
"description": "Validate inputs without creating ticket (use with --json for structured output)",
|
|
9040
|
-
"name": "dry-run",
|
|
9041
|
-
"allowNo": false,
|
|
9042
|
-
"type": "boolean"
|
|
9043
|
-
},
|
|
9044
|
-
"source": {
|
|
9045
|
-
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9046
|
-
"name": "source",
|
|
9047
|
-
"default": "auto",
|
|
9048
|
-
"hasDynamicHelp": false,
|
|
9049
|
-
"multiple": false,
|
|
9050
|
-
"options": [
|
|
9051
|
-
"auto",
|
|
9052
|
-
"pmo",
|
|
9053
|
-
"linear"
|
|
9054
|
-
],
|
|
9055
|
-
"type": "option"
|
|
9056
|
-
},
|
|
9057
|
-
"team": {
|
|
9058
|
-
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9059
|
-
"name": "team",
|
|
9060
|
-
"hasDynamicHelp": false,
|
|
9061
|
-
"multiple": false,
|
|
9062
|
-
"type": "option"
|
|
9063
|
-
}
|
|
9064
|
-
},
|
|
9065
|
-
"hasDynamicHelp": false,
|
|
9066
|
-
"hiddenAliases": [],
|
|
9067
|
-
"id": "ticket:create",
|
|
9068
|
-
"pluginAlias": "@proletariat/cli",
|
|
9069
|
-
"pluginName": "@proletariat/cli",
|
|
9070
|
-
"pluginType": "core",
|
|
9071
|
-
"strict": true,
|
|
9072
|
-
"isESM": true,
|
|
9073
|
-
"relativePath": [
|
|
9074
|
-
"dist",
|
|
9075
|
-
"commands",
|
|
9076
|
-
"ticket",
|
|
9077
|
-
"create.js"
|
|
9078
|
-
]
|
|
9079
|
-
},
|
|
9080
|
-
"ticket:delete": {
|
|
9081
|
-
"aliases": [],
|
|
9082
|
-
"args": {
|
|
9083
|
-
"ticketId": {
|
|
9084
|
-
"description": "Ticket ID to delete - prompts with dropdown if not provided",
|
|
9085
|
-
"name": "ticketId",
|
|
9086
|
-
"required": false
|
|
9087
|
-
}
|
|
9088
|
-
},
|
|
9089
|
-
"description": "Delete ticket(s) permanently",
|
|
9090
|
-
"examples": [
|
|
9091
|
-
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9092
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --force",
|
|
9093
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
9094
|
-
"<%= config.bin %> <%= command.id %> --bulk",
|
|
9095
|
-
"<%= config.bin %> <%= command.id %> --json # Output choices as JSON"
|
|
9096
|
-
],
|
|
9097
|
-
"flags": {
|
|
9098
|
-
"project": {
|
|
9099
|
-
"char": "P",
|
|
9100
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9101
|
-
"name": "project",
|
|
9102
|
-
"hasDynamicHelp": false,
|
|
9103
|
-
"multiple": false,
|
|
9104
|
-
"type": "option"
|
|
9105
|
-
},
|
|
9106
|
-
"json": {
|
|
9107
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9108
|
-
"name": "json",
|
|
9109
|
-
"allowNo": false,
|
|
9110
|
-
"type": "boolean"
|
|
9111
|
-
},
|
|
9112
|
-
"machine": {
|
|
9113
|
-
"char": "m",
|
|
9114
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9115
|
-
"name": "machine",
|
|
9116
|
-
"allowNo": false,
|
|
9117
|
-
"type": "boolean"
|
|
9118
|
-
},
|
|
9119
|
-
"force": {
|
|
9120
|
-
"char": "f",
|
|
9121
|
-
"description": "Skip confirmation prompt",
|
|
9122
|
-
"name": "force",
|
|
9123
|
-
"allowNo": false,
|
|
9124
|
-
"type": "boolean"
|
|
9125
|
-
},
|
|
9126
|
-
"bulk": {
|
|
9127
|
-
"char": "b",
|
|
9128
|
-
"description": "Enable bulk mode to delete multiple tickets",
|
|
9129
|
-
"name": "bulk",
|
|
9130
|
-
"allowNo": false,
|
|
9131
|
-
"type": "boolean"
|
|
9132
|
-
}
|
|
9133
|
-
},
|
|
9134
|
-
"hasDynamicHelp": false,
|
|
9135
|
-
"hiddenAliases": [],
|
|
9136
|
-
"id": "ticket:delete",
|
|
9137
|
-
"pluginAlias": "@proletariat/cli",
|
|
9138
|
-
"pluginName": "@proletariat/cli",
|
|
9139
|
-
"pluginType": "core",
|
|
9140
|
-
"strict": true,
|
|
9141
|
-
"isESM": true,
|
|
9142
|
-
"relativePath": [
|
|
9143
|
-
"dist",
|
|
9144
|
-
"commands",
|
|
9145
|
-
"ticket",
|
|
9146
|
-
"delete.js"
|
|
9147
|
-
]
|
|
9148
|
-
},
|
|
9149
|
-
"ticket:edit": {
|
|
9150
|
-
"aliases": [],
|
|
9151
|
-
"args": {
|
|
9152
|
-
"ticketId": {
|
|
9153
|
-
"description": "Ticket ID to edit - prompts with dropdown if not provided",
|
|
9154
|
-
"name": "ticketId",
|
|
9155
|
-
"required": false
|
|
9156
|
-
}
|
|
9157
|
-
},
|
|
9158
|
-
"description": "Edit an existing ticket",
|
|
9159
|
-
"examples": [
|
|
9160
|
-
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9161
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --title \"New title\"",
|
|
9162
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --priority P1 --category bug",
|
|
9163
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --add-subtask \"Implement feature\" --add-subtask \"Write tests\"",
|
|
9164
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --owner \"john\" --assignee \"agent-1\"",
|
|
9165
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
9166
|
-
],
|
|
9167
|
-
"flags": {
|
|
9168
|
-
"project": {
|
|
9169
|
-
"char": "P",
|
|
9170
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9171
|
-
"name": "project",
|
|
9172
|
-
"hasDynamicHelp": false,
|
|
9173
|
-
"multiple": false,
|
|
9174
|
-
"type": "option"
|
|
9175
|
-
},
|
|
9176
|
-
"json": {
|
|
9177
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9178
|
-
"name": "json",
|
|
9179
|
-
"allowNo": false,
|
|
9180
|
-
"type": "boolean"
|
|
9181
|
-
},
|
|
9182
|
-
"machine": {
|
|
9183
|
-
"char": "m",
|
|
9184
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9185
|
-
"name": "machine",
|
|
9186
|
-
"allowNo": false,
|
|
9187
|
-
"type": "boolean"
|
|
9188
|
-
},
|
|
9189
|
-
"title": {
|
|
9190
|
-
"char": "t",
|
|
9191
|
-
"description": "New ticket title",
|
|
9192
|
-
"name": "title",
|
|
9193
|
-
"hasDynamicHelp": false,
|
|
9194
|
-
"multiple": false,
|
|
9195
|
-
"type": "option"
|
|
9196
|
-
},
|
|
9197
|
-
"description": {
|
|
9198
|
-
"char": "d",
|
|
9199
|
-
"description": "New ticket description",
|
|
9200
|
-
"name": "description",
|
|
9201
|
-
"hasDynamicHelp": false,
|
|
9202
|
-
"multiple": false,
|
|
9203
|
-
"type": "option"
|
|
9204
|
-
},
|
|
9205
|
-
"priority": {
|
|
9206
|
-
"char": "p",
|
|
9207
|
-
"description": "New ticket priority (uses workspace priority scale, \"none\" to clear)",
|
|
9208
|
-
"name": "priority",
|
|
9209
|
-
"hasDynamicHelp": false,
|
|
9210
|
-
"multiple": false,
|
|
9211
|
-
"type": "option"
|
|
9212
|
-
},
|
|
9213
|
-
"category": {
|
|
9214
|
-
"description": "New ticket category",
|
|
9215
|
-
"name": "category",
|
|
9216
|
-
"hasDynamicHelp": false,
|
|
9217
|
-
"multiple": false,
|
|
9218
|
-
"type": "option"
|
|
9219
|
-
},
|
|
9220
|
-
"owner": {
|
|
9221
|
-
"char": "o",
|
|
9222
|
-
"description": "Ticket owner (human responsible)",
|
|
9223
|
-
"name": "owner",
|
|
9224
|
-
"hasDynamicHelp": false,
|
|
9225
|
-
"multiple": false,
|
|
9226
|
-
"type": "option"
|
|
9227
|
-
},
|
|
9228
|
-
"assignee": {
|
|
9229
|
-
"char": "a",
|
|
9230
|
-
"description": "Ticket assignee (who executes)",
|
|
9231
|
-
"name": "assignee",
|
|
9232
|
-
"hasDynamicHelp": false,
|
|
9233
|
-
"multiple": false,
|
|
9234
|
-
"type": "option"
|
|
9235
|
-
},
|
|
9236
|
-
"add-subtask": {
|
|
9237
|
-
"description": "Add a subtask (can be used multiple times)",
|
|
9238
|
-
"name": "add-subtask",
|
|
9239
|
-
"hasDynamicHelp": false,
|
|
9240
|
-
"multiple": true,
|
|
9241
|
-
"type": "option"
|
|
9242
|
-
},
|
|
9243
|
-
"clear-subtasks": {
|
|
9244
|
-
"description": "Clear all existing subtasks before adding new ones",
|
|
9245
|
-
"name": "clear-subtasks",
|
|
9246
|
-
"allowNo": false,
|
|
9247
|
-
"type": "boolean"
|
|
9248
|
-
},
|
|
9249
|
-
"add-label": {
|
|
9250
|
-
"description": "Add a label (can be used multiple times)",
|
|
9251
|
-
"name": "add-label",
|
|
9252
|
-
"hasDynamicHelp": false,
|
|
9253
|
-
"multiple": true,
|
|
9254
|
-
"type": "option"
|
|
9255
|
-
},
|
|
9256
|
-
"remove-label": {
|
|
9257
|
-
"description": "Remove a label",
|
|
9258
|
-
"name": "remove-label",
|
|
9259
|
-
"hasDynamicHelp": false,
|
|
9260
|
-
"multiple": true,
|
|
9261
|
-
"type": "option"
|
|
9262
|
-
},
|
|
9263
|
-
"add-ac": {
|
|
9264
|
-
"description": "Add an acceptance criterion (can be used multiple times)",
|
|
9265
|
-
"name": "add-ac",
|
|
9266
|
-
"hasDynamicHelp": false,
|
|
9267
|
-
"multiple": true,
|
|
9268
|
-
"type": "option"
|
|
9269
|
-
},
|
|
9270
|
-
"clear-ac": {
|
|
9271
|
-
"description": "Clear all existing acceptance criteria before adding new ones",
|
|
9272
|
-
"name": "clear-ac",
|
|
9273
|
-
"allowNo": false,
|
|
9274
|
-
"type": "boolean"
|
|
9275
|
-
},
|
|
9276
|
-
"interactive": {
|
|
9277
|
-
"char": "i",
|
|
9278
|
-
"description": "Interactive mode - prompts for all fields",
|
|
9279
|
-
"name": "interactive",
|
|
9280
|
-
"allowNo": false,
|
|
9281
|
-
"type": "boolean"
|
|
9282
|
-
}
|
|
9283
|
-
},
|
|
9284
|
-
"hasDynamicHelp": false,
|
|
9285
|
-
"hiddenAliases": [],
|
|
9286
|
-
"id": "ticket:edit",
|
|
9287
|
-
"pluginAlias": "@proletariat/cli",
|
|
9288
|
-
"pluginName": "@proletariat/cli",
|
|
9289
|
-
"pluginType": "core",
|
|
9290
|
-
"strict": true,
|
|
9291
|
-
"isESM": true,
|
|
9292
|
-
"relativePath": [
|
|
9293
|
-
"dist",
|
|
9294
|
-
"commands",
|
|
9295
|
-
"ticket",
|
|
9296
|
-
"edit.js"
|
|
9297
|
-
]
|
|
9298
|
-
},
|
|
9299
|
-
"ticket": {
|
|
9300
|
-
"aliases": [],
|
|
9301
|
-
"args": {},
|
|
9302
|
-
"description": "Interactive menu for ticket operations",
|
|
9303
|
-
"examples": [
|
|
9304
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9305
|
-
],
|
|
9306
|
-
"flags": {
|
|
9307
|
-
"json": {
|
|
9308
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9309
|
-
"name": "json",
|
|
9310
|
-
"allowNo": false,
|
|
9311
|
-
"type": "boolean"
|
|
9312
|
-
},
|
|
9313
|
-
"machine": {
|
|
9314
|
-
"char": "m",
|
|
9315
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9316
|
-
"name": "machine",
|
|
9317
|
-
"allowNo": false,
|
|
9318
|
-
"type": "boolean"
|
|
9319
|
-
}
|
|
9320
|
-
},
|
|
9321
|
-
"hasDynamicHelp": false,
|
|
9322
|
-
"hiddenAliases": [],
|
|
9323
|
-
"id": "ticket",
|
|
9324
|
-
"pluginAlias": "@proletariat/cli",
|
|
9325
|
-
"pluginName": "@proletariat/cli",
|
|
9326
|
-
"pluginType": "core",
|
|
9327
|
-
"strict": true,
|
|
9328
|
-
"isESM": true,
|
|
9329
|
-
"relativePath": [
|
|
9330
|
-
"dist",
|
|
9331
|
-
"commands",
|
|
9332
|
-
"ticket",
|
|
9333
|
-
"index.js"
|
|
9334
|
-
]
|
|
9335
|
-
},
|
|
9336
|
-
"ticket:list": {
|
|
9337
|
-
"aliases": [],
|
|
9338
|
-
"args": {},
|
|
9339
|
-
"description": "List tickets from the PMO board",
|
|
9340
|
-
"examples": [
|
|
9341
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9342
|
-
"<%= config.bin %> <%= command.id %> --column Backlog",
|
|
9343
|
-
"<%= config.bin %> <%= command.id %> --priority P0",
|
|
9344
|
-
"<%= config.bin %> <%= command.id %> --category bug",
|
|
9345
|
-
"<%= config.bin %> <%= command.id %> --search \"login\"",
|
|
9346
|
-
"<%= config.bin %> <%= command.id %> --project mobile-app",
|
|
9347
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
9348
|
-
"<%= config.bin %> <%= command.id %> --all --group-by priority",
|
|
9349
|
-
"<%= config.bin %> <%= command.id %> -g priority",
|
|
9350
|
-
"<%= config.bin %> <%= command.id %> --limit 10",
|
|
9351
|
-
"<%= config.bin %> <%= command.id %> --limit 10 --offset 20"
|
|
9352
|
-
],
|
|
9353
|
-
"flags": {
|
|
9354
|
-
"project": {
|
|
9355
|
-
"char": "P",
|
|
9356
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9357
|
-
"name": "project",
|
|
9358
|
-
"hasDynamicHelp": false,
|
|
9359
|
-
"multiple": false,
|
|
9360
|
-
"type": "option"
|
|
9361
|
-
},
|
|
9362
|
-
"json": {
|
|
9363
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9364
|
-
"name": "json",
|
|
9365
|
-
"allowNo": false,
|
|
9366
|
-
"type": "boolean"
|
|
9367
|
-
},
|
|
9368
|
-
"machine": {
|
|
9369
|
-
"char": "m",
|
|
9370
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9371
|
-
"name": "machine",
|
|
9372
|
-
"allowNo": false,
|
|
9373
|
-
"type": "boolean"
|
|
9374
|
-
},
|
|
9375
|
-
"column": {
|
|
9376
|
-
"char": "c",
|
|
9377
|
-
"description": "Filter by column",
|
|
9378
|
-
"name": "column",
|
|
9379
|
-
"hasDynamicHelp": false,
|
|
9380
|
-
"multiple": false,
|
|
9381
|
-
"type": "option"
|
|
9382
|
-
},
|
|
9383
|
-
"priority": {
|
|
9384
|
-
"char": "p",
|
|
9385
|
-
"description": "Filter by priority (uses workspace priority scale)",
|
|
9386
|
-
"name": "priority",
|
|
9387
|
-
"hasDynamicHelp": false,
|
|
9388
|
-
"multiple": false,
|
|
9389
|
-
"type": "option"
|
|
9390
|
-
},
|
|
9391
|
-
"category": {
|
|
9392
|
-
"description": "Filter by category",
|
|
9393
|
-
"name": "category",
|
|
9394
|
-
"hasDynamicHelp": false,
|
|
9395
|
-
"multiple": false,
|
|
9396
|
-
"type": "option"
|
|
9397
|
-
},
|
|
9398
|
-
"search": {
|
|
9399
|
-
"char": "s",
|
|
9400
|
-
"description": "Search in title and description",
|
|
9401
|
-
"name": "search",
|
|
9402
|
-
"hasDynamicHelp": false,
|
|
9403
|
-
"multiple": false,
|
|
9404
|
-
"type": "option"
|
|
9405
|
-
},
|
|
9406
|
-
"format": {
|
|
9407
|
-
"char": "f",
|
|
9408
|
-
"description": "Output format",
|
|
9409
|
-
"name": "format",
|
|
9410
|
-
"default": "table",
|
|
9411
|
-
"hasDynamicHelp": false,
|
|
9412
|
-
"multiple": false,
|
|
9413
|
-
"options": [
|
|
9414
|
-
"table",
|
|
9415
|
-
"compact",
|
|
9416
|
-
"json"
|
|
9417
|
-
],
|
|
9418
|
-
"type": "option"
|
|
9419
|
-
},
|
|
9420
|
-
"all": {
|
|
9421
|
-
"char": "a",
|
|
9422
|
-
"description": "Show tickets across all projects",
|
|
9423
|
-
"name": "all",
|
|
9424
|
-
"allowNo": false,
|
|
9425
|
-
"type": "boolean"
|
|
9426
|
-
},
|
|
9427
|
-
"label": {
|
|
9428
|
-
"description": "Filter by label name",
|
|
9429
|
-
"name": "label",
|
|
9430
|
-
"hasDynamicHelp": false,
|
|
9431
|
-
"multiple": false,
|
|
9432
|
-
"type": "option"
|
|
9433
|
-
},
|
|
9434
|
-
"group-by": {
|
|
9435
|
-
"char": "g",
|
|
9436
|
-
"description": "Group tickets by field",
|
|
9437
|
-
"name": "group-by",
|
|
9438
|
-
"default": "status",
|
|
9439
|
-
"hasDynamicHelp": false,
|
|
9440
|
-
"multiple": false,
|
|
9441
|
-
"options": [
|
|
9442
|
-
"status",
|
|
9443
|
-
"priority"
|
|
9444
|
-
],
|
|
9445
|
-
"type": "option"
|
|
9446
|
-
},
|
|
9447
|
-
"limit": {
|
|
9448
|
-
"char": "l",
|
|
9449
|
-
"description": "Maximum number of tickets to display",
|
|
9450
|
-
"name": "limit",
|
|
9451
|
-
"hasDynamicHelp": false,
|
|
9452
|
-
"multiple": false,
|
|
9453
|
-
"type": "option"
|
|
9454
|
-
},
|
|
9455
|
-
"offset": {
|
|
9456
|
-
"description": "Skip first N tickets (for pagination)",
|
|
9457
|
-
"name": "offset",
|
|
9458
|
-
"hasDynamicHelp": false,
|
|
9459
|
-
"multiple": false,
|
|
9460
|
-
"type": "option"
|
|
9461
|
-
},
|
|
9462
|
-
"source": {
|
|
9463
|
-
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9464
|
-
"name": "source",
|
|
9465
|
-
"default": "auto",
|
|
9466
|
-
"hasDynamicHelp": false,
|
|
9467
|
-
"multiple": false,
|
|
9468
|
-
"options": [
|
|
9469
|
-
"auto",
|
|
9470
|
-
"pmo",
|
|
9471
|
-
"linear"
|
|
9472
|
-
],
|
|
9473
|
-
"type": "option"
|
|
9474
|
-
},
|
|
9475
|
-
"team": {
|
|
9476
|
-
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9477
|
-
"name": "team",
|
|
9478
|
-
"hasDynamicHelp": false,
|
|
9479
|
-
"multiple": false,
|
|
9480
|
-
"type": "option"
|
|
9481
|
-
}
|
|
9482
|
-
},
|
|
9483
|
-
"hasDynamicHelp": false,
|
|
9484
|
-
"hiddenAliases": [],
|
|
9485
|
-
"id": "ticket:list",
|
|
9486
|
-
"pluginAlias": "@proletariat/cli",
|
|
9487
|
-
"pluginName": "@proletariat/cli",
|
|
9488
|
-
"pluginType": "core",
|
|
9489
|
-
"strict": true,
|
|
9490
|
-
"enableJsonFlag": false,
|
|
9491
|
-
"isESM": true,
|
|
9492
|
-
"relativePath": [
|
|
9493
|
-
"dist",
|
|
9494
|
-
"commands",
|
|
9495
|
-
"ticket",
|
|
9496
|
-
"list.js"
|
|
9497
|
-
]
|
|
9498
|
-
},
|
|
9499
|
-
"ticket:move": {
|
|
9500
|
-
"aliases": [],
|
|
9501
|
-
"args": {
|
|
9502
|
-
"ticketId": {
|
|
9503
|
-
"description": "Ticket ID - prompts with dropdown if not provided",
|
|
9504
|
-
"name": "ticketId",
|
|
9505
|
-
"required": false
|
|
9506
|
-
},
|
|
9507
|
-
"column": {
|
|
9508
|
-
"description": "Target column - prompts with dropdown if not provided",
|
|
9509
|
-
"name": "column",
|
|
9510
|
-
"required": false
|
|
9511
|
-
}
|
|
9512
|
-
},
|
|
9513
|
-
"description": "Move ticket(s) to a different column",
|
|
9514
|
-
"examples": [
|
|
9515
|
-
"<%= config.bin %> <%= command.id %> my-ticket \"In Progress\"",
|
|
9516
|
-
"<%= config.bin %> <%= command.id %> implement-auth Done",
|
|
9517
|
-
"<%= config.bin %> <%= command.id %> TKT-123 --status \"In Review\"",
|
|
9518
|
-
"<%= config.bin %> <%= command.id %> fix-bug \"In Review\" --position 0",
|
|
9519
|
-
"<%= config.bin %> <%= command.id %> TKT-123 --to-project PROJ-002",
|
|
9520
|
-
"<%= config.bin %> <%= command.id %> --bulk"
|
|
9521
|
-
],
|
|
9522
|
-
"flags": {
|
|
9523
|
-
"project": {
|
|
9524
|
-
"char": "P",
|
|
9525
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9526
|
-
"name": "project",
|
|
9527
|
-
"hasDynamicHelp": false,
|
|
9528
|
-
"multiple": false,
|
|
9529
|
-
"type": "option"
|
|
9530
|
-
},
|
|
9531
|
-
"json": {
|
|
9532
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9533
|
-
"name": "json",
|
|
9534
|
-
"allowNo": false,
|
|
9535
|
-
"type": "boolean"
|
|
9536
|
-
},
|
|
9537
|
-
"machine": {
|
|
9538
|
-
"char": "m",
|
|
9539
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9540
|
-
"name": "machine",
|
|
9541
|
-
"allowNo": false,
|
|
9542
|
-
"type": "boolean"
|
|
9543
|
-
},
|
|
9544
|
-
"status": {
|
|
9545
|
-
"char": "s",
|
|
9546
|
-
"description": "Target status/column (alternative to positional column argument)",
|
|
9547
|
-
"name": "status",
|
|
9548
|
-
"hasDynamicHelp": false,
|
|
9549
|
-
"multiple": false,
|
|
9550
|
-
"type": "option"
|
|
9551
|
-
},
|
|
9552
|
-
"position": {
|
|
9553
|
-
"description": "Position within the column (0 = top)",
|
|
9554
|
-
"name": "position",
|
|
9555
|
-
"hasDynamicHelp": false,
|
|
9556
|
-
"multiple": false,
|
|
9557
|
-
"type": "option"
|
|
9558
|
-
},
|
|
9559
|
-
"to-project": {
|
|
9560
|
-
"description": "Move ticket to a different project (uses Backlog/default column)",
|
|
9561
|
-
"name": "to-project",
|
|
9562
|
-
"hasDynamicHelp": false,
|
|
9563
|
-
"multiple": false,
|
|
9564
|
-
"type": "option"
|
|
9565
|
-
},
|
|
9566
|
-
"bulk": {
|
|
9567
|
-
"char": "b",
|
|
9568
|
-
"description": "Enable bulk mode to move multiple tickets",
|
|
9569
|
-
"name": "bulk",
|
|
9570
|
-
"allowNo": false,
|
|
9571
|
-
"type": "boolean"
|
|
9572
|
-
},
|
|
9573
|
-
"force": {
|
|
9574
|
-
"char": "f",
|
|
9575
|
-
"description": "Skip confirmation prompt (bulk mode only)",
|
|
9576
|
-
"name": "force",
|
|
9577
|
-
"allowNo": false,
|
|
9578
|
-
"type": "boolean"
|
|
9579
|
-
}
|
|
9580
|
-
},
|
|
9581
|
-
"hasDynamicHelp": false,
|
|
9582
|
-
"hiddenAliases": [],
|
|
9583
|
-
"id": "ticket:move",
|
|
8826
|
+
"id": "theme",
|
|
9584
8827
|
"pluginAlias": "@proletariat/cli",
|
|
9585
8828
|
"pluginName": "@proletariat/cli",
|
|
9586
8829
|
"pluginType": "core",
|
|
@@ -9589,33 +8832,18 @@
|
|
|
9589
8832
|
"relativePath": [
|
|
9590
8833
|
"dist",
|
|
9591
8834
|
"commands",
|
|
9592
|
-
"
|
|
9593
|
-
"
|
|
8835
|
+
"theme",
|
|
8836
|
+
"index.js"
|
|
9594
8837
|
]
|
|
9595
8838
|
},
|
|
9596
|
-
"
|
|
8839
|
+
"theme:list": {
|
|
9597
8840
|
"aliases": [],
|
|
9598
|
-
"args": {
|
|
9599
|
-
|
|
9600
|
-
"description": "Ticket ID to view - prompts with dropdown if not provided",
|
|
9601
|
-
"name": "ticketId",
|
|
9602
|
-
"required": false
|
|
9603
|
-
}
|
|
9604
|
-
},
|
|
9605
|
-
"description": "View detailed ticket information",
|
|
8841
|
+
"args": {},
|
|
8842
|
+
"description": "List available agent themes",
|
|
9606
8843
|
"examples": [
|
|
9607
|
-
"<%= config.bin %> <%= command.id %>
|
|
9608
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
8844
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9609
8845
|
],
|
|
9610
8846
|
"flags": {
|
|
9611
|
-
"project": {
|
|
9612
|
-
"char": "P",
|
|
9613
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9614
|
-
"name": "project",
|
|
9615
|
-
"hasDynamicHelp": false,
|
|
9616
|
-
"multiple": false,
|
|
9617
|
-
"type": "option"
|
|
9618
|
-
},
|
|
9619
8847
|
"json": {
|
|
9620
8848
|
"description": "Output as JSON for AI agents/scripts",
|
|
9621
8849
|
"name": "json",
|
|
@@ -9632,49 +8860,35 @@
|
|
|
9632
8860
|
},
|
|
9633
8861
|
"hasDynamicHelp": false,
|
|
9634
8862
|
"hiddenAliases": [],
|
|
9635
|
-
"id": "
|
|
8863
|
+
"id": "theme:list",
|
|
9636
8864
|
"pluginAlias": "@proletariat/cli",
|
|
9637
8865
|
"pluginName": "@proletariat/cli",
|
|
9638
8866
|
"pluginType": "core",
|
|
9639
8867
|
"strict": true,
|
|
8868
|
+
"enableJsonFlag": false,
|
|
9640
8869
|
"isESM": true,
|
|
9641
8870
|
"relativePath": [
|
|
9642
8871
|
"dist",
|
|
9643
8872
|
"commands",
|
|
9644
|
-
"
|
|
9645
|
-
"
|
|
8873
|
+
"theme",
|
|
8874
|
+
"list.js"
|
|
9646
8875
|
]
|
|
9647
8876
|
},
|
|
9648
|
-
"
|
|
8877
|
+
"theme:set": {
|
|
9649
8878
|
"aliases": [],
|
|
9650
8879
|
"args": {
|
|
9651
|
-
"
|
|
9652
|
-
"description": "
|
|
9653
|
-
"name": "
|
|
8880
|
+
"theme": {
|
|
8881
|
+
"description": "Theme ID to set as active",
|
|
8882
|
+
"name": "theme",
|
|
9654
8883
|
"required": false
|
|
9655
8884
|
}
|
|
9656
8885
|
},
|
|
9657
|
-
"description": "
|
|
8886
|
+
"description": "Set the active theme for this workspace",
|
|
9658
8887
|
"examples": [
|
|
9659
|
-
"<%= config.bin %> <%= command.id %>
|
|
9660
|
-
"<%= config.bin %> <%= command.id %>
|
|
9661
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --description-file ./spec.md",
|
|
9662
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --priority P1",
|
|
9663
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --category bug",
|
|
9664
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --labels frontend,urgent",
|
|
9665
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --status \"In Progress\"",
|
|
9666
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --title \"Fix auth\" --priority P0 --status \"In Progress\" --json",
|
|
9667
|
-
"<%= config.bin %> <%= command.id %> --bulk --priority P1"
|
|
8888
|
+
"<%= config.bin %> <%= command.id %> billionaires",
|
|
8889
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9668
8890
|
],
|
|
9669
8891
|
"flags": {
|
|
9670
|
-
"project": {
|
|
9671
|
-
"char": "P",
|
|
9672
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9673
|
-
"name": "project",
|
|
9674
|
-
"hasDynamicHelp": false,
|
|
9675
|
-
"multiple": false,
|
|
9676
|
-
"type": "option"
|
|
9677
|
-
},
|
|
9678
8892
|
"json": {
|
|
9679
8893
|
"description": "Output as JSON for AI agents/scripts",
|
|
9680
8894
|
"name": "json",
|
|
@@ -9687,80 +8901,11 @@
|
|
|
9687
8901
|
"name": "machine",
|
|
9688
8902
|
"allowNo": false,
|
|
9689
8903
|
"type": "boolean"
|
|
9690
|
-
},
|
|
9691
|
-
"title": {
|
|
9692
|
-
"char": "t",
|
|
9693
|
-
"description": "Set ticket title",
|
|
9694
|
-
"name": "title",
|
|
9695
|
-
"hasDynamicHelp": false,
|
|
9696
|
-
"multiple": false,
|
|
9697
|
-
"type": "option"
|
|
9698
|
-
},
|
|
9699
|
-
"description": {
|
|
9700
|
-
"char": "d",
|
|
9701
|
-
"description": "Set ticket description",
|
|
9702
|
-
"name": "description",
|
|
9703
|
-
"hasDynamicHelp": false,
|
|
9704
|
-
"multiple": false,
|
|
9705
|
-
"type": "option"
|
|
9706
|
-
},
|
|
9707
|
-
"description-file": {
|
|
9708
|
-
"description": "Read ticket description from a file",
|
|
9709
|
-
"name": "description-file",
|
|
9710
|
-
"hasDynamicHelp": false,
|
|
9711
|
-
"multiple": false,
|
|
9712
|
-
"type": "option"
|
|
9713
|
-
},
|
|
9714
|
-
"priority": {
|
|
9715
|
-
"char": "p",
|
|
9716
|
-
"description": "Set priority (uses workspace priority scale, \"none\" to clear)",
|
|
9717
|
-
"name": "priority",
|
|
9718
|
-
"hasDynamicHelp": false,
|
|
9719
|
-
"multiple": false,
|
|
9720
|
-
"type": "option"
|
|
9721
|
-
},
|
|
9722
|
-
"category": {
|
|
9723
|
-
"char": "c",
|
|
9724
|
-
"description": "Set category (e.g., feature, bug, refactor, \"none\" to clear)",
|
|
9725
|
-
"name": "category",
|
|
9726
|
-
"hasDynamicHelp": false,
|
|
9727
|
-
"multiple": false,
|
|
9728
|
-
"type": "option"
|
|
9729
|
-
},
|
|
9730
|
-
"labels": {
|
|
9731
|
-
"char": "l",
|
|
9732
|
-
"description": "Set labels (comma-separated, replaces existing labels; use \"\" to clear)",
|
|
9733
|
-
"name": "labels",
|
|
9734
|
-
"hasDynamicHelp": false,
|
|
9735
|
-
"multiple": false,
|
|
9736
|
-
"type": "option"
|
|
9737
|
-
},
|
|
9738
|
-
"status": {
|
|
9739
|
-
"char": "s",
|
|
9740
|
-
"description": "Set status/column (e.g., \"In Progress\", \"Done\")",
|
|
9741
|
-
"name": "status",
|
|
9742
|
-
"hasDynamicHelp": false,
|
|
9743
|
-
"multiple": false,
|
|
9744
|
-
"type": "option"
|
|
9745
|
-
},
|
|
9746
|
-
"bulk": {
|
|
9747
|
-
"char": "b",
|
|
9748
|
-
"description": "Enable bulk mode to update multiple tickets",
|
|
9749
|
-
"name": "bulk",
|
|
9750
|
-
"allowNo": false,
|
|
9751
|
-
"type": "boolean"
|
|
9752
|
-
},
|
|
9753
|
-
"force": {
|
|
9754
|
-
"char": "f",
|
|
9755
|
-
"description": "Skip confirmation prompt",
|
|
9756
|
-
"name": "force",
|
|
9757
|
-
"allowNo": false,
|
|
9758
|
-
"type": "boolean"
|
|
9759
8904
|
}
|
|
9760
8905
|
},
|
|
9761
8906
|
"hasDynamicHelp": false,
|
|
9762
8907
|
"hiddenAliases": [],
|
|
9763
|
-
"id": "
|
|
8908
|
+
"id": "theme:set",
|
|
9764
8909
|
"pluginAlias": "@proletariat/cli",
|
|
9765
8910
|
"pluginName": "@proletariat/cli",
|
|
9766
8911
|
"pluginType": "core",
|
|
@@ -9769,8 +8914,9 @@
|
|
|
9769
8914
|
"relativePath": [
|
|
9770
8915
|
"dist",
|
|
9771
8916
|
"commands",
|
|
9772
|
-
"
|
|
9773
|
-
"
|
|
8917
|
+
"agent",
|
|
8918
|
+
"themes",
|
|
8919
|
+
"set.js"
|
|
9774
8920
|
]
|
|
9775
8921
|
},
|
|
9776
8922
|
"tools:add": {
|
|
@@ -10319,6 +9465,76 @@
|
|
|
10319
9465
|
"bump.js"
|
|
10320
9466
|
]
|
|
10321
9467
|
},
|
|
9468
|
+
"watch": {
|
|
9469
|
+
"aliases": [],
|
|
9470
|
+
"args": {},
|
|
9471
|
+
"description": "Poll GitHub/Linear/agents and poke an orchestrator with changes",
|
|
9472
|
+
"examples": [
|
|
9473
|
+
"<%= config.bin %> watch --target orchestrator",
|
|
9474
|
+
"<%= config.bin %> watch --target orchestrator --poll-interval 30",
|
|
9475
|
+
"<%= config.bin %> watch --target my-orchestrator --verbose",
|
|
9476
|
+
"<%= config.bin %> watch --target orchestrator --once"
|
|
9477
|
+
],
|
|
9478
|
+
"flags": {
|
|
9479
|
+
"json": {
|
|
9480
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9481
|
+
"name": "json",
|
|
9482
|
+
"allowNo": false,
|
|
9483
|
+
"type": "boolean"
|
|
9484
|
+
},
|
|
9485
|
+
"machine": {
|
|
9486
|
+
"char": "m",
|
|
9487
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9488
|
+
"name": "machine",
|
|
9489
|
+
"allowNo": false,
|
|
9490
|
+
"type": "boolean"
|
|
9491
|
+
},
|
|
9492
|
+
"target": {
|
|
9493
|
+
"char": "t",
|
|
9494
|
+
"description": "Orchestrator agent/session name to poke with changes",
|
|
9495
|
+
"name": "target",
|
|
9496
|
+
"required": true,
|
|
9497
|
+
"hasDynamicHelp": false,
|
|
9498
|
+
"multiple": false,
|
|
9499
|
+
"type": "option"
|
|
9500
|
+
},
|
|
9501
|
+
"poll-interval": {
|
|
9502
|
+
"description": "Poll interval in seconds",
|
|
9503
|
+
"name": "poll-interval",
|
|
9504
|
+
"default": 60,
|
|
9505
|
+
"hasDynamicHelp": false,
|
|
9506
|
+
"multiple": false,
|
|
9507
|
+
"type": "option"
|
|
9508
|
+
},
|
|
9509
|
+
"verbose": {
|
|
9510
|
+
"char": "v",
|
|
9511
|
+
"description": "Show detailed output including poll results",
|
|
9512
|
+
"name": "verbose",
|
|
9513
|
+
"allowNo": false,
|
|
9514
|
+
"type": "boolean"
|
|
9515
|
+
},
|
|
9516
|
+
"once": {
|
|
9517
|
+
"description": "Run a single poll cycle and exit (useful for testing)",
|
|
9518
|
+
"name": "once",
|
|
9519
|
+
"allowNo": false,
|
|
9520
|
+
"type": "boolean"
|
|
9521
|
+
}
|
|
9522
|
+
},
|
|
9523
|
+
"hasDynamicHelp": false,
|
|
9524
|
+
"hiddenAliases": [],
|
|
9525
|
+
"id": "watch",
|
|
9526
|
+
"pluginAlias": "@proletariat/cli",
|
|
9527
|
+
"pluginName": "@proletariat/cli",
|
|
9528
|
+
"pluginType": "core",
|
|
9529
|
+
"strict": true,
|
|
9530
|
+
"isESM": true,
|
|
9531
|
+
"relativePath": [
|
|
9532
|
+
"dist",
|
|
9533
|
+
"commands",
|
|
9534
|
+
"watch",
|
|
9535
|
+
"index.js"
|
|
9536
|
+
]
|
|
9537
|
+
},
|
|
10322
9538
|
"workspace:add": {
|
|
10323
9539
|
"aliases": [],
|
|
10324
9540
|
"args": {
|
|
@@ -10718,6 +9934,12 @@
|
|
|
10718
9934
|
"name": "machine",
|
|
10719
9935
|
"allowNo": false,
|
|
10720
9936
|
"type": "boolean"
|
|
9937
|
+
},
|
|
9938
|
+
"no-transition": {
|
|
9939
|
+
"description": "Skip board state transition (still runs other actions)",
|
|
9940
|
+
"name": "no-transition",
|
|
9941
|
+
"allowNo": false,
|
|
9942
|
+
"type": "boolean"
|
|
10721
9943
|
}
|
|
10722
9944
|
},
|
|
10723
9945
|
"hasDynamicHelp": false,
|
|
@@ -10735,6 +9957,61 @@
|
|
|
10735
9957
|
"complete.js"
|
|
10736
9958
|
]
|
|
10737
9959
|
},
|
|
9960
|
+
"work:drop": {
|
|
9961
|
+
"aliases": [],
|
|
9962
|
+
"args": {
|
|
9963
|
+
"ticketId": {
|
|
9964
|
+
"description": "Ticket ID to drop",
|
|
9965
|
+
"name": "ticketId",
|
|
9966
|
+
"required": true
|
|
9967
|
+
}
|
|
9968
|
+
},
|
|
9969
|
+
"description": "Drop work: kill agent, close PR, and move ticket off the board",
|
|
9970
|
+
"examples": [
|
|
9971
|
+
"<%= config.bin %> work drop TKT-001",
|
|
9972
|
+
"<%= config.bin %> work drop TKT-001 --json",
|
|
9973
|
+
"<%= config.bin %> work drop TKT-001 --no-transition"
|
|
9974
|
+
],
|
|
9975
|
+
"flags": {
|
|
9976
|
+
"json": {
|
|
9977
|
+
"aliases": [
|
|
9978
|
+
"machine"
|
|
9979
|
+
],
|
|
9980
|
+
"char": "m",
|
|
9981
|
+
"description": "Output as JSON",
|
|
9982
|
+
"name": "json",
|
|
9983
|
+
"allowNo": false,
|
|
9984
|
+
"type": "boolean"
|
|
9985
|
+
},
|
|
9986
|
+
"machine": {
|
|
9987
|
+
"char": "m",
|
|
9988
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9989
|
+
"name": "machine",
|
|
9990
|
+
"allowNo": false,
|
|
9991
|
+
"type": "boolean"
|
|
9992
|
+
},
|
|
9993
|
+
"no-transition": {
|
|
9994
|
+
"description": "Skip board state transition (still kills agent and closes PR)",
|
|
9995
|
+
"name": "no-transition",
|
|
9996
|
+
"allowNo": false,
|
|
9997
|
+
"type": "boolean"
|
|
9998
|
+
}
|
|
9999
|
+
},
|
|
10000
|
+
"hasDynamicHelp": false,
|
|
10001
|
+
"hiddenAliases": [],
|
|
10002
|
+
"id": "work:drop",
|
|
10003
|
+
"pluginAlias": "@proletariat/cli",
|
|
10004
|
+
"pluginName": "@proletariat/cli",
|
|
10005
|
+
"pluginType": "core",
|
|
10006
|
+
"strict": true,
|
|
10007
|
+
"isESM": true,
|
|
10008
|
+
"relativePath": [
|
|
10009
|
+
"dist",
|
|
10010
|
+
"commands",
|
|
10011
|
+
"work",
|
|
10012
|
+
"drop.js"
|
|
10013
|
+
]
|
|
10014
|
+
},
|
|
10738
10015
|
"work:groom": {
|
|
10739
10016
|
"aliases": [],
|
|
10740
10017
|
"args": {
|
|
@@ -11099,7 +10376,7 @@
|
|
|
11099
10376
|
"type": "boolean"
|
|
11100
10377
|
},
|
|
11101
10378
|
"team": {
|
|
11102
|
-
"description": "Linear team key (
|
|
10379
|
+
"description": "Linear team key (auto-detected from workspace config)",
|
|
11103
10380
|
"name": "team",
|
|
11104
10381
|
"hasDynamicHelp": false,
|
|
11105
10382
|
"multiple": false,
|
|
@@ -11471,6 +10748,12 @@
|
|
|
11471
10748
|
"name": "no-pr",
|
|
11472
10749
|
"allowNo": false,
|
|
11473
10750
|
"type": "boolean"
|
|
10751
|
+
},
|
|
10752
|
+
"no-transition": {
|
|
10753
|
+
"description": "Skip board state transition (still runs other actions)",
|
|
10754
|
+
"name": "no-transition",
|
|
10755
|
+
"allowNo": false,
|
|
10756
|
+
"type": "boolean"
|
|
11474
10757
|
}
|
|
11475
10758
|
},
|
|
11476
10759
|
"hasDynamicHelp": false,
|
|
@@ -11788,6 +11071,12 @@
|
|
|
11788
11071
|
"name": "rebase-siblings",
|
|
11789
11072
|
"allowNo": true,
|
|
11790
11073
|
"type": "boolean"
|
|
11074
|
+
},
|
|
11075
|
+
"no-transition": {
|
|
11076
|
+
"description": "Skip board state transition (still merges PR)",
|
|
11077
|
+
"name": "no-transition",
|
|
11078
|
+
"allowNo": false,
|
|
11079
|
+
"type": "boolean"
|
|
11791
11080
|
}
|
|
11792
11081
|
},
|
|
11793
11082
|
"hasDynamicHelp": false,
|
|
@@ -12366,7 +11655,8 @@
|
|
|
12366
11655
|
"<%= config.bin %> <%= command.id %> TKT-001 --review-gate auto # Ship directly, no approval needed",
|
|
12367
11656
|
"<%= config.bin %> <%= command.id %> TKT-001 --review-gate post # Ship then human reviews after",
|
|
12368
11657
|
"<%= config.bin %> <%= command.id %> PRLT-1085 PRLT-1086 PRLT-1087 --create-pr # Batch spawn in parallel",
|
|
12369
|
-
"<%= config.bin %> <%= command.id %> TKT-001 TKT-002 TKT-003 --max-parallel 2 # Limit concurrent spawns"
|
|
11658
|
+
"<%= config.bin %> <%= command.id %> TKT-001 TKT-002 TKT-003 --max-parallel 2 # Limit concurrent spawns",
|
|
11659
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --dry-run # Validate environment without spawning"
|
|
12370
11660
|
],
|
|
12371
11661
|
"flags": {
|
|
12372
11662
|
"project": {
|
|
@@ -12535,6 +11825,12 @@
|
|
|
12535
11825
|
"allowNo": false,
|
|
12536
11826
|
"type": "boolean"
|
|
12537
11827
|
},
|
|
11828
|
+
"verify-ci": {
|
|
11829
|
+
"description": "Agent polls CI after pushing and fixes failures before exiting (PRLT-1126)",
|
|
11830
|
+
"name": "verify-ci",
|
|
11831
|
+
"allowNo": false,
|
|
11832
|
+
"type": "boolean"
|
|
11833
|
+
},
|
|
12538
11834
|
"output": {
|
|
12539
11835
|
"char": "o",
|
|
12540
11836
|
"description": "Output mode",
|
|
@@ -12682,6 +11978,12 @@
|
|
|
12682
11978
|
"hasDynamicHelp": false,
|
|
12683
11979
|
"multiple": false,
|
|
12684
11980
|
"type": "option"
|
|
11981
|
+
},
|
|
11982
|
+
"dry-run": {
|
|
11983
|
+
"description": "Validate environment and prerequisites without actually spawning an agent",
|
|
11984
|
+
"name": "dry-run",
|
|
11985
|
+
"allowNo": false,
|
|
11986
|
+
"type": "boolean"
|
|
12685
11987
|
}
|
|
12686
11988
|
},
|
|
12687
11989
|
"hasDynamicHelp": false,
|
|
@@ -12776,6 +12078,12 @@
|
|
|
12776
12078
|
"name": "machine",
|
|
12777
12079
|
"allowNo": false,
|
|
12778
12080
|
"type": "boolean"
|
|
12081
|
+
},
|
|
12082
|
+
"no-transition": {
|
|
12083
|
+
"description": "Skip board state transition (still stops the agent)",
|
|
12084
|
+
"name": "no-transition",
|
|
12085
|
+
"allowNo": false,
|
|
12086
|
+
"type": "boolean"
|
|
12779
12087
|
}
|
|
12780
12088
|
},
|
|
12781
12089
|
"hasDynamicHelp": false,
|
|
@@ -13737,5 +13045,5 @@
|
|
|
13737
13045
|
]
|
|
13738
13046
|
}
|
|
13739
13047
|
},
|
|
13740
|
-
"version": "0.3.
|
|
13048
|
+
"version": "0.3.98"
|
|
13741
13049
|
}
|