@proletariat/cli 0.3.97 → 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/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/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.js +11 -6
- package/dist/commands/work/complete.js.map +1 -1
- package/dist/commands/work/linear.js +1 -1
- package/dist/commands/work/linear.js.map +1 -1
- package/dist/commands/work/ready.js +20 -5
- package/dist/commands/work/ready.js.map +1 -1
- package/dist/commands/work/ship.js +24 -9
- package/dist/commands/work/ship.js.map +1 -1
- package/dist/commands/work/start.js +95 -58
- package/dist/commands/work/start.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/execution/preflight.js +1 -1
- package/dist/lib/execution/preflight.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/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 +8 -0
- package/dist/lib/gc/index.js +35 -2
- 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/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 +1 -1
- package/dist/lib/providers/auto-mapper.js +23 -0
- package/dist/lib/providers/auto-mapper.js.map +1 -1
- 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/types.d.ts +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.js +24 -10
- package/dist/lib/work-lifecycle/transition.js.map +1 -1
- 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 +1098 -1896
- 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.d.ts +0 -13
- 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
|
@@ -1972,6 +1972,66 @@
|
|
|
1972
1972
|
"sync.js"
|
|
1973
1973
|
]
|
|
1974
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
|
+
},
|
|
1975
2035
|
"branch:create": {
|
|
1976
2036
|
"aliases": [],
|
|
1977
2037
|
"args": {
|
|
@@ -2328,66 +2388,6 @@
|
|
|
2328
2388
|
"where.js"
|
|
2329
2389
|
]
|
|
2330
2390
|
},
|
|
2331
|
-
"autocomplete:setup": {
|
|
2332
|
-
"aliases": [],
|
|
2333
|
-
"args": {},
|
|
2334
|
-
"description": "Auto-detect shell and set up autocomplete",
|
|
2335
|
-
"examples": [
|
|
2336
|
-
"<%= config.bin %> <%= command.id %>",
|
|
2337
|
-
"<%= config.bin %> <%= command.id %> --install",
|
|
2338
|
-
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
2339
|
-
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
2340
|
-
],
|
|
2341
|
-
"flags": {
|
|
2342
|
-
"json": {
|
|
2343
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2344
|
-
"name": "json",
|
|
2345
|
-
"allowNo": false,
|
|
2346
|
-
"type": "boolean"
|
|
2347
|
-
},
|
|
2348
|
-
"machine": {
|
|
2349
|
-
"char": "m",
|
|
2350
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2351
|
-
"name": "machine",
|
|
2352
|
-
"allowNo": false,
|
|
2353
|
-
"type": "boolean"
|
|
2354
|
-
},
|
|
2355
|
-
"install": {
|
|
2356
|
-
"char": "i",
|
|
2357
|
-
"description": "Automatically install to shell config file",
|
|
2358
|
-
"name": "install",
|
|
2359
|
-
"allowNo": false,
|
|
2360
|
-
"type": "boolean"
|
|
2361
|
-
},
|
|
2362
|
-
"shell": {
|
|
2363
|
-
"char": "s",
|
|
2364
|
-
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2365
|
-
"name": "shell",
|
|
2366
|
-
"hasDynamicHelp": false,
|
|
2367
|
-
"multiple": false,
|
|
2368
|
-
"options": [
|
|
2369
|
-
"zsh",
|
|
2370
|
-
"bash",
|
|
2371
|
-
"powershell"
|
|
2372
|
-
],
|
|
2373
|
-
"type": "option"
|
|
2374
|
-
}
|
|
2375
|
-
},
|
|
2376
|
-
"hasDynamicHelp": false,
|
|
2377
|
-
"hiddenAliases": [],
|
|
2378
|
-
"id": "autocomplete:setup",
|
|
2379
|
-
"pluginAlias": "@proletariat/cli",
|
|
2380
|
-
"pluginName": "@proletariat/cli",
|
|
2381
|
-
"pluginType": "core",
|
|
2382
|
-
"strict": true,
|
|
2383
|
-
"isESM": true,
|
|
2384
|
-
"relativePath": [
|
|
2385
|
-
"dist",
|
|
2386
|
-
"commands",
|
|
2387
|
-
"autocomplete",
|
|
2388
|
-
"setup.js"
|
|
2389
|
-
]
|
|
2390
|
-
},
|
|
2391
2391
|
"caffeinate": {
|
|
2392
2392
|
"aliases": [],
|
|
2393
2393
|
"args": {},
|
|
@@ -2755,20 +2755,19 @@
|
|
|
2755
2755
|
"open.js"
|
|
2756
2756
|
]
|
|
2757
2757
|
},
|
|
2758
|
-
"
|
|
2758
|
+
"config": {
|
|
2759
2759
|
"aliases": [],
|
|
2760
|
-
"args": {
|
|
2761
|
-
|
|
2762
|
-
"description": "Task description for the agent",
|
|
2763
|
-
"name": "task",
|
|
2764
|
-
"required": false
|
|
2765
|
-
}
|
|
2766
|
-
},
|
|
2767
|
-
"description": "Quick launch Codex for ad-hoc sessions (works anywhere, no HQ required)",
|
|
2760
|
+
"args": {},
|
|
2761
|
+
"description": "View and update workspace configuration",
|
|
2768
2762
|
"examples": [
|
|
2769
|
-
"<%= config.bin %>
|
|
2770
|
-
"<%= config.bin %>
|
|
2771
|
-
"<%= 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"
|
|
2772
2771
|
],
|
|
2773
2772
|
"flags": {
|
|
2774
2773
|
"json": {
|
|
@@ -2784,36 +2783,32 @@
|
|
|
2784
2783
|
"allowNo": false,
|
|
2785
2784
|
"type": "boolean"
|
|
2786
2785
|
},
|
|
2787
|
-
"
|
|
2788
|
-
"char": "
|
|
2789
|
-
"description": "
|
|
2790
|
-
"name": "
|
|
2786
|
+
"set": {
|
|
2787
|
+
"char": "s",
|
|
2788
|
+
"description": "Set a config value (format: key value)",
|
|
2789
|
+
"name": "set",
|
|
2791
2790
|
"hasDynamicHelp": false,
|
|
2792
|
-
"multiple":
|
|
2793
|
-
"options": [
|
|
2794
|
-
"danger",
|
|
2795
|
-
"safe"
|
|
2796
|
-
],
|
|
2791
|
+
"multiple": true,
|
|
2797
2792
|
"type": "option"
|
|
2798
2793
|
},
|
|
2799
|
-
"
|
|
2800
|
-
"
|
|
2801
|
-
"
|
|
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",
|
|
2802
2804
|
"hasDynamicHelp": false,
|
|
2803
2805
|
"multiple": false,
|
|
2804
2806
|
"type": "option"
|
|
2805
|
-
},
|
|
2806
|
-
"detached": {
|
|
2807
|
-
"char": "d",
|
|
2808
|
-
"description": "Run in background (detached)",
|
|
2809
|
-
"name": "detached",
|
|
2810
|
-
"allowNo": false,
|
|
2811
|
-
"type": "boolean"
|
|
2812
2807
|
}
|
|
2813
2808
|
},
|
|
2814
2809
|
"hasDynamicHelp": false,
|
|
2815
2810
|
"hiddenAliases": [],
|
|
2816
|
-
"id": "
|
|
2811
|
+
"id": "config",
|
|
2817
2812
|
"pluginAlias": "@proletariat/cli",
|
|
2818
2813
|
"pluginName": "@proletariat/cli",
|
|
2819
2814
|
"pluginType": "core",
|
|
@@ -2822,23 +2817,24 @@
|
|
|
2822
2817
|
"relativePath": [
|
|
2823
2818
|
"dist",
|
|
2824
2819
|
"commands",
|
|
2825
|
-
"
|
|
2820
|
+
"config",
|
|
2826
2821
|
"index.js"
|
|
2827
2822
|
]
|
|
2828
2823
|
},
|
|
2829
|
-
"
|
|
2824
|
+
"codex": {
|
|
2830
2825
|
"aliases": [],
|
|
2831
|
-
"args": {
|
|
2832
|
-
|
|
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)",
|
|
2833
2834
|
"examples": [
|
|
2834
|
-
"<%= config.bin %>
|
|
2835
|
-
"<%= config.bin %>
|
|
2836
|
-
"<%= config.bin %>
|
|
2837
|
-
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
2838
|
-
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
2839
|
-
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
2840
|
-
"<%= config.bin %> <%= command.id %> --set claude-code.version 2.1.80 # Pin Claude Code version",
|
|
2841
|
-
"<%= 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"
|
|
2842
2838
|
],
|
|
2843
2839
|
"flags": {
|
|
2844
2840
|
"json": {
|
|
@@ -2854,32 +2850,36 @@
|
|
|
2854
2850
|
"allowNo": false,
|
|
2855
2851
|
"type": "boolean"
|
|
2856
2852
|
},
|
|
2857
|
-
"
|
|
2858
|
-
"char": "
|
|
2859
|
-
"description": "
|
|
2860
|
-
"name": "
|
|
2853
|
+
"permission-mode": {
|
|
2854
|
+
"char": "p",
|
|
2855
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
2856
|
+
"name": "permission-mode",
|
|
2861
2857
|
"hasDynamicHelp": false,
|
|
2862
|
-
"multiple":
|
|
2858
|
+
"multiple": false,
|
|
2859
|
+
"options": [
|
|
2860
|
+
"danger",
|
|
2861
|
+
"safe"
|
|
2862
|
+
],
|
|
2863
2863
|
"type": "option"
|
|
2864
2864
|
},
|
|
2865
|
-
"
|
|
2866
|
-
"
|
|
2867
|
-
"
|
|
2868
|
-
"name": "list",
|
|
2869
|
-
"allowNo": false,
|
|
2870
|
-
"type": "boolean"
|
|
2871
|
-
},
|
|
2872
|
-
"setting": {
|
|
2873
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
2874
|
-
"name": "setting",
|
|
2865
|
+
"directory": {
|
|
2866
|
+
"description": "Directory to run in (default: cwd)",
|
|
2867
|
+
"name": "directory",
|
|
2875
2868
|
"hasDynamicHelp": false,
|
|
2876
2869
|
"multiple": false,
|
|
2877
2870
|
"type": "option"
|
|
2871
|
+
},
|
|
2872
|
+
"detached": {
|
|
2873
|
+
"char": "d",
|
|
2874
|
+
"description": "Run in background (detached)",
|
|
2875
|
+
"name": "detached",
|
|
2876
|
+
"allowNo": false,
|
|
2877
|
+
"type": "boolean"
|
|
2878
2878
|
}
|
|
2879
2879
|
},
|
|
2880
2880
|
"hasDynamicHelp": false,
|
|
2881
2881
|
"hiddenAliases": [],
|
|
2882
|
-
"id": "
|
|
2882
|
+
"id": "codex",
|
|
2883
2883
|
"pluginAlias": "@proletariat/cli",
|
|
2884
2884
|
"pluginName": "@proletariat/cli",
|
|
2885
2885
|
"pluginType": "core",
|
|
@@ -2888,7 +2888,7 @@
|
|
|
2888
2888
|
"relativePath": [
|
|
2889
2889
|
"dist",
|
|
2890
2890
|
"commands",
|
|
2891
|
-
"
|
|
2891
|
+
"codex",
|
|
2892
2892
|
"index.js"
|
|
2893
2893
|
]
|
|
2894
2894
|
},
|
|
@@ -3702,260 +3702,18 @@
|
|
|
3702
3702
|
"sync.js"
|
|
3703
3703
|
]
|
|
3704
3704
|
},
|
|
3705
|
-
"
|
|
3705
|
+
"execution:config": {
|
|
3706
3706
|
"aliases": [],
|
|
3707
3707
|
"args": {},
|
|
3708
|
-
"description": "
|
|
3708
|
+
"description": "View and update execution preferences",
|
|
3709
3709
|
"examples": [
|
|
3710
|
-
"<%= config.bin %>
|
|
3711
|
-
"<%= config.bin %>
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
"
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
"allowNo": false,
|
|
3718
|
-
"type": "boolean"
|
|
3719
|
-
},
|
|
3720
|
-
"machine": {
|
|
3721
|
-
"char": "m",
|
|
3722
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3723
|
-
"name": "machine",
|
|
3724
|
-
"allowNo": false,
|
|
3725
|
-
"type": "boolean"
|
|
3726
|
-
},
|
|
3727
|
-
"action": {
|
|
3728
|
-
"char": "a",
|
|
3729
|
-
"description": "Action to perform (submit, list, view)",
|
|
3730
|
-
"name": "action",
|
|
3731
|
-
"hasDynamicHelp": false,
|
|
3732
|
-
"multiple": false,
|
|
3733
|
-
"options": [
|
|
3734
|
-
"submit",
|
|
3735
|
-
"list",
|
|
3736
|
-
"view"
|
|
3737
|
-
],
|
|
3738
|
-
"type": "option"
|
|
3739
|
-
}
|
|
3740
|
-
},
|
|
3741
|
-
"hasDynamicHelp": false,
|
|
3742
|
-
"hiddenAliases": [],
|
|
3743
|
-
"id": "feedback",
|
|
3744
|
-
"pluginAlias": "@proletariat/cli",
|
|
3745
|
-
"pluginName": "@proletariat/cli",
|
|
3746
|
-
"pluginType": "core",
|
|
3747
|
-
"strict": true,
|
|
3748
|
-
"enableJsonFlag": false,
|
|
3749
|
-
"isESM": true,
|
|
3750
|
-
"relativePath": [
|
|
3751
|
-
"dist",
|
|
3752
|
-
"commands",
|
|
3753
|
-
"feedback",
|
|
3754
|
-
"index.js"
|
|
3755
|
-
]
|
|
3756
|
-
},
|
|
3757
|
-
"feedback:list": {
|
|
3758
|
-
"aliases": [],
|
|
3759
|
-
"args": {},
|
|
3760
|
-
"description": "List recent feedback issues from the repository",
|
|
3761
|
-
"examples": [
|
|
3762
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3763
|
-
"<%= config.bin %> <%= command.id %> --category bug",
|
|
3764
|
-
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
3765
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
3766
|
-
],
|
|
3767
|
-
"flags": {
|
|
3768
|
-
"json": {
|
|
3769
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3770
|
-
"name": "json",
|
|
3771
|
-
"allowNo": false,
|
|
3772
|
-
"type": "boolean"
|
|
3773
|
-
},
|
|
3774
|
-
"machine": {
|
|
3775
|
-
"char": "m",
|
|
3776
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3777
|
-
"name": "machine",
|
|
3778
|
-
"allowNo": false,
|
|
3779
|
-
"type": "boolean"
|
|
3780
|
-
},
|
|
3781
|
-
"category": {
|
|
3782
|
-
"char": "c",
|
|
3783
|
-
"description": "Filter by category (bug, feature, general)",
|
|
3784
|
-
"name": "category",
|
|
3785
|
-
"hasDynamicHelp": false,
|
|
3786
|
-
"multiple": false,
|
|
3787
|
-
"options": [
|
|
3788
|
-
"bug",
|
|
3789
|
-
"feature",
|
|
3790
|
-
"general"
|
|
3791
|
-
],
|
|
3792
|
-
"type": "option"
|
|
3793
|
-
},
|
|
3794
|
-
"state": {
|
|
3795
|
-
"char": "s",
|
|
3796
|
-
"description": "Filter by state",
|
|
3797
|
-
"name": "state",
|
|
3798
|
-
"default": "open",
|
|
3799
|
-
"hasDynamicHelp": false,
|
|
3800
|
-
"multiple": false,
|
|
3801
|
-
"options": [
|
|
3802
|
-
"open",
|
|
3803
|
-
"closed",
|
|
3804
|
-
"all"
|
|
3805
|
-
],
|
|
3806
|
-
"type": "option"
|
|
3807
|
-
},
|
|
3808
|
-
"limit": {
|
|
3809
|
-
"char": "l",
|
|
3810
|
-
"description": "Maximum number of issues to show",
|
|
3811
|
-
"name": "limit",
|
|
3812
|
-
"default": 20,
|
|
3813
|
-
"hasDynamicHelp": false,
|
|
3814
|
-
"multiple": false,
|
|
3815
|
-
"type": "option"
|
|
3816
|
-
}
|
|
3817
|
-
},
|
|
3818
|
-
"hasDynamicHelp": false,
|
|
3819
|
-
"hiddenAliases": [],
|
|
3820
|
-
"id": "feedback:list",
|
|
3821
|
-
"pluginAlias": "@proletariat/cli",
|
|
3822
|
-
"pluginName": "@proletariat/cli",
|
|
3823
|
-
"pluginType": "core",
|
|
3824
|
-
"strict": true,
|
|
3825
|
-
"enableJsonFlag": false,
|
|
3826
|
-
"isESM": true,
|
|
3827
|
-
"relativePath": [
|
|
3828
|
-
"dist",
|
|
3829
|
-
"commands",
|
|
3830
|
-
"feedback",
|
|
3831
|
-
"list.js"
|
|
3832
|
-
]
|
|
3833
|
-
},
|
|
3834
|
-
"feedback:submit": {
|
|
3835
|
-
"aliases": [],
|
|
3836
|
-
"args": {},
|
|
3837
|
-
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
3838
|
-
"examples": [
|
|
3839
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3840
|
-
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
3841
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
3842
|
-
],
|
|
3843
|
-
"flags": {
|
|
3844
|
-
"json": {
|
|
3845
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3846
|
-
"name": "json",
|
|
3847
|
-
"allowNo": false,
|
|
3848
|
-
"type": "boolean"
|
|
3849
|
-
},
|
|
3850
|
-
"machine": {
|
|
3851
|
-
"char": "m",
|
|
3852
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3853
|
-
"name": "machine",
|
|
3854
|
-
"allowNo": false,
|
|
3855
|
-
"type": "boolean"
|
|
3856
|
-
},
|
|
3857
|
-
"title": {
|
|
3858
|
-
"char": "t",
|
|
3859
|
-
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
3860
|
-
"name": "title",
|
|
3861
|
-
"hasDynamicHelp": false,
|
|
3862
|
-
"multiple": false,
|
|
3863
|
-
"type": "option"
|
|
3864
|
-
},
|
|
3865
|
-
"body": {
|
|
3866
|
-
"char": "b",
|
|
3867
|
-
"description": "Issue description [required for non-interactive]",
|
|
3868
|
-
"name": "body",
|
|
3869
|
-
"hasDynamicHelp": false,
|
|
3870
|
-
"multiple": false,
|
|
3871
|
-
"type": "option"
|
|
3872
|
-
},
|
|
3873
|
-
"category": {
|
|
3874
|
-
"char": "c",
|
|
3875
|
-
"description": "Feedback category",
|
|
3876
|
-
"name": "category",
|
|
3877
|
-
"hasDynamicHelp": false,
|
|
3878
|
-
"multiple": false,
|
|
3879
|
-
"options": [
|
|
3880
|
-
"bug",
|
|
3881
|
-
"feature",
|
|
3882
|
-
"general"
|
|
3883
|
-
],
|
|
3884
|
-
"type": "option"
|
|
3885
|
-
}
|
|
3886
|
-
},
|
|
3887
|
-
"hasDynamicHelp": false,
|
|
3888
|
-
"hiddenAliases": [],
|
|
3889
|
-
"id": "feedback:submit",
|
|
3890
|
-
"pluginAlias": "@proletariat/cli",
|
|
3891
|
-
"pluginName": "@proletariat/cli",
|
|
3892
|
-
"pluginType": "core",
|
|
3893
|
-
"strict": true,
|
|
3894
|
-
"isESM": true,
|
|
3895
|
-
"relativePath": [
|
|
3896
|
-
"dist",
|
|
3897
|
-
"commands",
|
|
3898
|
-
"feedback",
|
|
3899
|
-
"submit.js"
|
|
3900
|
-
]
|
|
3901
|
-
},
|
|
3902
|
-
"feedback:view": {
|
|
3903
|
-
"aliases": [],
|
|
3904
|
-
"args": {
|
|
3905
|
-
"number": {
|
|
3906
|
-
"description": "Issue number to view",
|
|
3907
|
-
"name": "number",
|
|
3908
|
-
"required": true
|
|
3909
|
-
}
|
|
3910
|
-
},
|
|
3911
|
-
"description": "View details of a specific feedback issue",
|
|
3912
|
-
"examples": [
|
|
3913
|
-
"<%= config.bin %> <%= command.id %> 123",
|
|
3914
|
-
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
3915
|
-
],
|
|
3916
|
-
"flags": {
|
|
3917
|
-
"json": {
|
|
3918
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3919
|
-
"name": "json",
|
|
3920
|
-
"allowNo": false,
|
|
3921
|
-
"type": "boolean"
|
|
3922
|
-
},
|
|
3923
|
-
"machine": {
|
|
3924
|
-
"char": "m",
|
|
3925
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3926
|
-
"name": "machine",
|
|
3927
|
-
"allowNo": false,
|
|
3928
|
-
"type": "boolean"
|
|
3929
|
-
}
|
|
3930
|
-
},
|
|
3931
|
-
"hasDynamicHelp": false,
|
|
3932
|
-
"hiddenAliases": [],
|
|
3933
|
-
"id": "feedback:view",
|
|
3934
|
-
"pluginAlias": "@proletariat/cli",
|
|
3935
|
-
"pluginName": "@proletariat/cli",
|
|
3936
|
-
"pluginType": "core",
|
|
3937
|
-
"strict": true,
|
|
3938
|
-
"enableJsonFlag": false,
|
|
3939
|
-
"isESM": true,
|
|
3940
|
-
"relativePath": [
|
|
3941
|
-
"dist",
|
|
3942
|
-
"commands",
|
|
3943
|
-
"feedback",
|
|
3944
|
-
"view.js"
|
|
3945
|
-
]
|
|
3946
|
-
},
|
|
3947
|
-
"execution:config": {
|
|
3948
|
-
"aliases": [],
|
|
3949
|
-
"args": {},
|
|
3950
|
-
"description": "View and update execution preferences",
|
|
3951
|
-
"examples": [
|
|
3952
|
-
"<%= config.bin %> execution config # Interactive menu",
|
|
3953
|
-
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3954
|
-
"<%= config.bin %> execution config --list # Show all settings",
|
|
3955
|
-
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3956
|
-
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3957
|
-
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3958
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3710
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
3711
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3712
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
3713
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3714
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3715
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3716
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3959
3717
|
],
|
|
3960
3718
|
"flags": {
|
|
3961
3719
|
"json": {
|
|
@@ -4295,15 +4053,13 @@
|
|
|
4295
4053
|
"view.js"
|
|
4296
4054
|
]
|
|
4297
4055
|
},
|
|
4298
|
-
"
|
|
4056
|
+
"feedback": {
|
|
4299
4057
|
"aliases": [],
|
|
4300
4058
|
"args": {},
|
|
4301
|
-
"description": "
|
|
4059
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
4302
4060
|
"examples": [
|
|
4303
4061
|
"<%= config.bin %> <%= command.id %>",
|
|
4304
|
-
"<%= config.bin %> <%= command.id %>
|
|
4305
|
-
"<%= config.bin %> <%= command.id %> login",
|
|
4306
|
-
"<%= config.bin %> <%= command.id %> token"
|
|
4062
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
4307
4063
|
],
|
|
4308
4064
|
"flags": {
|
|
4309
4065
|
"json": {
|
|
@@ -4318,8 +4074,252 @@
|
|
|
4318
4074
|
"name": "machine",
|
|
4319
4075
|
"allowNo": false,
|
|
4320
4076
|
"type": "boolean"
|
|
4321
|
-
}
|
|
4322
|
-
|
|
4077
|
+
},
|
|
4078
|
+
"action": {
|
|
4079
|
+
"char": "a",
|
|
4080
|
+
"description": "Action to perform (submit, list, view)",
|
|
4081
|
+
"name": "action",
|
|
4082
|
+
"hasDynamicHelp": false,
|
|
4083
|
+
"multiple": false,
|
|
4084
|
+
"options": [
|
|
4085
|
+
"submit",
|
|
4086
|
+
"list",
|
|
4087
|
+
"view"
|
|
4088
|
+
],
|
|
4089
|
+
"type": "option"
|
|
4090
|
+
}
|
|
4091
|
+
},
|
|
4092
|
+
"hasDynamicHelp": false,
|
|
4093
|
+
"hiddenAliases": [],
|
|
4094
|
+
"id": "feedback",
|
|
4095
|
+
"pluginAlias": "@proletariat/cli",
|
|
4096
|
+
"pluginName": "@proletariat/cli",
|
|
4097
|
+
"pluginType": "core",
|
|
4098
|
+
"strict": true,
|
|
4099
|
+
"enableJsonFlag": false,
|
|
4100
|
+
"isESM": true,
|
|
4101
|
+
"relativePath": [
|
|
4102
|
+
"dist",
|
|
4103
|
+
"commands",
|
|
4104
|
+
"feedback",
|
|
4105
|
+
"index.js"
|
|
4106
|
+
]
|
|
4107
|
+
},
|
|
4108
|
+
"feedback:list": {
|
|
4109
|
+
"aliases": [],
|
|
4110
|
+
"args": {},
|
|
4111
|
+
"description": "List recent feedback issues from the repository",
|
|
4112
|
+
"examples": [
|
|
4113
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4114
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
4115
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
4116
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4117
|
+
],
|
|
4118
|
+
"flags": {
|
|
4119
|
+
"json": {
|
|
4120
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4121
|
+
"name": "json",
|
|
4122
|
+
"allowNo": false,
|
|
4123
|
+
"type": "boolean"
|
|
4124
|
+
},
|
|
4125
|
+
"machine": {
|
|
4126
|
+
"char": "m",
|
|
4127
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4128
|
+
"name": "machine",
|
|
4129
|
+
"allowNo": false,
|
|
4130
|
+
"type": "boolean"
|
|
4131
|
+
},
|
|
4132
|
+
"category": {
|
|
4133
|
+
"char": "c",
|
|
4134
|
+
"description": "Filter by category (bug, feature, general)",
|
|
4135
|
+
"name": "category",
|
|
4136
|
+
"hasDynamicHelp": false,
|
|
4137
|
+
"multiple": false,
|
|
4138
|
+
"options": [
|
|
4139
|
+
"bug",
|
|
4140
|
+
"feature",
|
|
4141
|
+
"general"
|
|
4142
|
+
],
|
|
4143
|
+
"type": "option"
|
|
4144
|
+
},
|
|
4145
|
+
"state": {
|
|
4146
|
+
"char": "s",
|
|
4147
|
+
"description": "Filter by state",
|
|
4148
|
+
"name": "state",
|
|
4149
|
+
"default": "open",
|
|
4150
|
+
"hasDynamicHelp": false,
|
|
4151
|
+
"multiple": false,
|
|
4152
|
+
"options": [
|
|
4153
|
+
"open",
|
|
4154
|
+
"closed",
|
|
4155
|
+
"all"
|
|
4156
|
+
],
|
|
4157
|
+
"type": "option"
|
|
4158
|
+
},
|
|
4159
|
+
"limit": {
|
|
4160
|
+
"char": "l",
|
|
4161
|
+
"description": "Maximum number of issues to show",
|
|
4162
|
+
"name": "limit",
|
|
4163
|
+
"default": 20,
|
|
4164
|
+
"hasDynamicHelp": false,
|
|
4165
|
+
"multiple": false,
|
|
4166
|
+
"type": "option"
|
|
4167
|
+
}
|
|
4168
|
+
},
|
|
4169
|
+
"hasDynamicHelp": false,
|
|
4170
|
+
"hiddenAliases": [],
|
|
4171
|
+
"id": "feedback:list",
|
|
4172
|
+
"pluginAlias": "@proletariat/cli",
|
|
4173
|
+
"pluginName": "@proletariat/cli",
|
|
4174
|
+
"pluginType": "core",
|
|
4175
|
+
"strict": true,
|
|
4176
|
+
"enableJsonFlag": false,
|
|
4177
|
+
"isESM": true,
|
|
4178
|
+
"relativePath": [
|
|
4179
|
+
"dist",
|
|
4180
|
+
"commands",
|
|
4181
|
+
"feedback",
|
|
4182
|
+
"list.js"
|
|
4183
|
+
]
|
|
4184
|
+
},
|
|
4185
|
+
"feedback:submit": {
|
|
4186
|
+
"aliases": [],
|
|
4187
|
+
"args": {},
|
|
4188
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
4189
|
+
"examples": [
|
|
4190
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4191
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
4192
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4193
|
+
],
|
|
4194
|
+
"flags": {
|
|
4195
|
+
"json": {
|
|
4196
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4197
|
+
"name": "json",
|
|
4198
|
+
"allowNo": false,
|
|
4199
|
+
"type": "boolean"
|
|
4200
|
+
},
|
|
4201
|
+
"machine": {
|
|
4202
|
+
"char": "m",
|
|
4203
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4204
|
+
"name": "machine",
|
|
4205
|
+
"allowNo": false,
|
|
4206
|
+
"type": "boolean"
|
|
4207
|
+
},
|
|
4208
|
+
"title": {
|
|
4209
|
+
"char": "t",
|
|
4210
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
4211
|
+
"name": "title",
|
|
4212
|
+
"hasDynamicHelp": false,
|
|
4213
|
+
"multiple": false,
|
|
4214
|
+
"type": "option"
|
|
4215
|
+
},
|
|
4216
|
+
"body": {
|
|
4217
|
+
"char": "b",
|
|
4218
|
+
"description": "Issue description [required for non-interactive]",
|
|
4219
|
+
"name": "body",
|
|
4220
|
+
"hasDynamicHelp": false,
|
|
4221
|
+
"multiple": false,
|
|
4222
|
+
"type": "option"
|
|
4223
|
+
},
|
|
4224
|
+
"category": {
|
|
4225
|
+
"char": "c",
|
|
4226
|
+
"description": "Feedback category",
|
|
4227
|
+
"name": "category",
|
|
4228
|
+
"hasDynamicHelp": false,
|
|
4229
|
+
"multiple": false,
|
|
4230
|
+
"options": [
|
|
4231
|
+
"bug",
|
|
4232
|
+
"feature",
|
|
4233
|
+
"general"
|
|
4234
|
+
],
|
|
4235
|
+
"type": "option"
|
|
4236
|
+
}
|
|
4237
|
+
},
|
|
4238
|
+
"hasDynamicHelp": false,
|
|
4239
|
+
"hiddenAliases": [],
|
|
4240
|
+
"id": "feedback:submit",
|
|
4241
|
+
"pluginAlias": "@proletariat/cli",
|
|
4242
|
+
"pluginName": "@proletariat/cli",
|
|
4243
|
+
"pluginType": "core",
|
|
4244
|
+
"strict": true,
|
|
4245
|
+
"isESM": true,
|
|
4246
|
+
"relativePath": [
|
|
4247
|
+
"dist",
|
|
4248
|
+
"commands",
|
|
4249
|
+
"feedback",
|
|
4250
|
+
"submit.js"
|
|
4251
|
+
]
|
|
4252
|
+
},
|
|
4253
|
+
"feedback:view": {
|
|
4254
|
+
"aliases": [],
|
|
4255
|
+
"args": {
|
|
4256
|
+
"number": {
|
|
4257
|
+
"description": "Issue number to view",
|
|
4258
|
+
"name": "number",
|
|
4259
|
+
"required": true
|
|
4260
|
+
}
|
|
4261
|
+
},
|
|
4262
|
+
"description": "View details of a specific feedback issue",
|
|
4263
|
+
"examples": [
|
|
4264
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
4265
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4266
|
+
],
|
|
4267
|
+
"flags": {
|
|
4268
|
+
"json": {
|
|
4269
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4270
|
+
"name": "json",
|
|
4271
|
+
"allowNo": false,
|
|
4272
|
+
"type": "boolean"
|
|
4273
|
+
},
|
|
4274
|
+
"machine": {
|
|
4275
|
+
"char": "m",
|
|
4276
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4277
|
+
"name": "machine",
|
|
4278
|
+
"allowNo": false,
|
|
4279
|
+
"type": "boolean"
|
|
4280
|
+
}
|
|
4281
|
+
},
|
|
4282
|
+
"hasDynamicHelp": false,
|
|
4283
|
+
"hiddenAliases": [],
|
|
4284
|
+
"id": "feedback:view",
|
|
4285
|
+
"pluginAlias": "@proletariat/cli",
|
|
4286
|
+
"pluginName": "@proletariat/cli",
|
|
4287
|
+
"pluginType": "core",
|
|
4288
|
+
"strict": true,
|
|
4289
|
+
"enableJsonFlag": false,
|
|
4290
|
+
"isESM": true,
|
|
4291
|
+
"relativePath": [
|
|
4292
|
+
"dist",
|
|
4293
|
+
"commands",
|
|
4294
|
+
"feedback",
|
|
4295
|
+
"view.js"
|
|
4296
|
+
]
|
|
4297
|
+
},
|
|
4298
|
+
"gh": {
|
|
4299
|
+
"aliases": [],
|
|
4300
|
+
"args": {},
|
|
4301
|
+
"description": "GitHub CLI setup and status for PR workflow",
|
|
4302
|
+
"examples": [
|
|
4303
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4304
|
+
"<%= config.bin %> <%= command.id %> status",
|
|
4305
|
+
"<%= config.bin %> <%= command.id %> login",
|
|
4306
|
+
"<%= config.bin %> <%= command.id %> token"
|
|
4307
|
+
],
|
|
4308
|
+
"flags": {
|
|
4309
|
+
"json": {
|
|
4310
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4311
|
+
"name": "json",
|
|
4312
|
+
"allowNo": false,
|
|
4313
|
+
"type": "boolean"
|
|
4314
|
+
},
|
|
4315
|
+
"machine": {
|
|
4316
|
+
"char": "m",
|
|
4317
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4318
|
+
"name": "machine",
|
|
4319
|
+
"allowNo": false,
|
|
4320
|
+
"type": "boolean"
|
|
4321
|
+
}
|
|
4322
|
+
},
|
|
4323
4323
|
"hasDynamicHelp": false,
|
|
4324
4324
|
"hiddenAliases": [],
|
|
4325
4325
|
"id": "gh",
|
|
@@ -7004,30 +7004,15 @@
|
|
|
7004
7004
|
"connect.js"
|
|
7005
7005
|
]
|
|
7006
7006
|
},
|
|
7007
|
-
"
|
|
7007
|
+
"support:book": {
|
|
7008
7008
|
"aliases": [],
|
|
7009
|
-
"args": {
|
|
7010
|
-
|
|
7011
|
-
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
7012
|
-
"name": "session",
|
|
7013
|
-
"required": false
|
|
7014
|
-
}
|
|
7015
|
-
},
|
|
7016
|
-
"description": "Attach to an active agent session (DB-first: only attaches to tracked executions)",
|
|
7009
|
+
"args": {},
|
|
7010
|
+
"description": "Book a call for support",
|
|
7017
7011
|
"examples": [
|
|
7018
7012
|
"<%= config.bin %> <%= command.id %>",
|
|
7019
|
-
"<%= config.bin %> <%= command.id %>
|
|
7020
|
-
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
7013
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7021
7014
|
],
|
|
7022
7015
|
"flags": {
|
|
7023
|
-
"project": {
|
|
7024
|
-
"char": "P",
|
|
7025
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7026
|
-
"name": "project",
|
|
7027
|
-
"hasDynamicHelp": false,
|
|
7028
|
-
"multiple": false,
|
|
7029
|
-
"type": "option"
|
|
7030
|
-
},
|
|
7031
7016
|
"json": {
|
|
7032
7017
|
"description": "Output as JSON for AI agents/scripts",
|
|
7033
7018
|
"name": "json",
|
|
@@ -7040,55 +7025,31 @@
|
|
|
7040
7025
|
"name": "machine",
|
|
7041
7026
|
"allowNo": false,
|
|
7042
7027
|
"type": "boolean"
|
|
7043
|
-
},
|
|
7044
|
-
"new-tab": {
|
|
7045
|
-
"char": "n",
|
|
7046
|
-
"description": "Open in a new terminal tab (default: true)",
|
|
7047
|
-
"name": "new-tab",
|
|
7048
|
-
"allowNo": false,
|
|
7049
|
-
"type": "boolean"
|
|
7050
|
-
},
|
|
7051
|
-
"current-terminal": {
|
|
7052
|
-
"char": "c",
|
|
7053
|
-
"description": "Attach in current terminal instead of new tab",
|
|
7054
|
-
"name": "current-terminal",
|
|
7055
|
-
"allowNo": false,
|
|
7056
|
-
"type": "boolean"
|
|
7057
|
-
},
|
|
7058
|
-
"terminal": {
|
|
7059
|
-
"char": "t",
|
|
7060
|
-
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7061
|
-
"name": "terminal",
|
|
7062
|
-
"default": "iTerm",
|
|
7063
|
-
"hasDynamicHelp": false,
|
|
7064
|
-
"multiple": false,
|
|
7065
|
-
"type": "option"
|
|
7066
7028
|
}
|
|
7067
7029
|
},
|
|
7068
7030
|
"hasDynamicHelp": false,
|
|
7069
7031
|
"hiddenAliases": [],
|
|
7070
|
-
"id": "
|
|
7032
|
+
"id": "support:book",
|
|
7071
7033
|
"pluginAlias": "@proletariat/cli",
|
|
7072
7034
|
"pluginName": "@proletariat/cli",
|
|
7073
7035
|
"pluginType": "core",
|
|
7074
7036
|
"strict": true,
|
|
7037
|
+
"enableJsonFlag": false,
|
|
7075
7038
|
"isESM": true,
|
|
7076
7039
|
"relativePath": [
|
|
7077
7040
|
"dist",
|
|
7078
7041
|
"commands",
|
|
7079
|
-
"
|
|
7080
|
-
"
|
|
7042
|
+
"support",
|
|
7043
|
+
"book.js"
|
|
7081
7044
|
]
|
|
7082
7045
|
},
|
|
7083
|
-
"
|
|
7046
|
+
"support:discord": {
|
|
7084
7047
|
"aliases": [],
|
|
7085
7048
|
"args": {},
|
|
7086
|
-
"description": "
|
|
7049
|
+
"description": "Join the Discord community",
|
|
7087
7050
|
"examples": [
|
|
7088
|
-
"<%= config.bin %>
|
|
7089
|
-
"<%= config.bin %>
|
|
7090
|
-
"<%= config.bin %> session cleanup --force",
|
|
7091
|
-
"<%= config.bin %> session cleanup --force --yes"
|
|
7051
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7052
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7092
7053
|
],
|
|
7093
7054
|
"flags": {
|
|
7094
7055
|
"json": {
|
|
@@ -7103,58 +7064,31 @@
|
|
|
7103
7064
|
"name": "machine",
|
|
7104
7065
|
"allowNo": false,
|
|
7105
7066
|
"type": "boolean"
|
|
7106
|
-
},
|
|
7107
|
-
"dry-run": {
|
|
7108
|
-
"char": "d",
|
|
7109
|
-
"description": "Show what would be cleaned up without actually doing it",
|
|
7110
|
-
"name": "dry-run",
|
|
7111
|
-
"allowNo": false,
|
|
7112
|
-
"type": "boolean"
|
|
7113
|
-
},
|
|
7114
|
-
"force": {
|
|
7115
|
-
"char": "f",
|
|
7116
|
-
"description": "Remove all agent containers, including those with active executions",
|
|
7117
|
-
"name": "force",
|
|
7118
|
-
"allowNo": false,
|
|
7119
|
-
"type": "boolean"
|
|
7120
|
-
},
|
|
7121
|
-
"yes": {
|
|
7122
|
-
"char": "y",
|
|
7123
|
-
"description": "Skip confirmation prompt when using --force",
|
|
7124
|
-
"name": "yes",
|
|
7125
|
-
"allowNo": false,
|
|
7126
|
-
"type": "boolean"
|
|
7127
7067
|
}
|
|
7128
7068
|
},
|
|
7129
7069
|
"hasDynamicHelp": false,
|
|
7130
7070
|
"hiddenAliases": [],
|
|
7131
|
-
"id": "
|
|
7071
|
+
"id": "support:discord",
|
|
7132
7072
|
"pluginAlias": "@proletariat/cli",
|
|
7133
7073
|
"pluginName": "@proletariat/cli",
|
|
7134
7074
|
"pluginType": "core",
|
|
7135
7075
|
"strict": true,
|
|
7076
|
+
"enableJsonFlag": false,
|
|
7136
7077
|
"isESM": true,
|
|
7137
7078
|
"relativePath": [
|
|
7138
7079
|
"dist",
|
|
7139
7080
|
"commands",
|
|
7140
|
-
"
|
|
7141
|
-
"
|
|
7081
|
+
"support",
|
|
7082
|
+
"discord.js"
|
|
7142
7083
|
]
|
|
7143
7084
|
},
|
|
7144
|
-
"
|
|
7085
|
+
"support:docs": {
|
|
7145
7086
|
"aliases": [],
|
|
7146
|
-
"args": {
|
|
7147
|
-
|
|
7148
|
-
"description": "Name for the new tmux session",
|
|
7149
|
-
"name": "name",
|
|
7150
|
-
"required": true
|
|
7151
|
-
}
|
|
7152
|
-
},
|
|
7153
|
-
"description": "Create a new tmux session",
|
|
7087
|
+
"args": {},
|
|
7088
|
+
"description": "Open documentation in browser",
|
|
7154
7089
|
"examples": [
|
|
7155
|
-
"<%= config.bin %> <%= command.id %>
|
|
7156
|
-
"<%= config.bin %> <%= command.id %>
|
|
7157
|
-
"<%= config.bin %> <%= command.id %> my-session --detach"
|
|
7090
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7091
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7158
7092
|
],
|
|
7159
7093
|
"flags": {
|
|
7160
7094
|
"json": {
|
|
@@ -7169,53 +7103,35 @@
|
|
|
7169
7103
|
"name": "machine",
|
|
7170
7104
|
"allowNo": false,
|
|
7171
7105
|
"type": "boolean"
|
|
7172
|
-
},
|
|
7173
|
-
"command": {
|
|
7174
|
-
"char": "c",
|
|
7175
|
-
"description": "Initial command to run in the session",
|
|
7176
|
-
"name": "command",
|
|
7177
|
-
"hasDynamicHelp": false,
|
|
7178
|
-
"multiple": false,
|
|
7179
|
-
"type": "option"
|
|
7180
|
-
},
|
|
7181
|
-
"detach": {
|
|
7182
|
-
"char": "d",
|
|
7183
|
-
"description": "Create session in detached mode (do not attach)",
|
|
7184
|
-
"name": "detach",
|
|
7185
|
-
"allowNo": false,
|
|
7186
|
-
"type": "boolean"
|
|
7187
7106
|
}
|
|
7188
7107
|
},
|
|
7189
7108
|
"hasDynamicHelp": false,
|
|
7190
7109
|
"hiddenAliases": [],
|
|
7191
|
-
"id": "
|
|
7110
|
+
"id": "support:docs",
|
|
7192
7111
|
"pluginAlias": "@proletariat/cli",
|
|
7193
7112
|
"pluginName": "@proletariat/cli",
|
|
7194
7113
|
"pluginType": "core",
|
|
7195
7114
|
"strict": true,
|
|
7115
|
+
"enableJsonFlag": false,
|
|
7196
7116
|
"isESM": true,
|
|
7197
7117
|
"relativePath": [
|
|
7198
7118
|
"dist",
|
|
7199
7119
|
"commands",
|
|
7200
|
-
"
|
|
7201
|
-
"
|
|
7120
|
+
"support",
|
|
7121
|
+
"docs.js"
|
|
7202
7122
|
]
|
|
7203
7123
|
},
|
|
7204
|
-
"
|
|
7124
|
+
"support": {
|
|
7205
7125
|
"aliases": [],
|
|
7206
|
-
"args": {
|
|
7207
|
-
|
|
7208
|
-
"description": "Agent name or ticket ID",
|
|
7209
|
-
"name": "target",
|
|
7210
|
-
"required": true
|
|
7211
|
-
}
|
|
7212
|
-
},
|
|
7213
|
-
"description": "Run a command in an agent's worktree/container context",
|
|
7126
|
+
"args": {},
|
|
7127
|
+
"description": "Get help, troubleshoot, and connect with the community",
|
|
7214
7128
|
"examples": [
|
|
7215
|
-
"<%= config.bin %>
|
|
7216
|
-
"<%= config.bin %>
|
|
7217
|
-
"<%= config.bin %>
|
|
7218
|
-
"<%= 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"
|
|
7219
7135
|
],
|
|
7220
7136
|
"flags": {
|
|
7221
7137
|
"json": {
|
|
@@ -7230,54 +7146,34 @@
|
|
|
7230
7146
|
"name": "machine",
|
|
7231
7147
|
"allowNo": false,
|
|
7232
7148
|
"type": "boolean"
|
|
7233
|
-
},
|
|
7234
|
-
"timeout": {
|
|
7235
|
-
"char": "t",
|
|
7236
|
-
"description": "Command timeout in seconds",
|
|
7237
|
-
"name": "timeout",
|
|
7238
|
-
"default": 30,
|
|
7239
|
-
"hasDynamicHelp": false,
|
|
7240
|
-
"multiple": false,
|
|
7241
|
-
"type": "option"
|
|
7242
7149
|
}
|
|
7243
7150
|
},
|
|
7244
7151
|
"hasDynamicHelp": false,
|
|
7245
7152
|
"hiddenAliases": [],
|
|
7246
|
-
"id": "
|
|
7153
|
+
"id": "support",
|
|
7247
7154
|
"pluginAlias": "@proletariat/cli",
|
|
7248
7155
|
"pluginName": "@proletariat/cli",
|
|
7249
7156
|
"pluginType": "core",
|
|
7250
|
-
"strict":
|
|
7157
|
+
"strict": true,
|
|
7158
|
+
"enableJsonFlag": false,
|
|
7251
7159
|
"isESM": true,
|
|
7252
7160
|
"relativePath": [
|
|
7253
7161
|
"dist",
|
|
7254
7162
|
"commands",
|
|
7255
|
-
"
|
|
7256
|
-
"
|
|
7163
|
+
"support",
|
|
7164
|
+
"index.js"
|
|
7257
7165
|
]
|
|
7258
7166
|
},
|
|
7259
|
-
"
|
|
7167
|
+
"support:issues": {
|
|
7260
7168
|
"aliases": [],
|
|
7261
7169
|
"args": {},
|
|
7262
|
-
"description": "
|
|
7170
|
+
"description": "Browse GitHub Issues",
|
|
7263
7171
|
"examples": [
|
|
7264
|
-
"<%= config.bin %>
|
|
7265
|
-
"<%= config.bin %>
|
|
7266
|
-
"<%= config.bin %>
|
|
7267
|
-
"<%= config.bin %> session health --fix --poke-idle",
|
|
7268
|
-
"<%= config.bin %> session health --watch",
|
|
7269
|
-
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
7270
|
-
"<%= config.bin %> session health --watch --poke-idle"
|
|
7172
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7173
|
+
"<%= config.bin %> <%= command.id %> --browser",
|
|
7174
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7271
7175
|
],
|
|
7272
7176
|
"flags": {
|
|
7273
|
-
"project": {
|
|
7274
|
-
"char": "P",
|
|
7275
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7276
|
-
"name": "project",
|
|
7277
|
-
"hasDynamicHelp": false,
|
|
7278
|
-
"multiple": false,
|
|
7279
|
-
"type": "option"
|
|
7280
|
-
},
|
|
7281
7177
|
"json": {
|
|
7282
7178
|
"description": "Output as JSON for AI agents/scripts",
|
|
7283
7179
|
"name": "json",
|
|
@@ -7291,67 +7187,47 @@
|
|
|
7291
7187
|
"allowNo": false,
|
|
7292
7188
|
"type": "boolean"
|
|
7293
7189
|
},
|
|
7294
|
-
"
|
|
7295
|
-
"description": "
|
|
7296
|
-
"name": "
|
|
7297
|
-
"allowNo":
|
|
7298
|
-
"type": "boolean"
|
|
7299
|
-
},
|
|
7300
|
-
"poke-idle": {
|
|
7301
|
-
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
7302
|
-
"name": "poke-idle",
|
|
7303
|
-
"allowNo": false,
|
|
7304
|
-
"type": "boolean"
|
|
7305
|
-
},
|
|
7306
|
-
"watch": {
|
|
7307
|
-
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
7308
|
-
"name": "watch",
|
|
7309
|
-
"allowNo": false,
|
|
7190
|
+
"browser": {
|
|
7191
|
+
"description": "Open issues in browser (default behavior)",
|
|
7192
|
+
"name": "browser",
|
|
7193
|
+
"allowNo": true,
|
|
7310
7194
|
"type": "boolean"
|
|
7311
|
-
},
|
|
7312
|
-
"interval": {
|
|
7313
|
-
"description": "Watch polling interval in minutes",
|
|
7314
|
-
"name": "interval",
|
|
7315
|
-
"default": 5,
|
|
7316
|
-
"hasDynamicHelp": false,
|
|
7317
|
-
"multiple": false,
|
|
7318
|
-
"type": "option"
|
|
7319
|
-
},
|
|
7320
|
-
"threshold": {
|
|
7321
|
-
"description": "Minutes an agent must be hung/idle before auto-recovery in watch mode",
|
|
7322
|
-
"name": "threshold",
|
|
7323
|
-
"default": 10,
|
|
7324
|
-
"hasDynamicHelp": false,
|
|
7325
|
-
"multiple": false,
|
|
7326
|
-
"type": "option"
|
|
7327
7195
|
}
|
|
7328
7196
|
},
|
|
7329
7197
|
"hasDynamicHelp": false,
|
|
7330
7198
|
"hiddenAliases": [],
|
|
7331
|
-
"id": "
|
|
7199
|
+
"id": "support:issues",
|
|
7332
7200
|
"pluginAlias": "@proletariat/cli",
|
|
7333
7201
|
"pluginName": "@proletariat/cli",
|
|
7334
7202
|
"pluginType": "core",
|
|
7335
7203
|
"strict": true,
|
|
7204
|
+
"enableJsonFlag": false,
|
|
7336
7205
|
"isESM": true,
|
|
7337
7206
|
"relativePath": [
|
|
7338
7207
|
"dist",
|
|
7339
7208
|
"commands",
|
|
7340
|
-
"
|
|
7341
|
-
"
|
|
7209
|
+
"support",
|
|
7210
|
+
"issues.js"
|
|
7342
7211
|
]
|
|
7343
7212
|
},
|
|
7344
|
-
"
|
|
7213
|
+
"support:logs": {
|
|
7345
7214
|
"aliases": [],
|
|
7346
7215
|
"args": {},
|
|
7347
|
-
"description": "
|
|
7216
|
+
"description": "Collect diagnostic info for troubleshooting",
|
|
7348
7217
|
"examples": [
|
|
7349
7218
|
"<%= config.bin %> <%= command.id %>",
|
|
7350
|
-
"<%= config.bin %> <%= command.id %>
|
|
7351
|
-
"<%= config.bin %> <%= command.id %>
|
|
7352
|
-
"<%= config.bin %> <%= command.id %> create my-session"
|
|
7219
|
+
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
7220
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7353
7221
|
],
|
|
7354
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
|
+
},
|
|
7355
7231
|
"json": {
|
|
7356
7232
|
"description": "Output as JSON for AI agents/scripts",
|
|
7357
7233
|
"name": "json",
|
|
@@ -7364,11 +7240,17 @@
|
|
|
7364
7240
|
"name": "machine",
|
|
7365
7241
|
"allowNo": false,
|
|
7366
7242
|
"type": "boolean"
|
|
7243
|
+
},
|
|
7244
|
+
"clipboard": {
|
|
7245
|
+
"description": "Copy diagnostics to clipboard",
|
|
7246
|
+
"name": "clipboard",
|
|
7247
|
+
"allowNo": false,
|
|
7248
|
+
"type": "boolean"
|
|
7367
7249
|
}
|
|
7368
7250
|
},
|
|
7369
7251
|
"hasDynamicHelp": false,
|
|
7370
7252
|
"hiddenAliases": [],
|
|
7371
|
-
"id": "
|
|
7253
|
+
"id": "support:logs",
|
|
7372
7254
|
"pluginAlias": "@proletariat/cli",
|
|
7373
7255
|
"pluginName": "@proletariat/cli",
|
|
7374
7256
|
"pluginType": "core",
|
|
@@ -7377,27 +7259,34 @@
|
|
|
7377
7259
|
"relativePath": [
|
|
7378
7260
|
"dist",
|
|
7379
7261
|
"commands",
|
|
7380
|
-
"
|
|
7381
|
-
"
|
|
7262
|
+
"support",
|
|
7263
|
+
"logs.js"
|
|
7382
7264
|
]
|
|
7383
7265
|
},
|
|
7384
|
-
"session:
|
|
7266
|
+
"session:attach": {
|
|
7385
7267
|
"aliases": [],
|
|
7386
7268
|
"args": {
|
|
7387
|
-
"
|
|
7388
|
-
"description": "
|
|
7389
|
-
"name": "
|
|
7390
|
-
"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
|
|
7391
7273
|
}
|
|
7392
7274
|
},
|
|
7393
|
-
"description": "
|
|
7275
|
+
"description": "Attach to an active agent session (DB-first: only attaches to tracked executions)",
|
|
7394
7276
|
"examples": [
|
|
7395
|
-
"<%= config.bin %>
|
|
7396
|
-
"<%= config.bin %>
|
|
7397
|
-
"<%= config.bin %>
|
|
7398
|
-
"<%= 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"
|
|
7399
7280
|
],
|
|
7400
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
|
+
},
|
|
7401
7290
|
"json": {
|
|
7402
7291
|
"description": "Output as JSON for AI agents/scripts",
|
|
7403
7292
|
"name": "json",
|
|
@@ -7411,11 +7300,25 @@
|
|
|
7411
7300
|
"allowNo": false,
|
|
7412
7301
|
"type": "boolean"
|
|
7413
7302
|
},
|
|
7414
|
-
"
|
|
7415
|
-
"char": "
|
|
7416
|
-
"description": "
|
|
7417
|
-
"name": "
|
|
7418
|
-
"
|
|
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",
|
|
7419
7322
|
"hasDynamicHelp": false,
|
|
7420
7323
|
"multiple": false,
|
|
7421
7324
|
"type": "option"
|
|
@@ -7423,7 +7326,7 @@
|
|
|
7423
7326
|
},
|
|
7424
7327
|
"hasDynamicHelp": false,
|
|
7425
7328
|
"hiddenAliases": [],
|
|
7426
|
-
"id": "session:
|
|
7329
|
+
"id": "session:attach",
|
|
7427
7330
|
"pluginAlias": "@proletariat/cli",
|
|
7428
7331
|
"pluginName": "@proletariat/cli",
|
|
7429
7332
|
"pluginType": "core",
|
|
@@ -7433,17 +7336,18 @@
|
|
|
7433
7336
|
"dist",
|
|
7434
7337
|
"commands",
|
|
7435
7338
|
"session",
|
|
7436
|
-
"
|
|
7339
|
+
"attach.js"
|
|
7437
7340
|
]
|
|
7438
7341
|
},
|
|
7439
|
-
"session:
|
|
7342
|
+
"session:cleanup": {
|
|
7440
7343
|
"aliases": [],
|
|
7441
7344
|
"args": {},
|
|
7442
|
-
"description": "
|
|
7345
|
+
"description": "Stop and remove Docker containers for completed agents",
|
|
7443
7346
|
"examples": [
|
|
7444
|
-
"<%= config.bin %>
|
|
7445
|
-
"<%= config.bin %>
|
|
7446
|
-
"<%= config.bin %>
|
|
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"
|
|
7447
7351
|
],
|
|
7448
7352
|
"flags": {
|
|
7449
7353
|
"json": {
|
|
@@ -7459,23 +7363,31 @@
|
|
|
7459
7363
|
"allowNo": false,
|
|
7460
7364
|
"type": "boolean"
|
|
7461
7365
|
},
|
|
7462
|
-
"
|
|
7463
|
-
"char": "
|
|
7464
|
-
"description": "Show
|
|
7465
|
-
"name": "
|
|
7366
|
+
"dry-run": {
|
|
7367
|
+
"char": "d",
|
|
7368
|
+
"description": "Show what would be cleaned up without actually doing it",
|
|
7369
|
+
"name": "dry-run",
|
|
7466
7370
|
"allowNo": false,
|
|
7467
7371
|
"type": "boolean"
|
|
7468
7372
|
},
|
|
7469
|
-
"
|
|
7470
|
-
"
|
|
7471
|
-
"
|
|
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",
|
|
7472
7384
|
"allowNo": false,
|
|
7473
7385
|
"type": "boolean"
|
|
7474
7386
|
}
|
|
7475
7387
|
},
|
|
7476
7388
|
"hasDynamicHelp": false,
|
|
7477
7389
|
"hiddenAliases": [],
|
|
7478
|
-
"id": "session:
|
|
7390
|
+
"id": "session:cleanup",
|
|
7479
7391
|
"pluginAlias": "@proletariat/cli",
|
|
7480
7392
|
"pluginName": "@proletariat/cli",
|
|
7481
7393
|
"pluginType": "core",
|
|
@@ -7485,39 +7397,25 @@
|
|
|
7485
7397
|
"dist",
|
|
7486
7398
|
"commands",
|
|
7487
7399
|
"session",
|
|
7488
|
-
"
|
|
7400
|
+
"cleanup.js"
|
|
7489
7401
|
]
|
|
7490
7402
|
},
|
|
7491
|
-
"session:
|
|
7403
|
+
"session:create": {
|
|
7492
7404
|
"aliases": [],
|
|
7493
7405
|
"args": {
|
|
7494
|
-
"
|
|
7495
|
-
"description": "
|
|
7496
|
-
"name": "
|
|
7497
|
-
"required":
|
|
7406
|
+
"name": {
|
|
7407
|
+
"description": "Name for the new tmux session",
|
|
7408
|
+
"name": "name",
|
|
7409
|
+
"required": true
|
|
7498
7410
|
}
|
|
7499
7411
|
},
|
|
7500
|
-
"description": "
|
|
7412
|
+
"description": "Create a new tmux session",
|
|
7501
7413
|
"examples": [
|
|
7502
|
-
"<%= config.bin %>
|
|
7503
|
-
"<%= config.bin %> session
|
|
7504
|
-
"<%= config.bin %>
|
|
7505
|
-
"<%= config.bin %> session peek altman --lines 100",
|
|
7506
|
-
"<%= config.bin %> session peek altman --full",
|
|
7507
|
-
"<%= config.bin %> session peek altman --follow",
|
|
7508
|
-
"<%= config.bin %> session peek altman --since 2025-01-01T12:00:00Z",
|
|
7509
|
-
"<%= config.bin %> session peek TKT-123 --json",
|
|
7510
|
-
"<%= 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"
|
|
7511
7417
|
],
|
|
7512
7418
|
"flags": {
|
|
7513
|
-
"project": {
|
|
7514
|
-
"char": "P",
|
|
7515
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7516
|
-
"name": "project",
|
|
7517
|
-
"hasDynamicHelp": false,
|
|
7518
|
-
"multiple": false,
|
|
7519
|
-
"type": "option"
|
|
7520
|
-
},
|
|
7521
7419
|
"json": {
|
|
7522
7420
|
"description": "Output as JSON for AI agents/scripts",
|
|
7523
7421
|
"name": "json",
|
|
@@ -7531,47 +7429,25 @@
|
|
|
7531
7429
|
"allowNo": false,
|
|
7532
7430
|
"type": "boolean"
|
|
7533
7431
|
},
|
|
7534
|
-
"
|
|
7535
|
-
"char": "
|
|
7536
|
-
"description": "
|
|
7537
|
-
"name": "
|
|
7538
|
-
"default": 200,
|
|
7539
|
-
"hasDynamicHelp": false,
|
|
7540
|
-
"multiple": false,
|
|
7541
|
-
"type": "option"
|
|
7542
|
-
},
|
|
7543
|
-
"full": {
|
|
7544
|
-
"description": "Capture entire scrollback buffer (up to 32768 lines)",
|
|
7545
|
-
"name": "full",
|
|
7546
|
-
"allowNo": false,
|
|
7547
|
-
"type": "boolean"
|
|
7548
|
-
},
|
|
7549
|
-
"since": {
|
|
7550
|
-
"description": "Filter output to lines after this timestamp (ISO 8601)",
|
|
7551
|
-
"name": "since",
|
|
7432
|
+
"command": {
|
|
7433
|
+
"char": "c",
|
|
7434
|
+
"description": "Initial command to run in the session",
|
|
7435
|
+
"name": "command",
|
|
7552
7436
|
"hasDynamicHelp": false,
|
|
7553
7437
|
"multiple": false,
|
|
7554
7438
|
"type": "option"
|
|
7555
7439
|
},
|
|
7556
|
-
"
|
|
7557
|
-
"char": "
|
|
7558
|
-
"description": "
|
|
7559
|
-
"name": "
|
|
7440
|
+
"detach": {
|
|
7441
|
+
"char": "d",
|
|
7442
|
+
"description": "Create session in detached mode (do not attach)",
|
|
7443
|
+
"name": "detach",
|
|
7560
7444
|
"allowNo": false,
|
|
7561
7445
|
"type": "boolean"
|
|
7562
|
-
},
|
|
7563
|
-
"interval": {
|
|
7564
|
-
"description": "Polling interval in seconds for --follow mode",
|
|
7565
|
-
"name": "interval",
|
|
7566
|
-
"default": 2,
|
|
7567
|
-
"hasDynamicHelp": false,
|
|
7568
|
-
"multiple": false,
|
|
7569
|
-
"type": "option"
|
|
7570
7446
|
}
|
|
7571
7447
|
},
|
|
7572
7448
|
"hasDynamicHelp": false,
|
|
7573
7449
|
"hiddenAliases": [],
|
|
7574
|
-
"id": "session:
|
|
7450
|
+
"id": "session:create",
|
|
7575
7451
|
"pluginAlias": "@proletariat/cli",
|
|
7576
7452
|
"pluginName": "@proletariat/cli",
|
|
7577
7453
|
"pluginType": "core",
|
|
@@ -7581,30 +7457,24 @@
|
|
|
7581
7457
|
"dist",
|
|
7582
7458
|
"commands",
|
|
7583
7459
|
"session",
|
|
7584
|
-
"
|
|
7460
|
+
"create.js"
|
|
7585
7461
|
]
|
|
7586
7462
|
},
|
|
7587
|
-
"session:
|
|
7463
|
+
"session:exec": {
|
|
7588
7464
|
"aliases": [],
|
|
7589
7465
|
"args": {
|
|
7590
|
-
"
|
|
7591
|
-
"description": "Agent name or ticket ID
|
|
7592
|
-
"name": "
|
|
7466
|
+
"target": {
|
|
7467
|
+
"description": "Agent name or ticket ID",
|
|
7468
|
+
"name": "target",
|
|
7593
7469
|
"required": true
|
|
7594
|
-
},
|
|
7595
|
-
"message": {
|
|
7596
|
-
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
7597
|
-
"name": "message",
|
|
7598
|
-
"required": false
|
|
7599
7470
|
}
|
|
7600
7471
|
},
|
|
7601
|
-
"description": "
|
|
7472
|
+
"description": "Run a command in an agent's worktree/container context",
|
|
7602
7473
|
"examples": [
|
|
7603
|
-
"<%= config.bin %> session
|
|
7604
|
-
"<%= config.bin %> session
|
|
7605
|
-
"<%= config.bin %> session
|
|
7606
|
-
"<%= config.bin %> session
|
|
7607
|
-
"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"
|
|
7608
7478
|
],
|
|
7609
7479
|
"flags": {
|
|
7610
7480
|
"json": {
|
|
@@ -7620,25 +7490,11 @@
|
|
|
7620
7490
|
"allowNo": false,
|
|
7621
7491
|
"type": "boolean"
|
|
7622
7492
|
},
|
|
7623
|
-
"file": {
|
|
7624
|
-
"char": "F",
|
|
7625
|
-
"description": "Read message from a file (supports multi-line)",
|
|
7626
|
-
"name": "file",
|
|
7627
|
-
"hasDynamicHelp": false,
|
|
7628
|
-
"multiple": false,
|
|
7629
|
-
"type": "option"
|
|
7630
|
-
},
|
|
7631
|
-
"wait": {
|
|
7632
|
-
"char": "w",
|
|
7633
|
-
"description": "Wait for response after sending (capture output after message is sent)",
|
|
7634
|
-
"name": "wait",
|
|
7635
|
-
"allowNo": false,
|
|
7636
|
-
"type": "boolean"
|
|
7637
|
-
},
|
|
7638
7493
|
"timeout": {
|
|
7639
|
-
"
|
|
7494
|
+
"char": "t",
|
|
7495
|
+
"description": "Command timeout in seconds",
|
|
7640
7496
|
"name": "timeout",
|
|
7641
|
-
"default":
|
|
7497
|
+
"default": 30,
|
|
7642
7498
|
"hasDynamicHelp": false,
|
|
7643
7499
|
"multiple": false,
|
|
7644
7500
|
"type": "option"
|
|
@@ -7646,30 +7502,41 @@
|
|
|
7646
7502
|
},
|
|
7647
7503
|
"hasDynamicHelp": false,
|
|
7648
7504
|
"hiddenAliases": [],
|
|
7649
|
-
"id": "session:
|
|
7505
|
+
"id": "session:exec",
|
|
7650
7506
|
"pluginAlias": "@proletariat/cli",
|
|
7651
7507
|
"pluginName": "@proletariat/cli",
|
|
7652
7508
|
"pluginType": "core",
|
|
7653
|
-
"strict":
|
|
7509
|
+
"strict": false,
|
|
7654
7510
|
"isESM": true,
|
|
7655
7511
|
"relativePath": [
|
|
7656
7512
|
"dist",
|
|
7657
7513
|
"commands",
|
|
7658
7514
|
"session",
|
|
7659
|
-
"
|
|
7515
|
+
"exec.js"
|
|
7660
7516
|
]
|
|
7661
7517
|
},
|
|
7662
|
-
"session:
|
|
7518
|
+
"session:health": {
|
|
7663
7519
|
"aliases": [],
|
|
7664
7520
|
"args": {},
|
|
7665
|
-
"description": "
|
|
7521
|
+
"description": "Check health of running agent sessions, detect/recover hung agents, and auto-poke idle agents",
|
|
7666
7522
|
"examples": [
|
|
7667
|
-
"<%= config.bin %> session
|
|
7668
|
-
"<%= config.bin %> session
|
|
7669
|
-
"<%= config.bin %> session
|
|
7670
|
-
"<%= 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"
|
|
7671
7530
|
],
|
|
7672
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
|
+
},
|
|
7673
7540
|
"json": {
|
|
7674
7541
|
"description": "Output as JSON for AI agents/scripts",
|
|
7675
7542
|
"name": "json",
|
|
@@ -7683,31 +7550,36 @@
|
|
|
7683
7550
|
"allowNo": false,
|
|
7684
7551
|
"type": "boolean"
|
|
7685
7552
|
},
|
|
7686
|
-
"
|
|
7687
|
-
"
|
|
7688
|
-
"
|
|
7689
|
-
"name": "dry-run",
|
|
7553
|
+
"fix": {
|
|
7554
|
+
"description": "Send Escape to hung agents to unstick them",
|
|
7555
|
+
"name": "fix",
|
|
7690
7556
|
"allowNo": false,
|
|
7691
7557
|
"type": "boolean"
|
|
7692
7558
|
},
|
|
7693
|
-
"
|
|
7694
|
-
"
|
|
7695
|
-
"
|
|
7696
|
-
"name": "force",
|
|
7559
|
+
"poke-idle": {
|
|
7560
|
+
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
7561
|
+
"name": "poke-idle",
|
|
7697
7562
|
"allowNo": false,
|
|
7698
7563
|
"type": "boolean"
|
|
7699
7564
|
},
|
|
7700
|
-
"
|
|
7701
|
-
"
|
|
7702
|
-
"
|
|
7703
|
-
"
|
|
7704
|
-
"allowNo": false,
|
|
7565
|
+
"watch": {
|
|
7566
|
+
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
7567
|
+
"name": "watch",
|
|
7568
|
+
"allowNo": false,
|
|
7705
7569
|
"type": "boolean"
|
|
7706
7570
|
},
|
|
7707
|
-
"
|
|
7708
|
-
"description": "
|
|
7709
|
-
"name": "
|
|
7710
|
-
"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,
|
|
7711
7583
|
"hasDynamicHelp": false,
|
|
7712
7584
|
"multiple": false,
|
|
7713
7585
|
"type": "option"
|
|
@@ -7715,7 +7587,7 @@
|
|
|
7715
7587
|
},
|
|
7716
7588
|
"hasDynamicHelp": false,
|
|
7717
7589
|
"hiddenAliases": [],
|
|
7718
|
-
"id": "session:
|
|
7590
|
+
"id": "session:health",
|
|
7719
7591
|
"pluginAlias": "@proletariat/cli",
|
|
7720
7592
|
"pluginName": "@proletariat/cli",
|
|
7721
7593
|
"pluginType": "core",
|
|
@@ -7725,17 +7597,18 @@
|
|
|
7725
7597
|
"dist",
|
|
7726
7598
|
"commands",
|
|
7727
7599
|
"session",
|
|
7728
|
-
"
|
|
7600
|
+
"health.js"
|
|
7729
7601
|
]
|
|
7730
7602
|
},
|
|
7731
|
-
"session
|
|
7603
|
+
"session": {
|
|
7732
7604
|
"aliases": [],
|
|
7733
7605
|
"args": {},
|
|
7734
|
-
"description": "
|
|
7606
|
+
"description": "Manage agent tmux sessions (list, attach, create, detach)",
|
|
7735
7607
|
"examples": [
|
|
7736
|
-
"<%= config.bin %>
|
|
7737
|
-
"<%= config.bin %>
|
|
7738
|
-
"<%= 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"
|
|
7739
7612
|
],
|
|
7740
7613
|
"flags": {
|
|
7741
7614
|
"json": {
|
|
@@ -7750,33 +7623,11 @@
|
|
|
7750
7623
|
"name": "machine",
|
|
7751
7624
|
"allowNo": false,
|
|
7752
7625
|
"type": "boolean"
|
|
7753
|
-
},
|
|
7754
|
-
"agent": {
|
|
7755
|
-
"description": "Agent name",
|
|
7756
|
-
"name": "agent",
|
|
7757
|
-
"required": true,
|
|
7758
|
-
"hasDynamicHelp": false,
|
|
7759
|
-
"multiple": false,
|
|
7760
|
-
"type": "option"
|
|
7761
|
-
},
|
|
7762
|
-
"status": {
|
|
7763
|
-
"description": "Session status (started, completed, errored, exited)",
|
|
7764
|
-
"name": "status",
|
|
7765
|
-
"required": true,
|
|
7766
|
-
"hasDynamicHelp": false,
|
|
7767
|
-
"multiple": false,
|
|
7768
|
-
"options": [
|
|
7769
|
-
"started",
|
|
7770
|
-
"completed",
|
|
7771
|
-
"errored",
|
|
7772
|
-
"exited"
|
|
7773
|
-
],
|
|
7774
|
-
"type": "option"
|
|
7775
7626
|
}
|
|
7776
7627
|
},
|
|
7777
7628
|
"hasDynamicHelp": false,
|
|
7778
7629
|
"hiddenAliases": [],
|
|
7779
|
-
"id": "session
|
|
7630
|
+
"id": "session",
|
|
7780
7631
|
"pluginAlias": "@proletariat/cli",
|
|
7781
7632
|
"pluginName": "@proletariat/cli",
|
|
7782
7633
|
"pluginType": "core",
|
|
@@ -7786,10 +7637,10 @@
|
|
|
7786
7637
|
"dist",
|
|
7787
7638
|
"commands",
|
|
7788
7639
|
"session",
|
|
7789
|
-
"
|
|
7640
|
+
"index.js"
|
|
7790
7641
|
]
|
|
7791
7642
|
},
|
|
7792
|
-
"session:
|
|
7643
|
+
"session:inspect": {
|
|
7793
7644
|
"aliases": [],
|
|
7794
7645
|
"args": {
|
|
7795
7646
|
"target": {
|
|
@@ -7798,13 +7649,12 @@
|
|
|
7798
7649
|
"required": true
|
|
7799
7650
|
}
|
|
7800
7651
|
},
|
|
7801
|
-
"description": "
|
|
7652
|
+
"description": "Comprehensive agent status inspection (git, PR, process, output) in one call",
|
|
7802
7653
|
"examples": [
|
|
7803
|
-
"<%= config.bin %> session
|
|
7804
|
-
"<%= config.bin %> session
|
|
7805
|
-
"<%= config.bin %> session
|
|
7806
|
-
"<%= config.bin %> session
|
|
7807
|
-
"<%= 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"
|
|
7808
7658
|
],
|
|
7809
7659
|
"flags": {
|
|
7810
7660
|
"json": {
|
|
@@ -7820,28 +7670,11 @@
|
|
|
7820
7670
|
"allowNo": false,
|
|
7821
7671
|
"type": "boolean"
|
|
7822
7672
|
},
|
|
7823
|
-
"
|
|
7824
|
-
"
|
|
7825
|
-
"
|
|
7826
|
-
|
|
7827
|
-
|
|
7828
|
-
"name": "fresh",
|
|
7829
|
-
"allowNo": false,
|
|
7830
|
-
"type": "boolean"
|
|
7831
|
-
},
|
|
7832
|
-
"resume": {
|
|
7833
|
-
"description": "Continue from where the agent left off (pass --resume flag to Claude Code)",
|
|
7834
|
-
"exclusive": [
|
|
7835
|
-
"fresh"
|
|
7836
|
-
],
|
|
7837
|
-
"name": "resume",
|
|
7838
|
-
"allowNo": false,
|
|
7839
|
-
"type": "boolean"
|
|
7840
|
-
},
|
|
7841
|
-
"timeout": {
|
|
7842
|
-
"description": "Seconds to wait for clean exit before force restart",
|
|
7843
|
-
"name": "timeout",
|
|
7844
|
-
"default": 15,
|
|
7673
|
+
"lines": {
|
|
7674
|
+
"char": "l",
|
|
7675
|
+
"description": "Number of output lines to include",
|
|
7676
|
+
"name": "lines",
|
|
7677
|
+
"default": 100,
|
|
7845
7678
|
"hasDynamicHelp": false,
|
|
7846
7679
|
"multiple": false,
|
|
7847
7680
|
"type": "option"
|
|
@@ -7849,7 +7682,7 @@
|
|
|
7849
7682
|
},
|
|
7850
7683
|
"hasDynamicHelp": false,
|
|
7851
7684
|
"hiddenAliases": [],
|
|
7852
|
-
"id": "session:
|
|
7685
|
+
"id": "session:inspect",
|
|
7853
7686
|
"pluginAlias": "@proletariat/cli",
|
|
7854
7687
|
"pluginName": "@proletariat/cli",
|
|
7855
7688
|
"pluginType": "core",
|
|
@@ -7859,19 +7692,17 @@
|
|
|
7859
7692
|
"dist",
|
|
7860
7693
|
"commands",
|
|
7861
7694
|
"session",
|
|
7862
|
-
"
|
|
7695
|
+
"inspect.js"
|
|
7863
7696
|
]
|
|
7864
7697
|
},
|
|
7865
|
-
"session:
|
|
7698
|
+
"session:list": {
|
|
7866
7699
|
"aliases": [],
|
|
7867
7700
|
"args": {},
|
|
7868
|
-
"description": "
|
|
7701
|
+
"description": "List active agent sessions (DB-first: shows tracked executions with runtime liveness)",
|
|
7869
7702
|
"examples": [
|
|
7870
|
-
"<%= config.bin %>
|
|
7871
|
-
"<%= config.bin %>
|
|
7872
|
-
"<%= config.bin %>
|
|
7873
|
-
"<%= config.bin %> session watch --no-recover",
|
|
7874
|
-
"<%= config.bin %> session watch --once"
|
|
7703
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7704
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
7705
|
+
"<%= config.bin %> <%= command.id %> --orphans"
|
|
7875
7706
|
],
|
|
7876
7707
|
"flags": {
|
|
7877
7708
|
"json": {
|
|
@@ -7887,44 +7718,23 @@
|
|
|
7887
7718
|
"allowNo": false,
|
|
7888
7719
|
"type": "boolean"
|
|
7889
7720
|
},
|
|
7890
|
-
"
|
|
7891
|
-
"
|
|
7892
|
-
"
|
|
7893
|
-
"
|
|
7894
|
-
"
|
|
7895
|
-
"multiple": false,
|
|
7896
|
-
"type": "option"
|
|
7897
|
-
},
|
|
7898
|
-
"timeout": {
|
|
7899
|
-
"description": "Heartbeat timeout in minutes before marking agent as stale",
|
|
7900
|
-
"name": "timeout",
|
|
7901
|
-
"default": 15,
|
|
7902
|
-
"hasDynamicHelp": false,
|
|
7903
|
-
"multiple": false,
|
|
7904
|
-
"type": "option"
|
|
7905
|
-
},
|
|
7906
|
-
"kill": {
|
|
7907
|
-
"description": "Auto-kill containers for stale agents",
|
|
7908
|
-
"name": "kill",
|
|
7909
|
-
"allowNo": true,
|
|
7910
|
-
"type": "boolean"
|
|
7911
|
-
},
|
|
7912
|
-
"recover": {
|
|
7913
|
-
"description": "Auto-recover agent sessions after tmux server crash",
|
|
7914
|
-
"name": "recover",
|
|
7915
|
-
"allowNo": true,
|
|
7721
|
+
"all": {
|
|
7722
|
+
"char": "a",
|
|
7723
|
+
"description": "Show all sessions including stale DB records (dead runtime)",
|
|
7724
|
+
"name": "all",
|
|
7725
|
+
"allowNo": false,
|
|
7916
7726
|
"type": "boolean"
|
|
7917
7727
|
},
|
|
7918
|
-
"
|
|
7919
|
-
"description": "
|
|
7920
|
-
"name": "
|
|
7728
|
+
"orphans": {
|
|
7729
|
+
"description": "Also show orphan tmux sessions not tracked in the DB (garbage to prune)",
|
|
7730
|
+
"name": "orphans",
|
|
7921
7731
|
"allowNo": false,
|
|
7922
7732
|
"type": "boolean"
|
|
7923
7733
|
}
|
|
7924
7734
|
},
|
|
7925
7735
|
"hasDynamicHelp": false,
|
|
7926
7736
|
"hiddenAliases": [],
|
|
7927
|
-
"id": "session:
|
|
7737
|
+
"id": "session:list",
|
|
7928
7738
|
"pluginAlias": "@proletariat/cli",
|
|
7929
7739
|
"pluginName": "@proletariat/cli",
|
|
7930
7740
|
"pluginType": "core",
|
|
@@ -7934,18 +7744,39 @@
|
|
|
7934
7744
|
"dist",
|
|
7935
7745
|
"commands",
|
|
7936
7746
|
"session",
|
|
7937
|
-
"
|
|
7747
|
+
"list.js"
|
|
7938
7748
|
]
|
|
7939
7749
|
},
|
|
7940
|
-
"
|
|
7750
|
+
"session:peek": {
|
|
7941
7751
|
"aliases": [],
|
|
7942
|
-
"args": {
|
|
7943
|
-
|
|
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)",
|
|
7944
7760
|
"examples": [
|
|
7945
|
-
"<%= config.bin %>
|
|
7946
|
-
"<%= 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"
|
|
7947
7770
|
],
|
|
7948
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
|
+
},
|
|
7949
7780
|
"json": {
|
|
7950
7781
|
"description": "Output as JSON for AI agents/scripts",
|
|
7951
7782
|
"name": "json",
|
|
@@ -7958,70 +7789,81 @@
|
|
|
7958
7789
|
"name": "machine",
|
|
7959
7790
|
"allowNo": false,
|
|
7960
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"
|
|
7961
7829
|
}
|
|
7962
7830
|
},
|
|
7963
7831
|
"hasDynamicHelp": false,
|
|
7964
7832
|
"hiddenAliases": [],
|
|
7965
|
-
"id": "
|
|
7833
|
+
"id": "session:peek",
|
|
7966
7834
|
"pluginAlias": "@proletariat/cli",
|
|
7967
7835
|
"pluginName": "@proletariat/cli",
|
|
7968
7836
|
"pluginType": "core",
|
|
7969
7837
|
"strict": true,
|
|
7970
|
-
"enableJsonFlag": false,
|
|
7971
7838
|
"isESM": true,
|
|
7972
7839
|
"relativePath": [
|
|
7973
7840
|
"dist",
|
|
7974
7841
|
"commands",
|
|
7975
|
-
"
|
|
7976
|
-
"
|
|
7842
|
+
"session",
|
|
7843
|
+
"peek.js"
|
|
7977
7844
|
]
|
|
7978
7845
|
},
|
|
7979
|
-
"
|
|
7846
|
+
"session:poke": {
|
|
7980
7847
|
"aliases": [],
|
|
7981
|
-
"args": {
|
|
7982
|
-
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
],
|
|
7987
|
-
"flags": {
|
|
7988
|
-
"json": {
|
|
7989
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7990
|
-
"name": "json",
|
|
7991
|
-
"allowNo": false,
|
|
7992
|
-
"type": "boolean"
|
|
7848
|
+
"args": {
|
|
7849
|
+
"agent": {
|
|
7850
|
+
"description": "Agent name or ticket ID of the running agent",
|
|
7851
|
+
"name": "agent",
|
|
7852
|
+
"required": true
|
|
7993
7853
|
},
|
|
7994
|
-
"
|
|
7995
|
-
"
|
|
7996
|
-
"
|
|
7997
|
-
"
|
|
7998
|
-
"allowNo": false,
|
|
7999
|
-
"type": "boolean"
|
|
7854
|
+
"message": {
|
|
7855
|
+
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
7856
|
+
"name": "message",
|
|
7857
|
+
"required": false
|
|
8000
7858
|
}
|
|
8001
7859
|
},
|
|
8002
|
-
"
|
|
8003
|
-
"hiddenAliases": [],
|
|
8004
|
-
"id": "support:discord",
|
|
8005
|
-
"pluginAlias": "@proletariat/cli",
|
|
8006
|
-
"pluginName": "@proletariat/cli",
|
|
8007
|
-
"pluginType": "core",
|
|
8008
|
-
"strict": true,
|
|
8009
|
-
"enableJsonFlag": false,
|
|
8010
|
-
"isESM": true,
|
|
8011
|
-
"relativePath": [
|
|
8012
|
-
"dist",
|
|
8013
|
-
"commands",
|
|
8014
|
-
"support",
|
|
8015
|
-
"discord.js"
|
|
8016
|
-
]
|
|
8017
|
-
},
|
|
8018
|
-
"support:docs": {
|
|
8019
|
-
"aliases": [],
|
|
8020
|
-
"args": {},
|
|
8021
|
-
"description": "Open documentation in browser",
|
|
7860
|
+
"description": "Send a message to a running agent's Claude Code session",
|
|
8022
7861
|
"examples": [
|
|
8023
|
-
"<%= config.bin %>
|
|
8024
|
-
"<%= 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 -"
|
|
8025
7867
|
],
|
|
8026
7868
|
"flags": {
|
|
8027
7869
|
"json": {
|
|
@@ -8036,35 +7878,55 @@
|
|
|
8036
7878
|
"name": "machine",
|
|
8037
7879
|
"allowNo": false,
|
|
8038
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"
|
|
8039
7904
|
}
|
|
8040
7905
|
},
|
|
8041
7906
|
"hasDynamicHelp": false,
|
|
8042
7907
|
"hiddenAliases": [],
|
|
8043
|
-
"id": "
|
|
7908
|
+
"id": "session:poke",
|
|
8044
7909
|
"pluginAlias": "@proletariat/cli",
|
|
8045
7910
|
"pluginName": "@proletariat/cli",
|
|
8046
7911
|
"pluginType": "core",
|
|
8047
7912
|
"strict": true,
|
|
8048
|
-
"enableJsonFlag": false,
|
|
8049
7913
|
"isESM": true,
|
|
8050
7914
|
"relativePath": [
|
|
8051
7915
|
"dist",
|
|
8052
7916
|
"commands",
|
|
8053
|
-
"
|
|
8054
|
-
"
|
|
7917
|
+
"session",
|
|
7918
|
+
"poke.js"
|
|
8055
7919
|
]
|
|
8056
7920
|
},
|
|
8057
|
-
"
|
|
7921
|
+
"session:prune": {
|
|
8058
7922
|
"aliases": [],
|
|
8059
7923
|
"args": {},
|
|
8060
|
-
"description": "
|
|
7924
|
+
"description": "Clean up stale sessions, orphan tmux sessions, dead Docker containers, and idle ephemeral agents",
|
|
8061
7925
|
"examples": [
|
|
8062
|
-
"<%= config.bin %>
|
|
8063
|
-
"<%= config.bin %>
|
|
8064
|
-
"<%= config.bin %>
|
|
8065
|
-
"<%= config.bin %>
|
|
8066
|
-
"<%= config.bin %> <%= command.id %> issues",
|
|
8067
|
-
"<%= config.bin %> <%= command.id %> logs"
|
|
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"
|
|
8068
7930
|
],
|
|
8069
7931
|
"flags": {
|
|
8070
7932
|
"json": {
|
|
@@ -8079,32 +7941,60 @@
|
|
|
8079
7941
|
"name": "machine",
|
|
8080
7942
|
"allowNo": false,
|
|
8081
7943
|
"type": "boolean"
|
|
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"
|
|
8082
7973
|
}
|
|
8083
7974
|
},
|
|
8084
7975
|
"hasDynamicHelp": false,
|
|
8085
7976
|
"hiddenAliases": [],
|
|
8086
|
-
"id": "
|
|
7977
|
+
"id": "session:prune",
|
|
8087
7978
|
"pluginAlias": "@proletariat/cli",
|
|
8088
7979
|
"pluginName": "@proletariat/cli",
|
|
8089
7980
|
"pluginType": "core",
|
|
8090
7981
|
"strict": true,
|
|
8091
|
-
"enableJsonFlag": false,
|
|
8092
7982
|
"isESM": true,
|
|
8093
7983
|
"relativePath": [
|
|
8094
7984
|
"dist",
|
|
8095
7985
|
"commands",
|
|
8096
|
-
"
|
|
8097
|
-
"
|
|
7986
|
+
"session",
|
|
7987
|
+
"prune.js"
|
|
8098
7988
|
]
|
|
8099
7989
|
},
|
|
8100
|
-
"
|
|
7990
|
+
"session:report": {
|
|
8101
7991
|
"aliases": [],
|
|
8102
7992
|
"args": {},
|
|
8103
|
-
"description": "
|
|
7993
|
+
"description": "Report agent session lifecycle events and trigger cleanup",
|
|
8104
7994
|
"examples": [
|
|
8105
|
-
"<%= config.bin %>
|
|
8106
|
-
"<%= config.bin %>
|
|
8107
|
-
"<%= config.bin %>
|
|
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"
|
|
8108
7998
|
],
|
|
8109
7999
|
"flags": {
|
|
8110
8000
|
"json": {
|
|
@@ -8120,47 +8010,62 @@
|
|
|
8120
8010
|
"allowNo": false,
|
|
8121
8011
|
"type": "boolean"
|
|
8122
8012
|
},
|
|
8123
|
-
"
|
|
8124
|
-
"description": "
|
|
8125
|
-
"name": "
|
|
8126
|
-
"
|
|
8127
|
-
"
|
|
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"
|
|
8128
8034
|
}
|
|
8129
8035
|
},
|
|
8130
8036
|
"hasDynamicHelp": false,
|
|
8131
8037
|
"hiddenAliases": [],
|
|
8132
|
-
"id": "
|
|
8038
|
+
"id": "session:report",
|
|
8133
8039
|
"pluginAlias": "@proletariat/cli",
|
|
8134
8040
|
"pluginName": "@proletariat/cli",
|
|
8135
8041
|
"pluginType": "core",
|
|
8136
8042
|
"strict": true,
|
|
8137
|
-
"enableJsonFlag": false,
|
|
8138
8043
|
"isESM": true,
|
|
8139
8044
|
"relativePath": [
|
|
8140
8045
|
"dist",
|
|
8141
8046
|
"commands",
|
|
8142
|
-
"
|
|
8143
|
-
"
|
|
8047
|
+
"session",
|
|
8048
|
+
"report.js"
|
|
8144
8049
|
]
|
|
8145
8050
|
},
|
|
8146
|
-
"
|
|
8051
|
+
"session:restart": {
|
|
8147
8052
|
"aliases": [],
|
|
8148
|
-
"args": {
|
|
8149
|
-
|
|
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",
|
|
8150
8061
|
"examples": [
|
|
8151
|
-
"<%= config.bin %>
|
|
8152
|
-
"<%= config.bin %>
|
|
8153
|
-
"<%= 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"
|
|
8154
8067
|
],
|
|
8155
8068
|
"flags": {
|
|
8156
|
-
"project": {
|
|
8157
|
-
"char": "P",
|
|
8158
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8159
|
-
"name": "project",
|
|
8160
|
-
"hasDynamicHelp": false,
|
|
8161
|
-
"multiple": false,
|
|
8162
|
-
"type": "option"
|
|
8163
|
-
},
|
|
8164
8069
|
"json": {
|
|
8165
8070
|
"description": "Output as JSON for AI agents/scripts",
|
|
8166
8071
|
"name": "json",
|
|
@@ -8174,16 +8079,36 @@
|
|
|
8174
8079
|
"allowNo": false,
|
|
8175
8080
|
"type": "boolean"
|
|
8176
8081
|
},
|
|
8177
|
-
"
|
|
8178
|
-
"description": "
|
|
8179
|
-
"
|
|
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",
|
|
8180
8097
|
"allowNo": false,
|
|
8181
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"
|
|
8182
8107
|
}
|
|
8183
8108
|
},
|
|
8184
8109
|
"hasDynamicHelp": false,
|
|
8185
8110
|
"hiddenAliases": [],
|
|
8186
|
-
"id": "
|
|
8111
|
+
"id": "session:restart",
|
|
8187
8112
|
"pluginAlias": "@proletariat/cli",
|
|
8188
8113
|
"pluginName": "@proletariat/cli",
|
|
8189
8114
|
"pluginType": "core",
|
|
@@ -8192,27 +8117,22 @@
|
|
|
8192
8117
|
"relativePath": [
|
|
8193
8118
|
"dist",
|
|
8194
8119
|
"commands",
|
|
8195
|
-
"
|
|
8196
|
-
"
|
|
8120
|
+
"session",
|
|
8121
|
+
"restart.js"
|
|
8197
8122
|
]
|
|
8198
8123
|
},
|
|
8199
|
-
"
|
|
8124
|
+
"session:watch": {
|
|
8200
8125
|
"aliases": [],
|
|
8201
8126
|
"args": {},
|
|
8202
|
-
"description": "
|
|
8127
|
+
"description": "Watch agent sessions for heartbeat timeouts, tmux server crashes, and auto-recover",
|
|
8203
8128
|
"examples": [
|
|
8204
|
-
"<%= config.bin %>
|
|
8205
|
-
"<%= 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"
|
|
8206
8134
|
],
|
|
8207
8135
|
"flags": {
|
|
8208
|
-
"project": {
|
|
8209
|
-
"char": "P",
|
|
8210
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8211
|
-
"name": "project",
|
|
8212
|
-
"hasDynamicHelp": false,
|
|
8213
|
-
"multiple": false,
|
|
8214
|
-
"type": "option"
|
|
8215
|
-
},
|
|
8216
8136
|
"json": {
|
|
8217
8137
|
"description": "Output as JSON for AI agents/scripts",
|
|
8218
8138
|
"name": "json",
|
|
@@ -8226,26 +8146,106 @@
|
|
|
8226
8146
|
"allowNo": false,
|
|
8227
8147
|
"type": "boolean"
|
|
8228
8148
|
},
|
|
8229
|
-
"
|
|
8230
|
-
"description": "
|
|
8231
|
-
"name": "
|
|
8232
|
-
"
|
|
8233
|
-
"
|
|
8234
|
-
|
|
8235
|
-
|
|
8236
|
-
|
|
8237
|
-
|
|
8238
|
-
|
|
8239
|
-
|
|
8240
|
-
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
"
|
|
8246
|
-
|
|
8247
|
-
|
|
8248
|
-
|
|
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",
|
|
8180
|
+
"allowNo": false,
|
|
8181
|
+
"type": "boolean"
|
|
8182
|
+
}
|
|
8183
|
+
},
|
|
8184
|
+
"hasDynamicHelp": false,
|
|
8185
|
+
"hiddenAliases": [],
|
|
8186
|
+
"id": "session:watch",
|
|
8187
|
+
"pluginAlias": "@proletariat/cli",
|
|
8188
|
+
"pluginName": "@proletariat/cli",
|
|
8189
|
+
"pluginType": "core",
|
|
8190
|
+
"strict": true,
|
|
8191
|
+
"isESM": true,
|
|
8192
|
+
"relativePath": [
|
|
8193
|
+
"dist",
|
|
8194
|
+
"commands",
|
|
8195
|
+
"session",
|
|
8196
|
+
"watch.js"
|
|
8197
|
+
]
|
|
8198
|
+
},
|
|
8199
|
+
"sync": {
|
|
8200
|
+
"aliases": [],
|
|
8201
|
+
"args": {},
|
|
8202
|
+
"description": "Reconcile ticket state with GitHub PR status",
|
|
8203
|
+
"examples": [
|
|
8204
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8205
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
8206
|
+
],
|
|
8207
|
+
"flags": {
|
|
8208
|
+
"project": {
|
|
8209
|
+
"char": "P",
|
|
8210
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8211
|
+
"name": "project",
|
|
8212
|
+
"hasDynamicHelp": false,
|
|
8213
|
+
"multiple": false,
|
|
8214
|
+
"type": "option"
|
|
8215
|
+
},
|
|
8216
|
+
"json": {
|
|
8217
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8218
|
+
"name": "json",
|
|
8219
|
+
"allowNo": false,
|
|
8220
|
+
"type": "boolean"
|
|
8221
|
+
},
|
|
8222
|
+
"machine": {
|
|
8223
|
+
"char": "m",
|
|
8224
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8225
|
+
"name": "machine",
|
|
8226
|
+
"allowNo": false,
|
|
8227
|
+
"type": "boolean"
|
|
8228
|
+
},
|
|
8229
|
+
"dry-run": {
|
|
8230
|
+
"description": "Show what would change without applying",
|
|
8231
|
+
"name": "dry-run",
|
|
8232
|
+
"allowNo": false,
|
|
8233
|
+
"type": "boolean"
|
|
8234
|
+
}
|
|
8235
|
+
},
|
|
8236
|
+
"hasDynamicHelp": false,
|
|
8237
|
+
"hiddenAliases": [],
|
|
8238
|
+
"id": "sync",
|
|
8239
|
+
"pluginAlias": "@proletariat/cli",
|
|
8240
|
+
"pluginName": "@proletariat/cli",
|
|
8241
|
+
"pluginType": "core",
|
|
8242
|
+
"strict": true,
|
|
8243
|
+
"isESM": true,
|
|
8244
|
+
"relativePath": [
|
|
8245
|
+
"dist",
|
|
8246
|
+
"commands",
|
|
8247
|
+
"sync",
|
|
8248
|
+
"index.js"
|
|
8249
8249
|
]
|
|
8250
8250
|
},
|
|
8251
8251
|
"sync:pause": {
|
|
@@ -8715,833 +8715,43 @@
|
|
|
8715
8715
|
"machine": {
|
|
8716
8716
|
"char": "m",
|
|
8717
8717
|
"description": "Output as JSON for AI agents/scripts",
|
|
8718
|
-
"name": "machine",
|
|
8719
|
-
"allowNo": false,
|
|
8720
|
-
"type": "boolean"
|
|
8721
|
-
}
|
|
8722
|
-
},
|
|
8723
|
-
"hasDynamicHelp": false,
|
|
8724
|
-
"hiddenAliases": [],
|
|
8725
|
-
"id": "theme:add-names",
|
|
8726
|
-
"pluginAlias": "@proletariat/cli",
|
|
8727
|
-
"pluginName": "@proletariat/cli",
|
|
8728
|
-
"pluginType": "core",
|
|
8729
|
-
"strict": false,
|
|
8730
|
-
"enableJsonFlag": false,
|
|
8731
|
-
"isESM": true,
|
|
8732
|
-
"relativePath": [
|
|
8733
|
-
"dist",
|
|
8734
|
-
"commands",
|
|
8735
|
-
"theme",
|
|
8736
|
-
"add-names.js"
|
|
8737
|
-
]
|
|
8738
|
-
},
|
|
8739
|
-
"theme:create": {
|
|
8740
|
-
"aliases": [],
|
|
8741
|
-
"args": {
|
|
8742
|
-
"name": {
|
|
8743
|
-
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
8744
|
-
"name": "name",
|
|
8745
|
-
"required": true
|
|
8746
|
-
}
|
|
8747
|
-
},
|
|
8748
|
-
"description": "Create a custom agent theme",
|
|
8749
|
-
"examples": [
|
|
8750
|
-
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
8751
|
-
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
8752
|
-
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
8753
|
-
],
|
|
8754
|
-
"flags": {
|
|
8755
|
-
"json": {
|
|
8756
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8757
|
-
"name": "json",
|
|
8758
|
-
"allowNo": false,
|
|
8759
|
-
"type": "boolean"
|
|
8760
|
-
},
|
|
8761
|
-
"machine": {
|
|
8762
|
-
"char": "m",
|
|
8763
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8764
|
-
"name": "machine",
|
|
8765
|
-
"allowNo": false,
|
|
8766
|
-
"type": "boolean"
|
|
8767
|
-
},
|
|
8768
|
-
"description": {
|
|
8769
|
-
"char": "d",
|
|
8770
|
-
"description": "Theme description",
|
|
8771
|
-
"name": "description",
|
|
8772
|
-
"hasDynamicHelp": false,
|
|
8773
|
-
"multiple": false,
|
|
8774
|
-
"type": "option"
|
|
8775
|
-
},
|
|
8776
|
-
"display-name": {
|
|
8777
|
-
"description": "Display name (defaults to formatted name)",
|
|
8778
|
-
"name": "display-name",
|
|
8779
|
-
"hasDynamicHelp": false,
|
|
8780
|
-
"multiple": false,
|
|
8781
|
-
"type": "option"
|
|
8782
|
-
}
|
|
8783
|
-
},
|
|
8784
|
-
"hasDynamicHelp": false,
|
|
8785
|
-
"hiddenAliases": [],
|
|
8786
|
-
"id": "theme:create",
|
|
8787
|
-
"pluginAlias": "@proletariat/cli",
|
|
8788
|
-
"pluginName": "@proletariat/cli",
|
|
8789
|
-
"pluginType": "core",
|
|
8790
|
-
"strict": true,
|
|
8791
|
-
"enableJsonFlag": false,
|
|
8792
|
-
"isESM": true,
|
|
8793
|
-
"relativePath": [
|
|
8794
|
-
"dist",
|
|
8795
|
-
"commands",
|
|
8796
|
-
"theme",
|
|
8797
|
-
"create.js"
|
|
8798
|
-
]
|
|
8799
|
-
},
|
|
8800
|
-
"theme": {
|
|
8801
|
-
"aliases": [],
|
|
8802
|
-
"args": {},
|
|
8803
|
-
"description": "Manage agent naming themes",
|
|
8804
|
-
"examples": [
|
|
8805
|
-
"<%= config.bin %> <%= command.id %> list",
|
|
8806
|
-
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
8807
|
-
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
8808
|
-
],
|
|
8809
|
-
"flags": {
|
|
8810
|
-
"json": {
|
|
8811
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8812
|
-
"name": "json",
|
|
8813
|
-
"allowNo": false,
|
|
8814
|
-
"type": "boolean"
|
|
8815
|
-
},
|
|
8816
|
-
"machine": {
|
|
8817
|
-
"char": "m",
|
|
8818
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8819
|
-
"name": "machine",
|
|
8820
|
-
"allowNo": false,
|
|
8821
|
-
"type": "boolean"
|
|
8822
|
-
}
|
|
8823
|
-
},
|
|
8824
|
-
"hasDynamicHelp": false,
|
|
8825
|
-
"hiddenAliases": [],
|
|
8826
|
-
"id": "theme",
|
|
8827
|
-
"pluginAlias": "@proletariat/cli",
|
|
8828
|
-
"pluginName": "@proletariat/cli",
|
|
8829
|
-
"pluginType": "core",
|
|
8830
|
-
"strict": true,
|
|
8831
|
-
"isESM": true,
|
|
8832
|
-
"relativePath": [
|
|
8833
|
-
"dist",
|
|
8834
|
-
"commands",
|
|
8835
|
-
"theme",
|
|
8836
|
-
"index.js"
|
|
8837
|
-
]
|
|
8838
|
-
},
|
|
8839
|
-
"theme:list": {
|
|
8840
|
-
"aliases": [],
|
|
8841
|
-
"args": {},
|
|
8842
|
-
"description": "List available agent themes",
|
|
8843
|
-
"examples": [
|
|
8844
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8845
|
-
],
|
|
8846
|
-
"flags": {
|
|
8847
|
-
"json": {
|
|
8848
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8849
|
-
"name": "json",
|
|
8850
|
-
"allowNo": false,
|
|
8851
|
-
"type": "boolean"
|
|
8852
|
-
},
|
|
8853
|
-
"machine": {
|
|
8854
|
-
"char": "m",
|
|
8855
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8856
|
-
"name": "machine",
|
|
8857
|
-
"allowNo": false,
|
|
8858
|
-
"type": "boolean"
|
|
8859
|
-
}
|
|
8860
|
-
},
|
|
8861
|
-
"hasDynamicHelp": false,
|
|
8862
|
-
"hiddenAliases": [],
|
|
8863
|
-
"id": "theme:list",
|
|
8864
|
-
"pluginAlias": "@proletariat/cli",
|
|
8865
|
-
"pluginName": "@proletariat/cli",
|
|
8866
|
-
"pluginType": "core",
|
|
8867
|
-
"strict": true,
|
|
8868
|
-
"enableJsonFlag": false,
|
|
8869
|
-
"isESM": true,
|
|
8870
|
-
"relativePath": [
|
|
8871
|
-
"dist",
|
|
8872
|
-
"commands",
|
|
8873
|
-
"theme",
|
|
8874
|
-
"list.js"
|
|
8875
|
-
]
|
|
8876
|
-
},
|
|
8877
|
-
"theme:set": {
|
|
8878
|
-
"aliases": [],
|
|
8879
|
-
"args": {
|
|
8880
|
-
"theme": {
|
|
8881
|
-
"description": "Theme ID to set as active",
|
|
8882
|
-
"name": "theme",
|
|
8883
|
-
"required": false
|
|
8884
|
-
}
|
|
8885
|
-
},
|
|
8886
|
-
"description": "Set the active theme for this workspace",
|
|
8887
|
-
"examples": [
|
|
8888
|
-
"<%= config.bin %> <%= command.id %> billionaires",
|
|
8889
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8890
|
-
],
|
|
8891
|
-
"flags": {
|
|
8892
|
-
"json": {
|
|
8893
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8894
|
-
"name": "json",
|
|
8895
|
-
"allowNo": false,
|
|
8896
|
-
"type": "boolean"
|
|
8897
|
-
},
|
|
8898
|
-
"machine": {
|
|
8899
|
-
"char": "m",
|
|
8900
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8901
|
-
"name": "machine",
|
|
8902
|
-
"allowNo": false,
|
|
8903
|
-
"type": "boolean"
|
|
8904
|
-
}
|
|
8905
|
-
},
|
|
8906
|
-
"hasDynamicHelp": false,
|
|
8907
|
-
"hiddenAliases": [],
|
|
8908
|
-
"id": "theme:set",
|
|
8909
|
-
"pluginAlias": "@proletariat/cli",
|
|
8910
|
-
"pluginName": "@proletariat/cli",
|
|
8911
|
-
"pluginType": "core",
|
|
8912
|
-
"strict": true,
|
|
8913
|
-
"isESM": true,
|
|
8914
|
-
"relativePath": [
|
|
8915
|
-
"dist",
|
|
8916
|
-
"commands",
|
|
8917
|
-
"agent",
|
|
8918
|
-
"themes",
|
|
8919
|
-
"set.js"
|
|
8920
|
-
]
|
|
8921
|
-
},
|
|
8922
|
-
"ticket:create": {
|
|
8923
|
-
"aliases": [],
|
|
8924
|
-
"args": {},
|
|
8925
|
-
"description": "Create a new ticket (routes to Linear when configured, or local PMO)",
|
|
8926
|
-
"examples": [
|
|
8927
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8928
|
-
"<%= config.bin %> <%= command.id %> --title \"Fix login bug\" --column Backlog",
|
|
8929
|
-
"<%= config.bin %> <%= command.id %> -t \"Add feature\" -c \"In Progress\" -p P1",
|
|
8930
|
-
"<%= config.bin %> <%= command.id %> --project mobile-app -t \"New feature\"",
|
|
8931
|
-
"<%= config.bin %> <%= command.id %> --epic EPIC-001 -t \"Implement auth flow\"",
|
|
8932
|
-
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file ./ticket-desc.md",
|
|
8933
|
-
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file - # Read from stdin",
|
|
8934
|
-
"<%= config.bin %> <%= command.id %> --json # Output column choices as JSON",
|
|
8935
|
-
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating",
|
|
8936
|
-
"<%= config.bin %> <%= command.id %> --source linear -t \"Fix bug\" --team ENG",
|
|
8937
|
-
"<%= config.bin %> <%= command.id %> --source pmo -t \"Local task\" -c Backlog"
|
|
8938
|
-
],
|
|
8939
|
-
"flags": {
|
|
8940
|
-
"project": {
|
|
8941
|
-
"char": "P",
|
|
8942
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8943
|
-
"name": "project",
|
|
8944
|
-
"hasDynamicHelp": false,
|
|
8945
|
-
"multiple": false,
|
|
8946
|
-
"type": "option"
|
|
8947
|
-
},
|
|
8948
|
-
"json": {
|
|
8949
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8950
|
-
"name": "json",
|
|
8951
|
-
"allowNo": false,
|
|
8952
|
-
"type": "boolean"
|
|
8953
|
-
},
|
|
8954
|
-
"machine": {
|
|
8955
|
-
"char": "m",
|
|
8956
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8957
|
-
"name": "machine",
|
|
8958
|
-
"allowNo": false,
|
|
8959
|
-
"type": "boolean"
|
|
8960
|
-
},
|
|
8961
|
-
"title": {
|
|
8962
|
-
"char": "t",
|
|
8963
|
-
"description": "Ticket title [required for non-interactive]",
|
|
8964
|
-
"name": "title",
|
|
8965
|
-
"hasDynamicHelp": false,
|
|
8966
|
-
"multiple": false,
|
|
8967
|
-
"type": "option"
|
|
8968
|
-
},
|
|
8969
|
-
"column": {
|
|
8970
|
-
"char": "c",
|
|
8971
|
-
"description": "Column to place the ticket in",
|
|
8972
|
-
"name": "column",
|
|
8973
|
-
"hasDynamicHelp": false,
|
|
8974
|
-
"multiple": false,
|
|
8975
|
-
"type": "option"
|
|
8976
|
-
},
|
|
8977
|
-
"priority": {
|
|
8978
|
-
"char": "p",
|
|
8979
|
-
"description": "Ticket priority (uses workspace priority scale)",
|
|
8980
|
-
"name": "priority",
|
|
8981
|
-
"hasDynamicHelp": false,
|
|
8982
|
-
"multiple": false,
|
|
8983
|
-
"type": "option"
|
|
8984
|
-
},
|
|
8985
|
-
"category": {
|
|
8986
|
-
"description": "Ticket category (e.g., bug, feature, refactor)",
|
|
8987
|
-
"name": "category",
|
|
8988
|
-
"hasDynamicHelp": false,
|
|
8989
|
-
"multiple": false,
|
|
8990
|
-
"type": "option"
|
|
8991
|
-
},
|
|
8992
|
-
"description": {
|
|
8993
|
-
"char": "d",
|
|
8994
|
-
"description": "Ticket description",
|
|
8995
|
-
"name": "description",
|
|
8996
|
-
"hasDynamicHelp": false,
|
|
8997
|
-
"multiple": false,
|
|
8998
|
-
"type": "option"
|
|
8999
|
-
},
|
|
9000
|
-
"description-file": {
|
|
9001
|
-
"char": "D",
|
|
9002
|
-
"description": "Path to a markdown file for the ticket description (use - for stdin)",
|
|
9003
|
-
"exclusive": [
|
|
9004
|
-
"description"
|
|
9005
|
-
],
|
|
9006
|
-
"name": "description-file",
|
|
9007
|
-
"hasDynamicHelp": false,
|
|
9008
|
-
"multiple": false,
|
|
9009
|
-
"type": "option"
|
|
9010
|
-
},
|
|
9011
|
-
"id": {
|
|
9012
|
-
"description": "Custom ticket ID (auto-generated if not provided)",
|
|
9013
|
-
"name": "id",
|
|
9014
|
-
"hasDynamicHelp": false,
|
|
9015
|
-
"multiple": false,
|
|
9016
|
-
"type": "option"
|
|
9017
|
-
},
|
|
9018
|
-
"interactive": {
|
|
9019
|
-
"char": "i",
|
|
9020
|
-
"description": "Interactive mode",
|
|
9021
|
-
"name": "interactive",
|
|
9022
|
-
"allowNo": false,
|
|
9023
|
-
"type": "boolean"
|
|
9024
|
-
},
|
|
9025
|
-
"epic": {
|
|
9026
|
-
"char": "e",
|
|
9027
|
-
"description": "Link ticket to an epic (e.g., EPIC-001)",
|
|
9028
|
-
"name": "epic",
|
|
9029
|
-
"hasDynamicHelp": false,
|
|
9030
|
-
"multiple": false,
|
|
9031
|
-
"type": "option"
|
|
9032
|
-
},
|
|
9033
|
-
"template": {
|
|
9034
|
-
"char": "T",
|
|
9035
|
-
"description": "Create from a template (e.g., bug-report, feature-request)",
|
|
9036
|
-
"name": "template",
|
|
9037
|
-
"hasDynamicHelp": false,
|
|
9038
|
-
"multiple": false,
|
|
9039
|
-
"type": "option"
|
|
9040
|
-
},
|
|
9041
|
-
"labels": {
|
|
9042
|
-
"aliases": [
|
|
9043
|
-
"label"
|
|
9044
|
-
],
|
|
9045
|
-
"char": "l",
|
|
9046
|
-
"description": "Labels (comma-separated)",
|
|
9047
|
-
"name": "labels",
|
|
9048
|
-
"hasDynamicHelp": false,
|
|
9049
|
-
"multiple": false,
|
|
9050
|
-
"type": "option"
|
|
9051
|
-
},
|
|
9052
|
-
"dry-run": {
|
|
9053
|
-
"description": "Validate inputs without creating ticket (use with --json for structured output)",
|
|
9054
|
-
"name": "dry-run",
|
|
9055
|
-
"allowNo": false,
|
|
9056
|
-
"type": "boolean"
|
|
9057
|
-
},
|
|
9058
|
-
"source": {
|
|
9059
|
-
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9060
|
-
"name": "source",
|
|
9061
|
-
"default": "auto",
|
|
9062
|
-
"hasDynamicHelp": false,
|
|
9063
|
-
"multiple": false,
|
|
9064
|
-
"options": [
|
|
9065
|
-
"auto",
|
|
9066
|
-
"pmo",
|
|
9067
|
-
"linear"
|
|
9068
|
-
],
|
|
9069
|
-
"type": "option"
|
|
9070
|
-
},
|
|
9071
|
-
"team": {
|
|
9072
|
-
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9073
|
-
"name": "team",
|
|
9074
|
-
"hasDynamicHelp": false,
|
|
9075
|
-
"multiple": false,
|
|
9076
|
-
"type": "option"
|
|
9077
|
-
}
|
|
9078
|
-
},
|
|
9079
|
-
"hasDynamicHelp": false,
|
|
9080
|
-
"hiddenAliases": [],
|
|
9081
|
-
"id": "ticket:create",
|
|
9082
|
-
"pluginAlias": "@proletariat/cli",
|
|
9083
|
-
"pluginName": "@proletariat/cli",
|
|
9084
|
-
"pluginType": "core",
|
|
9085
|
-
"strict": true,
|
|
9086
|
-
"isESM": true,
|
|
9087
|
-
"relativePath": [
|
|
9088
|
-
"dist",
|
|
9089
|
-
"commands",
|
|
9090
|
-
"ticket",
|
|
9091
|
-
"create.js"
|
|
9092
|
-
]
|
|
9093
|
-
},
|
|
9094
|
-
"ticket:delete": {
|
|
9095
|
-
"aliases": [],
|
|
9096
|
-
"args": {
|
|
9097
|
-
"ticketId": {
|
|
9098
|
-
"description": "Ticket ID to delete - prompts with dropdown if not provided",
|
|
9099
|
-
"name": "ticketId",
|
|
9100
|
-
"required": false
|
|
9101
|
-
}
|
|
9102
|
-
},
|
|
9103
|
-
"description": "Delete ticket(s) permanently",
|
|
9104
|
-
"examples": [
|
|
9105
|
-
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9106
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --force",
|
|
9107
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
9108
|
-
"<%= config.bin %> <%= command.id %> --bulk",
|
|
9109
|
-
"<%= config.bin %> <%= command.id %> --json # Output choices as JSON"
|
|
9110
|
-
],
|
|
9111
|
-
"flags": {
|
|
9112
|
-
"project": {
|
|
9113
|
-
"char": "P",
|
|
9114
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9115
|
-
"name": "project",
|
|
9116
|
-
"hasDynamicHelp": false,
|
|
9117
|
-
"multiple": false,
|
|
9118
|
-
"type": "option"
|
|
9119
|
-
},
|
|
9120
|
-
"json": {
|
|
9121
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9122
|
-
"name": "json",
|
|
9123
|
-
"allowNo": false,
|
|
9124
|
-
"type": "boolean"
|
|
9125
|
-
},
|
|
9126
|
-
"machine": {
|
|
9127
|
-
"char": "m",
|
|
9128
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9129
|
-
"name": "machine",
|
|
9130
|
-
"allowNo": false,
|
|
9131
|
-
"type": "boolean"
|
|
9132
|
-
},
|
|
9133
|
-
"force": {
|
|
9134
|
-
"char": "f",
|
|
9135
|
-
"description": "Skip confirmation prompt",
|
|
9136
|
-
"name": "force",
|
|
9137
|
-
"allowNo": false,
|
|
9138
|
-
"type": "boolean"
|
|
9139
|
-
},
|
|
9140
|
-
"bulk": {
|
|
9141
|
-
"char": "b",
|
|
9142
|
-
"description": "Enable bulk mode to delete multiple tickets",
|
|
9143
|
-
"name": "bulk",
|
|
9144
|
-
"allowNo": false,
|
|
9145
|
-
"type": "boolean"
|
|
9146
|
-
}
|
|
9147
|
-
},
|
|
9148
|
-
"hasDynamicHelp": false,
|
|
9149
|
-
"hiddenAliases": [],
|
|
9150
|
-
"id": "ticket:delete",
|
|
9151
|
-
"pluginAlias": "@proletariat/cli",
|
|
9152
|
-
"pluginName": "@proletariat/cli",
|
|
9153
|
-
"pluginType": "core",
|
|
9154
|
-
"strict": true,
|
|
9155
|
-
"isESM": true,
|
|
9156
|
-
"relativePath": [
|
|
9157
|
-
"dist",
|
|
9158
|
-
"commands",
|
|
9159
|
-
"ticket",
|
|
9160
|
-
"delete.js"
|
|
9161
|
-
]
|
|
9162
|
-
},
|
|
9163
|
-
"ticket:edit": {
|
|
9164
|
-
"aliases": [],
|
|
9165
|
-
"args": {
|
|
9166
|
-
"ticketId": {
|
|
9167
|
-
"description": "Ticket ID to edit - prompts with dropdown if not provided",
|
|
9168
|
-
"name": "ticketId",
|
|
9169
|
-
"required": false
|
|
9170
|
-
}
|
|
9171
|
-
},
|
|
9172
|
-
"description": "Edit an existing ticket",
|
|
9173
|
-
"examples": [
|
|
9174
|
-
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9175
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --title \"New title\"",
|
|
9176
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --priority P1 --category bug",
|
|
9177
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --add-subtask \"Implement feature\" --add-subtask \"Write tests\"",
|
|
9178
|
-
"<%= config.bin %> <%= command.id %> TICK-001 --owner \"john\" --assignee \"agent-1\"",
|
|
9179
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
9180
|
-
],
|
|
9181
|
-
"flags": {
|
|
9182
|
-
"project": {
|
|
9183
|
-
"char": "P",
|
|
9184
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9185
|
-
"name": "project",
|
|
9186
|
-
"hasDynamicHelp": false,
|
|
9187
|
-
"multiple": false,
|
|
9188
|
-
"type": "option"
|
|
9189
|
-
},
|
|
9190
|
-
"json": {
|
|
9191
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9192
|
-
"name": "json",
|
|
9193
|
-
"allowNo": false,
|
|
9194
|
-
"type": "boolean"
|
|
9195
|
-
},
|
|
9196
|
-
"machine": {
|
|
9197
|
-
"char": "m",
|
|
9198
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9199
|
-
"name": "machine",
|
|
9200
|
-
"allowNo": false,
|
|
9201
|
-
"type": "boolean"
|
|
9202
|
-
},
|
|
9203
|
-
"title": {
|
|
9204
|
-
"char": "t",
|
|
9205
|
-
"description": "New ticket title",
|
|
9206
|
-
"name": "title",
|
|
9207
|
-
"hasDynamicHelp": false,
|
|
9208
|
-
"multiple": false,
|
|
9209
|
-
"type": "option"
|
|
9210
|
-
},
|
|
9211
|
-
"description": {
|
|
9212
|
-
"char": "d",
|
|
9213
|
-
"description": "New ticket description",
|
|
9214
|
-
"name": "description",
|
|
9215
|
-
"hasDynamicHelp": false,
|
|
9216
|
-
"multiple": false,
|
|
9217
|
-
"type": "option"
|
|
9218
|
-
},
|
|
9219
|
-
"priority": {
|
|
9220
|
-
"char": "p",
|
|
9221
|
-
"description": "New ticket priority (uses workspace priority scale, \"none\" to clear)",
|
|
9222
|
-
"name": "priority",
|
|
9223
|
-
"hasDynamicHelp": false,
|
|
9224
|
-
"multiple": false,
|
|
9225
|
-
"type": "option"
|
|
9226
|
-
},
|
|
9227
|
-
"category": {
|
|
9228
|
-
"description": "New ticket category",
|
|
9229
|
-
"name": "category",
|
|
9230
|
-
"hasDynamicHelp": false,
|
|
9231
|
-
"multiple": false,
|
|
9232
|
-
"type": "option"
|
|
9233
|
-
},
|
|
9234
|
-
"owner": {
|
|
9235
|
-
"char": "o",
|
|
9236
|
-
"description": "Ticket owner (human responsible)",
|
|
9237
|
-
"name": "owner",
|
|
9238
|
-
"hasDynamicHelp": false,
|
|
9239
|
-
"multiple": false,
|
|
9240
|
-
"type": "option"
|
|
9241
|
-
},
|
|
9242
|
-
"assignee": {
|
|
9243
|
-
"char": "a",
|
|
9244
|
-
"description": "Ticket assignee (who executes)",
|
|
9245
|
-
"name": "assignee",
|
|
9246
|
-
"hasDynamicHelp": false,
|
|
9247
|
-
"multiple": false,
|
|
9248
|
-
"type": "option"
|
|
9249
|
-
},
|
|
9250
|
-
"add-subtask": {
|
|
9251
|
-
"description": "Add a subtask (can be used multiple times)",
|
|
9252
|
-
"name": "add-subtask",
|
|
9253
|
-
"hasDynamicHelp": false,
|
|
9254
|
-
"multiple": true,
|
|
9255
|
-
"type": "option"
|
|
9256
|
-
},
|
|
9257
|
-
"clear-subtasks": {
|
|
9258
|
-
"description": "Clear all existing subtasks before adding new ones",
|
|
9259
|
-
"name": "clear-subtasks",
|
|
9260
|
-
"allowNo": false,
|
|
9261
|
-
"type": "boolean"
|
|
9262
|
-
},
|
|
9263
|
-
"add-label": {
|
|
9264
|
-
"description": "Add a label (can be used multiple times)",
|
|
9265
|
-
"name": "add-label",
|
|
9266
|
-
"hasDynamicHelp": false,
|
|
9267
|
-
"multiple": true,
|
|
9268
|
-
"type": "option"
|
|
9269
|
-
},
|
|
9270
|
-
"remove-label": {
|
|
9271
|
-
"description": "Remove a label",
|
|
9272
|
-
"name": "remove-label",
|
|
9273
|
-
"hasDynamicHelp": false,
|
|
9274
|
-
"multiple": true,
|
|
9275
|
-
"type": "option"
|
|
9276
|
-
},
|
|
9277
|
-
"add-ac": {
|
|
9278
|
-
"description": "Add an acceptance criterion (can be used multiple times)",
|
|
9279
|
-
"name": "add-ac",
|
|
9280
|
-
"hasDynamicHelp": false,
|
|
9281
|
-
"multiple": true,
|
|
9282
|
-
"type": "option"
|
|
9283
|
-
},
|
|
9284
|
-
"clear-ac": {
|
|
9285
|
-
"description": "Clear all existing acceptance criteria before adding new ones",
|
|
9286
|
-
"name": "clear-ac",
|
|
9287
|
-
"allowNo": false,
|
|
9288
|
-
"type": "boolean"
|
|
9289
|
-
},
|
|
9290
|
-
"interactive": {
|
|
9291
|
-
"char": "i",
|
|
9292
|
-
"description": "Interactive mode - prompts for all fields",
|
|
9293
|
-
"name": "interactive",
|
|
9294
|
-
"allowNo": false,
|
|
9295
|
-
"type": "boolean"
|
|
9296
|
-
}
|
|
9297
|
-
},
|
|
9298
|
-
"hasDynamicHelp": false,
|
|
9299
|
-
"hiddenAliases": [],
|
|
9300
|
-
"id": "ticket:edit",
|
|
9301
|
-
"pluginAlias": "@proletariat/cli",
|
|
9302
|
-
"pluginName": "@proletariat/cli",
|
|
9303
|
-
"pluginType": "core",
|
|
9304
|
-
"strict": true,
|
|
9305
|
-
"isESM": true,
|
|
9306
|
-
"relativePath": [
|
|
9307
|
-
"dist",
|
|
9308
|
-
"commands",
|
|
9309
|
-
"ticket",
|
|
9310
|
-
"edit.js"
|
|
9311
|
-
]
|
|
9312
|
-
},
|
|
9313
|
-
"ticket": {
|
|
9314
|
-
"aliases": [],
|
|
9315
|
-
"args": {},
|
|
9316
|
-
"description": "Interactive menu for ticket operations",
|
|
9317
|
-
"examples": [
|
|
9318
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9319
|
-
],
|
|
9320
|
-
"flags": {
|
|
9321
|
-
"json": {
|
|
9322
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9323
|
-
"name": "json",
|
|
9324
|
-
"allowNo": false,
|
|
9325
|
-
"type": "boolean"
|
|
9326
|
-
},
|
|
9327
|
-
"machine": {
|
|
9328
|
-
"char": "m",
|
|
9329
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9330
|
-
"name": "machine",
|
|
9331
|
-
"allowNo": false,
|
|
9332
|
-
"type": "boolean"
|
|
9333
|
-
}
|
|
9334
|
-
},
|
|
9335
|
-
"hasDynamicHelp": false,
|
|
9336
|
-
"hiddenAliases": [],
|
|
9337
|
-
"id": "ticket",
|
|
9338
|
-
"pluginAlias": "@proletariat/cli",
|
|
9339
|
-
"pluginName": "@proletariat/cli",
|
|
9340
|
-
"pluginType": "core",
|
|
9341
|
-
"strict": true,
|
|
9342
|
-
"isESM": true,
|
|
9343
|
-
"relativePath": [
|
|
9344
|
-
"dist",
|
|
9345
|
-
"commands",
|
|
9346
|
-
"ticket",
|
|
9347
|
-
"index.js"
|
|
9348
|
-
]
|
|
9349
|
-
},
|
|
9350
|
-
"ticket:list": {
|
|
9351
|
-
"aliases": [],
|
|
9352
|
-
"args": {},
|
|
9353
|
-
"description": "List tickets from the PMO board",
|
|
9354
|
-
"examples": [
|
|
9355
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9356
|
-
"<%= config.bin %> <%= command.id %> --column Backlog",
|
|
9357
|
-
"<%= config.bin %> <%= command.id %> --priority P0",
|
|
9358
|
-
"<%= config.bin %> <%= command.id %> --category bug",
|
|
9359
|
-
"<%= config.bin %> <%= command.id %> --search \"login\"",
|
|
9360
|
-
"<%= config.bin %> <%= command.id %> --project mobile-app",
|
|
9361
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
9362
|
-
"<%= config.bin %> <%= command.id %> --all --group-by priority",
|
|
9363
|
-
"<%= config.bin %> <%= command.id %> -g priority",
|
|
9364
|
-
"<%= config.bin %> <%= command.id %> --limit 10",
|
|
9365
|
-
"<%= config.bin %> <%= command.id %> --limit 10 --offset 20"
|
|
9366
|
-
],
|
|
9367
|
-
"flags": {
|
|
9368
|
-
"project": {
|
|
9369
|
-
"char": "P",
|
|
9370
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9371
|
-
"name": "project",
|
|
9372
|
-
"hasDynamicHelp": false,
|
|
9373
|
-
"multiple": false,
|
|
9374
|
-
"type": "option"
|
|
9375
|
-
},
|
|
9376
|
-
"json": {
|
|
9377
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9378
|
-
"name": "json",
|
|
9379
|
-
"allowNo": false,
|
|
9380
|
-
"type": "boolean"
|
|
9381
|
-
},
|
|
9382
|
-
"machine": {
|
|
9383
|
-
"char": "m",
|
|
9384
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9385
|
-
"name": "machine",
|
|
9386
|
-
"allowNo": false,
|
|
9387
|
-
"type": "boolean"
|
|
9388
|
-
},
|
|
9389
|
-
"column": {
|
|
9390
|
-
"char": "c",
|
|
9391
|
-
"description": "Filter by column",
|
|
9392
|
-
"name": "column",
|
|
9393
|
-
"hasDynamicHelp": false,
|
|
9394
|
-
"multiple": false,
|
|
9395
|
-
"type": "option"
|
|
9396
|
-
},
|
|
9397
|
-
"priority": {
|
|
9398
|
-
"char": "p",
|
|
9399
|
-
"description": "Filter by priority (uses workspace priority scale)",
|
|
9400
|
-
"name": "priority",
|
|
9401
|
-
"hasDynamicHelp": false,
|
|
9402
|
-
"multiple": false,
|
|
9403
|
-
"type": "option"
|
|
9404
|
-
},
|
|
9405
|
-
"category": {
|
|
9406
|
-
"description": "Filter by category",
|
|
9407
|
-
"name": "category",
|
|
9408
|
-
"hasDynamicHelp": false,
|
|
9409
|
-
"multiple": false,
|
|
9410
|
-
"type": "option"
|
|
9411
|
-
},
|
|
9412
|
-
"search": {
|
|
9413
|
-
"char": "s",
|
|
9414
|
-
"description": "Search in title and description",
|
|
9415
|
-
"name": "search",
|
|
9416
|
-
"hasDynamicHelp": false,
|
|
9417
|
-
"multiple": false,
|
|
9418
|
-
"type": "option"
|
|
9419
|
-
},
|
|
9420
|
-
"format": {
|
|
9421
|
-
"char": "f",
|
|
9422
|
-
"description": "Output format",
|
|
9423
|
-
"name": "format",
|
|
9424
|
-
"default": "table",
|
|
9425
|
-
"hasDynamicHelp": false,
|
|
9426
|
-
"multiple": false,
|
|
9427
|
-
"options": [
|
|
9428
|
-
"table",
|
|
9429
|
-
"compact",
|
|
9430
|
-
"json"
|
|
9431
|
-
],
|
|
9432
|
-
"type": "option"
|
|
9433
|
-
},
|
|
9434
|
-
"all": {
|
|
9435
|
-
"char": "a",
|
|
9436
|
-
"description": "Show tickets across all projects",
|
|
9437
|
-
"name": "all",
|
|
9438
|
-
"allowNo": false,
|
|
9439
|
-
"type": "boolean"
|
|
9440
|
-
},
|
|
9441
|
-
"label": {
|
|
9442
|
-
"description": "Filter by label name",
|
|
9443
|
-
"name": "label",
|
|
9444
|
-
"hasDynamicHelp": false,
|
|
9445
|
-
"multiple": false,
|
|
9446
|
-
"type": "option"
|
|
9447
|
-
},
|
|
9448
|
-
"group-by": {
|
|
9449
|
-
"char": "g",
|
|
9450
|
-
"description": "Group tickets by field",
|
|
9451
|
-
"name": "group-by",
|
|
9452
|
-
"default": "status",
|
|
9453
|
-
"hasDynamicHelp": false,
|
|
9454
|
-
"multiple": false,
|
|
9455
|
-
"options": [
|
|
9456
|
-
"status",
|
|
9457
|
-
"priority"
|
|
9458
|
-
],
|
|
9459
|
-
"type": "option"
|
|
9460
|
-
},
|
|
9461
|
-
"limit": {
|
|
9462
|
-
"char": "l",
|
|
9463
|
-
"description": "Maximum number of tickets to display",
|
|
9464
|
-
"name": "limit",
|
|
9465
|
-
"hasDynamicHelp": false,
|
|
9466
|
-
"multiple": false,
|
|
9467
|
-
"type": "option"
|
|
9468
|
-
},
|
|
9469
|
-
"offset": {
|
|
9470
|
-
"description": "Skip first N tickets (for pagination)",
|
|
9471
|
-
"name": "offset",
|
|
9472
|
-
"hasDynamicHelp": false,
|
|
9473
|
-
"multiple": false,
|
|
9474
|
-
"type": "option"
|
|
9475
|
-
},
|
|
9476
|
-
"source": {
|
|
9477
|
-
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9478
|
-
"name": "source",
|
|
9479
|
-
"default": "auto",
|
|
9480
|
-
"hasDynamicHelp": false,
|
|
9481
|
-
"multiple": false,
|
|
9482
|
-
"options": [
|
|
9483
|
-
"auto",
|
|
9484
|
-
"pmo",
|
|
9485
|
-
"linear"
|
|
9486
|
-
],
|
|
9487
|
-
"type": "option"
|
|
9488
|
-
},
|
|
9489
|
-
"team": {
|
|
9490
|
-
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9491
|
-
"name": "team",
|
|
9492
|
-
"hasDynamicHelp": false,
|
|
9493
|
-
"multiple": false,
|
|
9494
|
-
"type": "option"
|
|
8718
|
+
"name": "machine",
|
|
8719
|
+
"allowNo": false,
|
|
8720
|
+
"type": "boolean"
|
|
9495
8721
|
}
|
|
9496
8722
|
},
|
|
9497
8723
|
"hasDynamicHelp": false,
|
|
9498
8724
|
"hiddenAliases": [],
|
|
9499
|
-
"id": "
|
|
8725
|
+
"id": "theme:add-names",
|
|
9500
8726
|
"pluginAlias": "@proletariat/cli",
|
|
9501
8727
|
"pluginName": "@proletariat/cli",
|
|
9502
8728
|
"pluginType": "core",
|
|
9503
|
-
"strict":
|
|
8729
|
+
"strict": false,
|
|
9504
8730
|
"enableJsonFlag": false,
|
|
9505
8731
|
"isESM": true,
|
|
9506
8732
|
"relativePath": [
|
|
9507
8733
|
"dist",
|
|
9508
8734
|
"commands",
|
|
9509
|
-
"
|
|
9510
|
-
"
|
|
8735
|
+
"theme",
|
|
8736
|
+
"add-names.js"
|
|
9511
8737
|
]
|
|
9512
8738
|
},
|
|
9513
|
-
"
|
|
8739
|
+
"theme:create": {
|
|
9514
8740
|
"aliases": [],
|
|
9515
8741
|
"args": {
|
|
9516
|
-
"
|
|
9517
|
-
"description": "
|
|
9518
|
-
"name": "
|
|
9519
|
-
"required":
|
|
9520
|
-
},
|
|
9521
|
-
"column": {
|
|
9522
|
-
"description": "Target column - prompts with dropdown if not provided",
|
|
9523
|
-
"name": "column",
|
|
9524
|
-
"required": false
|
|
8742
|
+
"name": {
|
|
8743
|
+
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
8744
|
+
"name": "name",
|
|
8745
|
+
"required": true
|
|
9525
8746
|
}
|
|
9526
8747
|
},
|
|
9527
|
-
"description": "
|
|
8748
|
+
"description": "Create a custom agent theme",
|
|
9528
8749
|
"examples": [
|
|
9529
|
-
"<%= config.bin %> <%= command.id %>
|
|
9530
|
-
"<%= config.bin %> <%= command.id %>
|
|
9531
|
-
"<%= config.bin %> <%= command.id %>
|
|
9532
|
-
"<%= config.bin %> <%= command.id %> fix-bug \"In Review\" --position 0",
|
|
9533
|
-
"<%= config.bin %> <%= command.id %> TKT-123 --to-project PROJ-002",
|
|
9534
|
-
"<%= config.bin %> <%= command.id %> --bulk"
|
|
8750
|
+
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
8751
|
+
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
8752
|
+
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
9535
8753
|
],
|
|
9536
8754
|
"flags": {
|
|
9537
|
-
"project": {
|
|
9538
|
-
"char": "P",
|
|
9539
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9540
|
-
"name": "project",
|
|
9541
|
-
"hasDynamicHelp": false,
|
|
9542
|
-
"multiple": false,
|
|
9543
|
-
"type": "option"
|
|
9544
|
-
},
|
|
9545
8755
|
"json": {
|
|
9546
8756
|
"description": "Output as JSON for AI agents/scripts",
|
|
9547
8757
|
"name": "json",
|
|
@@ -9555,46 +8765,65 @@
|
|
|
9555
8765
|
"allowNo": false,
|
|
9556
8766
|
"type": "boolean"
|
|
9557
8767
|
},
|
|
9558
|
-
"
|
|
9559
|
-
"char": "
|
|
9560
|
-
"description": "
|
|
9561
|
-
"name": "
|
|
9562
|
-
"hasDynamicHelp": false,
|
|
9563
|
-
"multiple": false,
|
|
9564
|
-
"type": "option"
|
|
9565
|
-
},
|
|
9566
|
-
"position": {
|
|
9567
|
-
"description": "Position within the column (0 = top)",
|
|
9568
|
-
"name": "position",
|
|
8768
|
+
"description": {
|
|
8769
|
+
"char": "d",
|
|
8770
|
+
"description": "Theme description",
|
|
8771
|
+
"name": "description",
|
|
9569
8772
|
"hasDynamicHelp": false,
|
|
9570
8773
|
"multiple": false,
|
|
9571
8774
|
"type": "option"
|
|
9572
8775
|
},
|
|
9573
|
-
"
|
|
9574
|
-
"description": "
|
|
9575
|
-
"name": "
|
|
8776
|
+
"display-name": {
|
|
8777
|
+
"description": "Display name (defaults to formatted name)",
|
|
8778
|
+
"name": "display-name",
|
|
9576
8779
|
"hasDynamicHelp": false,
|
|
9577
8780
|
"multiple": false,
|
|
9578
8781
|
"type": "option"
|
|
9579
|
-
}
|
|
9580
|
-
|
|
9581
|
-
|
|
9582
|
-
|
|
9583
|
-
|
|
8782
|
+
}
|
|
8783
|
+
},
|
|
8784
|
+
"hasDynamicHelp": false,
|
|
8785
|
+
"hiddenAliases": [],
|
|
8786
|
+
"id": "theme:create",
|
|
8787
|
+
"pluginAlias": "@proletariat/cli",
|
|
8788
|
+
"pluginName": "@proletariat/cli",
|
|
8789
|
+
"pluginType": "core",
|
|
8790
|
+
"strict": true,
|
|
8791
|
+
"enableJsonFlag": false,
|
|
8792
|
+
"isESM": true,
|
|
8793
|
+
"relativePath": [
|
|
8794
|
+
"dist",
|
|
8795
|
+
"commands",
|
|
8796
|
+
"theme",
|
|
8797
|
+
"create.js"
|
|
8798
|
+
]
|
|
8799
|
+
},
|
|
8800
|
+
"theme": {
|
|
8801
|
+
"aliases": [],
|
|
8802
|
+
"args": {},
|
|
8803
|
+
"description": "Manage agent naming themes",
|
|
8804
|
+
"examples": [
|
|
8805
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
8806
|
+
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
8807
|
+
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
8808
|
+
],
|
|
8809
|
+
"flags": {
|
|
8810
|
+
"json": {
|
|
8811
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8812
|
+
"name": "json",
|
|
9584
8813
|
"allowNo": false,
|
|
9585
8814
|
"type": "boolean"
|
|
9586
8815
|
},
|
|
9587
|
-
"
|
|
9588
|
-
"char": "
|
|
9589
|
-
"description": "
|
|
9590
|
-
"name": "
|
|
8816
|
+
"machine": {
|
|
8817
|
+
"char": "m",
|
|
8818
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8819
|
+
"name": "machine",
|
|
9591
8820
|
"allowNo": false,
|
|
9592
8821
|
"type": "boolean"
|
|
9593
8822
|
}
|
|
9594
8823
|
},
|
|
9595
8824
|
"hasDynamicHelp": false,
|
|
9596
8825
|
"hiddenAliases": [],
|
|
9597
|
-
"id": "
|
|
8826
|
+
"id": "theme",
|
|
9598
8827
|
"pluginAlias": "@proletariat/cli",
|
|
9599
8828
|
"pluginName": "@proletariat/cli",
|
|
9600
8829
|
"pluginType": "core",
|
|
@@ -9603,33 +8832,18 @@
|
|
|
9603
8832
|
"relativePath": [
|
|
9604
8833
|
"dist",
|
|
9605
8834
|
"commands",
|
|
9606
|
-
"
|
|
9607
|
-
"
|
|
8835
|
+
"theme",
|
|
8836
|
+
"index.js"
|
|
9608
8837
|
]
|
|
9609
8838
|
},
|
|
9610
|
-
"
|
|
8839
|
+
"theme:list": {
|
|
9611
8840
|
"aliases": [],
|
|
9612
|
-
"args": {
|
|
9613
|
-
|
|
9614
|
-
"description": "Ticket ID to view - prompts with dropdown if not provided",
|
|
9615
|
-
"name": "ticketId",
|
|
9616
|
-
"required": false
|
|
9617
|
-
}
|
|
9618
|
-
},
|
|
9619
|
-
"description": "View detailed ticket information",
|
|
8841
|
+
"args": {},
|
|
8842
|
+
"description": "List available agent themes",
|
|
9620
8843
|
"examples": [
|
|
9621
|
-
"<%= config.bin %> <%= command.id %>
|
|
9622
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
8844
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9623
8845
|
],
|
|
9624
8846
|
"flags": {
|
|
9625
|
-
"project": {
|
|
9626
|
-
"char": "P",
|
|
9627
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9628
|
-
"name": "project",
|
|
9629
|
-
"hasDynamicHelp": false,
|
|
9630
|
-
"multiple": false,
|
|
9631
|
-
"type": "option"
|
|
9632
|
-
},
|
|
9633
8847
|
"json": {
|
|
9634
8848
|
"description": "Output as JSON for AI agents/scripts",
|
|
9635
8849
|
"name": "json",
|
|
@@ -9646,49 +8860,35 @@
|
|
|
9646
8860
|
},
|
|
9647
8861
|
"hasDynamicHelp": false,
|
|
9648
8862
|
"hiddenAliases": [],
|
|
9649
|
-
"id": "
|
|
8863
|
+
"id": "theme:list",
|
|
9650
8864
|
"pluginAlias": "@proletariat/cli",
|
|
9651
8865
|
"pluginName": "@proletariat/cli",
|
|
9652
8866
|
"pluginType": "core",
|
|
9653
8867
|
"strict": true,
|
|
8868
|
+
"enableJsonFlag": false,
|
|
9654
8869
|
"isESM": true,
|
|
9655
8870
|
"relativePath": [
|
|
9656
8871
|
"dist",
|
|
9657
8872
|
"commands",
|
|
9658
|
-
"
|
|
9659
|
-
"
|
|
8873
|
+
"theme",
|
|
8874
|
+
"list.js"
|
|
9660
8875
|
]
|
|
9661
8876
|
},
|
|
9662
|
-
"
|
|
8877
|
+
"theme:set": {
|
|
9663
8878
|
"aliases": [],
|
|
9664
8879
|
"args": {
|
|
9665
|
-
"
|
|
9666
|
-
"description": "
|
|
9667
|
-
"name": "
|
|
8880
|
+
"theme": {
|
|
8881
|
+
"description": "Theme ID to set as active",
|
|
8882
|
+
"name": "theme",
|
|
9668
8883
|
"required": false
|
|
9669
8884
|
}
|
|
9670
8885
|
},
|
|
9671
|
-
"description": "
|
|
8886
|
+
"description": "Set the active theme for this workspace",
|
|
9672
8887
|
"examples": [
|
|
9673
|
-
"<%= config.bin %> <%= command.id %>
|
|
9674
|
-
"<%= config.bin %> <%= command.id %>
|
|
9675
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --description-file ./spec.md",
|
|
9676
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --priority P1",
|
|
9677
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --category bug",
|
|
9678
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --labels frontend,urgent",
|
|
9679
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --status \"In Progress\"",
|
|
9680
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --title \"Fix auth\" --priority P0 --status \"In Progress\" --json",
|
|
9681
|
-
"<%= config.bin %> <%= command.id %> --bulk --priority P1"
|
|
8888
|
+
"<%= config.bin %> <%= command.id %> billionaires",
|
|
8889
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9682
8890
|
],
|
|
9683
8891
|
"flags": {
|
|
9684
|
-
"project": {
|
|
9685
|
-
"char": "P",
|
|
9686
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9687
|
-
"name": "project",
|
|
9688
|
-
"hasDynamicHelp": false,
|
|
9689
|
-
"multiple": false,
|
|
9690
|
-
"type": "option"
|
|
9691
|
-
},
|
|
9692
8892
|
"json": {
|
|
9693
8893
|
"description": "Output as JSON for AI agents/scripts",
|
|
9694
8894
|
"name": "json",
|
|
@@ -9701,80 +8901,11 @@
|
|
|
9701
8901
|
"name": "machine",
|
|
9702
8902
|
"allowNo": false,
|
|
9703
8903
|
"type": "boolean"
|
|
9704
|
-
},
|
|
9705
|
-
"title": {
|
|
9706
|
-
"char": "t",
|
|
9707
|
-
"description": "Set ticket title",
|
|
9708
|
-
"name": "title",
|
|
9709
|
-
"hasDynamicHelp": false,
|
|
9710
|
-
"multiple": false,
|
|
9711
|
-
"type": "option"
|
|
9712
|
-
},
|
|
9713
|
-
"description": {
|
|
9714
|
-
"char": "d",
|
|
9715
|
-
"description": "Set ticket description",
|
|
9716
|
-
"name": "description",
|
|
9717
|
-
"hasDynamicHelp": false,
|
|
9718
|
-
"multiple": false,
|
|
9719
|
-
"type": "option"
|
|
9720
|
-
},
|
|
9721
|
-
"description-file": {
|
|
9722
|
-
"description": "Read ticket description from a file",
|
|
9723
|
-
"name": "description-file",
|
|
9724
|
-
"hasDynamicHelp": false,
|
|
9725
|
-
"multiple": false,
|
|
9726
|
-
"type": "option"
|
|
9727
|
-
},
|
|
9728
|
-
"priority": {
|
|
9729
|
-
"char": "p",
|
|
9730
|
-
"description": "Set priority (uses workspace priority scale, \"none\" to clear)",
|
|
9731
|
-
"name": "priority",
|
|
9732
|
-
"hasDynamicHelp": false,
|
|
9733
|
-
"multiple": false,
|
|
9734
|
-
"type": "option"
|
|
9735
|
-
},
|
|
9736
|
-
"category": {
|
|
9737
|
-
"char": "c",
|
|
9738
|
-
"description": "Set category (e.g., feature, bug, refactor, \"none\" to clear)",
|
|
9739
|
-
"name": "category",
|
|
9740
|
-
"hasDynamicHelp": false,
|
|
9741
|
-
"multiple": false,
|
|
9742
|
-
"type": "option"
|
|
9743
|
-
},
|
|
9744
|
-
"labels": {
|
|
9745
|
-
"char": "l",
|
|
9746
|
-
"description": "Set labels (comma-separated, replaces existing labels; use \"\" to clear)",
|
|
9747
|
-
"name": "labels",
|
|
9748
|
-
"hasDynamicHelp": false,
|
|
9749
|
-
"multiple": false,
|
|
9750
|
-
"type": "option"
|
|
9751
|
-
},
|
|
9752
|
-
"status": {
|
|
9753
|
-
"char": "s",
|
|
9754
|
-
"description": "Set status/column (e.g., \"In Progress\", \"Done\")",
|
|
9755
|
-
"name": "status",
|
|
9756
|
-
"hasDynamicHelp": false,
|
|
9757
|
-
"multiple": false,
|
|
9758
|
-
"type": "option"
|
|
9759
|
-
},
|
|
9760
|
-
"bulk": {
|
|
9761
|
-
"char": "b",
|
|
9762
|
-
"description": "Enable bulk mode to update multiple tickets",
|
|
9763
|
-
"name": "bulk",
|
|
9764
|
-
"allowNo": false,
|
|
9765
|
-
"type": "boolean"
|
|
9766
|
-
},
|
|
9767
|
-
"force": {
|
|
9768
|
-
"char": "f",
|
|
9769
|
-
"description": "Skip confirmation prompt",
|
|
9770
|
-
"name": "force",
|
|
9771
|
-
"allowNo": false,
|
|
9772
|
-
"type": "boolean"
|
|
9773
8904
|
}
|
|
9774
8905
|
},
|
|
9775
8906
|
"hasDynamicHelp": false,
|
|
9776
8907
|
"hiddenAliases": [],
|
|
9777
|
-
"id": "
|
|
8908
|
+
"id": "theme:set",
|
|
9778
8909
|
"pluginAlias": "@proletariat/cli",
|
|
9779
8910
|
"pluginName": "@proletariat/cli",
|
|
9780
8911
|
"pluginType": "core",
|
|
@@ -9783,8 +8914,9 @@
|
|
|
9783
8914
|
"relativePath": [
|
|
9784
8915
|
"dist",
|
|
9785
8916
|
"commands",
|
|
9786
|
-
"
|
|
9787
|
-
"
|
|
8917
|
+
"agent",
|
|
8918
|
+
"themes",
|
|
8919
|
+
"set.js"
|
|
9788
8920
|
]
|
|
9789
8921
|
},
|
|
9790
8922
|
"tools:add": {
|
|
@@ -10333,6 +9465,76 @@
|
|
|
10333
9465
|
"bump.js"
|
|
10334
9466
|
]
|
|
10335
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
|
+
},
|
|
10336
9538
|
"workspace:add": {
|
|
10337
9539
|
"aliases": [],
|
|
10338
9540
|
"args": {
|
|
@@ -11174,7 +10376,7 @@
|
|
|
11174
10376
|
"type": "boolean"
|
|
11175
10377
|
},
|
|
11176
10378
|
"team": {
|
|
11177
|
-
"description": "Linear team key (
|
|
10379
|
+
"description": "Linear team key (auto-detected from workspace config)",
|
|
11178
10380
|
"name": "team",
|
|
11179
10381
|
"hasDynamicHelp": false,
|
|
11180
10382
|
"multiple": false,
|
|
@@ -13843,5 +13045,5 @@
|
|
|
13843
13045
|
]
|
|
13844
13046
|
}
|
|
13845
13047
|
},
|
|
13846
|
-
"version": "0.3.
|
|
13048
|
+
"version": "0.3.98"
|
|
13847
13049
|
}
|