@proletariat/cli 0.3.98 → 0.3.100
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 +30 -3
- package/dist/commands/orchestrate/index.js.map +1 -1
- package/dist/commands/qa/index.js +1 -1
- package/dist/commands/ticket/create.d.ts +44 -0
- package/dist/commands/ticket/create.js +754 -0
- package/dist/commands/ticket/create.js.map +1 -0
- package/dist/commands/ticket/delete.d.ts +17 -0
- package/dist/commands/ticket/delete.js +204 -0
- package/dist/commands/ticket/delete.js.map +1 -0
- package/dist/commands/ticket/edit.d.ts +28 -0
- package/dist/commands/ticket/edit.js +402 -0
- package/dist/commands/ticket/edit.js.map +1 -0
- package/dist/commands/ticket/index.d.ts +13 -0
- package/dist/commands/ticket/index.js +74 -0
- package/dist/commands/ticket/index.js.map +1 -0
- package/dist/commands/ticket/list.d.ts +33 -0
- package/dist/commands/ticket/list.js +519 -0
- package/dist/commands/ticket/list.js.map +1 -0
- package/dist/commands/ticket/move.d.ts +27 -0
- package/dist/commands/ticket/move.js +413 -0
- package/dist/commands/ticket/move.js.map +1 -0
- package/dist/commands/ticket/show.d.ts +14 -0
- package/dist/commands/ticket/show.js +110 -0
- package/dist/commands/ticket/show.js.map +1 -0
- package/dist/commands/ticket/update.d.ts +28 -0
- package/dist/commands/ticket/update.js +458 -0
- package/dist/commands/ticket/update.js.map +1 -0
- package/dist/lib/execution/preflight.js +1 -1
- package/dist/lib/execution/preflight.js.map +1 -1
- package/dist/lib/mcp/tools/action.d.ts +6 -0
- package/dist/lib/mcp/tools/action.js +123 -0
- package/dist/lib/mcp/tools/action.js.map +1 -0
- package/dist/lib/mcp/tools/index.d.ts +2 -0
- package/dist/lib/mcp/tools/index.js +2 -0
- package/dist/lib/mcp/tools/index.js.map +1 -1
- package/dist/lib/mcp/tools/ticket.d.ts +6 -0
- package/dist/lib/mcp/tools/ticket.js +464 -0
- package/dist/lib/mcp/tools/ticket.js.map +1 -0
- package/dist/lib/orchestrate/poller.d.ts +22 -0
- package/dist/lib/orchestrate/poller.js +109 -0
- package/dist/lib/orchestrate/poller.js.map +1 -1
- package/dist/lib/sync/engine.js +47 -5
- package/dist/lib/sync/engine.js.map +1 -1
- package/dist/lib/sync/reconciler.d.ts +27 -1
- package/dist/lib/sync/reconciler.js +109 -1
- package/dist/lib/sync/reconciler.js.map +1 -1
- package/oclif.manifest.json +2021 -1153
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1757,6 +1757,66 @@
|
|
|
1757
1757
|
"visit.js"
|
|
1758
1758
|
]
|
|
1759
1759
|
},
|
|
1760
|
+
"autocomplete:setup": {
|
|
1761
|
+
"aliases": [],
|
|
1762
|
+
"args": {},
|
|
1763
|
+
"description": "Auto-detect shell and set up autocomplete",
|
|
1764
|
+
"examples": [
|
|
1765
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1766
|
+
"<%= config.bin %> <%= command.id %> --install",
|
|
1767
|
+
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
1768
|
+
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
1769
|
+
],
|
|
1770
|
+
"flags": {
|
|
1771
|
+
"json": {
|
|
1772
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1773
|
+
"name": "json",
|
|
1774
|
+
"allowNo": false,
|
|
1775
|
+
"type": "boolean"
|
|
1776
|
+
},
|
|
1777
|
+
"machine": {
|
|
1778
|
+
"char": "m",
|
|
1779
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1780
|
+
"name": "machine",
|
|
1781
|
+
"allowNo": false,
|
|
1782
|
+
"type": "boolean"
|
|
1783
|
+
},
|
|
1784
|
+
"install": {
|
|
1785
|
+
"char": "i",
|
|
1786
|
+
"description": "Automatically install to shell config file",
|
|
1787
|
+
"name": "install",
|
|
1788
|
+
"allowNo": false,
|
|
1789
|
+
"type": "boolean"
|
|
1790
|
+
},
|
|
1791
|
+
"shell": {
|
|
1792
|
+
"char": "s",
|
|
1793
|
+
"description": "Override shell detection (zsh, bash, powershell)",
|
|
1794
|
+
"name": "shell",
|
|
1795
|
+
"hasDynamicHelp": false,
|
|
1796
|
+
"multiple": false,
|
|
1797
|
+
"options": [
|
|
1798
|
+
"zsh",
|
|
1799
|
+
"bash",
|
|
1800
|
+
"powershell"
|
|
1801
|
+
],
|
|
1802
|
+
"type": "option"
|
|
1803
|
+
}
|
|
1804
|
+
},
|
|
1805
|
+
"hasDynamicHelp": false,
|
|
1806
|
+
"hiddenAliases": [],
|
|
1807
|
+
"id": "autocomplete:setup",
|
|
1808
|
+
"pluginAlias": "@proletariat/cli",
|
|
1809
|
+
"pluginName": "@proletariat/cli",
|
|
1810
|
+
"pluginType": "core",
|
|
1811
|
+
"strict": true,
|
|
1812
|
+
"isESM": true,
|
|
1813
|
+
"relativePath": [
|
|
1814
|
+
"dist",
|
|
1815
|
+
"commands",
|
|
1816
|
+
"autocomplete",
|
|
1817
|
+
"setup.js"
|
|
1818
|
+
]
|
|
1819
|
+
},
|
|
1760
1820
|
"asana:connect": {
|
|
1761
1821
|
"aliases": [],
|
|
1762
1822
|
"args": {},
|
|
@@ -1972,66 +2032,6 @@
|
|
|
1972
2032
|
"sync.js"
|
|
1973
2033
|
]
|
|
1974
2034
|
},
|
|
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
|
-
},
|
|
2035
2035
|
"branch:create": {
|
|
2036
2036
|
"aliases": [],
|
|
2037
2037
|
"args": {
|
|
@@ -2755,19 +2755,20 @@
|
|
|
2755
2755
|
"open.js"
|
|
2756
2756
|
]
|
|
2757
2757
|
},
|
|
2758
|
-
"
|
|
2758
|
+
"codex": {
|
|
2759
2759
|
"aliases": [],
|
|
2760
|
-
"args": {
|
|
2761
|
-
|
|
2760
|
+
"args": {
|
|
2761
|
+
"task": {
|
|
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)",
|
|
2762
2768
|
"examples": [
|
|
2763
|
-
"<%= config.bin %>
|
|
2764
|
-
"<%= config.bin %>
|
|
2765
|
-
"<%= config.bin %>
|
|
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"
|
|
2769
|
+
"<%= config.bin %> codex \"fix the bug\"",
|
|
2770
|
+
"<%= config.bin %> codex \"add dark mode\" --permission-mode danger",
|
|
2771
|
+
"<%= config.bin %> codex \"add tests\" --directory ./my-project"
|
|
2771
2772
|
],
|
|
2772
2773
|
"flags": {
|
|
2773
2774
|
"json": {
|
|
@@ -2783,32 +2784,36 @@
|
|
|
2783
2784
|
"allowNo": false,
|
|
2784
2785
|
"type": "boolean"
|
|
2785
2786
|
},
|
|
2786
|
-
"
|
|
2787
|
-
"char": "
|
|
2788
|
-
"description": "
|
|
2789
|
-
"name": "
|
|
2787
|
+
"permission-mode": {
|
|
2788
|
+
"char": "p",
|
|
2789
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
2790
|
+
"name": "permission-mode",
|
|
2790
2791
|
"hasDynamicHelp": false,
|
|
2791
|
-
"multiple":
|
|
2792
|
+
"multiple": false,
|
|
2793
|
+
"options": [
|
|
2794
|
+
"danger",
|
|
2795
|
+
"safe"
|
|
2796
|
+
],
|
|
2792
2797
|
"type": "option"
|
|
2793
2798
|
},
|
|
2794
|
-
"
|
|
2795
|
-
"
|
|
2796
|
-
"
|
|
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",
|
|
2799
|
+
"directory": {
|
|
2800
|
+
"description": "Directory to run in (default: cwd)",
|
|
2801
|
+
"name": "directory",
|
|
2804
2802
|
"hasDynamicHelp": false,
|
|
2805
2803
|
"multiple": false,
|
|
2806
2804
|
"type": "option"
|
|
2805
|
+
},
|
|
2806
|
+
"detached": {
|
|
2807
|
+
"char": "d",
|
|
2808
|
+
"description": "Run in background (detached)",
|
|
2809
|
+
"name": "detached",
|
|
2810
|
+
"allowNo": false,
|
|
2811
|
+
"type": "boolean"
|
|
2807
2812
|
}
|
|
2808
2813
|
},
|
|
2809
2814
|
"hasDynamicHelp": false,
|
|
2810
2815
|
"hiddenAliases": [],
|
|
2811
|
-
"id": "
|
|
2816
|
+
"id": "codex",
|
|
2812
2817
|
"pluginAlias": "@proletariat/cli",
|
|
2813
2818
|
"pluginName": "@proletariat/cli",
|
|
2814
2819
|
"pluginType": "core",
|
|
@@ -2817,24 +2822,23 @@
|
|
|
2817
2822
|
"relativePath": [
|
|
2818
2823
|
"dist",
|
|
2819
2824
|
"commands",
|
|
2820
|
-
"
|
|
2825
|
+
"codex",
|
|
2821
2826
|
"index.js"
|
|
2822
2827
|
]
|
|
2823
2828
|
},
|
|
2824
|
-
"
|
|
2829
|
+
"config": {
|
|
2825
2830
|
"aliases": [],
|
|
2826
|
-
"args": {
|
|
2827
|
-
|
|
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)",
|
|
2831
|
+
"args": {},
|
|
2832
|
+
"description": "View and update workspace configuration",
|
|
2834
2833
|
"examples": [
|
|
2835
|
-
"<%= config.bin %>
|
|
2836
|
-
"<%= config.bin %>
|
|
2837
|
-
"<%= config.bin %>
|
|
2834
|
+
"<%= config.bin %> <%= command.id %> # Interactive menu",
|
|
2835
|
+
"<%= config.bin %> <%= command.id %> --json # Output current config as JSON",
|
|
2836
|
+
"<%= config.bin %> <%= command.id %> --set terminal.app iTerm",
|
|
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"
|
|
2838
2842
|
],
|
|
2839
2843
|
"flags": {
|
|
2840
2844
|
"json": {
|
|
@@ -2850,36 +2854,32 @@
|
|
|
2850
2854
|
"allowNo": false,
|
|
2851
2855
|
"type": "boolean"
|
|
2852
2856
|
},
|
|
2853
|
-
"
|
|
2854
|
-
"char": "
|
|
2855
|
-
"description": "
|
|
2856
|
-
"name": "
|
|
2857
|
+
"set": {
|
|
2858
|
+
"char": "s",
|
|
2859
|
+
"description": "Set a config value (format: key value)",
|
|
2860
|
+
"name": "set",
|
|
2857
2861
|
"hasDynamicHelp": false,
|
|
2858
|
-
"multiple":
|
|
2859
|
-
"options": [
|
|
2860
|
-
"danger",
|
|
2861
|
-
"safe"
|
|
2862
|
-
],
|
|
2862
|
+
"multiple": true,
|
|
2863
2863
|
"type": "option"
|
|
2864
2864
|
},
|
|
2865
|
-
"
|
|
2866
|
-
"
|
|
2867
|
-
"
|
|
2865
|
+
"list": {
|
|
2866
|
+
"char": "l",
|
|
2867
|
+
"description": "List all configuration values",
|
|
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",
|
|
2868
2875
|
"hasDynamicHelp": false,
|
|
2869
2876
|
"multiple": false,
|
|
2870
2877
|
"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": "config",
|
|
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
|
+
"config",
|
|
2892
2892
|
"index.js"
|
|
2893
2893
|
]
|
|
2894
2894
|
},
|
|
@@ -3009,41 +3009,20 @@
|
|
|
3009
3009
|
"repair.js"
|
|
3010
3010
|
]
|
|
3011
3011
|
},
|
|
3012
|
-
"
|
|
3012
|
+
"execution:config": {
|
|
3013
3013
|
"aliases": [],
|
|
3014
3014
|
"args": {},
|
|
3015
|
-
"description": "
|
|
3015
|
+
"description": "View and update execution preferences",
|
|
3016
3016
|
"examples": [
|
|
3017
|
-
"<%= config.bin %>
|
|
3018
|
-
"<%= config.bin %>
|
|
3019
|
-
"<%= config.bin %>
|
|
3017
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
3018
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3019
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
3020
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3021
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3022
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3023
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3020
3024
|
],
|
|
3021
3025
|
"flags": {
|
|
3022
|
-
"force": {
|
|
3023
|
-
"aliases": [
|
|
3024
|
-
"yes",
|
|
3025
|
-
"y"
|
|
3026
|
-
],
|
|
3027
|
-
"char": "f",
|
|
3028
|
-
"description": "Skip confirmation prompt",
|
|
3029
|
-
"name": "force",
|
|
3030
|
-
"allowNo": false,
|
|
3031
|
-
"type": "boolean"
|
|
3032
|
-
},
|
|
3033
|
-
"dry-run": {
|
|
3034
|
-
"char": "d",
|
|
3035
|
-
"description": "Show what would be removed without removing",
|
|
3036
|
-
"name": "dry-run",
|
|
3037
|
-
"allowNo": false,
|
|
3038
|
-
"type": "boolean"
|
|
3039
|
-
},
|
|
3040
|
-
"all": {
|
|
3041
|
-
"char": "a",
|
|
3042
|
-
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3043
|
-
"name": "all",
|
|
3044
|
-
"allowNo": false,
|
|
3045
|
-
"type": "boolean"
|
|
3046
|
-
},
|
|
3047
3026
|
"json": {
|
|
3048
3027
|
"description": "Output as JSON for AI agents/scripts",
|
|
3049
3028
|
"name": "json",
|
|
@@ -3056,41 +3035,54 @@
|
|
|
3056
3035
|
"name": "machine",
|
|
3057
3036
|
"allowNo": false,
|
|
3058
3037
|
"type": "boolean"
|
|
3038
|
+
},
|
|
3039
|
+
"set": {
|
|
3040
|
+
"char": "s",
|
|
3041
|
+
"description": "Set a config value (format: key value)",
|
|
3042
|
+
"name": "set",
|
|
3043
|
+
"hasDynamicHelp": false,
|
|
3044
|
+
"multiple": true,
|
|
3045
|
+
"type": "option"
|
|
3046
|
+
},
|
|
3047
|
+
"list": {
|
|
3048
|
+
"char": "l",
|
|
3049
|
+
"description": "List all configuration values",
|
|
3050
|
+
"name": "list",
|
|
3051
|
+
"allowNo": false,
|
|
3052
|
+
"type": "boolean"
|
|
3053
|
+
},
|
|
3054
|
+
"setting": {
|
|
3055
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
3056
|
+
"name": "setting",
|
|
3057
|
+
"hasDynamicHelp": false,
|
|
3058
|
+
"multiple": false,
|
|
3059
|
+
"type": "option"
|
|
3059
3060
|
}
|
|
3060
3061
|
},
|
|
3061
3062
|
"hasDynamicHelp": false,
|
|
3062
3063
|
"hiddenAliases": [],
|
|
3063
|
-
"id": "
|
|
3064
|
+
"id": "execution:config",
|
|
3064
3065
|
"pluginAlias": "@proletariat/cli",
|
|
3065
3066
|
"pluginName": "@proletariat/cli",
|
|
3066
3067
|
"pluginType": "core",
|
|
3067
3068
|
"strict": true,
|
|
3068
|
-
"enableJsonFlag": false,
|
|
3069
3069
|
"isESM": true,
|
|
3070
3070
|
"relativePath": [
|
|
3071
3071
|
"dist",
|
|
3072
3072
|
"commands",
|
|
3073
|
-
"
|
|
3074
|
-
"
|
|
3073
|
+
"execution",
|
|
3074
|
+
"config.js"
|
|
3075
3075
|
]
|
|
3076
3076
|
},
|
|
3077
|
-
"
|
|
3077
|
+
"execution": {
|
|
3078
3078
|
"aliases": [],
|
|
3079
3079
|
"args": {},
|
|
3080
|
-
"description": "
|
|
3080
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
3081
3081
|
"examples": [
|
|
3082
3082
|
"<%= config.bin %> <%= command.id %>",
|
|
3083
|
-
"<%= config.bin %>
|
|
3084
|
-
"<%= config.bin %>
|
|
3085
|
-
"<%= config.bin %>
|
|
3086
|
-
"<%= config.bin %> docker start WORK-001",
|
|
3087
|
-
"<%= config.bin %> docker stop kalanick",
|
|
3088
|
-
"<%= config.bin %> docker shell WORK-001",
|
|
3089
|
-
"<%= config.bin %> docker restart abc123",
|
|
3090
|
-
"<%= config.bin %> docker sync",
|
|
3091
|
-
"<%= config.bin %> docker rebuild-cache",
|
|
3092
|
-
"<%= config.bin %> docker clean",
|
|
3093
|
-
"<%= config.bin %> docker prune"
|
|
3083
|
+
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
3084
|
+
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
3085
|
+
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
3094
3086
|
],
|
|
3095
3087
|
"flags": {
|
|
3096
3088
|
"json": {
|
|
@@ -3109,7 +3101,7 @@
|
|
|
3109
3101
|
},
|
|
3110
3102
|
"hasDynamicHelp": false,
|
|
3111
3103
|
"hiddenAliases": [],
|
|
3112
|
-
"id": "
|
|
3104
|
+
"id": "execution",
|
|
3113
3105
|
"pluginAlias": "@proletariat/cli",
|
|
3114
3106
|
"pluginName": "@proletariat/cli",
|
|
3115
3107
|
"pluginType": "core",
|
|
@@ -3118,18 +3110,19 @@
|
|
|
3118
3110
|
"relativePath": [
|
|
3119
3111
|
"dist",
|
|
3120
3112
|
"commands",
|
|
3121
|
-
"
|
|
3113
|
+
"execution",
|
|
3122
3114
|
"index.js"
|
|
3123
3115
|
]
|
|
3124
3116
|
},
|
|
3125
|
-
"
|
|
3117
|
+
"execution:list": {
|
|
3126
3118
|
"aliases": [],
|
|
3127
3119
|
"args": {},
|
|
3128
|
-
"description": "
|
|
3120
|
+
"description": "List running and recent executions",
|
|
3129
3121
|
"examples": [
|
|
3130
3122
|
"<%= config.bin %> <%= command.id %>",
|
|
3131
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3132
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3123
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
3124
|
+
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
3125
|
+
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3133
3126
|
],
|
|
3134
3127
|
"flags": {
|
|
3135
3128
|
"json": {
|
|
@@ -3145,52 +3138,69 @@
|
|
|
3145
3138
|
"allowNo": false,
|
|
3146
3139
|
"type": "boolean"
|
|
3147
3140
|
},
|
|
3148
|
-
"
|
|
3141
|
+
"status": {
|
|
3142
|
+
"char": "s",
|
|
3143
|
+
"description": "Filter by status",
|
|
3144
|
+
"name": "status",
|
|
3145
|
+
"hasDynamicHelp": false,
|
|
3146
|
+
"multiple": false,
|
|
3147
|
+
"options": [
|
|
3148
|
+
"starting",
|
|
3149
|
+
"running",
|
|
3150
|
+
"completed",
|
|
3151
|
+
"failed",
|
|
3152
|
+
"stopped"
|
|
3153
|
+
],
|
|
3154
|
+
"type": "option"
|
|
3155
|
+
},
|
|
3156
|
+
"agent": {
|
|
3149
3157
|
"char": "a",
|
|
3150
|
-
"description": "
|
|
3151
|
-
"name": "
|
|
3152
|
-
"
|
|
3153
|
-
"
|
|
3158
|
+
"description": "Filter by agent name",
|
|
3159
|
+
"name": "agent",
|
|
3160
|
+
"hasDynamicHelp": false,
|
|
3161
|
+
"multiple": false,
|
|
3162
|
+
"type": "option"
|
|
3154
3163
|
},
|
|
3155
|
-
"
|
|
3156
|
-
"char": "
|
|
3157
|
-
"description": "
|
|
3158
|
-
"name": "
|
|
3159
|
-
"
|
|
3160
|
-
"
|
|
3164
|
+
"limit": {
|
|
3165
|
+
"char": "l",
|
|
3166
|
+
"description": "Number of results",
|
|
3167
|
+
"name": "limit",
|
|
3168
|
+
"default": 20,
|
|
3169
|
+
"hasDynamicHelp": false,
|
|
3170
|
+
"multiple": false,
|
|
3171
|
+
"type": "option"
|
|
3161
3172
|
}
|
|
3162
3173
|
},
|
|
3163
3174
|
"hasDynamicHelp": false,
|
|
3164
3175
|
"hiddenAliases": [],
|
|
3165
|
-
"id": "
|
|
3176
|
+
"id": "execution:list",
|
|
3166
3177
|
"pluginAlias": "@proletariat/cli",
|
|
3167
3178
|
"pluginName": "@proletariat/cli",
|
|
3168
3179
|
"pluginType": "core",
|
|
3169
3180
|
"strict": true,
|
|
3170
|
-
"enableJsonFlag": false,
|
|
3171
3181
|
"isESM": true,
|
|
3172
3182
|
"relativePath": [
|
|
3173
3183
|
"dist",
|
|
3174
3184
|
"commands",
|
|
3175
|
-
"
|
|
3185
|
+
"execution",
|
|
3176
3186
|
"list.js"
|
|
3177
3187
|
]
|
|
3178
3188
|
},
|
|
3179
|
-
"
|
|
3189
|
+
"execution:logs": {
|
|
3180
3190
|
"aliases": [],
|
|
3181
3191
|
"args": {
|
|
3182
|
-
"
|
|
3183
|
-
"description": "Execution ID
|
|
3184
|
-
"name": "
|
|
3185
|
-
"required":
|
|
3192
|
+
"id": {
|
|
3193
|
+
"description": "Execution ID - prompts if not provided",
|
|
3194
|
+
"name": "id",
|
|
3195
|
+
"required": false
|
|
3186
3196
|
}
|
|
3187
3197
|
},
|
|
3188
|
-
"description": "View
|
|
3198
|
+
"description": "View execution logs",
|
|
3189
3199
|
"examples": [
|
|
3190
3200
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3191
|
-
"<%= config.bin %> <%= command.id %>
|
|
3192
|
-
"<%= config.bin %> <%= command.id %>
|
|
3193
|
-
"<%= config.bin %> <%= command.id %>
|
|
3201
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
3202
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
3203
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3194
3204
|
],
|
|
3195
3205
|
"flags": {
|
|
3196
3206
|
"json": {
|
|
@@ -3208,86 +3218,54 @@
|
|
|
3208
3218
|
},
|
|
3209
3219
|
"follow": {
|
|
3210
3220
|
"char": "f",
|
|
3211
|
-
"description": "
|
|
3221
|
+
"description": "Stream logs in real-time",
|
|
3212
3222
|
"name": "follow",
|
|
3213
3223
|
"allowNo": false,
|
|
3214
3224
|
"type": "boolean"
|
|
3215
3225
|
},
|
|
3216
3226
|
"tail": {
|
|
3217
3227
|
"char": "n",
|
|
3218
|
-
"description": "
|
|
3228
|
+
"description": "Show last n lines",
|
|
3219
3229
|
"name": "tail",
|
|
3220
|
-
"default": 100,
|
|
3221
3230
|
"hasDynamicHelp": false,
|
|
3222
3231
|
"multiple": false,
|
|
3223
3232
|
"type": "option"
|
|
3224
|
-
},
|
|
3225
|
-
"timestamps": {
|
|
3226
|
-
"char": "t",
|
|
3227
|
-
"description": "Show timestamps",
|
|
3228
|
-
"name": "timestamps",
|
|
3229
|
-
"allowNo": false,
|
|
3230
|
-
"type": "boolean"
|
|
3231
3233
|
}
|
|
3232
3234
|
},
|
|
3233
3235
|
"hasDynamicHelp": false,
|
|
3234
3236
|
"hiddenAliases": [],
|
|
3235
|
-
"id": "
|
|
3237
|
+
"id": "execution:logs",
|
|
3236
3238
|
"pluginAlias": "@proletariat/cli",
|
|
3237
3239
|
"pluginName": "@proletariat/cli",
|
|
3238
3240
|
"pluginType": "core",
|
|
3239
3241
|
"strict": true,
|
|
3240
|
-
"enableJsonFlag": false,
|
|
3241
3242
|
"isESM": true,
|
|
3242
3243
|
"relativePath": [
|
|
3243
3244
|
"dist",
|
|
3244
3245
|
"commands",
|
|
3245
|
-
"
|
|
3246
|
+
"execution",
|
|
3246
3247
|
"logs.js"
|
|
3247
3248
|
]
|
|
3248
3249
|
},
|
|
3249
|
-
"
|
|
3250
|
+
"execution:stop": {
|
|
3250
3251
|
"aliases": [],
|
|
3251
|
-
"args": {
|
|
3252
|
-
|
|
3252
|
+
"args": {
|
|
3253
|
+
"id": {
|
|
3254
|
+
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
3255
|
+
"name": "id",
|
|
3256
|
+
"required": false
|
|
3257
|
+
}
|
|
3258
|
+
},
|
|
3259
|
+
"description": "Stop running execution(s)",
|
|
3253
3260
|
"examples": [
|
|
3254
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3261
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3262
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
3263
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
3255
3264
|
"<%= config.bin %> <%= command.id %> --all",
|
|
3256
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3257
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3265
|
+
"<%= config.bin %> <%= command.id %> --all --force",
|
|
3266
|
+
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
3258
3267
|
],
|
|
3259
3268
|
"flags": {
|
|
3260
|
-
"force": {
|
|
3261
|
-
"aliases": [
|
|
3262
|
-
"yes",
|
|
3263
|
-
"y"
|
|
3264
|
-
],
|
|
3265
|
-
"char": "f",
|
|
3266
|
-
"description": "Skip confirmation prompt",
|
|
3267
|
-
"name": "force",
|
|
3268
|
-
"allowNo": false,
|
|
3269
|
-
"type": "boolean"
|
|
3270
|
-
},
|
|
3271
|
-
"dry-run": {
|
|
3272
|
-
"char": "d",
|
|
3273
|
-
"description": "Show what would be removed without removing",
|
|
3274
|
-
"name": "dry-run",
|
|
3275
|
-
"allowNo": false,
|
|
3276
|
-
"type": "boolean"
|
|
3277
|
-
},
|
|
3278
|
-
"all": {
|
|
3279
|
-
"char": "a",
|
|
3280
|
-
"description": "Remove all unused images, not just dangling ones",
|
|
3281
|
-
"name": "all",
|
|
3282
|
-
"allowNo": false,
|
|
3283
|
-
"type": "boolean"
|
|
3284
|
-
},
|
|
3285
|
-
"volumes": {
|
|
3286
|
-
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3287
|
-
"name": "volumes",
|
|
3288
|
-
"allowNo": false,
|
|
3289
|
-
"type": "boolean"
|
|
3290
|
-
},
|
|
3291
3269
|
"json": {
|
|
3292
3270
|
"description": "Output as JSON for AI agents/scripts",
|
|
3293
3271
|
"name": "json",
|
|
@@ -3300,46 +3278,59 @@
|
|
|
3300
3278
|
"name": "machine",
|
|
3301
3279
|
"allowNo": false,
|
|
3302
3280
|
"type": "boolean"
|
|
3281
|
+
},
|
|
3282
|
+
"force": {
|
|
3283
|
+
"char": "f",
|
|
3284
|
+
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
3285
|
+
"name": "force",
|
|
3286
|
+
"allowNo": false,
|
|
3287
|
+
"type": "boolean"
|
|
3288
|
+
},
|
|
3289
|
+
"all": {
|
|
3290
|
+
"description": "Stop all running executions",
|
|
3291
|
+
"name": "all",
|
|
3292
|
+
"allowNo": false,
|
|
3293
|
+
"type": "boolean"
|
|
3294
|
+
},
|
|
3295
|
+
"agent": {
|
|
3296
|
+
"char": "a",
|
|
3297
|
+
"description": "Stop all executions for a specific agent",
|
|
3298
|
+
"name": "agent",
|
|
3299
|
+
"hasDynamicHelp": false,
|
|
3300
|
+
"multiple": false,
|
|
3301
|
+
"type": "option"
|
|
3303
3302
|
}
|
|
3304
3303
|
},
|
|
3305
3304
|
"hasDynamicHelp": false,
|
|
3306
3305
|
"hiddenAliases": [],
|
|
3307
|
-
"id": "
|
|
3306
|
+
"id": "execution:stop",
|
|
3308
3307
|
"pluginAlias": "@proletariat/cli",
|
|
3309
3308
|
"pluginName": "@proletariat/cli",
|
|
3310
3309
|
"pluginType": "core",
|
|
3311
3310
|
"strict": true,
|
|
3312
|
-
"enableJsonFlag": false,
|
|
3313
3311
|
"isESM": true,
|
|
3314
3312
|
"relativePath": [
|
|
3315
3313
|
"dist",
|
|
3316
3314
|
"commands",
|
|
3317
|
-
"
|
|
3318
|
-
"
|
|
3315
|
+
"execution",
|
|
3316
|
+
"stop.js"
|
|
3319
3317
|
]
|
|
3320
3318
|
},
|
|
3321
|
-
"
|
|
3319
|
+
"execution:view": {
|
|
3322
3320
|
"aliases": [],
|
|
3323
|
-
"args": {
|
|
3324
|
-
|
|
3321
|
+
"args": {
|
|
3322
|
+
"id": {
|
|
3323
|
+
"description": "Execution ID - prompts if not provided",
|
|
3324
|
+
"name": "id",
|
|
3325
|
+
"required": false
|
|
3326
|
+
}
|
|
3327
|
+
},
|
|
3328
|
+
"description": "View details of a specific execution",
|
|
3325
3329
|
"examples": [
|
|
3326
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3327
|
-
"<%= config.bin %> <%= command.id %>
|
|
3330
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3331
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3328
3332
|
],
|
|
3329
3333
|
"flags": {
|
|
3330
|
-
"force": {
|
|
3331
|
-
"char": "f",
|
|
3332
|
-
"description": "Delete and rebuild the cache even if it already exists",
|
|
3333
|
-
"name": "force",
|
|
3334
|
-
"allowNo": false,
|
|
3335
|
-
"type": "boolean"
|
|
3336
|
-
},
|
|
3337
|
-
"delete-only": {
|
|
3338
|
-
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3339
|
-
"name": "delete-only",
|
|
3340
|
-
"allowNo": false,
|
|
3341
|
-
"type": "boolean"
|
|
3342
|
-
},
|
|
3343
3334
|
"json": {
|
|
3344
3335
|
"description": "Output as JSON for AI agents/scripts",
|
|
3345
3336
|
"name": "json",
|
|
@@ -3356,56 +3347,28 @@
|
|
|
3356
3347
|
},
|
|
3357
3348
|
"hasDynamicHelp": false,
|
|
3358
3349
|
"hiddenAliases": [],
|
|
3359
|
-
"id": "
|
|
3350
|
+
"id": "execution:view",
|
|
3360
3351
|
"pluginAlias": "@proletariat/cli",
|
|
3361
3352
|
"pluginName": "@proletariat/cli",
|
|
3362
3353
|
"pluginType": "core",
|
|
3363
3354
|
"strict": true,
|
|
3364
|
-
"enableJsonFlag": false,
|
|
3365
3355
|
"isESM": true,
|
|
3366
3356
|
"relativePath": [
|
|
3367
3357
|
"dist",
|
|
3368
3358
|
"commands",
|
|
3369
|
-
"
|
|
3370
|
-
"
|
|
3359
|
+
"execution",
|
|
3360
|
+
"view.js"
|
|
3371
3361
|
]
|
|
3372
3362
|
},
|
|
3373
|
-
"
|
|
3363
|
+
"feedback": {
|
|
3374
3364
|
"aliases": [],
|
|
3375
|
-
"args": {
|
|
3376
|
-
|
|
3377
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3378
|
-
"name": "target",
|
|
3379
|
-
"required": true
|
|
3380
|
-
}
|
|
3381
|
-
},
|
|
3382
|
-
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3365
|
+
"args": {},
|
|
3366
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
3383
3367
|
"examples": [
|
|
3384
|
-
"<%= config.bin %> <%= command.id %>
|
|
3385
|
-
"<%= config.bin %> <%= command.id %>
|
|
3386
|
-
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3368
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3369
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
3387
3370
|
],
|
|
3388
3371
|
"flags": {
|
|
3389
|
-
"force": {
|
|
3390
|
-
"aliases": [
|
|
3391
|
-
"yes",
|
|
3392
|
-
"y"
|
|
3393
|
-
],
|
|
3394
|
-
"char": "f",
|
|
3395
|
-
"description": "Skip confirmation prompt",
|
|
3396
|
-
"name": "force",
|
|
3397
|
-
"allowNo": false,
|
|
3398
|
-
"type": "boolean"
|
|
3399
|
-
},
|
|
3400
|
-
"time": {
|
|
3401
|
-
"char": "t",
|
|
3402
|
-
"description": "Seconds to wait before killing the container during stop",
|
|
3403
|
-
"name": "time",
|
|
3404
|
-
"default": 10,
|
|
3405
|
-
"hasDynamicHelp": false,
|
|
3406
|
-
"multiple": false,
|
|
3407
|
-
"type": "option"
|
|
3408
|
-
},
|
|
3409
3372
|
"json": {
|
|
3410
3373
|
"description": "Output as JSON for AI agents/scripts",
|
|
3411
3374
|
"name": "json",
|
|
@@ -3418,11 +3381,24 @@
|
|
|
3418
3381
|
"name": "machine",
|
|
3419
3382
|
"allowNo": false,
|
|
3420
3383
|
"type": "boolean"
|
|
3384
|
+
},
|
|
3385
|
+
"action": {
|
|
3386
|
+
"char": "a",
|
|
3387
|
+
"description": "Action to perform (submit, list, view)",
|
|
3388
|
+
"name": "action",
|
|
3389
|
+
"hasDynamicHelp": false,
|
|
3390
|
+
"multiple": false,
|
|
3391
|
+
"options": [
|
|
3392
|
+
"submit",
|
|
3393
|
+
"list",
|
|
3394
|
+
"view"
|
|
3395
|
+
],
|
|
3396
|
+
"type": "option"
|
|
3421
3397
|
}
|
|
3422
3398
|
},
|
|
3423
3399
|
"hasDynamicHelp": false,
|
|
3424
3400
|
"hiddenAliases": [],
|
|
3425
|
-
"id": "
|
|
3401
|
+
"id": "feedback",
|
|
3426
3402
|
"pluginAlias": "@proletariat/cli",
|
|
3427
3403
|
"pluginName": "@proletariat/cli",
|
|
3428
3404
|
"pluginType": "core",
|
|
@@ -3432,24 +3408,19 @@
|
|
|
3432
3408
|
"relativePath": [
|
|
3433
3409
|
"dist",
|
|
3434
3410
|
"commands",
|
|
3435
|
-
"
|
|
3436
|
-
"
|
|
3411
|
+
"feedback",
|
|
3412
|
+
"index.js"
|
|
3437
3413
|
]
|
|
3438
3414
|
},
|
|
3439
|
-
"
|
|
3415
|
+
"feedback:list": {
|
|
3440
3416
|
"aliases": [],
|
|
3441
|
-
"args": {
|
|
3442
|
-
|
|
3443
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3444
|
-
"name": "target",
|
|
3445
|
-
"required": true
|
|
3446
|
-
}
|
|
3447
|
-
},
|
|
3448
|
-
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
3417
|
+
"args": {},
|
|
3418
|
+
"description": "List recent feedback issues from the repository",
|
|
3449
3419
|
"examples": [
|
|
3450
|
-
"<%= config.bin %> <%= command.id %>
|
|
3451
|
-
"<%= config.bin %> <%= command.id %>
|
|
3452
|
-
"<%= config.bin %> <%= command.id %>
|
|
3420
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3421
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
3422
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
3423
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
3453
3424
|
],
|
|
3454
3425
|
"flags": {
|
|
3455
3426
|
"json": {
|
|
@@ -3465,27 +3436,38 @@
|
|
|
3465
3436
|
"allowNo": false,
|
|
3466
3437
|
"type": "boolean"
|
|
3467
3438
|
},
|
|
3468
|
-
"
|
|
3469
|
-
"char": "
|
|
3470
|
-
"description": "
|
|
3471
|
-
"name": "
|
|
3472
|
-
"default": "/bin/sh",
|
|
3439
|
+
"category": {
|
|
3440
|
+
"char": "c",
|
|
3441
|
+
"description": "Filter by category (bug, feature, general)",
|
|
3442
|
+
"name": "category",
|
|
3473
3443
|
"hasDynamicHelp": false,
|
|
3474
3444
|
"multiple": false,
|
|
3445
|
+
"options": [
|
|
3446
|
+
"bug",
|
|
3447
|
+
"feature",
|
|
3448
|
+
"general"
|
|
3449
|
+
],
|
|
3475
3450
|
"type": "option"
|
|
3476
3451
|
},
|
|
3477
|
-
"
|
|
3478
|
-
"char": "
|
|
3479
|
-
"description": "
|
|
3480
|
-
"name": "
|
|
3452
|
+
"state": {
|
|
3453
|
+
"char": "s",
|
|
3454
|
+
"description": "Filter by state",
|
|
3455
|
+
"name": "state",
|
|
3456
|
+
"default": "open",
|
|
3481
3457
|
"hasDynamicHelp": false,
|
|
3482
3458
|
"multiple": false,
|
|
3459
|
+
"options": [
|
|
3460
|
+
"open",
|
|
3461
|
+
"closed",
|
|
3462
|
+
"all"
|
|
3463
|
+
],
|
|
3483
3464
|
"type": "option"
|
|
3484
3465
|
},
|
|
3485
|
-
"
|
|
3486
|
-
"char": "
|
|
3487
|
-
"description": "
|
|
3488
|
-
"name": "
|
|
3466
|
+
"limit": {
|
|
3467
|
+
"char": "l",
|
|
3468
|
+
"description": "Maximum number of issues to show",
|
|
3469
|
+
"name": "limit",
|
|
3470
|
+
"default": 20,
|
|
3489
3471
|
"hasDynamicHelp": false,
|
|
3490
3472
|
"multiple": false,
|
|
3491
3473
|
"type": "option"
|
|
@@ -3493,7 +3475,7 @@
|
|
|
3493
3475
|
},
|
|
3494
3476
|
"hasDynamicHelp": false,
|
|
3495
3477
|
"hiddenAliases": [],
|
|
3496
|
-
"id": "
|
|
3478
|
+
"id": "feedback:list",
|
|
3497
3479
|
"pluginAlias": "@proletariat/cli",
|
|
3498
3480
|
"pluginName": "@proletariat/cli",
|
|
3499
3481
|
"pluginType": "core",
|
|
@@ -3503,24 +3485,18 @@
|
|
|
3503
3485
|
"relativePath": [
|
|
3504
3486
|
"dist",
|
|
3505
3487
|
"commands",
|
|
3506
|
-
"
|
|
3507
|
-
"
|
|
3488
|
+
"feedback",
|
|
3489
|
+
"list.js"
|
|
3508
3490
|
]
|
|
3509
3491
|
},
|
|
3510
|
-
"
|
|
3492
|
+
"feedback:submit": {
|
|
3511
3493
|
"aliases": [],
|
|
3512
|
-
"args": {
|
|
3513
|
-
|
|
3514
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3515
|
-
"name": "target",
|
|
3516
|
-
"required": true
|
|
3517
|
-
}
|
|
3518
|
-
},
|
|
3519
|
-
"description": "Start a stopped container (by execution ID, agent name, or container ID)",
|
|
3494
|
+
"args": {},
|
|
3495
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
3520
3496
|
"examples": [
|
|
3521
|
-
"<%= config.bin %> <%= command.id %>
|
|
3522
|
-
"<%= config.bin %> <%= command.id %>
|
|
3523
|
-
"<%= config.bin %> <%= command.id %>
|
|
3497
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3498
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
3499
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
3524
3500
|
],
|
|
3525
3501
|
"flags": {
|
|
3526
3502
|
"json": {
|
|
@@ -3536,36 +3512,64 @@
|
|
|
3536
3512
|
"allowNo": false,
|
|
3537
3513
|
"type": "boolean"
|
|
3538
3514
|
},
|
|
3539
|
-
"
|
|
3540
|
-
"char": "
|
|
3541
|
-
"description": "
|
|
3542
|
-
"name": "
|
|
3543
|
-
"
|
|
3544
|
-
"
|
|
3515
|
+
"title": {
|
|
3516
|
+
"char": "t",
|
|
3517
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
3518
|
+
"name": "title",
|
|
3519
|
+
"hasDynamicHelp": false,
|
|
3520
|
+
"multiple": false,
|
|
3521
|
+
"type": "option"
|
|
3522
|
+
},
|
|
3523
|
+
"body": {
|
|
3524
|
+
"char": "b",
|
|
3525
|
+
"description": "Issue description [required for non-interactive]",
|
|
3526
|
+
"name": "body",
|
|
3527
|
+
"hasDynamicHelp": false,
|
|
3528
|
+
"multiple": false,
|
|
3529
|
+
"type": "option"
|
|
3530
|
+
},
|
|
3531
|
+
"category": {
|
|
3532
|
+
"char": "c",
|
|
3533
|
+
"description": "Feedback category",
|
|
3534
|
+
"name": "category",
|
|
3535
|
+
"hasDynamicHelp": false,
|
|
3536
|
+
"multiple": false,
|
|
3537
|
+
"options": [
|
|
3538
|
+
"bug",
|
|
3539
|
+
"feature",
|
|
3540
|
+
"general"
|
|
3541
|
+
],
|
|
3542
|
+
"type": "option"
|
|
3545
3543
|
}
|
|
3546
3544
|
},
|
|
3547
3545
|
"hasDynamicHelp": false,
|
|
3548
3546
|
"hiddenAliases": [],
|
|
3549
|
-
"id": "
|
|
3547
|
+
"id": "feedback:submit",
|
|
3550
3548
|
"pluginAlias": "@proletariat/cli",
|
|
3551
3549
|
"pluginName": "@proletariat/cli",
|
|
3552
3550
|
"pluginType": "core",
|
|
3553
3551
|
"strict": true,
|
|
3554
|
-
"enableJsonFlag": false,
|
|
3555
3552
|
"isESM": true,
|
|
3556
3553
|
"relativePath": [
|
|
3557
3554
|
"dist",
|
|
3558
3555
|
"commands",
|
|
3559
|
-
"
|
|
3560
|
-
"
|
|
3556
|
+
"feedback",
|
|
3557
|
+
"submit.js"
|
|
3561
3558
|
]
|
|
3562
3559
|
},
|
|
3563
|
-
"
|
|
3560
|
+
"feedback:view": {
|
|
3564
3561
|
"aliases": [],
|
|
3565
|
-
"args": {
|
|
3566
|
-
|
|
3562
|
+
"args": {
|
|
3563
|
+
"number": {
|
|
3564
|
+
"description": "Issue number to view",
|
|
3565
|
+
"name": "number",
|
|
3566
|
+
"required": true
|
|
3567
|
+
}
|
|
3568
|
+
},
|
|
3569
|
+
"description": "View details of a specific feedback issue",
|
|
3567
3570
|
"examples": [
|
|
3568
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3571
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
3572
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
3569
3573
|
],
|
|
3570
3574
|
"flags": {
|
|
3571
3575
|
"json": {
|
|
@@ -3584,7 +3588,7 @@
|
|
|
3584
3588
|
},
|
|
3585
3589
|
"hasDynamicHelp": false,
|
|
3586
3590
|
"hiddenAliases": [],
|
|
3587
|
-
"id": "
|
|
3591
|
+
"id": "feedback:view",
|
|
3588
3592
|
"pluginAlias": "@proletariat/cli",
|
|
3589
3593
|
"pluginName": "@proletariat/cli",
|
|
3590
3594
|
"pluginType": "core",
|
|
@@ -3594,24 +3598,18 @@
|
|
|
3594
3598
|
"relativePath": [
|
|
3595
3599
|
"dist",
|
|
3596
3600
|
"commands",
|
|
3597
|
-
"
|
|
3598
|
-
"
|
|
3601
|
+
"feedback",
|
|
3602
|
+
"view.js"
|
|
3599
3603
|
]
|
|
3600
3604
|
},
|
|
3601
|
-
"docker:
|
|
3605
|
+
"docker:clean": {
|
|
3602
3606
|
"aliases": [],
|
|
3603
|
-
"args": {
|
|
3604
|
-
|
|
3605
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3606
|
-
"name": "target",
|
|
3607
|
-
"required": true
|
|
3608
|
-
}
|
|
3609
|
-
},
|
|
3610
|
-
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
3607
|
+
"args": {},
|
|
3608
|
+
"description": "Remove orphaned containers (containers without running agents)",
|
|
3611
3609
|
"examples": [
|
|
3612
|
-
"<%= config.bin %> <%= command.id %>
|
|
3613
|
-
"<%= config.bin %> <%= command.id %>
|
|
3614
|
-
"<%= config.bin %> <%= command.id %>
|
|
3610
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3611
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
3612
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3615
3613
|
],
|
|
3616
3614
|
"flags": {
|
|
3617
3615
|
"force": {
|
|
@@ -3625,18 +3623,23 @@
|
|
|
3625
3623
|
"allowNo": false,
|
|
3626
3624
|
"type": "boolean"
|
|
3627
3625
|
},
|
|
3628
|
-
"
|
|
3629
|
-
"char": "
|
|
3630
|
-
"description": "
|
|
3631
|
-
"name": "
|
|
3632
|
-
"
|
|
3633
|
-
"
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
"
|
|
3639
|
-
"
|
|
3626
|
+
"dry-run": {
|
|
3627
|
+
"char": "d",
|
|
3628
|
+
"description": "Show what would be removed without removing",
|
|
3629
|
+
"name": "dry-run",
|
|
3630
|
+
"allowNo": false,
|
|
3631
|
+
"type": "boolean"
|
|
3632
|
+
},
|
|
3633
|
+
"all": {
|
|
3634
|
+
"char": "a",
|
|
3635
|
+
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3636
|
+
"name": "all",
|
|
3637
|
+
"allowNo": false,
|
|
3638
|
+
"type": "boolean"
|
|
3639
|
+
},
|
|
3640
|
+
"json": {
|
|
3641
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3642
|
+
"name": "json",
|
|
3640
3643
|
"allowNo": false,
|
|
3641
3644
|
"type": "boolean"
|
|
3642
3645
|
},
|
|
@@ -3650,7 +3653,7 @@
|
|
|
3650
3653
|
},
|
|
3651
3654
|
"hasDynamicHelp": false,
|
|
3652
3655
|
"hiddenAliases": [],
|
|
3653
|
-
"id": "docker:
|
|
3656
|
+
"id": "docker:clean",
|
|
3654
3657
|
"pluginAlias": "@proletariat/cli",
|
|
3655
3658
|
"pluginName": "@proletariat/cli",
|
|
3656
3659
|
"pluginType": "core",
|
|
@@ -3661,15 +3664,26 @@
|
|
|
3661
3664
|
"dist",
|
|
3662
3665
|
"commands",
|
|
3663
3666
|
"docker",
|
|
3664
|
-
"
|
|
3667
|
+
"clean.js"
|
|
3665
3668
|
]
|
|
3666
3669
|
},
|
|
3667
|
-
"docker
|
|
3670
|
+
"docker": {
|
|
3668
3671
|
"aliases": [],
|
|
3669
3672
|
"args": {},
|
|
3670
|
-
"description": "
|
|
3673
|
+
"description": "Manage Docker containers used by agents",
|
|
3671
3674
|
"examples": [
|
|
3672
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3675
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3676
|
+
"<%= config.bin %> docker status",
|
|
3677
|
+
"<%= config.bin %> docker list",
|
|
3678
|
+
"<%= config.bin %> docker logs WORK-001",
|
|
3679
|
+
"<%= config.bin %> docker start WORK-001",
|
|
3680
|
+
"<%= config.bin %> docker stop kalanick",
|
|
3681
|
+
"<%= config.bin %> docker shell WORK-001",
|
|
3682
|
+
"<%= config.bin %> docker restart abc123",
|
|
3683
|
+
"<%= config.bin %> docker sync",
|
|
3684
|
+
"<%= config.bin %> docker rebuild-cache",
|
|
3685
|
+
"<%= config.bin %> docker clean",
|
|
3686
|
+
"<%= config.bin %> docker prune"
|
|
3673
3687
|
],
|
|
3674
3688
|
"flags": {
|
|
3675
3689
|
"json": {
|
|
@@ -3688,32 +3702,27 @@
|
|
|
3688
3702
|
},
|
|
3689
3703
|
"hasDynamicHelp": false,
|
|
3690
3704
|
"hiddenAliases": [],
|
|
3691
|
-
"id": "docker
|
|
3705
|
+
"id": "docker",
|
|
3692
3706
|
"pluginAlias": "@proletariat/cli",
|
|
3693
3707
|
"pluginName": "@proletariat/cli",
|
|
3694
3708
|
"pluginType": "core",
|
|
3695
3709
|
"strict": true,
|
|
3696
|
-
"enableJsonFlag": false,
|
|
3697
3710
|
"isESM": true,
|
|
3698
3711
|
"relativePath": [
|
|
3699
3712
|
"dist",
|
|
3700
3713
|
"commands",
|
|
3701
3714
|
"docker",
|
|
3702
|
-
"
|
|
3715
|
+
"index.js"
|
|
3703
3716
|
]
|
|
3704
3717
|
},
|
|
3705
|
-
"
|
|
3718
|
+
"docker:list": {
|
|
3706
3719
|
"aliases": [],
|
|
3707
3720
|
"args": {},
|
|
3708
|
-
"description": "
|
|
3721
|
+
"description": "Show Docker containers from agent_work table with status",
|
|
3709
3722
|
"examples": [
|
|
3710
|
-
"<%= config.bin %>
|
|
3711
|
-
"<%= config.bin %>
|
|
3712
|
-
"<%= config.bin %>
|
|
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"
|
|
3723
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3724
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3725
|
+
"<%= config.bin %> <%= command.id %> --running"
|
|
3717
3726
|
],
|
|
3718
3727
|
"flags": {
|
|
3719
3728
|
"json": {
|
|
@@ -3729,53 +3738,52 @@
|
|
|
3729
3738
|
"allowNo": false,
|
|
3730
3739
|
"type": "boolean"
|
|
3731
3740
|
},
|
|
3732
|
-
"
|
|
3733
|
-
"char": "
|
|
3734
|
-
"description": "
|
|
3735
|
-
"name": "
|
|
3736
|
-
"hasDynamicHelp": false,
|
|
3737
|
-
"multiple": true,
|
|
3738
|
-
"type": "option"
|
|
3739
|
-
},
|
|
3740
|
-
"list": {
|
|
3741
|
-
"char": "l",
|
|
3742
|
-
"description": "List all configuration values",
|
|
3743
|
-
"name": "list",
|
|
3741
|
+
"all": {
|
|
3742
|
+
"char": "a",
|
|
3743
|
+
"description": "Show all containers (including non-devcontainer)",
|
|
3744
|
+
"name": "all",
|
|
3744
3745
|
"allowNo": false,
|
|
3745
3746
|
"type": "boolean"
|
|
3746
3747
|
},
|
|
3747
|
-
"
|
|
3748
|
-
"
|
|
3749
|
-
"
|
|
3750
|
-
"
|
|
3751
|
-
"
|
|
3752
|
-
"type": "
|
|
3748
|
+
"running": {
|
|
3749
|
+
"char": "r",
|
|
3750
|
+
"description": "Only show running containers",
|
|
3751
|
+
"name": "running",
|
|
3752
|
+
"allowNo": false,
|
|
3753
|
+
"type": "boolean"
|
|
3753
3754
|
}
|
|
3754
3755
|
},
|
|
3755
3756
|
"hasDynamicHelp": false,
|
|
3756
3757
|
"hiddenAliases": [],
|
|
3757
|
-
"id": "
|
|
3758
|
+
"id": "docker:list",
|
|
3758
3759
|
"pluginAlias": "@proletariat/cli",
|
|
3759
3760
|
"pluginName": "@proletariat/cli",
|
|
3760
3761
|
"pluginType": "core",
|
|
3761
3762
|
"strict": true,
|
|
3763
|
+
"enableJsonFlag": false,
|
|
3762
3764
|
"isESM": true,
|
|
3763
3765
|
"relativePath": [
|
|
3764
3766
|
"dist",
|
|
3765
3767
|
"commands",
|
|
3766
|
-
"
|
|
3767
|
-
"
|
|
3768
|
+
"docker",
|
|
3769
|
+
"list.js"
|
|
3768
3770
|
]
|
|
3769
3771
|
},
|
|
3770
|
-
"
|
|
3772
|
+
"docker:logs": {
|
|
3771
3773
|
"aliases": [],
|
|
3772
|
-
"args": {
|
|
3773
|
-
|
|
3774
|
+
"args": {
|
|
3775
|
+
"target": {
|
|
3776
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3777
|
+
"name": "target",
|
|
3778
|
+
"required": true
|
|
3779
|
+
}
|
|
3780
|
+
},
|
|
3781
|
+
"description": "View logs from a container (by execution ID, agent name, or container ID)",
|
|
3774
3782
|
"examples": [
|
|
3775
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3776
|
-
"<%= config.bin %> <%= command.id %>
|
|
3777
|
-
"<%= config.bin %> <%= command.id %>
|
|
3778
|
-
"<%= config.bin %> <%= command.id %>
|
|
3783
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3784
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3785
|
+
"<%= config.bin %> <%= command.id %> abc123 --follow",
|
|
3786
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 100"
|
|
3779
3787
|
],
|
|
3780
3788
|
"flags": {
|
|
3781
3789
|
"json": {
|
|
@@ -3790,34 +3798,89 @@
|
|
|
3790
3798
|
"name": "machine",
|
|
3791
3799
|
"allowNo": false,
|
|
3792
3800
|
"type": "boolean"
|
|
3801
|
+
},
|
|
3802
|
+
"follow": {
|
|
3803
|
+
"char": "f",
|
|
3804
|
+
"description": "Follow log output",
|
|
3805
|
+
"name": "follow",
|
|
3806
|
+
"allowNo": false,
|
|
3807
|
+
"type": "boolean"
|
|
3808
|
+
},
|
|
3809
|
+
"tail": {
|
|
3810
|
+
"char": "n",
|
|
3811
|
+
"description": "Number of lines to show from the end",
|
|
3812
|
+
"name": "tail",
|
|
3813
|
+
"default": 100,
|
|
3814
|
+
"hasDynamicHelp": false,
|
|
3815
|
+
"multiple": false,
|
|
3816
|
+
"type": "option"
|
|
3817
|
+
},
|
|
3818
|
+
"timestamps": {
|
|
3819
|
+
"char": "t",
|
|
3820
|
+
"description": "Show timestamps",
|
|
3821
|
+
"name": "timestamps",
|
|
3822
|
+
"allowNo": false,
|
|
3823
|
+
"type": "boolean"
|
|
3793
3824
|
}
|
|
3794
3825
|
},
|
|
3795
3826
|
"hasDynamicHelp": false,
|
|
3796
3827
|
"hiddenAliases": [],
|
|
3797
|
-
"id": "
|
|
3828
|
+
"id": "docker:logs",
|
|
3798
3829
|
"pluginAlias": "@proletariat/cli",
|
|
3799
3830
|
"pluginName": "@proletariat/cli",
|
|
3800
3831
|
"pluginType": "core",
|
|
3801
3832
|
"strict": true,
|
|
3833
|
+
"enableJsonFlag": false,
|
|
3802
3834
|
"isESM": true,
|
|
3803
3835
|
"relativePath": [
|
|
3804
3836
|
"dist",
|
|
3805
3837
|
"commands",
|
|
3806
|
-
"
|
|
3807
|
-
"
|
|
3838
|
+
"docker",
|
|
3839
|
+
"logs.js"
|
|
3808
3840
|
]
|
|
3809
3841
|
},
|
|
3810
|
-
"
|
|
3842
|
+
"docker:prune": {
|
|
3811
3843
|
"aliases": [],
|
|
3812
3844
|
"args": {},
|
|
3813
|
-
"description": "
|
|
3845
|
+
"description": "Remove unused Docker resources (containers, images, volumes, networks)",
|
|
3814
3846
|
"examples": [
|
|
3815
3847
|
"<%= config.bin %> <%= command.id %>",
|
|
3816
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3817
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3818
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3848
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3849
|
+
"<%= config.bin %> <%= command.id %> --volumes",
|
|
3850
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3819
3851
|
],
|
|
3820
3852
|
"flags": {
|
|
3853
|
+
"force": {
|
|
3854
|
+
"aliases": [
|
|
3855
|
+
"yes",
|
|
3856
|
+
"y"
|
|
3857
|
+
],
|
|
3858
|
+
"char": "f",
|
|
3859
|
+
"description": "Skip confirmation prompt",
|
|
3860
|
+
"name": "force",
|
|
3861
|
+
"allowNo": false,
|
|
3862
|
+
"type": "boolean"
|
|
3863
|
+
},
|
|
3864
|
+
"dry-run": {
|
|
3865
|
+
"char": "d",
|
|
3866
|
+
"description": "Show what would be removed without removing",
|
|
3867
|
+
"name": "dry-run",
|
|
3868
|
+
"allowNo": false,
|
|
3869
|
+
"type": "boolean"
|
|
3870
|
+
},
|
|
3871
|
+
"all": {
|
|
3872
|
+
"char": "a",
|
|
3873
|
+
"description": "Remove all unused images, not just dangling ones",
|
|
3874
|
+
"name": "all",
|
|
3875
|
+
"allowNo": false,
|
|
3876
|
+
"type": "boolean"
|
|
3877
|
+
},
|
|
3878
|
+
"volumes": {
|
|
3879
|
+
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3880
|
+
"name": "volumes",
|
|
3881
|
+
"allowNo": false,
|
|
3882
|
+
"type": "boolean"
|
|
3883
|
+
},
|
|
3821
3884
|
"json": {
|
|
3822
3885
|
"description": "Output as JSON for AI agents/scripts",
|
|
3823
3886
|
"name": "json",
|
|
@@ -3830,72 +3893,46 @@
|
|
|
3830
3893
|
"name": "machine",
|
|
3831
3894
|
"allowNo": false,
|
|
3832
3895
|
"type": "boolean"
|
|
3833
|
-
},
|
|
3834
|
-
"status": {
|
|
3835
|
-
"char": "s",
|
|
3836
|
-
"description": "Filter by status",
|
|
3837
|
-
"name": "status",
|
|
3838
|
-
"hasDynamicHelp": false,
|
|
3839
|
-
"multiple": false,
|
|
3840
|
-
"options": [
|
|
3841
|
-
"starting",
|
|
3842
|
-
"running",
|
|
3843
|
-
"completed",
|
|
3844
|
-
"failed",
|
|
3845
|
-
"stopped"
|
|
3846
|
-
],
|
|
3847
|
-
"type": "option"
|
|
3848
|
-
},
|
|
3849
|
-
"agent": {
|
|
3850
|
-
"char": "a",
|
|
3851
|
-
"description": "Filter by agent name",
|
|
3852
|
-
"name": "agent",
|
|
3853
|
-
"hasDynamicHelp": false,
|
|
3854
|
-
"multiple": false,
|
|
3855
|
-
"type": "option"
|
|
3856
|
-
},
|
|
3857
|
-
"limit": {
|
|
3858
|
-
"char": "l",
|
|
3859
|
-
"description": "Number of results",
|
|
3860
|
-
"name": "limit",
|
|
3861
|
-
"default": 20,
|
|
3862
|
-
"hasDynamicHelp": false,
|
|
3863
|
-
"multiple": false,
|
|
3864
|
-
"type": "option"
|
|
3865
3896
|
}
|
|
3866
3897
|
},
|
|
3867
3898
|
"hasDynamicHelp": false,
|
|
3868
3899
|
"hiddenAliases": [],
|
|
3869
|
-
"id": "
|
|
3900
|
+
"id": "docker:prune",
|
|
3870
3901
|
"pluginAlias": "@proletariat/cli",
|
|
3871
3902
|
"pluginName": "@proletariat/cli",
|
|
3872
3903
|
"pluginType": "core",
|
|
3873
3904
|
"strict": true,
|
|
3905
|
+
"enableJsonFlag": false,
|
|
3874
3906
|
"isESM": true,
|
|
3875
3907
|
"relativePath": [
|
|
3876
3908
|
"dist",
|
|
3877
3909
|
"commands",
|
|
3878
|
-
"
|
|
3879
|
-
"
|
|
3910
|
+
"docker",
|
|
3911
|
+
"prune.js"
|
|
3880
3912
|
]
|
|
3881
3913
|
},
|
|
3882
|
-
"
|
|
3914
|
+
"docker:rebuild-cache": {
|
|
3883
3915
|
"aliases": [],
|
|
3884
|
-
"args": {
|
|
3885
|
-
|
|
3886
|
-
"description": "Execution ID - prompts if not provided",
|
|
3887
|
-
"name": "id",
|
|
3888
|
-
"required": false
|
|
3889
|
-
}
|
|
3890
|
-
},
|
|
3891
|
-
"description": "View execution logs",
|
|
3916
|
+
"args": {},
|
|
3917
|
+
"description": "Rebuild the shared pnpm store cache volume for fast agent installs",
|
|
3892
3918
|
"examples": [
|
|
3893
|
-
"<%= config.bin %> <%= command.id %>
|
|
3894
|
-
"<%= config.bin %> <%= command.id %>
|
|
3895
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
3896
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3919
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3920
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
3897
3921
|
],
|
|
3898
3922
|
"flags": {
|
|
3923
|
+
"force": {
|
|
3924
|
+
"char": "f",
|
|
3925
|
+
"description": "Delete and rebuild the cache even if it already exists",
|
|
3926
|
+
"name": "force",
|
|
3927
|
+
"allowNo": false,
|
|
3928
|
+
"type": "boolean"
|
|
3929
|
+
},
|
|
3930
|
+
"delete-only": {
|
|
3931
|
+
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3932
|
+
"name": "delete-only",
|
|
3933
|
+
"allowNo": false,
|
|
3934
|
+
"type": "boolean"
|
|
3935
|
+
},
|
|
3899
3936
|
"json": {
|
|
3900
3937
|
"description": "Output as JSON for AI agents/scripts",
|
|
3901
3938
|
"name": "json",
|
|
@@ -3908,57 +3945,60 @@
|
|
|
3908
3945
|
"name": "machine",
|
|
3909
3946
|
"allowNo": false,
|
|
3910
3947
|
"type": "boolean"
|
|
3911
|
-
},
|
|
3912
|
-
"follow": {
|
|
3913
|
-
"char": "f",
|
|
3914
|
-
"description": "Stream logs in real-time",
|
|
3915
|
-
"name": "follow",
|
|
3916
|
-
"allowNo": false,
|
|
3917
|
-
"type": "boolean"
|
|
3918
|
-
},
|
|
3919
|
-
"tail": {
|
|
3920
|
-
"char": "n",
|
|
3921
|
-
"description": "Show last n lines",
|
|
3922
|
-
"name": "tail",
|
|
3923
|
-
"hasDynamicHelp": false,
|
|
3924
|
-
"multiple": false,
|
|
3925
|
-
"type": "option"
|
|
3926
3948
|
}
|
|
3927
3949
|
},
|
|
3928
3950
|
"hasDynamicHelp": false,
|
|
3929
3951
|
"hiddenAliases": [],
|
|
3930
|
-
"id": "
|
|
3952
|
+
"id": "docker:rebuild-cache",
|
|
3931
3953
|
"pluginAlias": "@proletariat/cli",
|
|
3932
3954
|
"pluginName": "@proletariat/cli",
|
|
3933
3955
|
"pluginType": "core",
|
|
3934
3956
|
"strict": true,
|
|
3957
|
+
"enableJsonFlag": false,
|
|
3935
3958
|
"isESM": true,
|
|
3936
3959
|
"relativePath": [
|
|
3937
3960
|
"dist",
|
|
3938
3961
|
"commands",
|
|
3939
|
-
"
|
|
3940
|
-
"
|
|
3962
|
+
"docker",
|
|
3963
|
+
"rebuild-cache.js"
|
|
3941
3964
|
]
|
|
3942
3965
|
},
|
|
3943
|
-
"
|
|
3966
|
+
"docker:restart": {
|
|
3944
3967
|
"aliases": [],
|
|
3945
3968
|
"args": {
|
|
3946
|
-
"
|
|
3947
|
-
"description": "Execution ID -
|
|
3948
|
-
"name": "
|
|
3949
|
-
"required":
|
|
3969
|
+
"target": {
|
|
3970
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3971
|
+
"name": "target",
|
|
3972
|
+
"required": true
|
|
3950
3973
|
}
|
|
3951
3974
|
},
|
|
3952
|
-
"description": "
|
|
3975
|
+
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3953
3976
|
"examples": [
|
|
3954
3977
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3955
|
-
"<%= config.bin %> <%= command.id %>
|
|
3956
|
-
"<%= config.bin %> <%= command.id %>
|
|
3957
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
3958
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
3959
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
3978
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3979
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3960
3980
|
],
|
|
3961
3981
|
"flags": {
|
|
3982
|
+
"force": {
|
|
3983
|
+
"aliases": [
|
|
3984
|
+
"yes",
|
|
3985
|
+
"y"
|
|
3986
|
+
],
|
|
3987
|
+
"char": "f",
|
|
3988
|
+
"description": "Skip confirmation prompt",
|
|
3989
|
+
"name": "force",
|
|
3990
|
+
"allowNo": false,
|
|
3991
|
+
"type": "boolean"
|
|
3992
|
+
},
|
|
3993
|
+
"time": {
|
|
3994
|
+
"char": "t",
|
|
3995
|
+
"description": "Seconds to wait before killing the container during stop",
|
|
3996
|
+
"name": "time",
|
|
3997
|
+
"default": 10,
|
|
3998
|
+
"hasDynamicHelp": false,
|
|
3999
|
+
"multiple": false,
|
|
4000
|
+
"type": "option"
|
|
4001
|
+
},
|
|
3962
4002
|
"json": {
|
|
3963
4003
|
"description": "Output as JSON for AI agents/scripts",
|
|
3964
4004
|
"name": "json",
|
|
@@ -3971,57 +4011,38 @@
|
|
|
3971
4011
|
"name": "machine",
|
|
3972
4012
|
"allowNo": false,
|
|
3973
4013
|
"type": "boolean"
|
|
3974
|
-
},
|
|
3975
|
-
"force": {
|
|
3976
|
-
"char": "f",
|
|
3977
|
-
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
3978
|
-
"name": "force",
|
|
3979
|
-
"allowNo": false,
|
|
3980
|
-
"type": "boolean"
|
|
3981
|
-
},
|
|
3982
|
-
"all": {
|
|
3983
|
-
"description": "Stop all running executions",
|
|
3984
|
-
"name": "all",
|
|
3985
|
-
"allowNo": false,
|
|
3986
|
-
"type": "boolean"
|
|
3987
|
-
},
|
|
3988
|
-
"agent": {
|
|
3989
|
-
"char": "a",
|
|
3990
|
-
"description": "Stop all executions for a specific agent",
|
|
3991
|
-
"name": "agent",
|
|
3992
|
-
"hasDynamicHelp": false,
|
|
3993
|
-
"multiple": false,
|
|
3994
|
-
"type": "option"
|
|
3995
4014
|
}
|
|
3996
4015
|
},
|
|
3997
4016
|
"hasDynamicHelp": false,
|
|
3998
4017
|
"hiddenAliases": [],
|
|
3999
|
-
"id": "
|
|
4018
|
+
"id": "docker:restart",
|
|
4000
4019
|
"pluginAlias": "@proletariat/cli",
|
|
4001
4020
|
"pluginName": "@proletariat/cli",
|
|
4002
4021
|
"pluginType": "core",
|
|
4003
4022
|
"strict": true,
|
|
4023
|
+
"enableJsonFlag": false,
|
|
4004
4024
|
"isESM": true,
|
|
4005
4025
|
"relativePath": [
|
|
4006
4026
|
"dist",
|
|
4007
4027
|
"commands",
|
|
4008
|
-
"
|
|
4009
|
-
"
|
|
4028
|
+
"docker",
|
|
4029
|
+
"restart.js"
|
|
4010
4030
|
]
|
|
4011
4031
|
},
|
|
4012
|
-
"
|
|
4032
|
+
"docker:shell": {
|
|
4013
4033
|
"aliases": [],
|
|
4014
4034
|
"args": {
|
|
4015
|
-
"
|
|
4016
|
-
"description": "Execution ID -
|
|
4017
|
-
"name": "
|
|
4018
|
-
"required":
|
|
4035
|
+
"target": {
|
|
4036
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
4037
|
+
"name": "target",
|
|
4038
|
+
"required": true
|
|
4019
4039
|
}
|
|
4020
4040
|
},
|
|
4021
|
-
"description": "
|
|
4041
|
+
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
4022
4042
|
"examples": [
|
|
4023
4043
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4024
|
-
"<%= config.bin %> <%= command.id %>
|
|
4044
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
4045
|
+
"<%= config.bin %> <%= command.id %> abc123 --shell /bin/bash"
|
|
4025
4046
|
],
|
|
4026
4047
|
"flags": {
|
|
4027
4048
|
"json": {
|
|
@@ -4036,30 +4057,63 @@
|
|
|
4036
4057
|
"name": "machine",
|
|
4037
4058
|
"allowNo": false,
|
|
4038
4059
|
"type": "boolean"
|
|
4060
|
+
},
|
|
4061
|
+
"shell": {
|
|
4062
|
+
"char": "s",
|
|
4063
|
+
"description": "Shell to use",
|
|
4064
|
+
"name": "shell",
|
|
4065
|
+
"default": "/bin/sh",
|
|
4066
|
+
"hasDynamicHelp": false,
|
|
4067
|
+
"multiple": false,
|
|
4068
|
+
"type": "option"
|
|
4069
|
+
},
|
|
4070
|
+
"user": {
|
|
4071
|
+
"char": "u",
|
|
4072
|
+
"description": "User to run as",
|
|
4073
|
+
"name": "user",
|
|
4074
|
+
"hasDynamicHelp": false,
|
|
4075
|
+
"multiple": false,
|
|
4076
|
+
"type": "option"
|
|
4077
|
+
},
|
|
4078
|
+
"workdir": {
|
|
4079
|
+
"char": "w",
|
|
4080
|
+
"description": "Working directory inside the container",
|
|
4081
|
+
"name": "workdir",
|
|
4082
|
+
"hasDynamicHelp": false,
|
|
4083
|
+
"multiple": false,
|
|
4084
|
+
"type": "option"
|
|
4039
4085
|
}
|
|
4040
4086
|
},
|
|
4041
4087
|
"hasDynamicHelp": false,
|
|
4042
4088
|
"hiddenAliases": [],
|
|
4043
|
-
"id": "
|
|
4089
|
+
"id": "docker:shell",
|
|
4044
4090
|
"pluginAlias": "@proletariat/cli",
|
|
4045
4091
|
"pluginName": "@proletariat/cli",
|
|
4046
4092
|
"pluginType": "core",
|
|
4047
4093
|
"strict": true,
|
|
4094
|
+
"enableJsonFlag": false,
|
|
4048
4095
|
"isESM": true,
|
|
4049
4096
|
"relativePath": [
|
|
4050
4097
|
"dist",
|
|
4051
4098
|
"commands",
|
|
4052
|
-
"
|
|
4053
|
-
"
|
|
4099
|
+
"docker",
|
|
4100
|
+
"shell.js"
|
|
4054
4101
|
]
|
|
4055
4102
|
},
|
|
4056
|
-
"
|
|
4103
|
+
"docker:start": {
|
|
4057
4104
|
"aliases": [],
|
|
4058
|
-
"args": {
|
|
4059
|
-
|
|
4105
|
+
"args": {
|
|
4106
|
+
"target": {
|
|
4107
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
4108
|
+
"name": "target",
|
|
4109
|
+
"required": true
|
|
4110
|
+
}
|
|
4111
|
+
},
|
|
4112
|
+
"description": "Start a stopped container (by execution ID, agent name, or container ID)",
|
|
4060
4113
|
"examples": [
|
|
4061
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4062
|
-
"<%= config.bin %> <%= command.id %>
|
|
4114
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4115
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
4116
|
+
"<%= config.bin %> <%= command.id %> abc123"
|
|
4063
4117
|
],
|
|
4064
4118
|
"flags": {
|
|
4065
4119
|
"json": {
|
|
@@ -4075,23 +4129,17 @@
|
|
|
4075
4129
|
"allowNo": false,
|
|
4076
4130
|
"type": "boolean"
|
|
4077
4131
|
},
|
|
4078
|
-
"
|
|
4132
|
+
"attach": {
|
|
4079
4133
|
"char": "a",
|
|
4080
|
-
"description": "
|
|
4081
|
-
"name": "
|
|
4082
|
-
"
|
|
4083
|
-
"
|
|
4084
|
-
"options": [
|
|
4085
|
-
"submit",
|
|
4086
|
-
"list",
|
|
4087
|
-
"view"
|
|
4088
|
-
],
|
|
4089
|
-
"type": "option"
|
|
4134
|
+
"description": "Attach to container after starting",
|
|
4135
|
+
"name": "attach",
|
|
4136
|
+
"allowNo": false,
|
|
4137
|
+
"type": "boolean"
|
|
4090
4138
|
}
|
|
4091
4139
|
},
|
|
4092
4140
|
"hasDynamicHelp": false,
|
|
4093
4141
|
"hiddenAliases": [],
|
|
4094
|
-
"id": "
|
|
4142
|
+
"id": "docker:start",
|
|
4095
4143
|
"pluginAlias": "@proletariat/cli",
|
|
4096
4144
|
"pluginName": "@proletariat/cli",
|
|
4097
4145
|
"pluginType": "core",
|
|
@@ -4101,19 +4149,16 @@
|
|
|
4101
4149
|
"relativePath": [
|
|
4102
4150
|
"dist",
|
|
4103
4151
|
"commands",
|
|
4104
|
-
"
|
|
4105
|
-
"
|
|
4152
|
+
"docker",
|
|
4153
|
+
"start.js"
|
|
4106
4154
|
]
|
|
4107
4155
|
},
|
|
4108
|
-
"
|
|
4156
|
+
"docker:status": {
|
|
4109
4157
|
"aliases": [],
|
|
4110
4158
|
"args": {},
|
|
4111
|
-
"description": "
|
|
4159
|
+
"description": "Check if Docker daemon is running",
|
|
4112
4160
|
"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"
|
|
4161
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4117
4162
|
],
|
|
4118
4163
|
"flags": {
|
|
4119
4164
|
"json": {
|
|
@@ -4128,47 +4173,11 @@
|
|
|
4128
4173
|
"name": "machine",
|
|
4129
4174
|
"allowNo": false,
|
|
4130
4175
|
"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
4176
|
}
|
|
4168
4177
|
},
|
|
4169
4178
|
"hasDynamicHelp": false,
|
|
4170
4179
|
"hiddenAliases": [],
|
|
4171
|
-
"id": "
|
|
4180
|
+
"id": "docker:status",
|
|
4172
4181
|
"pluginAlias": "@proletariat/cli",
|
|
4173
4182
|
"pluginName": "@proletariat/cli",
|
|
4174
4183
|
"pluginType": "core",
|
|
@@ -4178,91 +4187,82 @@
|
|
|
4178
4187
|
"relativePath": [
|
|
4179
4188
|
"dist",
|
|
4180
4189
|
"commands",
|
|
4181
|
-
"
|
|
4182
|
-
"
|
|
4190
|
+
"docker",
|
|
4191
|
+
"status.js"
|
|
4183
4192
|
]
|
|
4184
4193
|
},
|
|
4185
|
-
"
|
|
4194
|
+
"docker:stop": {
|
|
4186
4195
|
"aliases": [],
|
|
4187
|
-
"args": {
|
|
4188
|
-
|
|
4196
|
+
"args": {
|
|
4197
|
+
"target": {
|
|
4198
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
4199
|
+
"name": "target",
|
|
4200
|
+
"required": true
|
|
4201
|
+
}
|
|
4202
|
+
},
|
|
4203
|
+
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
4189
4204
|
"examples": [
|
|
4190
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4191
|
-
"<%= config.bin %> <%= command.id %>
|
|
4192
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4205
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4206
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
4207
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
4193
4208
|
],
|
|
4194
4209
|
"flags": {
|
|
4195
|
-
"
|
|
4196
|
-
"
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
"
|
|
4203
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4204
|
-
"name": "machine",
|
|
4210
|
+
"force": {
|
|
4211
|
+
"aliases": [
|
|
4212
|
+
"yes",
|
|
4213
|
+
"y"
|
|
4214
|
+
],
|
|
4215
|
+
"char": "f",
|
|
4216
|
+
"description": "Skip confirmation prompt",
|
|
4217
|
+
"name": "force",
|
|
4205
4218
|
"allowNo": false,
|
|
4206
4219
|
"type": "boolean"
|
|
4207
4220
|
},
|
|
4208
|
-
"
|
|
4221
|
+
"time": {
|
|
4209
4222
|
"char": "t",
|
|
4210
|
-
"description": "
|
|
4211
|
-
"name": "
|
|
4223
|
+
"description": "Seconds to wait before killing the container",
|
|
4224
|
+
"name": "time",
|
|
4225
|
+
"default": 10,
|
|
4212
4226
|
"hasDynamicHelp": false,
|
|
4213
4227
|
"multiple": false,
|
|
4214
4228
|
"type": "option"
|
|
4215
4229
|
},
|
|
4216
|
-
"
|
|
4217
|
-
"
|
|
4218
|
-
"
|
|
4219
|
-
"
|
|
4220
|
-
"
|
|
4221
|
-
"multiple": false,
|
|
4222
|
-
"type": "option"
|
|
4230
|
+
"json": {
|
|
4231
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4232
|
+
"name": "json",
|
|
4233
|
+
"allowNo": false,
|
|
4234
|
+
"type": "boolean"
|
|
4223
4235
|
},
|
|
4224
|
-
"
|
|
4225
|
-
"char": "
|
|
4226
|
-
"description": "
|
|
4227
|
-
"name": "
|
|
4228
|
-
"
|
|
4229
|
-
"
|
|
4230
|
-
"options": [
|
|
4231
|
-
"bug",
|
|
4232
|
-
"feature",
|
|
4233
|
-
"general"
|
|
4234
|
-
],
|
|
4235
|
-
"type": "option"
|
|
4236
|
+
"machine": {
|
|
4237
|
+
"char": "m",
|
|
4238
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4239
|
+
"name": "machine",
|
|
4240
|
+
"allowNo": false,
|
|
4241
|
+
"type": "boolean"
|
|
4236
4242
|
}
|
|
4237
4243
|
},
|
|
4238
4244
|
"hasDynamicHelp": false,
|
|
4239
4245
|
"hiddenAliases": [],
|
|
4240
|
-
"id": "
|
|
4246
|
+
"id": "docker:stop",
|
|
4241
4247
|
"pluginAlias": "@proletariat/cli",
|
|
4242
4248
|
"pluginName": "@proletariat/cli",
|
|
4243
4249
|
"pluginType": "core",
|
|
4244
4250
|
"strict": true,
|
|
4251
|
+
"enableJsonFlag": false,
|
|
4245
4252
|
"isESM": true,
|
|
4246
4253
|
"relativePath": [
|
|
4247
4254
|
"dist",
|
|
4248
4255
|
"commands",
|
|
4249
|
-
"
|
|
4250
|
-
"
|
|
4256
|
+
"docker",
|
|
4257
|
+
"stop.js"
|
|
4251
4258
|
]
|
|
4252
4259
|
},
|
|
4253
|
-
"
|
|
4260
|
+
"docker:sync": {
|
|
4254
4261
|
"aliases": [],
|
|
4255
|
-
"args": {
|
|
4256
|
-
|
|
4257
|
-
"description": "Issue number to view",
|
|
4258
|
-
"name": "number",
|
|
4259
|
-
"required": true
|
|
4260
|
-
}
|
|
4261
|
-
},
|
|
4262
|
-
"description": "View details of a specific feedback issue",
|
|
4262
|
+
"args": {},
|
|
4263
|
+
"description": "Sync container status from Docker into the database",
|
|
4263
4264
|
"examples": [
|
|
4264
|
-
"<%= config.bin %> <%= command.id %>
|
|
4265
|
-
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4265
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4266
4266
|
],
|
|
4267
4267
|
"flags": {
|
|
4268
4268
|
"json": {
|
|
@@ -4281,7 +4281,7 @@
|
|
|
4281
4281
|
},
|
|
4282
4282
|
"hasDynamicHelp": false,
|
|
4283
4283
|
"hiddenAliases": [],
|
|
4284
|
-
"id": "
|
|
4284
|
+
"id": "docker:sync",
|
|
4285
4285
|
"pluginAlias": "@proletariat/cli",
|
|
4286
4286
|
"pluginName": "@proletariat/cli",
|
|
4287
4287
|
"pluginType": "core",
|
|
@@ -4291,8 +4291,8 @@
|
|
|
4291
4291
|
"relativePath": [
|
|
4292
4292
|
"dist",
|
|
4293
4293
|
"commands",
|
|
4294
|
-
"
|
|
4295
|
-
"
|
|
4294
|
+
"docker",
|
|
4295
|
+
"sync.js"
|
|
4296
4296
|
]
|
|
4297
4297
|
},
|
|
4298
4298
|
"gh": {
|
|
@@ -6438,6 +6438,99 @@
|
|
|
6438
6438
|
"index.js"
|
|
6439
6439
|
]
|
|
6440
6440
|
},
|
|
6441
|
+
"run": {
|
|
6442
|
+
"aliases": [],
|
|
6443
|
+
"args": {
|
|
6444
|
+
"task": {
|
|
6445
|
+
"description": "Task description for the agent",
|
|
6446
|
+
"name": "task",
|
|
6447
|
+
"required": true
|
|
6448
|
+
}
|
|
6449
|
+
},
|
|
6450
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
6451
|
+
"examples": [
|
|
6452
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
6453
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
6454
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
6455
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
6456
|
+
],
|
|
6457
|
+
"flags": {
|
|
6458
|
+
"json": {
|
|
6459
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6460
|
+
"name": "json",
|
|
6461
|
+
"allowNo": false,
|
|
6462
|
+
"type": "boolean"
|
|
6463
|
+
},
|
|
6464
|
+
"machine": {
|
|
6465
|
+
"char": "m",
|
|
6466
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6467
|
+
"name": "machine",
|
|
6468
|
+
"allowNo": false,
|
|
6469
|
+
"type": "boolean"
|
|
6470
|
+
},
|
|
6471
|
+
"runner": {
|
|
6472
|
+
"char": "r",
|
|
6473
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
6474
|
+
"name": "runner",
|
|
6475
|
+
"hasDynamicHelp": false,
|
|
6476
|
+
"multiple": false,
|
|
6477
|
+
"type": "option"
|
|
6478
|
+
},
|
|
6479
|
+
"detached": {
|
|
6480
|
+
"char": "d",
|
|
6481
|
+
"description": "Run in background (detached)",
|
|
6482
|
+
"name": "detached",
|
|
6483
|
+
"allowNo": false,
|
|
6484
|
+
"type": "boolean"
|
|
6485
|
+
},
|
|
6486
|
+
"directory": {
|
|
6487
|
+
"description": "Working directory (default: cwd)",
|
|
6488
|
+
"name": "directory",
|
|
6489
|
+
"hasDynamicHelp": false,
|
|
6490
|
+
"multiple": false,
|
|
6491
|
+
"type": "option"
|
|
6492
|
+
},
|
|
6493
|
+
"permission-mode": {
|
|
6494
|
+
"char": "p",
|
|
6495
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
6496
|
+
"name": "permission-mode",
|
|
6497
|
+
"hasDynamicHelp": false,
|
|
6498
|
+
"multiple": false,
|
|
6499
|
+
"options": [
|
|
6500
|
+
"danger",
|
|
6501
|
+
"safe"
|
|
6502
|
+
],
|
|
6503
|
+
"type": "option"
|
|
6504
|
+
},
|
|
6505
|
+
"environment": {
|
|
6506
|
+
"char": "e",
|
|
6507
|
+
"description": "Environment to run in",
|
|
6508
|
+
"name": "environment",
|
|
6509
|
+
"hasDynamicHelp": false,
|
|
6510
|
+
"multiple": false,
|
|
6511
|
+
"options": [
|
|
6512
|
+
"host",
|
|
6513
|
+
"docker",
|
|
6514
|
+
"podman"
|
|
6515
|
+
],
|
|
6516
|
+
"type": "option"
|
|
6517
|
+
}
|
|
6518
|
+
},
|
|
6519
|
+
"hasDynamicHelp": false,
|
|
6520
|
+
"hiddenAliases": [],
|
|
6521
|
+
"id": "run",
|
|
6522
|
+
"pluginAlias": "@proletariat/cli",
|
|
6523
|
+
"pluginName": "@proletariat/cli",
|
|
6524
|
+
"pluginType": "core",
|
|
6525
|
+
"strict": true,
|
|
6526
|
+
"isESM": true,
|
|
6527
|
+
"relativePath": [
|
|
6528
|
+
"dist",
|
|
6529
|
+
"commands",
|
|
6530
|
+
"run",
|
|
6531
|
+
"index.js"
|
|
6532
|
+
]
|
|
6533
|
+
},
|
|
6441
6534
|
"repo:add": {
|
|
6442
6535
|
"aliases": [],
|
|
6443
6536
|
"args": {
|
|
@@ -6843,99 +6936,6 @@
|
|
|
6843
6936
|
"view.js"
|
|
6844
6937
|
]
|
|
6845
6938
|
},
|
|
6846
|
-
"run": {
|
|
6847
|
-
"aliases": [],
|
|
6848
|
-
"args": {
|
|
6849
|
-
"task": {
|
|
6850
|
-
"description": "Task description for the agent",
|
|
6851
|
-
"name": "task",
|
|
6852
|
-
"required": true
|
|
6853
|
-
}
|
|
6854
|
-
},
|
|
6855
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
6856
|
-
"examples": [
|
|
6857
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
6858
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
6859
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
6860
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
6861
|
-
],
|
|
6862
|
-
"flags": {
|
|
6863
|
-
"json": {
|
|
6864
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6865
|
-
"name": "json",
|
|
6866
|
-
"allowNo": false,
|
|
6867
|
-
"type": "boolean"
|
|
6868
|
-
},
|
|
6869
|
-
"machine": {
|
|
6870
|
-
"char": "m",
|
|
6871
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6872
|
-
"name": "machine",
|
|
6873
|
-
"allowNo": false,
|
|
6874
|
-
"type": "boolean"
|
|
6875
|
-
},
|
|
6876
|
-
"runner": {
|
|
6877
|
-
"char": "r",
|
|
6878
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
6879
|
-
"name": "runner",
|
|
6880
|
-
"hasDynamicHelp": false,
|
|
6881
|
-
"multiple": false,
|
|
6882
|
-
"type": "option"
|
|
6883
|
-
},
|
|
6884
|
-
"detached": {
|
|
6885
|
-
"char": "d",
|
|
6886
|
-
"description": "Run in background (detached)",
|
|
6887
|
-
"name": "detached",
|
|
6888
|
-
"allowNo": false,
|
|
6889
|
-
"type": "boolean"
|
|
6890
|
-
},
|
|
6891
|
-
"directory": {
|
|
6892
|
-
"description": "Working directory (default: cwd)",
|
|
6893
|
-
"name": "directory",
|
|
6894
|
-
"hasDynamicHelp": false,
|
|
6895
|
-
"multiple": false,
|
|
6896
|
-
"type": "option"
|
|
6897
|
-
},
|
|
6898
|
-
"permission-mode": {
|
|
6899
|
-
"char": "p",
|
|
6900
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
6901
|
-
"name": "permission-mode",
|
|
6902
|
-
"hasDynamicHelp": false,
|
|
6903
|
-
"multiple": false,
|
|
6904
|
-
"options": [
|
|
6905
|
-
"danger",
|
|
6906
|
-
"safe"
|
|
6907
|
-
],
|
|
6908
|
-
"type": "option"
|
|
6909
|
-
},
|
|
6910
|
-
"environment": {
|
|
6911
|
-
"char": "e",
|
|
6912
|
-
"description": "Environment to run in",
|
|
6913
|
-
"name": "environment",
|
|
6914
|
-
"hasDynamicHelp": false,
|
|
6915
|
-
"multiple": false,
|
|
6916
|
-
"options": [
|
|
6917
|
-
"host",
|
|
6918
|
-
"docker",
|
|
6919
|
-
"podman"
|
|
6920
|
-
],
|
|
6921
|
-
"type": "option"
|
|
6922
|
-
}
|
|
6923
|
-
},
|
|
6924
|
-
"hasDynamicHelp": false,
|
|
6925
|
-
"hiddenAliases": [],
|
|
6926
|
-
"id": "run",
|
|
6927
|
-
"pluginAlias": "@proletariat/cli",
|
|
6928
|
-
"pluginName": "@proletariat/cli",
|
|
6929
|
-
"pluginType": "core",
|
|
6930
|
-
"strict": true,
|
|
6931
|
-
"isESM": true,
|
|
6932
|
-
"relativePath": [
|
|
6933
|
-
"dist",
|
|
6934
|
-
"commands",
|
|
6935
|
-
"run",
|
|
6936
|
-
"index.js"
|
|
6937
|
-
]
|
|
6938
|
-
},
|
|
6939
6939
|
"shortcut:connect": {
|
|
6940
6940
|
"aliases": [],
|
|
6941
6941
|
"args": {},
|
|
@@ -7004,266 +7004,7 @@
|
|
|
7004
7004
|
"connect.js"
|
|
7005
7005
|
]
|
|
7006
7006
|
},
|
|
7007
|
-
"
|
|
7008
|
-
"aliases": [],
|
|
7009
|
-
"args": {},
|
|
7010
|
-
"description": "Book a call for support",
|
|
7011
|
-
"examples": [
|
|
7012
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7013
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
7014
|
-
],
|
|
7015
|
-
"flags": {
|
|
7016
|
-
"json": {
|
|
7017
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7018
|
-
"name": "json",
|
|
7019
|
-
"allowNo": false,
|
|
7020
|
-
"type": "boolean"
|
|
7021
|
-
},
|
|
7022
|
-
"machine": {
|
|
7023
|
-
"char": "m",
|
|
7024
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7025
|
-
"name": "machine",
|
|
7026
|
-
"allowNo": false,
|
|
7027
|
-
"type": "boolean"
|
|
7028
|
-
}
|
|
7029
|
-
},
|
|
7030
|
-
"hasDynamicHelp": false,
|
|
7031
|
-
"hiddenAliases": [],
|
|
7032
|
-
"id": "support:book",
|
|
7033
|
-
"pluginAlias": "@proletariat/cli",
|
|
7034
|
-
"pluginName": "@proletariat/cli",
|
|
7035
|
-
"pluginType": "core",
|
|
7036
|
-
"strict": true,
|
|
7037
|
-
"enableJsonFlag": false,
|
|
7038
|
-
"isESM": true,
|
|
7039
|
-
"relativePath": [
|
|
7040
|
-
"dist",
|
|
7041
|
-
"commands",
|
|
7042
|
-
"support",
|
|
7043
|
-
"book.js"
|
|
7044
|
-
]
|
|
7045
|
-
},
|
|
7046
|
-
"support:discord": {
|
|
7047
|
-
"aliases": [],
|
|
7048
|
-
"args": {},
|
|
7049
|
-
"description": "Join the Discord community",
|
|
7050
|
-
"examples": [
|
|
7051
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7052
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
7053
|
-
],
|
|
7054
|
-
"flags": {
|
|
7055
|
-
"json": {
|
|
7056
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7057
|
-
"name": "json",
|
|
7058
|
-
"allowNo": false,
|
|
7059
|
-
"type": "boolean"
|
|
7060
|
-
},
|
|
7061
|
-
"machine": {
|
|
7062
|
-
"char": "m",
|
|
7063
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7064
|
-
"name": "machine",
|
|
7065
|
-
"allowNo": false,
|
|
7066
|
-
"type": "boolean"
|
|
7067
|
-
}
|
|
7068
|
-
},
|
|
7069
|
-
"hasDynamicHelp": false,
|
|
7070
|
-
"hiddenAliases": [],
|
|
7071
|
-
"id": "support:discord",
|
|
7072
|
-
"pluginAlias": "@proletariat/cli",
|
|
7073
|
-
"pluginName": "@proletariat/cli",
|
|
7074
|
-
"pluginType": "core",
|
|
7075
|
-
"strict": true,
|
|
7076
|
-
"enableJsonFlag": false,
|
|
7077
|
-
"isESM": true,
|
|
7078
|
-
"relativePath": [
|
|
7079
|
-
"dist",
|
|
7080
|
-
"commands",
|
|
7081
|
-
"support",
|
|
7082
|
-
"discord.js"
|
|
7083
|
-
]
|
|
7084
|
-
},
|
|
7085
|
-
"support:docs": {
|
|
7086
|
-
"aliases": [],
|
|
7087
|
-
"args": {},
|
|
7088
|
-
"description": "Open documentation in browser",
|
|
7089
|
-
"examples": [
|
|
7090
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7091
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
7092
|
-
],
|
|
7093
|
-
"flags": {
|
|
7094
|
-
"json": {
|
|
7095
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7096
|
-
"name": "json",
|
|
7097
|
-
"allowNo": false,
|
|
7098
|
-
"type": "boolean"
|
|
7099
|
-
},
|
|
7100
|
-
"machine": {
|
|
7101
|
-
"char": "m",
|
|
7102
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7103
|
-
"name": "machine",
|
|
7104
|
-
"allowNo": false,
|
|
7105
|
-
"type": "boolean"
|
|
7106
|
-
}
|
|
7107
|
-
},
|
|
7108
|
-
"hasDynamicHelp": false,
|
|
7109
|
-
"hiddenAliases": [],
|
|
7110
|
-
"id": "support:docs",
|
|
7111
|
-
"pluginAlias": "@proletariat/cli",
|
|
7112
|
-
"pluginName": "@proletariat/cli",
|
|
7113
|
-
"pluginType": "core",
|
|
7114
|
-
"strict": true,
|
|
7115
|
-
"enableJsonFlag": false,
|
|
7116
|
-
"isESM": true,
|
|
7117
|
-
"relativePath": [
|
|
7118
|
-
"dist",
|
|
7119
|
-
"commands",
|
|
7120
|
-
"support",
|
|
7121
|
-
"docs.js"
|
|
7122
|
-
]
|
|
7123
|
-
},
|
|
7124
|
-
"support": {
|
|
7125
|
-
"aliases": [],
|
|
7126
|
-
"args": {},
|
|
7127
|
-
"description": "Get help, troubleshoot, and connect with the community",
|
|
7128
|
-
"examples": [
|
|
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"
|
|
7135
|
-
],
|
|
7136
|
-
"flags": {
|
|
7137
|
-
"json": {
|
|
7138
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7139
|
-
"name": "json",
|
|
7140
|
-
"allowNo": false,
|
|
7141
|
-
"type": "boolean"
|
|
7142
|
-
},
|
|
7143
|
-
"machine": {
|
|
7144
|
-
"char": "m",
|
|
7145
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7146
|
-
"name": "machine",
|
|
7147
|
-
"allowNo": false,
|
|
7148
|
-
"type": "boolean"
|
|
7149
|
-
}
|
|
7150
|
-
},
|
|
7151
|
-
"hasDynamicHelp": false,
|
|
7152
|
-
"hiddenAliases": [],
|
|
7153
|
-
"id": "support",
|
|
7154
|
-
"pluginAlias": "@proletariat/cli",
|
|
7155
|
-
"pluginName": "@proletariat/cli",
|
|
7156
|
-
"pluginType": "core",
|
|
7157
|
-
"strict": true,
|
|
7158
|
-
"enableJsonFlag": false,
|
|
7159
|
-
"isESM": true,
|
|
7160
|
-
"relativePath": [
|
|
7161
|
-
"dist",
|
|
7162
|
-
"commands",
|
|
7163
|
-
"support",
|
|
7164
|
-
"index.js"
|
|
7165
|
-
]
|
|
7166
|
-
},
|
|
7167
|
-
"support:issues": {
|
|
7168
|
-
"aliases": [],
|
|
7169
|
-
"args": {},
|
|
7170
|
-
"description": "Browse GitHub Issues",
|
|
7171
|
-
"examples": [
|
|
7172
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7173
|
-
"<%= config.bin %> <%= command.id %> --browser",
|
|
7174
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
7175
|
-
],
|
|
7176
|
-
"flags": {
|
|
7177
|
-
"json": {
|
|
7178
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7179
|
-
"name": "json",
|
|
7180
|
-
"allowNo": false,
|
|
7181
|
-
"type": "boolean"
|
|
7182
|
-
},
|
|
7183
|
-
"machine": {
|
|
7184
|
-
"char": "m",
|
|
7185
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7186
|
-
"name": "machine",
|
|
7187
|
-
"allowNo": false,
|
|
7188
|
-
"type": "boolean"
|
|
7189
|
-
},
|
|
7190
|
-
"browser": {
|
|
7191
|
-
"description": "Open issues in browser (default behavior)",
|
|
7192
|
-
"name": "browser",
|
|
7193
|
-
"allowNo": true,
|
|
7194
|
-
"type": "boolean"
|
|
7195
|
-
}
|
|
7196
|
-
},
|
|
7197
|
-
"hasDynamicHelp": false,
|
|
7198
|
-
"hiddenAliases": [],
|
|
7199
|
-
"id": "support:issues",
|
|
7200
|
-
"pluginAlias": "@proletariat/cli",
|
|
7201
|
-
"pluginName": "@proletariat/cli",
|
|
7202
|
-
"pluginType": "core",
|
|
7203
|
-
"strict": true,
|
|
7204
|
-
"enableJsonFlag": false,
|
|
7205
|
-
"isESM": true,
|
|
7206
|
-
"relativePath": [
|
|
7207
|
-
"dist",
|
|
7208
|
-
"commands",
|
|
7209
|
-
"support",
|
|
7210
|
-
"issues.js"
|
|
7211
|
-
]
|
|
7212
|
-
},
|
|
7213
|
-
"support:logs": {
|
|
7214
|
-
"aliases": [],
|
|
7215
|
-
"args": {},
|
|
7216
|
-
"description": "Collect diagnostic info for troubleshooting",
|
|
7217
|
-
"examples": [
|
|
7218
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7219
|
-
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
7220
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
7221
|
-
],
|
|
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
|
-
},
|
|
7231
|
-
"json": {
|
|
7232
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7233
|
-
"name": "json",
|
|
7234
|
-
"allowNo": false,
|
|
7235
|
-
"type": "boolean"
|
|
7236
|
-
},
|
|
7237
|
-
"machine": {
|
|
7238
|
-
"char": "m",
|
|
7239
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7240
|
-
"name": "machine",
|
|
7241
|
-
"allowNo": false,
|
|
7242
|
-
"type": "boolean"
|
|
7243
|
-
},
|
|
7244
|
-
"clipboard": {
|
|
7245
|
-
"description": "Copy diagnostics to clipboard",
|
|
7246
|
-
"name": "clipboard",
|
|
7247
|
-
"allowNo": false,
|
|
7248
|
-
"type": "boolean"
|
|
7249
|
-
}
|
|
7250
|
-
},
|
|
7251
|
-
"hasDynamicHelp": false,
|
|
7252
|
-
"hiddenAliases": [],
|
|
7253
|
-
"id": "support:logs",
|
|
7254
|
-
"pluginAlias": "@proletariat/cli",
|
|
7255
|
-
"pluginName": "@proletariat/cli",
|
|
7256
|
-
"pluginType": "core",
|
|
7257
|
-
"strict": true,
|
|
7258
|
-
"isESM": true,
|
|
7259
|
-
"relativePath": [
|
|
7260
|
-
"dist",
|
|
7261
|
-
"commands",
|
|
7262
|
-
"support",
|
|
7263
|
-
"logs.js"
|
|
7264
|
-
]
|
|
7265
|
-
},
|
|
7266
|
-
"session:attach": {
|
|
7007
|
+
"session:attach": {
|
|
7267
7008
|
"aliases": [],
|
|
7268
7009
|
"args": {
|
|
7269
7010
|
"session": {
|
|
@@ -8196,23 +7937,15 @@
|
|
|
8196
7937
|
"watch.js"
|
|
8197
7938
|
]
|
|
8198
7939
|
},
|
|
8199
|
-
"
|
|
7940
|
+
"support:book": {
|
|
8200
7941
|
"aliases": [],
|
|
8201
7942
|
"args": {},
|
|
8202
|
-
"description": "
|
|
7943
|
+
"description": "Book a call for support",
|
|
8203
7944
|
"examples": [
|
|
8204
7945
|
"<%= config.bin %> <%= command.id %>",
|
|
8205
|
-
"<%= config.bin %> <%= command.id %> --
|
|
7946
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8206
7947
|
],
|
|
8207
7948
|
"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
7949
|
"json": {
|
|
8217
7950
|
"description": "Output as JSON for AI agents/scripts",
|
|
8218
7951
|
"name": "json",
|
|
@@ -8225,35 +7958,31 @@
|
|
|
8225
7958
|
"name": "machine",
|
|
8226
7959
|
"allowNo": false,
|
|
8227
7960
|
"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
7961
|
}
|
|
8235
7962
|
},
|
|
8236
7963
|
"hasDynamicHelp": false,
|
|
8237
7964
|
"hiddenAliases": [],
|
|
8238
|
-
"id": "
|
|
7965
|
+
"id": "support:book",
|
|
8239
7966
|
"pluginAlias": "@proletariat/cli",
|
|
8240
7967
|
"pluginName": "@proletariat/cli",
|
|
8241
7968
|
"pluginType": "core",
|
|
8242
7969
|
"strict": true,
|
|
7970
|
+
"enableJsonFlag": false,
|
|
8243
7971
|
"isESM": true,
|
|
8244
7972
|
"relativePath": [
|
|
8245
7973
|
"dist",
|
|
8246
7974
|
"commands",
|
|
8247
|
-
"
|
|
8248
|
-
"
|
|
7975
|
+
"support",
|
|
7976
|
+
"book.js"
|
|
8249
7977
|
]
|
|
8250
7978
|
},
|
|
8251
|
-
"
|
|
7979
|
+
"support:discord": {
|
|
8252
7980
|
"aliases": [],
|
|
8253
7981
|
"args": {},
|
|
8254
|
-
"description": "
|
|
7982
|
+
"description": "Join the Discord community",
|
|
8255
7983
|
"examples": [
|
|
8256
|
-
"<%= config.bin %> <%= command.id %>"
|
|
7984
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7985
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8257
7986
|
],
|
|
8258
7987
|
"flags": {
|
|
8259
7988
|
"json": {
|
|
@@ -8272,25 +8001,27 @@
|
|
|
8272
8001
|
},
|
|
8273
8002
|
"hasDynamicHelp": false,
|
|
8274
8003
|
"hiddenAliases": [],
|
|
8275
|
-
"id": "
|
|
8004
|
+
"id": "support:discord",
|
|
8276
8005
|
"pluginAlias": "@proletariat/cli",
|
|
8277
8006
|
"pluginName": "@proletariat/cli",
|
|
8278
8007
|
"pluginType": "core",
|
|
8279
8008
|
"strict": true,
|
|
8009
|
+
"enableJsonFlag": false,
|
|
8280
8010
|
"isESM": true,
|
|
8281
8011
|
"relativePath": [
|
|
8282
8012
|
"dist",
|
|
8283
8013
|
"commands",
|
|
8284
|
-
"
|
|
8285
|
-
"
|
|
8014
|
+
"support",
|
|
8015
|
+
"discord.js"
|
|
8286
8016
|
]
|
|
8287
8017
|
},
|
|
8288
|
-
"
|
|
8018
|
+
"support:docs": {
|
|
8289
8019
|
"aliases": [],
|
|
8290
8020
|
"args": {},
|
|
8291
|
-
"description": "
|
|
8021
|
+
"description": "Open documentation in browser",
|
|
8292
8022
|
"examples": [
|
|
8293
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8023
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8024
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8294
8025
|
],
|
|
8295
8026
|
"flags": {
|
|
8296
8027
|
"json": {
|
|
@@ -8309,25 +8040,31 @@
|
|
|
8309
8040
|
},
|
|
8310
8041
|
"hasDynamicHelp": false,
|
|
8311
8042
|
"hiddenAliases": [],
|
|
8312
|
-
"id": "
|
|
8043
|
+
"id": "support:docs",
|
|
8313
8044
|
"pluginAlias": "@proletariat/cli",
|
|
8314
8045
|
"pluginName": "@proletariat/cli",
|
|
8315
8046
|
"pluginType": "core",
|
|
8316
8047
|
"strict": true,
|
|
8048
|
+
"enableJsonFlag": false,
|
|
8317
8049
|
"isESM": true,
|
|
8318
8050
|
"relativePath": [
|
|
8319
8051
|
"dist",
|
|
8320
8052
|
"commands",
|
|
8321
|
-
"
|
|
8322
|
-
"
|
|
8053
|
+
"support",
|
|
8054
|
+
"docs.js"
|
|
8323
8055
|
]
|
|
8324
8056
|
},
|
|
8325
|
-
"
|
|
8057
|
+
"support": {
|
|
8326
8058
|
"aliases": [],
|
|
8327
8059
|
"args": {},
|
|
8328
|
-
"description": "
|
|
8060
|
+
"description": "Get help, troubleshoot, and connect with the community",
|
|
8329
8061
|
"examples": [
|
|
8330
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8062
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8063
|
+
"<%= config.bin %> <%= command.id %> book",
|
|
8064
|
+
"<%= config.bin %> <%= command.id %> docs",
|
|
8065
|
+
"<%= config.bin %> <%= command.id %> discord",
|
|
8066
|
+
"<%= config.bin %> <%= command.id %> issues",
|
|
8067
|
+
"<%= config.bin %> <%= command.id %> logs"
|
|
8331
8068
|
],
|
|
8332
8069
|
"flags": {
|
|
8333
8070
|
"json": {
|
|
@@ -8346,26 +8083,28 @@
|
|
|
8346
8083
|
},
|
|
8347
8084
|
"hasDynamicHelp": false,
|
|
8348
8085
|
"hiddenAliases": [],
|
|
8349
|
-
"id": "
|
|
8086
|
+
"id": "support",
|
|
8350
8087
|
"pluginAlias": "@proletariat/cli",
|
|
8351
8088
|
"pluginName": "@proletariat/cli",
|
|
8352
8089
|
"pluginType": "core",
|
|
8353
8090
|
"strict": true,
|
|
8091
|
+
"enableJsonFlag": false,
|
|
8354
8092
|
"isESM": true,
|
|
8355
8093
|
"relativePath": [
|
|
8356
8094
|
"dist",
|
|
8357
8095
|
"commands",
|
|
8358
|
-
"
|
|
8359
|
-
"
|
|
8096
|
+
"support",
|
|
8097
|
+
"index.js"
|
|
8360
8098
|
]
|
|
8361
8099
|
},
|
|
8362
|
-
"
|
|
8100
|
+
"support:issues": {
|
|
8363
8101
|
"aliases": [],
|
|
8364
8102
|
"args": {},
|
|
8365
|
-
"description": "
|
|
8103
|
+
"description": "Browse GitHub Issues",
|
|
8366
8104
|
"examples": [
|
|
8367
8105
|
"<%= config.bin %> <%= command.id %>",
|
|
8368
|
-
"<%= config.bin %> <%= command.id %> --
|
|
8106
|
+
"<%= config.bin %> <%= command.id %> --browser",
|
|
8107
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8369
8108
|
],
|
|
8370
8109
|
"flags": {
|
|
8371
8110
|
"json": {
|
|
@@ -8381,39 +8120,47 @@
|
|
|
8381
8120
|
"allowNo": false,
|
|
8382
8121
|
"type": "boolean"
|
|
8383
8122
|
},
|
|
8384
|
-
"
|
|
8385
|
-
"
|
|
8386
|
-
"
|
|
8387
|
-
"
|
|
8388
|
-
"
|
|
8389
|
-
"hasDynamicHelp": false,
|
|
8390
|
-
"multiple": false,
|
|
8391
|
-
"type": "option"
|
|
8123
|
+
"browser": {
|
|
8124
|
+
"description": "Open issues in browser (default behavior)",
|
|
8125
|
+
"name": "browser",
|
|
8126
|
+
"allowNo": true,
|
|
8127
|
+
"type": "boolean"
|
|
8392
8128
|
}
|
|
8393
8129
|
},
|
|
8394
8130
|
"hasDynamicHelp": false,
|
|
8395
8131
|
"hiddenAliases": [],
|
|
8396
|
-
"id": "
|
|
8132
|
+
"id": "support:issues",
|
|
8397
8133
|
"pluginAlias": "@proletariat/cli",
|
|
8398
8134
|
"pluginName": "@proletariat/cli",
|
|
8399
8135
|
"pluginType": "core",
|
|
8400
8136
|
"strict": true,
|
|
8137
|
+
"enableJsonFlag": false,
|
|
8401
8138
|
"isESM": true,
|
|
8402
8139
|
"relativePath": [
|
|
8403
8140
|
"dist",
|
|
8404
8141
|
"commands",
|
|
8405
|
-
"
|
|
8406
|
-
"
|
|
8142
|
+
"support",
|
|
8143
|
+
"issues.js"
|
|
8407
8144
|
]
|
|
8408
8145
|
},
|
|
8409
|
-
"
|
|
8146
|
+
"support:logs": {
|
|
8410
8147
|
"aliases": [],
|
|
8411
8148
|
"args": {},
|
|
8412
|
-
"description": "
|
|
8149
|
+
"description": "Collect diagnostic info for troubleshooting",
|
|
8413
8150
|
"examples": [
|
|
8414
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8151
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8152
|
+
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
8153
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8415
8154
|
],
|
|
8416
8155
|
"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
|
+
},
|
|
8417
8164
|
"json": {
|
|
8418
8165
|
"description": "Output as JSON for AI agents/scripts",
|
|
8419
8166
|
"name": "json",
|
|
@@ -8426,11 +8173,17 @@
|
|
|
8426
8173
|
"name": "machine",
|
|
8427
8174
|
"allowNo": false,
|
|
8428
8175
|
"type": "boolean"
|
|
8176
|
+
},
|
|
8177
|
+
"clipboard": {
|
|
8178
|
+
"description": "Copy diagnostics to clipboard",
|
|
8179
|
+
"name": "clipboard",
|
|
8180
|
+
"allowNo": false,
|
|
8181
|
+
"type": "boolean"
|
|
8429
8182
|
}
|
|
8430
8183
|
},
|
|
8431
8184
|
"hasDynamicHelp": false,
|
|
8432
8185
|
"hiddenAliases": [],
|
|
8433
|
-
"id": "
|
|
8186
|
+
"id": "support:logs",
|
|
8434
8187
|
"pluginAlias": "@proletariat/cli",
|
|
8435
8188
|
"pluginName": "@proletariat/cli",
|
|
8436
8189
|
"pluginType": "core",
|
|
@@ -8439,18 +8192,27 @@
|
|
|
8439
8192
|
"relativePath": [
|
|
8440
8193
|
"dist",
|
|
8441
8194
|
"commands",
|
|
8442
|
-
"
|
|
8443
|
-
"
|
|
8195
|
+
"support",
|
|
8196
|
+
"logs.js"
|
|
8444
8197
|
]
|
|
8445
8198
|
},
|
|
8446
|
-
"sync
|
|
8199
|
+
"sync": {
|
|
8447
8200
|
"aliases": [],
|
|
8448
8201
|
"args": {},
|
|
8449
|
-
"description": "
|
|
8202
|
+
"description": "Reconcile ticket state with GitHub PR status",
|
|
8450
8203
|
"examples": [
|
|
8451
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8204
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8205
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
8452
8206
|
],
|
|
8453
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
|
+
},
|
|
8454
8216
|
"json": {
|
|
8455
8217
|
"description": "Output as JSON for AI agents/scripts",
|
|
8456
8218
|
"name": "json",
|
|
@@ -8463,11 +8225,17 @@
|
|
|
8463
8225
|
"name": "machine",
|
|
8464
8226
|
"allowNo": false,
|
|
8465
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"
|
|
8466
8234
|
}
|
|
8467
8235
|
},
|
|
8468
8236
|
"hasDynamicHelp": false,
|
|
8469
8237
|
"hiddenAliases": [],
|
|
8470
|
-
"id": "sync
|
|
8238
|
+
"id": "sync",
|
|
8471
8239
|
"pluginAlias": "@proletariat/cli",
|
|
8472
8240
|
"pluginName": "@proletariat/cli",
|
|
8473
8241
|
"pluginType": "core",
|
|
@@ -8477,13 +8245,13 @@
|
|
|
8477
8245
|
"dist",
|
|
8478
8246
|
"commands",
|
|
8479
8247
|
"sync",
|
|
8480
|
-
"
|
|
8248
|
+
"index.js"
|
|
8481
8249
|
]
|
|
8482
8250
|
},
|
|
8483
|
-
"
|
|
8251
|
+
"sync:pause": {
|
|
8484
8252
|
"aliases": [],
|
|
8485
8253
|
"args": {},
|
|
8486
|
-
"description": "
|
|
8254
|
+
"description": "Pause the merge queue (keep monitoring but stop merging)",
|
|
8487
8255
|
"examples": [
|
|
8488
8256
|
"<%= config.bin %> <%= command.id %>"
|
|
8489
8257
|
],
|
|
@@ -8504,24 +8272,23 @@
|
|
|
8504
8272
|
},
|
|
8505
8273
|
"hasDynamicHelp": false,
|
|
8506
8274
|
"hiddenAliases": [],
|
|
8507
|
-
"id": "
|
|
8275
|
+
"id": "sync:pause",
|
|
8508
8276
|
"pluginAlias": "@proletariat/cli",
|
|
8509
8277
|
"pluginName": "@proletariat/cli",
|
|
8510
8278
|
"pluginType": "core",
|
|
8511
8279
|
"strict": true,
|
|
8512
|
-
"enableJsonFlag": false,
|
|
8513
8280
|
"isESM": true,
|
|
8514
8281
|
"relativePath": [
|
|
8515
8282
|
"dist",
|
|
8516
8283
|
"commands",
|
|
8517
|
-
"
|
|
8518
|
-
"
|
|
8284
|
+
"sync",
|
|
8285
|
+
"pause.js"
|
|
8519
8286
|
]
|
|
8520
8287
|
},
|
|
8521
|
-
"
|
|
8288
|
+
"sync:queue": {
|
|
8522
8289
|
"aliases": [],
|
|
8523
8290
|
"args": {},
|
|
8524
|
-
"description": "
|
|
8291
|
+
"description": "Show the merge queue state",
|
|
8525
8292
|
"examples": [
|
|
8526
8293
|
"<%= config.bin %> <%= command.id %>"
|
|
8527
8294
|
],
|
|
@@ -8542,27 +8309,25 @@
|
|
|
8542
8309
|
},
|
|
8543
8310
|
"hasDynamicHelp": false,
|
|
8544
8311
|
"hiddenAliases": [],
|
|
8545
|
-
"id": "
|
|
8312
|
+
"id": "sync:queue",
|
|
8546
8313
|
"pluginAlias": "@proletariat/cli",
|
|
8547
8314
|
"pluginName": "@proletariat/cli",
|
|
8548
8315
|
"pluginType": "core",
|
|
8549
8316
|
"strict": true,
|
|
8550
|
-
"enableJsonFlag": false,
|
|
8551
8317
|
"isESM": true,
|
|
8552
8318
|
"relativePath": [
|
|
8553
8319
|
"dist",
|
|
8554
8320
|
"commands",
|
|
8555
|
-
"
|
|
8556
|
-
"
|
|
8321
|
+
"sync",
|
|
8322
|
+
"queue.js"
|
|
8557
8323
|
]
|
|
8558
8324
|
},
|
|
8559
|
-
"
|
|
8325
|
+
"sync:resume": {
|
|
8560
8326
|
"aliases": [],
|
|
8561
8327
|
"args": {},
|
|
8562
|
-
"description": "
|
|
8328
|
+
"description": "Resume the merge queue",
|
|
8563
8329
|
"examples": [
|
|
8564
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8565
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
8330
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8566
8331
|
],
|
|
8567
8332
|
"flags": {
|
|
8568
8333
|
"json": {
|
|
@@ -8581,26 +8346,26 @@
|
|
|
8581
8346
|
},
|
|
8582
8347
|
"hasDynamicHelp": false,
|
|
8583
8348
|
"hiddenAliases": [],
|
|
8584
|
-
"id": "
|
|
8349
|
+
"id": "sync:resume",
|
|
8585
8350
|
"pluginAlias": "@proletariat/cli",
|
|
8586
8351
|
"pluginName": "@proletariat/cli",
|
|
8587
8352
|
"pluginType": "core",
|
|
8588
8353
|
"strict": true,
|
|
8589
|
-
"enableJsonFlag": false,
|
|
8590
8354
|
"isESM": true,
|
|
8591
8355
|
"relativePath": [
|
|
8592
8356
|
"dist",
|
|
8593
8357
|
"commands",
|
|
8594
|
-
"
|
|
8595
|
-
"
|
|
8358
|
+
"sync",
|
|
8359
|
+
"resume.js"
|
|
8596
8360
|
]
|
|
8597
8361
|
},
|
|
8598
|
-
"
|
|
8362
|
+
"sync:start": {
|
|
8599
8363
|
"aliases": [],
|
|
8600
8364
|
"args": {},
|
|
8601
|
-
"description": "
|
|
8365
|
+
"description": "Start the board sync daemon",
|
|
8602
8366
|
"examples": [
|
|
8603
|
-
"<%= config.bin %>
|
|
8367
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8368
|
+
"<%= config.bin %> <%= command.id %> --interval 30"
|
|
8604
8369
|
],
|
|
8605
8370
|
"flags": {
|
|
8606
8371
|
"json": {
|
|
@@ -8615,48 +8380,40 @@
|
|
|
8615
8380
|
"name": "machine",
|
|
8616
8381
|
"allowNo": false,
|
|
8617
8382
|
"type": "boolean"
|
|
8383
|
+
},
|
|
8384
|
+
"interval": {
|
|
8385
|
+
"char": "i",
|
|
8386
|
+
"description": "Poll interval in seconds",
|
|
8387
|
+
"name": "interval",
|
|
8388
|
+
"default": 60,
|
|
8389
|
+
"hasDynamicHelp": false,
|
|
8390
|
+
"multiple": false,
|
|
8391
|
+
"type": "option"
|
|
8618
8392
|
}
|
|
8619
8393
|
},
|
|
8620
8394
|
"hasDynamicHelp": false,
|
|
8621
8395
|
"hiddenAliases": [],
|
|
8622
|
-
"id": "
|
|
8396
|
+
"id": "sync:start",
|
|
8623
8397
|
"pluginAlias": "@proletariat/cli",
|
|
8624
8398
|
"pluginName": "@proletariat/cli",
|
|
8625
8399
|
"pluginType": "core",
|
|
8626
8400
|
"strict": true,
|
|
8627
|
-
"enableJsonFlag": false,
|
|
8628
8401
|
"isESM": true,
|
|
8629
8402
|
"relativePath": [
|
|
8630
8403
|
"dist",
|
|
8631
8404
|
"commands",
|
|
8632
|
-
"
|
|
8633
|
-
"
|
|
8405
|
+
"sync",
|
|
8406
|
+
"start.js"
|
|
8634
8407
|
]
|
|
8635
8408
|
},
|
|
8636
|
-
"
|
|
8409
|
+
"sync:status": {
|
|
8637
8410
|
"aliases": [],
|
|
8638
|
-
"args": {
|
|
8639
|
-
|
|
8640
|
-
"description": "Title to set for the terminal tab/window",
|
|
8641
|
-
"name": "title",
|
|
8642
|
-
"required": false
|
|
8643
|
-
}
|
|
8644
|
-
},
|
|
8645
|
-
"description": "Set the terminal tab/window title",
|
|
8411
|
+
"args": {},
|
|
8412
|
+
"description": "Check the board sync daemon status",
|
|
8646
8413
|
"examples": [
|
|
8647
|
-
"<%= config.bin %> <%= command.id %>
|
|
8648
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
8649
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
8650
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
8414
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8651
8415
|
],
|
|
8652
8416
|
"flags": {
|
|
8653
|
-
"reset": {
|
|
8654
|
-
"char": "r",
|
|
8655
|
-
"description": "Reset terminal title to default",
|
|
8656
|
-
"name": "reset",
|
|
8657
|
-
"allowNo": false,
|
|
8658
|
-
"type": "boolean"
|
|
8659
|
-
},
|
|
8660
8417
|
"json": {
|
|
8661
8418
|
"description": "Output as JSON for AI agents/scripts",
|
|
8662
8419
|
"name": "json",
|
|
@@ -8673,7 +8430,7 @@
|
|
|
8673
8430
|
},
|
|
8674
8431
|
"hasDynamicHelp": false,
|
|
8675
8432
|
"hiddenAliases": [],
|
|
8676
|
-
"id": "
|
|
8433
|
+
"id": "sync:status",
|
|
8677
8434
|
"pluginAlias": "@proletariat/cli",
|
|
8678
8435
|
"pluginName": "@proletariat/cli",
|
|
8679
8436
|
"pluginType": "core",
|
|
@@ -8682,25 +8439,268 @@
|
|
|
8682
8439
|
"relativePath": [
|
|
8683
8440
|
"dist",
|
|
8684
8441
|
"commands",
|
|
8685
|
-
"
|
|
8686
|
-
"
|
|
8442
|
+
"sync",
|
|
8443
|
+
"status.js"
|
|
8687
8444
|
]
|
|
8688
8445
|
},
|
|
8689
|
-
"
|
|
8446
|
+
"sync:stop": {
|
|
8690
8447
|
"aliases": [],
|
|
8691
|
-
"args": {
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
"
|
|
8698
|
-
"description": "
|
|
8699
|
-
"name": "
|
|
8700
|
-
"
|
|
8701
|
-
|
|
8702
|
-
|
|
8703
|
-
|
|
8448
|
+
"args": {},
|
|
8449
|
+
"description": "Stop the board sync daemon",
|
|
8450
|
+
"examples": [
|
|
8451
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8452
|
+
],
|
|
8453
|
+
"flags": {
|
|
8454
|
+
"json": {
|
|
8455
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8456
|
+
"name": "json",
|
|
8457
|
+
"allowNo": false,
|
|
8458
|
+
"type": "boolean"
|
|
8459
|
+
},
|
|
8460
|
+
"machine": {
|
|
8461
|
+
"char": "m",
|
|
8462
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8463
|
+
"name": "machine",
|
|
8464
|
+
"allowNo": false,
|
|
8465
|
+
"type": "boolean"
|
|
8466
|
+
}
|
|
8467
|
+
},
|
|
8468
|
+
"hasDynamicHelp": false,
|
|
8469
|
+
"hiddenAliases": [],
|
|
8470
|
+
"id": "sync:stop",
|
|
8471
|
+
"pluginAlias": "@proletariat/cli",
|
|
8472
|
+
"pluginName": "@proletariat/cli",
|
|
8473
|
+
"pluginType": "core",
|
|
8474
|
+
"strict": true,
|
|
8475
|
+
"isESM": true,
|
|
8476
|
+
"relativePath": [
|
|
8477
|
+
"dist",
|
|
8478
|
+
"commands",
|
|
8479
|
+
"sync",
|
|
8480
|
+
"stop.js"
|
|
8481
|
+
]
|
|
8482
|
+
},
|
|
8483
|
+
"telemetry:disable": {
|
|
8484
|
+
"aliases": [],
|
|
8485
|
+
"args": {},
|
|
8486
|
+
"description": "Disable anonymous telemetry",
|
|
8487
|
+
"examples": [
|
|
8488
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8489
|
+
],
|
|
8490
|
+
"flags": {
|
|
8491
|
+
"json": {
|
|
8492
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8493
|
+
"name": "json",
|
|
8494
|
+
"allowNo": false,
|
|
8495
|
+
"type": "boolean"
|
|
8496
|
+
},
|
|
8497
|
+
"machine": {
|
|
8498
|
+
"char": "m",
|
|
8499
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8500
|
+
"name": "machine",
|
|
8501
|
+
"allowNo": false,
|
|
8502
|
+
"type": "boolean"
|
|
8503
|
+
}
|
|
8504
|
+
},
|
|
8505
|
+
"hasDynamicHelp": false,
|
|
8506
|
+
"hiddenAliases": [],
|
|
8507
|
+
"id": "telemetry:disable",
|
|
8508
|
+
"pluginAlias": "@proletariat/cli",
|
|
8509
|
+
"pluginName": "@proletariat/cli",
|
|
8510
|
+
"pluginType": "core",
|
|
8511
|
+
"strict": true,
|
|
8512
|
+
"enableJsonFlag": false,
|
|
8513
|
+
"isESM": true,
|
|
8514
|
+
"relativePath": [
|
|
8515
|
+
"dist",
|
|
8516
|
+
"commands",
|
|
8517
|
+
"telemetry",
|
|
8518
|
+
"disable.js"
|
|
8519
|
+
]
|
|
8520
|
+
},
|
|
8521
|
+
"telemetry:enable": {
|
|
8522
|
+
"aliases": [],
|
|
8523
|
+
"args": {},
|
|
8524
|
+
"description": "Enable anonymous telemetry",
|
|
8525
|
+
"examples": [
|
|
8526
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8527
|
+
],
|
|
8528
|
+
"flags": {
|
|
8529
|
+
"json": {
|
|
8530
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8531
|
+
"name": "json",
|
|
8532
|
+
"allowNo": false,
|
|
8533
|
+
"type": "boolean"
|
|
8534
|
+
},
|
|
8535
|
+
"machine": {
|
|
8536
|
+
"char": "m",
|
|
8537
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8538
|
+
"name": "machine",
|
|
8539
|
+
"allowNo": false,
|
|
8540
|
+
"type": "boolean"
|
|
8541
|
+
}
|
|
8542
|
+
},
|
|
8543
|
+
"hasDynamicHelp": false,
|
|
8544
|
+
"hiddenAliases": [],
|
|
8545
|
+
"id": "telemetry:enable",
|
|
8546
|
+
"pluginAlias": "@proletariat/cli",
|
|
8547
|
+
"pluginName": "@proletariat/cli",
|
|
8548
|
+
"pluginType": "core",
|
|
8549
|
+
"strict": true,
|
|
8550
|
+
"enableJsonFlag": false,
|
|
8551
|
+
"isESM": true,
|
|
8552
|
+
"relativePath": [
|
|
8553
|
+
"dist",
|
|
8554
|
+
"commands",
|
|
8555
|
+
"telemetry",
|
|
8556
|
+
"enable.js"
|
|
8557
|
+
]
|
|
8558
|
+
},
|
|
8559
|
+
"telemetry": {
|
|
8560
|
+
"aliases": [],
|
|
8561
|
+
"args": {},
|
|
8562
|
+
"description": "Show telemetry status",
|
|
8563
|
+
"examples": [
|
|
8564
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8565
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8566
|
+
],
|
|
8567
|
+
"flags": {
|
|
8568
|
+
"json": {
|
|
8569
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8570
|
+
"name": "json",
|
|
8571
|
+
"allowNo": false,
|
|
8572
|
+
"type": "boolean"
|
|
8573
|
+
},
|
|
8574
|
+
"machine": {
|
|
8575
|
+
"char": "m",
|
|
8576
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8577
|
+
"name": "machine",
|
|
8578
|
+
"allowNo": false,
|
|
8579
|
+
"type": "boolean"
|
|
8580
|
+
}
|
|
8581
|
+
},
|
|
8582
|
+
"hasDynamicHelp": false,
|
|
8583
|
+
"hiddenAliases": [],
|
|
8584
|
+
"id": "telemetry",
|
|
8585
|
+
"pluginAlias": "@proletariat/cli",
|
|
8586
|
+
"pluginName": "@proletariat/cli",
|
|
8587
|
+
"pluginType": "core",
|
|
8588
|
+
"strict": true,
|
|
8589
|
+
"enableJsonFlag": false,
|
|
8590
|
+
"isESM": true,
|
|
8591
|
+
"relativePath": [
|
|
8592
|
+
"dist",
|
|
8593
|
+
"commands",
|
|
8594
|
+
"telemetry",
|
|
8595
|
+
"index.js"
|
|
8596
|
+
]
|
|
8597
|
+
},
|
|
8598
|
+
"telemetry:status": {
|
|
8599
|
+
"aliases": [],
|
|
8600
|
+
"args": {},
|
|
8601
|
+
"description": "Show telemetry status",
|
|
8602
|
+
"examples": [
|
|
8603
|
+
"<%= config.bin %> telemetry status"
|
|
8604
|
+
],
|
|
8605
|
+
"flags": {
|
|
8606
|
+
"json": {
|
|
8607
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8608
|
+
"name": "json",
|
|
8609
|
+
"allowNo": false,
|
|
8610
|
+
"type": "boolean"
|
|
8611
|
+
},
|
|
8612
|
+
"machine": {
|
|
8613
|
+
"char": "m",
|
|
8614
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8615
|
+
"name": "machine",
|
|
8616
|
+
"allowNo": false,
|
|
8617
|
+
"type": "boolean"
|
|
8618
|
+
}
|
|
8619
|
+
},
|
|
8620
|
+
"hasDynamicHelp": false,
|
|
8621
|
+
"hiddenAliases": [],
|
|
8622
|
+
"id": "telemetry:status",
|
|
8623
|
+
"pluginAlias": "@proletariat/cli",
|
|
8624
|
+
"pluginName": "@proletariat/cli",
|
|
8625
|
+
"pluginType": "core",
|
|
8626
|
+
"strict": true,
|
|
8627
|
+
"enableJsonFlag": false,
|
|
8628
|
+
"isESM": true,
|
|
8629
|
+
"relativePath": [
|
|
8630
|
+
"dist",
|
|
8631
|
+
"commands",
|
|
8632
|
+
"telemetry",
|
|
8633
|
+
"status.js"
|
|
8634
|
+
]
|
|
8635
|
+
},
|
|
8636
|
+
"terminal:title": {
|
|
8637
|
+
"aliases": [],
|
|
8638
|
+
"args": {
|
|
8639
|
+
"title": {
|
|
8640
|
+
"description": "Title to set for the terminal tab/window",
|
|
8641
|
+
"name": "title",
|
|
8642
|
+
"required": false
|
|
8643
|
+
}
|
|
8644
|
+
},
|
|
8645
|
+
"description": "Set the terminal tab/window title",
|
|
8646
|
+
"examples": [
|
|
8647
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
8648
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
8649
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
8650
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
8651
|
+
],
|
|
8652
|
+
"flags": {
|
|
8653
|
+
"reset": {
|
|
8654
|
+
"char": "r",
|
|
8655
|
+
"description": "Reset terminal title to default",
|
|
8656
|
+
"name": "reset",
|
|
8657
|
+
"allowNo": false,
|
|
8658
|
+
"type": "boolean"
|
|
8659
|
+
},
|
|
8660
|
+
"json": {
|
|
8661
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8662
|
+
"name": "json",
|
|
8663
|
+
"allowNo": false,
|
|
8664
|
+
"type": "boolean"
|
|
8665
|
+
},
|
|
8666
|
+
"machine": {
|
|
8667
|
+
"char": "m",
|
|
8668
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8669
|
+
"name": "machine",
|
|
8670
|
+
"allowNo": false,
|
|
8671
|
+
"type": "boolean"
|
|
8672
|
+
}
|
|
8673
|
+
},
|
|
8674
|
+
"hasDynamicHelp": false,
|
|
8675
|
+
"hiddenAliases": [],
|
|
8676
|
+
"id": "terminal:title",
|
|
8677
|
+
"pluginAlias": "@proletariat/cli",
|
|
8678
|
+
"pluginName": "@proletariat/cli",
|
|
8679
|
+
"pluginType": "core",
|
|
8680
|
+
"strict": true,
|
|
8681
|
+
"isESM": true,
|
|
8682
|
+
"relativePath": [
|
|
8683
|
+
"dist",
|
|
8684
|
+
"commands",
|
|
8685
|
+
"terminal",
|
|
8686
|
+
"title.js"
|
|
8687
|
+
]
|
|
8688
|
+
},
|
|
8689
|
+
"theme:add-names": {
|
|
8690
|
+
"aliases": [],
|
|
8691
|
+
"args": {
|
|
8692
|
+
"theme": {
|
|
8693
|
+
"description": "Theme ID",
|
|
8694
|
+
"name": "theme",
|
|
8695
|
+
"required": true
|
|
8696
|
+
},
|
|
8697
|
+
"names": {
|
|
8698
|
+
"description": "Names to add to the theme (space-separated)",
|
|
8699
|
+
"name": "names",
|
|
8700
|
+
"required": false
|
|
8701
|
+
}
|
|
8702
|
+
},
|
|
8703
|
+
"description": "Add names to a theme",
|
|
8704
8704
|
"examples": [
|
|
8705
8705
|
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
8706
8706
|
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
@@ -9187,6 +9187,874 @@
|
|
|
9187
9187
|
"remove.js"
|
|
9188
9188
|
]
|
|
9189
9189
|
},
|
|
9190
|
+
"ticket:create": {
|
|
9191
|
+
"aliases": [],
|
|
9192
|
+
"args": {},
|
|
9193
|
+
"description": "Create a new ticket (routes to Linear when configured, or local PMO)",
|
|
9194
|
+
"examples": [
|
|
9195
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9196
|
+
"<%= config.bin %> <%= command.id %> --title \"Fix login bug\" --column Backlog",
|
|
9197
|
+
"<%= config.bin %> <%= command.id %> -t \"Add feature\" -c \"In Progress\" -p P1",
|
|
9198
|
+
"<%= config.bin %> <%= command.id %> --project mobile-app -t \"New feature\"",
|
|
9199
|
+
"<%= config.bin %> <%= command.id %> --epic EPIC-001 -t \"Implement auth flow\"",
|
|
9200
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file ./ticket-desc.md",
|
|
9201
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file - # Read from stdin",
|
|
9202
|
+
"<%= config.bin %> <%= command.id %> --json # Output column choices as JSON",
|
|
9203
|
+
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating",
|
|
9204
|
+
"<%= config.bin %> <%= command.id %> --source linear -t \"Fix bug\" --team ENG",
|
|
9205
|
+
"<%= config.bin %> <%= command.id %> --source pmo -t \"Local task\" -c Backlog"
|
|
9206
|
+
],
|
|
9207
|
+
"flags": {
|
|
9208
|
+
"project": {
|
|
9209
|
+
"char": "P",
|
|
9210
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9211
|
+
"name": "project",
|
|
9212
|
+
"hasDynamicHelp": false,
|
|
9213
|
+
"multiple": false,
|
|
9214
|
+
"type": "option"
|
|
9215
|
+
},
|
|
9216
|
+
"json": {
|
|
9217
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9218
|
+
"name": "json",
|
|
9219
|
+
"allowNo": false,
|
|
9220
|
+
"type": "boolean"
|
|
9221
|
+
},
|
|
9222
|
+
"machine": {
|
|
9223
|
+
"char": "m",
|
|
9224
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9225
|
+
"name": "machine",
|
|
9226
|
+
"allowNo": false,
|
|
9227
|
+
"type": "boolean"
|
|
9228
|
+
},
|
|
9229
|
+
"title": {
|
|
9230
|
+
"char": "t",
|
|
9231
|
+
"description": "Ticket title [required for non-interactive]",
|
|
9232
|
+
"name": "title",
|
|
9233
|
+
"hasDynamicHelp": false,
|
|
9234
|
+
"multiple": false,
|
|
9235
|
+
"type": "option"
|
|
9236
|
+
},
|
|
9237
|
+
"column": {
|
|
9238
|
+
"char": "c",
|
|
9239
|
+
"description": "Column to place the ticket in",
|
|
9240
|
+
"name": "column",
|
|
9241
|
+
"hasDynamicHelp": false,
|
|
9242
|
+
"multiple": false,
|
|
9243
|
+
"type": "option"
|
|
9244
|
+
},
|
|
9245
|
+
"priority": {
|
|
9246
|
+
"char": "p",
|
|
9247
|
+
"description": "Ticket priority (uses workspace priority scale)",
|
|
9248
|
+
"name": "priority",
|
|
9249
|
+
"hasDynamicHelp": false,
|
|
9250
|
+
"multiple": false,
|
|
9251
|
+
"type": "option"
|
|
9252
|
+
},
|
|
9253
|
+
"category": {
|
|
9254
|
+
"description": "Ticket category (e.g., bug, feature, refactor)",
|
|
9255
|
+
"name": "category",
|
|
9256
|
+
"hasDynamicHelp": false,
|
|
9257
|
+
"multiple": false,
|
|
9258
|
+
"type": "option"
|
|
9259
|
+
},
|
|
9260
|
+
"description": {
|
|
9261
|
+
"char": "d",
|
|
9262
|
+
"description": "Ticket description",
|
|
9263
|
+
"name": "description",
|
|
9264
|
+
"hasDynamicHelp": false,
|
|
9265
|
+
"multiple": false,
|
|
9266
|
+
"type": "option"
|
|
9267
|
+
},
|
|
9268
|
+
"description-file": {
|
|
9269
|
+
"char": "D",
|
|
9270
|
+
"description": "Path to a markdown file for the ticket description (use - for stdin)",
|
|
9271
|
+
"exclusive": [
|
|
9272
|
+
"description"
|
|
9273
|
+
],
|
|
9274
|
+
"name": "description-file",
|
|
9275
|
+
"hasDynamicHelp": false,
|
|
9276
|
+
"multiple": false,
|
|
9277
|
+
"type": "option"
|
|
9278
|
+
},
|
|
9279
|
+
"id": {
|
|
9280
|
+
"description": "Custom ticket ID (auto-generated if not provided)",
|
|
9281
|
+
"name": "id",
|
|
9282
|
+
"hasDynamicHelp": false,
|
|
9283
|
+
"multiple": false,
|
|
9284
|
+
"type": "option"
|
|
9285
|
+
},
|
|
9286
|
+
"interactive": {
|
|
9287
|
+
"char": "i",
|
|
9288
|
+
"description": "Interactive mode",
|
|
9289
|
+
"name": "interactive",
|
|
9290
|
+
"allowNo": false,
|
|
9291
|
+
"type": "boolean"
|
|
9292
|
+
},
|
|
9293
|
+
"epic": {
|
|
9294
|
+
"char": "e",
|
|
9295
|
+
"description": "Link ticket to an epic (e.g., EPIC-001)",
|
|
9296
|
+
"name": "epic",
|
|
9297
|
+
"hasDynamicHelp": false,
|
|
9298
|
+
"multiple": false,
|
|
9299
|
+
"type": "option"
|
|
9300
|
+
},
|
|
9301
|
+
"template": {
|
|
9302
|
+
"char": "T",
|
|
9303
|
+
"description": "Create from a template (e.g., bug-report, feature-request)",
|
|
9304
|
+
"name": "template",
|
|
9305
|
+
"hasDynamicHelp": false,
|
|
9306
|
+
"multiple": false,
|
|
9307
|
+
"type": "option"
|
|
9308
|
+
},
|
|
9309
|
+
"labels": {
|
|
9310
|
+
"aliases": [
|
|
9311
|
+
"label"
|
|
9312
|
+
],
|
|
9313
|
+
"char": "l",
|
|
9314
|
+
"description": "Labels (comma-separated)",
|
|
9315
|
+
"name": "labels",
|
|
9316
|
+
"hasDynamicHelp": false,
|
|
9317
|
+
"multiple": false,
|
|
9318
|
+
"type": "option"
|
|
9319
|
+
},
|
|
9320
|
+
"dry-run": {
|
|
9321
|
+
"description": "Validate inputs without creating ticket (use with --json for structured output)",
|
|
9322
|
+
"name": "dry-run",
|
|
9323
|
+
"allowNo": false,
|
|
9324
|
+
"type": "boolean"
|
|
9325
|
+
},
|
|
9326
|
+
"source": {
|
|
9327
|
+
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9328
|
+
"name": "source",
|
|
9329
|
+
"default": "auto",
|
|
9330
|
+
"hasDynamicHelp": false,
|
|
9331
|
+
"multiple": false,
|
|
9332
|
+
"options": [
|
|
9333
|
+
"auto",
|
|
9334
|
+
"pmo",
|
|
9335
|
+
"linear"
|
|
9336
|
+
],
|
|
9337
|
+
"type": "option"
|
|
9338
|
+
},
|
|
9339
|
+
"team": {
|
|
9340
|
+
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9341
|
+
"name": "team",
|
|
9342
|
+
"hasDynamicHelp": false,
|
|
9343
|
+
"multiple": false,
|
|
9344
|
+
"type": "option"
|
|
9345
|
+
}
|
|
9346
|
+
},
|
|
9347
|
+
"hasDynamicHelp": false,
|
|
9348
|
+
"hiddenAliases": [],
|
|
9349
|
+
"id": "ticket:create",
|
|
9350
|
+
"pluginAlias": "@proletariat/cli",
|
|
9351
|
+
"pluginName": "@proletariat/cli",
|
|
9352
|
+
"pluginType": "core",
|
|
9353
|
+
"strict": true,
|
|
9354
|
+
"isESM": true,
|
|
9355
|
+
"relativePath": [
|
|
9356
|
+
"dist",
|
|
9357
|
+
"commands",
|
|
9358
|
+
"ticket",
|
|
9359
|
+
"create.js"
|
|
9360
|
+
]
|
|
9361
|
+
},
|
|
9362
|
+
"ticket:delete": {
|
|
9363
|
+
"aliases": [],
|
|
9364
|
+
"args": {
|
|
9365
|
+
"ticketId": {
|
|
9366
|
+
"description": "Ticket ID to delete - prompts with dropdown if not provided",
|
|
9367
|
+
"name": "ticketId",
|
|
9368
|
+
"required": false
|
|
9369
|
+
}
|
|
9370
|
+
},
|
|
9371
|
+
"description": "Delete ticket(s) permanently",
|
|
9372
|
+
"examples": [
|
|
9373
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9374
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --force",
|
|
9375
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
9376
|
+
"<%= config.bin %> <%= command.id %> --bulk",
|
|
9377
|
+
"<%= config.bin %> <%= command.id %> --json # Output choices as JSON"
|
|
9378
|
+
],
|
|
9379
|
+
"flags": {
|
|
9380
|
+
"project": {
|
|
9381
|
+
"char": "P",
|
|
9382
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9383
|
+
"name": "project",
|
|
9384
|
+
"hasDynamicHelp": false,
|
|
9385
|
+
"multiple": false,
|
|
9386
|
+
"type": "option"
|
|
9387
|
+
},
|
|
9388
|
+
"json": {
|
|
9389
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9390
|
+
"name": "json",
|
|
9391
|
+
"allowNo": false,
|
|
9392
|
+
"type": "boolean"
|
|
9393
|
+
},
|
|
9394
|
+
"machine": {
|
|
9395
|
+
"char": "m",
|
|
9396
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9397
|
+
"name": "machine",
|
|
9398
|
+
"allowNo": false,
|
|
9399
|
+
"type": "boolean"
|
|
9400
|
+
},
|
|
9401
|
+
"force": {
|
|
9402
|
+
"char": "f",
|
|
9403
|
+
"description": "Skip confirmation prompt",
|
|
9404
|
+
"name": "force",
|
|
9405
|
+
"allowNo": false,
|
|
9406
|
+
"type": "boolean"
|
|
9407
|
+
},
|
|
9408
|
+
"bulk": {
|
|
9409
|
+
"char": "b",
|
|
9410
|
+
"description": "Enable bulk mode to delete multiple tickets",
|
|
9411
|
+
"name": "bulk",
|
|
9412
|
+
"allowNo": false,
|
|
9413
|
+
"type": "boolean"
|
|
9414
|
+
}
|
|
9415
|
+
},
|
|
9416
|
+
"hasDynamicHelp": false,
|
|
9417
|
+
"hiddenAliases": [],
|
|
9418
|
+
"id": "ticket:delete",
|
|
9419
|
+
"pluginAlias": "@proletariat/cli",
|
|
9420
|
+
"pluginName": "@proletariat/cli",
|
|
9421
|
+
"pluginType": "core",
|
|
9422
|
+
"strict": true,
|
|
9423
|
+
"isESM": true,
|
|
9424
|
+
"relativePath": [
|
|
9425
|
+
"dist",
|
|
9426
|
+
"commands",
|
|
9427
|
+
"ticket",
|
|
9428
|
+
"delete.js"
|
|
9429
|
+
]
|
|
9430
|
+
},
|
|
9431
|
+
"ticket:edit": {
|
|
9432
|
+
"aliases": [],
|
|
9433
|
+
"args": {
|
|
9434
|
+
"ticketId": {
|
|
9435
|
+
"description": "Ticket ID to edit - prompts with dropdown if not provided",
|
|
9436
|
+
"name": "ticketId",
|
|
9437
|
+
"required": false
|
|
9438
|
+
}
|
|
9439
|
+
},
|
|
9440
|
+
"description": "Edit an existing ticket",
|
|
9441
|
+
"examples": [
|
|
9442
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9443
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --title \"New title\"",
|
|
9444
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --priority P1 --category bug",
|
|
9445
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --add-subtask \"Implement feature\" --add-subtask \"Write tests\"",
|
|
9446
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --owner \"john\" --assignee \"agent-1\"",
|
|
9447
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
9448
|
+
],
|
|
9449
|
+
"flags": {
|
|
9450
|
+
"project": {
|
|
9451
|
+
"char": "P",
|
|
9452
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9453
|
+
"name": "project",
|
|
9454
|
+
"hasDynamicHelp": false,
|
|
9455
|
+
"multiple": false,
|
|
9456
|
+
"type": "option"
|
|
9457
|
+
},
|
|
9458
|
+
"json": {
|
|
9459
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9460
|
+
"name": "json",
|
|
9461
|
+
"allowNo": false,
|
|
9462
|
+
"type": "boolean"
|
|
9463
|
+
},
|
|
9464
|
+
"machine": {
|
|
9465
|
+
"char": "m",
|
|
9466
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9467
|
+
"name": "machine",
|
|
9468
|
+
"allowNo": false,
|
|
9469
|
+
"type": "boolean"
|
|
9470
|
+
},
|
|
9471
|
+
"title": {
|
|
9472
|
+
"char": "t",
|
|
9473
|
+
"description": "New ticket title",
|
|
9474
|
+
"name": "title",
|
|
9475
|
+
"hasDynamicHelp": false,
|
|
9476
|
+
"multiple": false,
|
|
9477
|
+
"type": "option"
|
|
9478
|
+
},
|
|
9479
|
+
"description": {
|
|
9480
|
+
"char": "d",
|
|
9481
|
+
"description": "New ticket description",
|
|
9482
|
+
"name": "description",
|
|
9483
|
+
"hasDynamicHelp": false,
|
|
9484
|
+
"multiple": false,
|
|
9485
|
+
"type": "option"
|
|
9486
|
+
},
|
|
9487
|
+
"priority": {
|
|
9488
|
+
"char": "p",
|
|
9489
|
+
"description": "New ticket priority (uses workspace priority scale, \"none\" to clear)",
|
|
9490
|
+
"name": "priority",
|
|
9491
|
+
"hasDynamicHelp": false,
|
|
9492
|
+
"multiple": false,
|
|
9493
|
+
"type": "option"
|
|
9494
|
+
},
|
|
9495
|
+
"category": {
|
|
9496
|
+
"description": "New ticket category",
|
|
9497
|
+
"name": "category",
|
|
9498
|
+
"hasDynamicHelp": false,
|
|
9499
|
+
"multiple": false,
|
|
9500
|
+
"type": "option"
|
|
9501
|
+
},
|
|
9502
|
+
"owner": {
|
|
9503
|
+
"char": "o",
|
|
9504
|
+
"description": "Ticket owner (human responsible)",
|
|
9505
|
+
"name": "owner",
|
|
9506
|
+
"hasDynamicHelp": false,
|
|
9507
|
+
"multiple": false,
|
|
9508
|
+
"type": "option"
|
|
9509
|
+
},
|
|
9510
|
+
"assignee": {
|
|
9511
|
+
"char": "a",
|
|
9512
|
+
"description": "Ticket assignee (who executes)",
|
|
9513
|
+
"name": "assignee",
|
|
9514
|
+
"hasDynamicHelp": false,
|
|
9515
|
+
"multiple": false,
|
|
9516
|
+
"type": "option"
|
|
9517
|
+
},
|
|
9518
|
+
"add-subtask": {
|
|
9519
|
+
"description": "Add a subtask (can be used multiple times)",
|
|
9520
|
+
"name": "add-subtask",
|
|
9521
|
+
"hasDynamicHelp": false,
|
|
9522
|
+
"multiple": true,
|
|
9523
|
+
"type": "option"
|
|
9524
|
+
},
|
|
9525
|
+
"clear-subtasks": {
|
|
9526
|
+
"description": "Clear all existing subtasks before adding new ones",
|
|
9527
|
+
"name": "clear-subtasks",
|
|
9528
|
+
"allowNo": false,
|
|
9529
|
+
"type": "boolean"
|
|
9530
|
+
},
|
|
9531
|
+
"add-label": {
|
|
9532
|
+
"description": "Add a label (can be used multiple times)",
|
|
9533
|
+
"name": "add-label",
|
|
9534
|
+
"hasDynamicHelp": false,
|
|
9535
|
+
"multiple": true,
|
|
9536
|
+
"type": "option"
|
|
9537
|
+
},
|
|
9538
|
+
"remove-label": {
|
|
9539
|
+
"description": "Remove a label",
|
|
9540
|
+
"name": "remove-label",
|
|
9541
|
+
"hasDynamicHelp": false,
|
|
9542
|
+
"multiple": true,
|
|
9543
|
+
"type": "option"
|
|
9544
|
+
},
|
|
9545
|
+
"add-ac": {
|
|
9546
|
+
"description": "Add an acceptance criterion (can be used multiple times)",
|
|
9547
|
+
"name": "add-ac",
|
|
9548
|
+
"hasDynamicHelp": false,
|
|
9549
|
+
"multiple": true,
|
|
9550
|
+
"type": "option"
|
|
9551
|
+
},
|
|
9552
|
+
"clear-ac": {
|
|
9553
|
+
"description": "Clear all existing acceptance criteria before adding new ones",
|
|
9554
|
+
"name": "clear-ac",
|
|
9555
|
+
"allowNo": false,
|
|
9556
|
+
"type": "boolean"
|
|
9557
|
+
},
|
|
9558
|
+
"interactive": {
|
|
9559
|
+
"char": "i",
|
|
9560
|
+
"description": "Interactive mode - prompts for all fields",
|
|
9561
|
+
"name": "interactive",
|
|
9562
|
+
"allowNo": false,
|
|
9563
|
+
"type": "boolean"
|
|
9564
|
+
}
|
|
9565
|
+
},
|
|
9566
|
+
"hasDynamicHelp": false,
|
|
9567
|
+
"hiddenAliases": [],
|
|
9568
|
+
"id": "ticket:edit",
|
|
9569
|
+
"pluginAlias": "@proletariat/cli",
|
|
9570
|
+
"pluginName": "@proletariat/cli",
|
|
9571
|
+
"pluginType": "core",
|
|
9572
|
+
"strict": true,
|
|
9573
|
+
"isESM": true,
|
|
9574
|
+
"relativePath": [
|
|
9575
|
+
"dist",
|
|
9576
|
+
"commands",
|
|
9577
|
+
"ticket",
|
|
9578
|
+
"edit.js"
|
|
9579
|
+
]
|
|
9580
|
+
},
|
|
9581
|
+
"ticket": {
|
|
9582
|
+
"aliases": [],
|
|
9583
|
+
"args": {},
|
|
9584
|
+
"description": "Interactive menu for ticket operations",
|
|
9585
|
+
"examples": [
|
|
9586
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9587
|
+
],
|
|
9588
|
+
"flags": {
|
|
9589
|
+
"json": {
|
|
9590
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9591
|
+
"name": "json",
|
|
9592
|
+
"allowNo": false,
|
|
9593
|
+
"type": "boolean"
|
|
9594
|
+
},
|
|
9595
|
+
"machine": {
|
|
9596
|
+
"char": "m",
|
|
9597
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9598
|
+
"name": "machine",
|
|
9599
|
+
"allowNo": false,
|
|
9600
|
+
"type": "boolean"
|
|
9601
|
+
}
|
|
9602
|
+
},
|
|
9603
|
+
"hasDynamicHelp": false,
|
|
9604
|
+
"hiddenAliases": [],
|
|
9605
|
+
"id": "ticket",
|
|
9606
|
+
"pluginAlias": "@proletariat/cli",
|
|
9607
|
+
"pluginName": "@proletariat/cli",
|
|
9608
|
+
"pluginType": "core",
|
|
9609
|
+
"strict": true,
|
|
9610
|
+
"isESM": true,
|
|
9611
|
+
"relativePath": [
|
|
9612
|
+
"dist",
|
|
9613
|
+
"commands",
|
|
9614
|
+
"ticket",
|
|
9615
|
+
"index.js"
|
|
9616
|
+
]
|
|
9617
|
+
},
|
|
9618
|
+
"ticket:list": {
|
|
9619
|
+
"aliases": [],
|
|
9620
|
+
"args": {},
|
|
9621
|
+
"description": "List tickets from the PMO board",
|
|
9622
|
+
"examples": [
|
|
9623
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9624
|
+
"<%= config.bin %> <%= command.id %> --column Backlog",
|
|
9625
|
+
"<%= config.bin %> <%= command.id %> --priority P0",
|
|
9626
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
9627
|
+
"<%= config.bin %> <%= command.id %> --search \"login\"",
|
|
9628
|
+
"<%= config.bin %> <%= command.id %> --project mobile-app",
|
|
9629
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
9630
|
+
"<%= config.bin %> <%= command.id %> --all --group-by priority",
|
|
9631
|
+
"<%= config.bin %> <%= command.id %> -g priority",
|
|
9632
|
+
"<%= config.bin %> <%= command.id %> --limit 10",
|
|
9633
|
+
"<%= config.bin %> <%= command.id %> --limit 10 --offset 20"
|
|
9634
|
+
],
|
|
9635
|
+
"flags": {
|
|
9636
|
+
"project": {
|
|
9637
|
+
"char": "P",
|
|
9638
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9639
|
+
"name": "project",
|
|
9640
|
+
"hasDynamicHelp": false,
|
|
9641
|
+
"multiple": false,
|
|
9642
|
+
"type": "option"
|
|
9643
|
+
},
|
|
9644
|
+
"json": {
|
|
9645
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9646
|
+
"name": "json",
|
|
9647
|
+
"allowNo": false,
|
|
9648
|
+
"type": "boolean"
|
|
9649
|
+
},
|
|
9650
|
+
"machine": {
|
|
9651
|
+
"char": "m",
|
|
9652
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9653
|
+
"name": "machine",
|
|
9654
|
+
"allowNo": false,
|
|
9655
|
+
"type": "boolean"
|
|
9656
|
+
},
|
|
9657
|
+
"column": {
|
|
9658
|
+
"char": "c",
|
|
9659
|
+
"description": "Filter by column",
|
|
9660
|
+
"name": "column",
|
|
9661
|
+
"hasDynamicHelp": false,
|
|
9662
|
+
"multiple": false,
|
|
9663
|
+
"type": "option"
|
|
9664
|
+
},
|
|
9665
|
+
"priority": {
|
|
9666
|
+
"char": "p",
|
|
9667
|
+
"description": "Filter by priority (uses workspace priority scale)",
|
|
9668
|
+
"name": "priority",
|
|
9669
|
+
"hasDynamicHelp": false,
|
|
9670
|
+
"multiple": false,
|
|
9671
|
+
"type": "option"
|
|
9672
|
+
},
|
|
9673
|
+
"category": {
|
|
9674
|
+
"description": "Filter by category",
|
|
9675
|
+
"name": "category",
|
|
9676
|
+
"hasDynamicHelp": false,
|
|
9677
|
+
"multiple": false,
|
|
9678
|
+
"type": "option"
|
|
9679
|
+
},
|
|
9680
|
+
"search": {
|
|
9681
|
+
"char": "s",
|
|
9682
|
+
"description": "Search in title and description",
|
|
9683
|
+
"name": "search",
|
|
9684
|
+
"hasDynamicHelp": false,
|
|
9685
|
+
"multiple": false,
|
|
9686
|
+
"type": "option"
|
|
9687
|
+
},
|
|
9688
|
+
"format": {
|
|
9689
|
+
"char": "f",
|
|
9690
|
+
"description": "Output format",
|
|
9691
|
+
"name": "format",
|
|
9692
|
+
"default": "table",
|
|
9693
|
+
"hasDynamicHelp": false,
|
|
9694
|
+
"multiple": false,
|
|
9695
|
+
"options": [
|
|
9696
|
+
"table",
|
|
9697
|
+
"compact",
|
|
9698
|
+
"json"
|
|
9699
|
+
],
|
|
9700
|
+
"type": "option"
|
|
9701
|
+
},
|
|
9702
|
+
"all": {
|
|
9703
|
+
"char": "a",
|
|
9704
|
+
"description": "Show tickets across all projects",
|
|
9705
|
+
"name": "all",
|
|
9706
|
+
"allowNo": false,
|
|
9707
|
+
"type": "boolean"
|
|
9708
|
+
},
|
|
9709
|
+
"label": {
|
|
9710
|
+
"description": "Filter by label name",
|
|
9711
|
+
"name": "label",
|
|
9712
|
+
"hasDynamicHelp": false,
|
|
9713
|
+
"multiple": false,
|
|
9714
|
+
"type": "option"
|
|
9715
|
+
},
|
|
9716
|
+
"group-by": {
|
|
9717
|
+
"char": "g",
|
|
9718
|
+
"description": "Group tickets by field",
|
|
9719
|
+
"name": "group-by",
|
|
9720
|
+
"default": "status",
|
|
9721
|
+
"hasDynamicHelp": false,
|
|
9722
|
+
"multiple": false,
|
|
9723
|
+
"options": [
|
|
9724
|
+
"status",
|
|
9725
|
+
"priority"
|
|
9726
|
+
],
|
|
9727
|
+
"type": "option"
|
|
9728
|
+
},
|
|
9729
|
+
"limit": {
|
|
9730
|
+
"char": "l",
|
|
9731
|
+
"description": "Maximum number of tickets to display",
|
|
9732
|
+
"name": "limit",
|
|
9733
|
+
"hasDynamicHelp": false,
|
|
9734
|
+
"multiple": false,
|
|
9735
|
+
"type": "option"
|
|
9736
|
+
},
|
|
9737
|
+
"offset": {
|
|
9738
|
+
"description": "Skip first N tickets (for pagination)",
|
|
9739
|
+
"name": "offset",
|
|
9740
|
+
"hasDynamicHelp": false,
|
|
9741
|
+
"multiple": false,
|
|
9742
|
+
"type": "option"
|
|
9743
|
+
},
|
|
9744
|
+
"source": {
|
|
9745
|
+
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9746
|
+
"name": "source",
|
|
9747
|
+
"default": "auto",
|
|
9748
|
+
"hasDynamicHelp": false,
|
|
9749
|
+
"multiple": false,
|
|
9750
|
+
"options": [
|
|
9751
|
+
"auto",
|
|
9752
|
+
"pmo",
|
|
9753
|
+
"linear"
|
|
9754
|
+
],
|
|
9755
|
+
"type": "option"
|
|
9756
|
+
},
|
|
9757
|
+
"team": {
|
|
9758
|
+
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9759
|
+
"name": "team",
|
|
9760
|
+
"hasDynamicHelp": false,
|
|
9761
|
+
"multiple": false,
|
|
9762
|
+
"type": "option"
|
|
9763
|
+
}
|
|
9764
|
+
},
|
|
9765
|
+
"hasDynamicHelp": false,
|
|
9766
|
+
"hiddenAliases": [],
|
|
9767
|
+
"id": "ticket:list",
|
|
9768
|
+
"pluginAlias": "@proletariat/cli",
|
|
9769
|
+
"pluginName": "@proletariat/cli",
|
|
9770
|
+
"pluginType": "core",
|
|
9771
|
+
"strict": true,
|
|
9772
|
+
"enableJsonFlag": false,
|
|
9773
|
+
"isESM": true,
|
|
9774
|
+
"relativePath": [
|
|
9775
|
+
"dist",
|
|
9776
|
+
"commands",
|
|
9777
|
+
"ticket",
|
|
9778
|
+
"list.js"
|
|
9779
|
+
]
|
|
9780
|
+
},
|
|
9781
|
+
"ticket:move": {
|
|
9782
|
+
"aliases": [],
|
|
9783
|
+
"args": {
|
|
9784
|
+
"ticketId": {
|
|
9785
|
+
"description": "Ticket ID - prompts with dropdown if not provided",
|
|
9786
|
+
"name": "ticketId",
|
|
9787
|
+
"required": false
|
|
9788
|
+
},
|
|
9789
|
+
"column": {
|
|
9790
|
+
"description": "Target column - prompts with dropdown if not provided",
|
|
9791
|
+
"name": "column",
|
|
9792
|
+
"required": false
|
|
9793
|
+
}
|
|
9794
|
+
},
|
|
9795
|
+
"description": "Move ticket(s) to a different column",
|
|
9796
|
+
"examples": [
|
|
9797
|
+
"<%= config.bin %> <%= command.id %> my-ticket \"In Progress\"",
|
|
9798
|
+
"<%= config.bin %> <%= command.id %> implement-auth Done",
|
|
9799
|
+
"<%= config.bin %> <%= command.id %> TKT-123 --status \"In Review\"",
|
|
9800
|
+
"<%= config.bin %> <%= command.id %> fix-bug \"In Review\" --position 0",
|
|
9801
|
+
"<%= config.bin %> <%= command.id %> TKT-123 --to-project PROJ-002",
|
|
9802
|
+
"<%= config.bin %> <%= command.id %> --bulk"
|
|
9803
|
+
],
|
|
9804
|
+
"flags": {
|
|
9805
|
+
"project": {
|
|
9806
|
+
"char": "P",
|
|
9807
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9808
|
+
"name": "project",
|
|
9809
|
+
"hasDynamicHelp": false,
|
|
9810
|
+
"multiple": false,
|
|
9811
|
+
"type": "option"
|
|
9812
|
+
},
|
|
9813
|
+
"json": {
|
|
9814
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9815
|
+
"name": "json",
|
|
9816
|
+
"allowNo": false,
|
|
9817
|
+
"type": "boolean"
|
|
9818
|
+
},
|
|
9819
|
+
"machine": {
|
|
9820
|
+
"char": "m",
|
|
9821
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9822
|
+
"name": "machine",
|
|
9823
|
+
"allowNo": false,
|
|
9824
|
+
"type": "boolean"
|
|
9825
|
+
},
|
|
9826
|
+
"status": {
|
|
9827
|
+
"char": "s",
|
|
9828
|
+
"description": "Target status/column (alternative to positional column argument)",
|
|
9829
|
+
"name": "status",
|
|
9830
|
+
"hasDynamicHelp": false,
|
|
9831
|
+
"multiple": false,
|
|
9832
|
+
"type": "option"
|
|
9833
|
+
},
|
|
9834
|
+
"position": {
|
|
9835
|
+
"description": "Position within the column (0 = top)",
|
|
9836
|
+
"name": "position",
|
|
9837
|
+
"hasDynamicHelp": false,
|
|
9838
|
+
"multiple": false,
|
|
9839
|
+
"type": "option"
|
|
9840
|
+
},
|
|
9841
|
+
"to-project": {
|
|
9842
|
+
"description": "Move ticket to a different project (uses Backlog/default column)",
|
|
9843
|
+
"name": "to-project",
|
|
9844
|
+
"hasDynamicHelp": false,
|
|
9845
|
+
"multiple": false,
|
|
9846
|
+
"type": "option"
|
|
9847
|
+
},
|
|
9848
|
+
"bulk": {
|
|
9849
|
+
"char": "b",
|
|
9850
|
+
"description": "Enable bulk mode to move multiple tickets",
|
|
9851
|
+
"name": "bulk",
|
|
9852
|
+
"allowNo": false,
|
|
9853
|
+
"type": "boolean"
|
|
9854
|
+
},
|
|
9855
|
+
"force": {
|
|
9856
|
+
"char": "f",
|
|
9857
|
+
"description": "Skip confirmation prompt (bulk mode only)",
|
|
9858
|
+
"name": "force",
|
|
9859
|
+
"allowNo": false,
|
|
9860
|
+
"type": "boolean"
|
|
9861
|
+
}
|
|
9862
|
+
},
|
|
9863
|
+
"hasDynamicHelp": false,
|
|
9864
|
+
"hiddenAliases": [],
|
|
9865
|
+
"id": "ticket:move",
|
|
9866
|
+
"pluginAlias": "@proletariat/cli",
|
|
9867
|
+
"pluginName": "@proletariat/cli",
|
|
9868
|
+
"pluginType": "core",
|
|
9869
|
+
"strict": true,
|
|
9870
|
+
"isESM": true,
|
|
9871
|
+
"relativePath": [
|
|
9872
|
+
"dist",
|
|
9873
|
+
"commands",
|
|
9874
|
+
"ticket",
|
|
9875
|
+
"move.js"
|
|
9876
|
+
]
|
|
9877
|
+
},
|
|
9878
|
+
"ticket:show": {
|
|
9879
|
+
"aliases": [],
|
|
9880
|
+
"args": {
|
|
9881
|
+
"ticketId": {
|
|
9882
|
+
"description": "Ticket ID to view - prompts with dropdown if not provided",
|
|
9883
|
+
"name": "ticketId",
|
|
9884
|
+
"required": false
|
|
9885
|
+
}
|
|
9886
|
+
},
|
|
9887
|
+
"description": "View detailed ticket information",
|
|
9888
|
+
"examples": [
|
|
9889
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9890
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
9891
|
+
],
|
|
9892
|
+
"flags": {
|
|
9893
|
+
"project": {
|
|
9894
|
+
"char": "P",
|
|
9895
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9896
|
+
"name": "project",
|
|
9897
|
+
"hasDynamicHelp": false,
|
|
9898
|
+
"multiple": false,
|
|
9899
|
+
"type": "option"
|
|
9900
|
+
},
|
|
9901
|
+
"json": {
|
|
9902
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9903
|
+
"name": "json",
|
|
9904
|
+
"allowNo": false,
|
|
9905
|
+
"type": "boolean"
|
|
9906
|
+
},
|
|
9907
|
+
"machine": {
|
|
9908
|
+
"char": "m",
|
|
9909
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9910
|
+
"name": "machine",
|
|
9911
|
+
"allowNo": false,
|
|
9912
|
+
"type": "boolean"
|
|
9913
|
+
}
|
|
9914
|
+
},
|
|
9915
|
+
"hasDynamicHelp": false,
|
|
9916
|
+
"hiddenAliases": [],
|
|
9917
|
+
"id": "ticket:show",
|
|
9918
|
+
"pluginAlias": "@proletariat/cli",
|
|
9919
|
+
"pluginName": "@proletariat/cli",
|
|
9920
|
+
"pluginType": "core",
|
|
9921
|
+
"strict": true,
|
|
9922
|
+
"isESM": true,
|
|
9923
|
+
"relativePath": [
|
|
9924
|
+
"dist",
|
|
9925
|
+
"commands",
|
|
9926
|
+
"ticket",
|
|
9927
|
+
"show.js"
|
|
9928
|
+
]
|
|
9929
|
+
},
|
|
9930
|
+
"ticket:update": {
|
|
9931
|
+
"aliases": [],
|
|
9932
|
+
"args": {
|
|
9933
|
+
"ticketId": {
|
|
9934
|
+
"description": "Ticket ID - prompts with dropdown if not provided",
|
|
9935
|
+
"name": "ticketId",
|
|
9936
|
+
"required": false
|
|
9937
|
+
}
|
|
9938
|
+
},
|
|
9939
|
+
"description": "Update ticket fields (title, description, priority, category, labels, status)",
|
|
9940
|
+
"examples": [
|
|
9941
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --title \"New title\"",
|
|
9942
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --description \"Updated description\"",
|
|
9943
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --description-file ./spec.md",
|
|
9944
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --priority P1",
|
|
9945
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --category bug",
|
|
9946
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --labels frontend,urgent",
|
|
9947
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --status \"In Progress\"",
|
|
9948
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --title \"Fix auth\" --priority P0 --status \"In Progress\" --json",
|
|
9949
|
+
"<%= config.bin %> <%= command.id %> --bulk --priority P1"
|
|
9950
|
+
],
|
|
9951
|
+
"flags": {
|
|
9952
|
+
"project": {
|
|
9953
|
+
"char": "P",
|
|
9954
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9955
|
+
"name": "project",
|
|
9956
|
+
"hasDynamicHelp": false,
|
|
9957
|
+
"multiple": false,
|
|
9958
|
+
"type": "option"
|
|
9959
|
+
},
|
|
9960
|
+
"json": {
|
|
9961
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9962
|
+
"name": "json",
|
|
9963
|
+
"allowNo": false,
|
|
9964
|
+
"type": "boolean"
|
|
9965
|
+
},
|
|
9966
|
+
"machine": {
|
|
9967
|
+
"char": "m",
|
|
9968
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9969
|
+
"name": "machine",
|
|
9970
|
+
"allowNo": false,
|
|
9971
|
+
"type": "boolean"
|
|
9972
|
+
},
|
|
9973
|
+
"title": {
|
|
9974
|
+
"char": "t",
|
|
9975
|
+
"description": "Set ticket title",
|
|
9976
|
+
"name": "title",
|
|
9977
|
+
"hasDynamicHelp": false,
|
|
9978
|
+
"multiple": false,
|
|
9979
|
+
"type": "option"
|
|
9980
|
+
},
|
|
9981
|
+
"description": {
|
|
9982
|
+
"char": "d",
|
|
9983
|
+
"description": "Set ticket description",
|
|
9984
|
+
"name": "description",
|
|
9985
|
+
"hasDynamicHelp": false,
|
|
9986
|
+
"multiple": false,
|
|
9987
|
+
"type": "option"
|
|
9988
|
+
},
|
|
9989
|
+
"description-file": {
|
|
9990
|
+
"description": "Read ticket description from a file",
|
|
9991
|
+
"name": "description-file",
|
|
9992
|
+
"hasDynamicHelp": false,
|
|
9993
|
+
"multiple": false,
|
|
9994
|
+
"type": "option"
|
|
9995
|
+
},
|
|
9996
|
+
"priority": {
|
|
9997
|
+
"char": "p",
|
|
9998
|
+
"description": "Set priority (uses workspace priority scale, \"none\" to clear)",
|
|
9999
|
+
"name": "priority",
|
|
10000
|
+
"hasDynamicHelp": false,
|
|
10001
|
+
"multiple": false,
|
|
10002
|
+
"type": "option"
|
|
10003
|
+
},
|
|
10004
|
+
"category": {
|
|
10005
|
+
"char": "c",
|
|
10006
|
+
"description": "Set category (e.g., feature, bug, refactor, \"none\" to clear)",
|
|
10007
|
+
"name": "category",
|
|
10008
|
+
"hasDynamicHelp": false,
|
|
10009
|
+
"multiple": false,
|
|
10010
|
+
"type": "option"
|
|
10011
|
+
},
|
|
10012
|
+
"labels": {
|
|
10013
|
+
"char": "l",
|
|
10014
|
+
"description": "Set labels (comma-separated, replaces existing labels; use \"\" to clear)",
|
|
10015
|
+
"name": "labels",
|
|
10016
|
+
"hasDynamicHelp": false,
|
|
10017
|
+
"multiple": false,
|
|
10018
|
+
"type": "option"
|
|
10019
|
+
},
|
|
10020
|
+
"status": {
|
|
10021
|
+
"char": "s",
|
|
10022
|
+
"description": "Set status/column (e.g., \"In Progress\", \"Done\")",
|
|
10023
|
+
"name": "status",
|
|
10024
|
+
"hasDynamicHelp": false,
|
|
10025
|
+
"multiple": false,
|
|
10026
|
+
"type": "option"
|
|
10027
|
+
},
|
|
10028
|
+
"bulk": {
|
|
10029
|
+
"char": "b",
|
|
10030
|
+
"description": "Enable bulk mode to update multiple tickets",
|
|
10031
|
+
"name": "bulk",
|
|
10032
|
+
"allowNo": false,
|
|
10033
|
+
"type": "boolean"
|
|
10034
|
+
},
|
|
10035
|
+
"force": {
|
|
10036
|
+
"char": "f",
|
|
10037
|
+
"description": "Skip confirmation prompt",
|
|
10038
|
+
"name": "force",
|
|
10039
|
+
"allowNo": false,
|
|
10040
|
+
"type": "boolean"
|
|
10041
|
+
}
|
|
10042
|
+
},
|
|
10043
|
+
"hasDynamicHelp": false,
|
|
10044
|
+
"hiddenAliases": [],
|
|
10045
|
+
"id": "ticket:update",
|
|
10046
|
+
"pluginAlias": "@proletariat/cli",
|
|
10047
|
+
"pluginName": "@proletariat/cli",
|
|
10048
|
+
"pluginType": "core",
|
|
10049
|
+
"strict": true,
|
|
10050
|
+
"isESM": true,
|
|
10051
|
+
"relativePath": [
|
|
10052
|
+
"dist",
|
|
10053
|
+
"commands",
|
|
10054
|
+
"ticket",
|
|
10055
|
+
"update.js"
|
|
10056
|
+
]
|
|
10057
|
+
},
|
|
9190
10058
|
"trello:configure": {
|
|
9191
10059
|
"aliases": [],
|
|
9192
10060
|
"args": {},
|
|
@@ -13045,5 +13913,5 @@
|
|
|
13045
13913
|
]
|
|
13046
13914
|
}
|
|
13047
13915
|
},
|
|
13048
|
-
"version": "0.3.
|
|
13916
|
+
"version": "0.3.100"
|
|
13049
13917
|
}
|