@proletariat/cli 0.3.102 → 0.3.103
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/lib/orchestrate/engine.d.ts +19 -39
- package/dist/lib/orchestrate/engine.js +51 -215
- package/dist/lib/orchestrate/engine.js.map +1 -1
- package/dist/lib/orchestrate/types.d.ts +3 -11
- package/dist/lib/orchestrate/types.js +1 -2
- package/dist/lib/orchestrate/types.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/executor.js +2 -0
- package/dist/lib/work-lifecycle/hooks/executor.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/index.d.ts +5 -3
- package/dist/lib/work-lifecycle/hooks/index.js +3 -2
- package/dist/lib/work-lifecycle/hooks/index.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/manager.d.ts +93 -8
- package/dist/lib/work-lifecycle/hooks/manager.js +248 -20
- package/dist/lib/work-lifecycle/hooks/manager.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/storage.d.ts +1 -0
- package/dist/lib/work-lifecycle/hooks/storage.js +28 -6
- package/dist/lib/work-lifecycle/hooks/storage.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/types.d.ts +37 -0
- package/dist/lib/work-lifecycle/hooks/types.js +2 -0
- package/dist/lib/work-lifecycle/hooks/types.js.map +1 -1
- package/dist/lib/work-lifecycle/index.d.ts +2 -1
- package/dist/lib/work-lifecycle/index.js +1 -1
- package/dist/lib/work-lifecycle/index.js.map +1 -1
- package/oclif.manifest.json +1018 -1018
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1972,66 +1972,6 @@
|
|
|
1972
1972
|
"sync.js"
|
|
1973
1973
|
]
|
|
1974
1974
|
},
|
|
1975
|
-
"autocomplete:setup": {
|
|
1976
|
-
"aliases": [],
|
|
1977
|
-
"args": {},
|
|
1978
|
-
"description": "Auto-detect shell and set up autocomplete",
|
|
1979
|
-
"examples": [
|
|
1980
|
-
"<%= config.bin %> <%= command.id %>",
|
|
1981
|
-
"<%= config.bin %> <%= command.id %> --install",
|
|
1982
|
-
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
1983
|
-
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
1984
|
-
],
|
|
1985
|
-
"flags": {
|
|
1986
|
-
"json": {
|
|
1987
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
1988
|
-
"name": "json",
|
|
1989
|
-
"allowNo": false,
|
|
1990
|
-
"type": "boolean"
|
|
1991
|
-
},
|
|
1992
|
-
"machine": {
|
|
1993
|
-
"char": "m",
|
|
1994
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
1995
|
-
"name": "machine",
|
|
1996
|
-
"allowNo": false,
|
|
1997
|
-
"type": "boolean"
|
|
1998
|
-
},
|
|
1999
|
-
"install": {
|
|
2000
|
-
"char": "i",
|
|
2001
|
-
"description": "Automatically install to shell config file",
|
|
2002
|
-
"name": "install",
|
|
2003
|
-
"allowNo": false,
|
|
2004
|
-
"type": "boolean"
|
|
2005
|
-
},
|
|
2006
|
-
"shell": {
|
|
2007
|
-
"char": "s",
|
|
2008
|
-
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2009
|
-
"name": "shell",
|
|
2010
|
-
"hasDynamicHelp": false,
|
|
2011
|
-
"multiple": false,
|
|
2012
|
-
"options": [
|
|
2013
|
-
"zsh",
|
|
2014
|
-
"bash",
|
|
2015
|
-
"powershell"
|
|
2016
|
-
],
|
|
2017
|
-
"type": "option"
|
|
2018
|
-
}
|
|
2019
|
-
},
|
|
2020
|
-
"hasDynamicHelp": false,
|
|
2021
|
-
"hiddenAliases": [],
|
|
2022
|
-
"id": "autocomplete:setup",
|
|
2023
|
-
"pluginAlias": "@proletariat/cli",
|
|
2024
|
-
"pluginName": "@proletariat/cli",
|
|
2025
|
-
"pluginType": "core",
|
|
2026
|
-
"strict": true,
|
|
2027
|
-
"isESM": true,
|
|
2028
|
-
"relativePath": [
|
|
2029
|
-
"dist",
|
|
2030
|
-
"commands",
|
|
2031
|
-
"autocomplete",
|
|
2032
|
-
"setup.js"
|
|
2033
|
-
]
|
|
2034
|
-
},
|
|
2035
1975
|
"branch:create": {
|
|
2036
1976
|
"aliases": [],
|
|
2037
1977
|
"args": {
|
|
@@ -2576,6 +2516,66 @@
|
|
|
2576
2516
|
"stop.js"
|
|
2577
2517
|
]
|
|
2578
2518
|
},
|
|
2519
|
+
"autocomplete:setup": {
|
|
2520
|
+
"aliases": [],
|
|
2521
|
+
"args": {},
|
|
2522
|
+
"description": "Auto-detect shell and set up autocomplete",
|
|
2523
|
+
"examples": [
|
|
2524
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2525
|
+
"<%= config.bin %> <%= command.id %> --install",
|
|
2526
|
+
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
2527
|
+
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
2528
|
+
],
|
|
2529
|
+
"flags": {
|
|
2530
|
+
"json": {
|
|
2531
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2532
|
+
"name": "json",
|
|
2533
|
+
"allowNo": false,
|
|
2534
|
+
"type": "boolean"
|
|
2535
|
+
},
|
|
2536
|
+
"machine": {
|
|
2537
|
+
"char": "m",
|
|
2538
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2539
|
+
"name": "machine",
|
|
2540
|
+
"allowNo": false,
|
|
2541
|
+
"type": "boolean"
|
|
2542
|
+
},
|
|
2543
|
+
"install": {
|
|
2544
|
+
"char": "i",
|
|
2545
|
+
"description": "Automatically install to shell config file",
|
|
2546
|
+
"name": "install",
|
|
2547
|
+
"allowNo": false,
|
|
2548
|
+
"type": "boolean"
|
|
2549
|
+
},
|
|
2550
|
+
"shell": {
|
|
2551
|
+
"char": "s",
|
|
2552
|
+
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2553
|
+
"name": "shell",
|
|
2554
|
+
"hasDynamicHelp": false,
|
|
2555
|
+
"multiple": false,
|
|
2556
|
+
"options": [
|
|
2557
|
+
"zsh",
|
|
2558
|
+
"bash",
|
|
2559
|
+
"powershell"
|
|
2560
|
+
],
|
|
2561
|
+
"type": "option"
|
|
2562
|
+
}
|
|
2563
|
+
},
|
|
2564
|
+
"hasDynamicHelp": false,
|
|
2565
|
+
"hiddenAliases": [],
|
|
2566
|
+
"id": "autocomplete:setup",
|
|
2567
|
+
"pluginAlias": "@proletariat/cli",
|
|
2568
|
+
"pluginName": "@proletariat/cli",
|
|
2569
|
+
"pluginType": "core",
|
|
2570
|
+
"strict": true,
|
|
2571
|
+
"isESM": true,
|
|
2572
|
+
"relativePath": [
|
|
2573
|
+
"dist",
|
|
2574
|
+
"commands",
|
|
2575
|
+
"autocomplete",
|
|
2576
|
+
"setup.js"
|
|
2577
|
+
]
|
|
2578
|
+
},
|
|
2579
2579
|
"claude": {
|
|
2580
2580
|
"aliases": [],
|
|
2581
2581
|
"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,34 +3347,27 @@
|
|
|
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
|
-
"docker:
|
|
3363
|
+
"docker:clean": {
|
|
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": "Remove orphaned containers (containers without running agents)",
|
|
3383
3367
|
"examples": [
|
|
3384
|
-
"<%= config.bin %> <%= command.id %>
|
|
3385
|
-
"<%= config.bin %> <%= command.id %>
|
|
3386
|
-
"<%= config.bin %> <%= command.id %>
|
|
3368
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3369
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
3370
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3387
3371
|
],
|
|
3388
3372
|
"flags": {
|
|
3389
3373
|
"force": {
|
|
@@ -3397,14 +3381,19 @@
|
|
|
3397
3381
|
"allowNo": false,
|
|
3398
3382
|
"type": "boolean"
|
|
3399
3383
|
},
|
|
3400
|
-
"
|
|
3401
|
-
"char": "
|
|
3402
|
-
"description": "
|
|
3403
|
-
"name": "
|
|
3404
|
-
"
|
|
3405
|
-
"
|
|
3406
|
-
|
|
3407
|
-
|
|
3384
|
+
"dry-run": {
|
|
3385
|
+
"char": "d",
|
|
3386
|
+
"description": "Show what would be removed without removing",
|
|
3387
|
+
"name": "dry-run",
|
|
3388
|
+
"allowNo": false,
|
|
3389
|
+
"type": "boolean"
|
|
3390
|
+
},
|
|
3391
|
+
"all": {
|
|
3392
|
+
"char": "a",
|
|
3393
|
+
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3394
|
+
"name": "all",
|
|
3395
|
+
"allowNo": false,
|
|
3396
|
+
"type": "boolean"
|
|
3408
3397
|
},
|
|
3409
3398
|
"json": {
|
|
3410
3399
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -3422,7 +3411,7 @@
|
|
|
3422
3411
|
},
|
|
3423
3412
|
"hasDynamicHelp": false,
|
|
3424
3413
|
"hiddenAliases": [],
|
|
3425
|
-
"id": "docker:
|
|
3414
|
+
"id": "docker:clean",
|
|
3426
3415
|
"pluginAlias": "@proletariat/cli",
|
|
3427
3416
|
"pluginName": "@proletariat/cli",
|
|
3428
3417
|
"pluginType": "core",
|
|
@@ -3433,23 +3422,26 @@
|
|
|
3433
3422
|
"dist",
|
|
3434
3423
|
"commands",
|
|
3435
3424
|
"docker",
|
|
3436
|
-
"
|
|
3425
|
+
"clean.js"
|
|
3437
3426
|
]
|
|
3438
3427
|
},
|
|
3439
|
-
"docker
|
|
3428
|
+
"docker": {
|
|
3440
3429
|
"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)",
|
|
3430
|
+
"args": {},
|
|
3431
|
+
"description": "Manage Docker containers used by agents",
|
|
3449
3432
|
"examples": [
|
|
3450
|
-
"<%= config.bin %> <%= command.id %>
|
|
3451
|
-
"<%= config.bin %>
|
|
3452
|
-
"<%= config.bin %>
|
|
3433
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3434
|
+
"<%= config.bin %> docker status",
|
|
3435
|
+
"<%= config.bin %> docker list",
|
|
3436
|
+
"<%= config.bin %> docker logs WORK-001",
|
|
3437
|
+
"<%= config.bin %> docker start WORK-001",
|
|
3438
|
+
"<%= config.bin %> docker stop kalanick",
|
|
3439
|
+
"<%= config.bin %> docker shell WORK-001",
|
|
3440
|
+
"<%= config.bin %> docker restart abc123",
|
|
3441
|
+
"<%= config.bin %> docker sync",
|
|
3442
|
+
"<%= config.bin %> docker rebuild-cache",
|
|
3443
|
+
"<%= config.bin %> docker clean",
|
|
3444
|
+
"<%= config.bin %> docker prune"
|
|
3453
3445
|
],
|
|
3454
3446
|
"flags": {
|
|
3455
3447
|
"json": {
|
|
@@ -3464,63 +3456,31 @@
|
|
|
3464
3456
|
"name": "machine",
|
|
3465
3457
|
"allowNo": false,
|
|
3466
3458
|
"type": "boolean"
|
|
3467
|
-
},
|
|
3468
|
-
"shell": {
|
|
3469
|
-
"char": "s",
|
|
3470
|
-
"description": "Shell to use",
|
|
3471
|
-
"name": "shell",
|
|
3472
|
-
"default": "/bin/sh",
|
|
3473
|
-
"hasDynamicHelp": false,
|
|
3474
|
-
"multiple": false,
|
|
3475
|
-
"type": "option"
|
|
3476
|
-
},
|
|
3477
|
-
"user": {
|
|
3478
|
-
"char": "u",
|
|
3479
|
-
"description": "User to run as",
|
|
3480
|
-
"name": "user",
|
|
3481
|
-
"hasDynamicHelp": false,
|
|
3482
|
-
"multiple": false,
|
|
3483
|
-
"type": "option"
|
|
3484
|
-
},
|
|
3485
|
-
"workdir": {
|
|
3486
|
-
"char": "w",
|
|
3487
|
-
"description": "Working directory inside the container",
|
|
3488
|
-
"name": "workdir",
|
|
3489
|
-
"hasDynamicHelp": false,
|
|
3490
|
-
"multiple": false,
|
|
3491
|
-
"type": "option"
|
|
3492
3459
|
}
|
|
3493
3460
|
},
|
|
3494
3461
|
"hasDynamicHelp": false,
|
|
3495
3462
|
"hiddenAliases": [],
|
|
3496
|
-
"id": "docker
|
|
3463
|
+
"id": "docker",
|
|
3497
3464
|
"pluginAlias": "@proletariat/cli",
|
|
3498
3465
|
"pluginName": "@proletariat/cli",
|
|
3499
3466
|
"pluginType": "core",
|
|
3500
3467
|
"strict": true,
|
|
3501
|
-
"enableJsonFlag": false,
|
|
3502
3468
|
"isESM": true,
|
|
3503
3469
|
"relativePath": [
|
|
3504
3470
|
"dist",
|
|
3505
3471
|
"commands",
|
|
3506
3472
|
"docker",
|
|
3507
|
-
"
|
|
3473
|
+
"index.js"
|
|
3508
3474
|
]
|
|
3509
3475
|
},
|
|
3510
|
-
"docker:
|
|
3476
|
+
"docker:list": {
|
|
3511
3477
|
"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)",
|
|
3478
|
+
"args": {},
|
|
3479
|
+
"description": "Show Docker containers from agent_work table with status",
|
|
3520
3480
|
"examples": [
|
|
3521
|
-
"<%= config.bin %> <%= command.id %>
|
|
3522
|
-
"<%= config.bin %> <%= command.id %>
|
|
3523
|
-
"<%= config.bin %> <%= command.id %>
|
|
3481
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3482
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3483
|
+
"<%= config.bin %> <%= command.id %> --running"
|
|
3524
3484
|
],
|
|
3525
3485
|
"flags": {
|
|
3526
3486
|
"json": {
|
|
@@ -3536,17 +3496,24 @@
|
|
|
3536
3496
|
"allowNo": false,
|
|
3537
3497
|
"type": "boolean"
|
|
3538
3498
|
},
|
|
3539
|
-
"
|
|
3499
|
+
"all": {
|
|
3540
3500
|
"char": "a",
|
|
3541
|
-
"description": "
|
|
3542
|
-
"name": "
|
|
3501
|
+
"description": "Show all containers (including non-devcontainer)",
|
|
3502
|
+
"name": "all",
|
|
3503
|
+
"allowNo": false,
|
|
3504
|
+
"type": "boolean"
|
|
3505
|
+
},
|
|
3506
|
+
"running": {
|
|
3507
|
+
"char": "r",
|
|
3508
|
+
"description": "Only show running containers",
|
|
3509
|
+
"name": "running",
|
|
3543
3510
|
"allowNo": false,
|
|
3544
3511
|
"type": "boolean"
|
|
3545
3512
|
}
|
|
3546
3513
|
},
|
|
3547
3514
|
"hasDynamicHelp": false,
|
|
3548
3515
|
"hiddenAliases": [],
|
|
3549
|
-
"id": "docker:
|
|
3516
|
+
"id": "docker:list",
|
|
3550
3517
|
"pluginAlias": "@proletariat/cli",
|
|
3551
3518
|
"pluginName": "@proletariat/cli",
|
|
3552
3519
|
"pluginType": "core",
|
|
@@ -3557,15 +3524,24 @@
|
|
|
3557
3524
|
"dist",
|
|
3558
3525
|
"commands",
|
|
3559
3526
|
"docker",
|
|
3560
|
-
"
|
|
3527
|
+
"list.js"
|
|
3561
3528
|
]
|
|
3562
3529
|
},
|
|
3563
|
-
"docker:
|
|
3530
|
+
"docker:logs": {
|
|
3564
3531
|
"aliases": [],
|
|
3565
|
-
"args": {
|
|
3566
|
-
|
|
3532
|
+
"args": {
|
|
3533
|
+
"target": {
|
|
3534
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3535
|
+
"name": "target",
|
|
3536
|
+
"required": true
|
|
3537
|
+
}
|
|
3538
|
+
},
|
|
3539
|
+
"description": "View logs from a container (by execution ID, agent name, or container ID)",
|
|
3567
3540
|
"examples": [
|
|
3568
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3541
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3542
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3543
|
+
"<%= config.bin %> <%= command.id %> abc123 --follow",
|
|
3544
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 100"
|
|
3569
3545
|
],
|
|
3570
3546
|
"flags": {
|
|
3571
3547
|
"json": {
|
|
@@ -3580,11 +3556,34 @@
|
|
|
3580
3556
|
"name": "machine",
|
|
3581
3557
|
"allowNo": false,
|
|
3582
3558
|
"type": "boolean"
|
|
3559
|
+
},
|
|
3560
|
+
"follow": {
|
|
3561
|
+
"char": "f",
|
|
3562
|
+
"description": "Follow log output",
|
|
3563
|
+
"name": "follow",
|
|
3564
|
+
"allowNo": false,
|
|
3565
|
+
"type": "boolean"
|
|
3566
|
+
},
|
|
3567
|
+
"tail": {
|
|
3568
|
+
"char": "n",
|
|
3569
|
+
"description": "Number of lines to show from the end",
|
|
3570
|
+
"name": "tail",
|
|
3571
|
+
"default": 100,
|
|
3572
|
+
"hasDynamicHelp": false,
|
|
3573
|
+
"multiple": false,
|
|
3574
|
+
"type": "option"
|
|
3575
|
+
},
|
|
3576
|
+
"timestamps": {
|
|
3577
|
+
"char": "t",
|
|
3578
|
+
"description": "Show timestamps",
|
|
3579
|
+
"name": "timestamps",
|
|
3580
|
+
"allowNo": false,
|
|
3581
|
+
"type": "boolean"
|
|
3583
3582
|
}
|
|
3584
3583
|
},
|
|
3585
3584
|
"hasDynamicHelp": false,
|
|
3586
3585
|
"hiddenAliases": [],
|
|
3587
|
-
"id": "docker:
|
|
3586
|
+
"id": "docker:logs",
|
|
3588
3587
|
"pluginAlias": "@proletariat/cli",
|
|
3589
3588
|
"pluginName": "@proletariat/cli",
|
|
3590
3589
|
"pluginType": "core",
|
|
@@ -3595,23 +3594,18 @@
|
|
|
3595
3594
|
"dist",
|
|
3596
3595
|
"commands",
|
|
3597
3596
|
"docker",
|
|
3598
|
-
"
|
|
3597
|
+
"logs.js"
|
|
3599
3598
|
]
|
|
3600
3599
|
},
|
|
3601
|
-
"docker:
|
|
3600
|
+
"docker:prune": {
|
|
3602
3601
|
"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)",
|
|
3602
|
+
"args": {},
|
|
3603
|
+
"description": "Remove unused Docker resources (containers, images, volumes, networks)",
|
|
3611
3604
|
"examples": [
|
|
3612
|
-
"<%= config.bin %> <%= command.id %>
|
|
3613
|
-
"<%= config.bin %> <%= command.id %>
|
|
3614
|
-
"<%= config.bin %> <%= command.id %>
|
|
3605
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3606
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3607
|
+
"<%= config.bin %> <%= command.id %> --volumes",
|
|
3608
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3615
3609
|
],
|
|
3616
3610
|
"flags": {
|
|
3617
3611
|
"force": {
|
|
@@ -3625,14 +3619,25 @@
|
|
|
3625
3619
|
"allowNo": false,
|
|
3626
3620
|
"type": "boolean"
|
|
3627
3621
|
},
|
|
3628
|
-
"
|
|
3629
|
-
"char": "
|
|
3630
|
-
"description": "
|
|
3631
|
-
"name": "
|
|
3632
|
-
"
|
|
3633
|
-
"
|
|
3634
|
-
|
|
3635
|
-
|
|
3622
|
+
"dry-run": {
|
|
3623
|
+
"char": "d",
|
|
3624
|
+
"description": "Show what would be removed without removing",
|
|
3625
|
+
"name": "dry-run",
|
|
3626
|
+
"allowNo": false,
|
|
3627
|
+
"type": "boolean"
|
|
3628
|
+
},
|
|
3629
|
+
"all": {
|
|
3630
|
+
"char": "a",
|
|
3631
|
+
"description": "Remove all unused images, not just dangling ones",
|
|
3632
|
+
"name": "all",
|
|
3633
|
+
"allowNo": false,
|
|
3634
|
+
"type": "boolean"
|
|
3635
|
+
},
|
|
3636
|
+
"volumes": {
|
|
3637
|
+
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3638
|
+
"name": "volumes",
|
|
3639
|
+
"allowNo": false,
|
|
3640
|
+
"type": "boolean"
|
|
3636
3641
|
},
|
|
3637
3642
|
"json": {
|
|
3638
3643
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -3650,7 +3655,7 @@
|
|
|
3650
3655
|
},
|
|
3651
3656
|
"hasDynamicHelp": false,
|
|
3652
3657
|
"hiddenAliases": [],
|
|
3653
|
-
"id": "docker:
|
|
3658
|
+
"id": "docker:prune",
|
|
3654
3659
|
"pluginAlias": "@proletariat/cli",
|
|
3655
3660
|
"pluginName": "@proletariat/cli",
|
|
3656
3661
|
"pluginType": "core",
|
|
@@ -3661,17 +3666,31 @@
|
|
|
3661
3666
|
"dist",
|
|
3662
3667
|
"commands",
|
|
3663
3668
|
"docker",
|
|
3664
|
-
"
|
|
3669
|
+
"prune.js"
|
|
3665
3670
|
]
|
|
3666
3671
|
},
|
|
3667
|
-
"docker:
|
|
3672
|
+
"docker:rebuild-cache": {
|
|
3668
3673
|
"aliases": [],
|
|
3669
3674
|
"args": {},
|
|
3670
|
-
"description": "
|
|
3675
|
+
"description": "Rebuild the shared pnpm store cache volume for fast agent installs",
|
|
3671
3676
|
"examples": [
|
|
3672
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3677
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3678
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
3673
3679
|
],
|
|
3674
3680
|
"flags": {
|
|
3681
|
+
"force": {
|
|
3682
|
+
"char": "f",
|
|
3683
|
+
"description": "Delete and rebuild the cache even if it already exists",
|
|
3684
|
+
"name": "force",
|
|
3685
|
+
"allowNo": false,
|
|
3686
|
+
"type": "boolean"
|
|
3687
|
+
},
|
|
3688
|
+
"delete-only": {
|
|
3689
|
+
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3690
|
+
"name": "delete-only",
|
|
3691
|
+
"allowNo": false,
|
|
3692
|
+
"type": "boolean"
|
|
3693
|
+
},
|
|
3675
3694
|
"json": {
|
|
3676
3695
|
"description": "Output as JSON for AI agents/scripts",
|
|
3677
3696
|
"name": "json",
|
|
@@ -3688,7 +3707,7 @@
|
|
|
3688
3707
|
},
|
|
3689
3708
|
"hasDynamicHelp": false,
|
|
3690
3709
|
"hiddenAliases": [],
|
|
3691
|
-
"id": "docker:
|
|
3710
|
+
"id": "docker:rebuild-cache",
|
|
3692
3711
|
"pluginAlias": "@proletariat/cli",
|
|
3693
3712
|
"pluginName": "@proletariat/cli",
|
|
3694
3713
|
"pluginType": "core",
|
|
@@ -3699,85 +3718,45 @@
|
|
|
3699
3718
|
"dist",
|
|
3700
3719
|
"commands",
|
|
3701
3720
|
"docker",
|
|
3702
|
-
"
|
|
3721
|
+
"rebuild-cache.js"
|
|
3703
3722
|
]
|
|
3704
3723
|
},
|
|
3705
|
-
"
|
|
3724
|
+
"docker:restart": {
|
|
3706
3725
|
"aliases": [],
|
|
3707
|
-
"args": {
|
|
3708
|
-
|
|
3726
|
+
"args": {
|
|
3727
|
+
"target": {
|
|
3728
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3729
|
+
"name": "target",
|
|
3730
|
+
"required": true
|
|
3731
|
+
}
|
|
3732
|
+
},
|
|
3733
|
+
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3709
3734
|
"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"
|
|
3735
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3736
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3737
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3717
3738
|
],
|
|
3718
3739
|
"flags": {
|
|
3719
|
-
"
|
|
3720
|
-
"
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
"
|
|
3727
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3728
|
-
"name": "machine",
|
|
3729
|
-
"allowNo": false,
|
|
3730
|
-
"type": "boolean"
|
|
3731
|
-
},
|
|
3732
|
-
"set": {
|
|
3733
|
-
"char": "s",
|
|
3734
|
-
"description": "Set a config value (format: key value)",
|
|
3735
|
-
"name": "set",
|
|
3736
|
-
"hasDynamicHelp": false,
|
|
3737
|
-
"multiple": true,
|
|
3738
|
-
"type": "option"
|
|
3739
|
-
},
|
|
3740
|
-
"list": {
|
|
3741
|
-
"char": "l",
|
|
3742
|
-
"description": "List all configuration values",
|
|
3743
|
-
"name": "list",
|
|
3740
|
+
"force": {
|
|
3741
|
+
"aliases": [
|
|
3742
|
+
"yes",
|
|
3743
|
+
"y"
|
|
3744
|
+
],
|
|
3745
|
+
"char": "f",
|
|
3746
|
+
"description": "Skip confirmation prompt",
|
|
3747
|
+
"name": "force",
|
|
3744
3748
|
"allowNo": false,
|
|
3745
3749
|
"type": "boolean"
|
|
3746
3750
|
},
|
|
3747
|
-
"
|
|
3748
|
-
"
|
|
3749
|
-
"
|
|
3751
|
+
"time": {
|
|
3752
|
+
"char": "t",
|
|
3753
|
+
"description": "Seconds to wait before killing the container during stop",
|
|
3754
|
+
"name": "time",
|
|
3755
|
+
"default": 10,
|
|
3750
3756
|
"hasDynamicHelp": false,
|
|
3751
3757
|
"multiple": false,
|
|
3752
3758
|
"type": "option"
|
|
3753
|
-
}
|
|
3754
|
-
},
|
|
3755
|
-
"hasDynamicHelp": false,
|
|
3756
|
-
"hiddenAliases": [],
|
|
3757
|
-
"id": "execution:config",
|
|
3758
|
-
"pluginAlias": "@proletariat/cli",
|
|
3759
|
-
"pluginName": "@proletariat/cli",
|
|
3760
|
-
"pluginType": "core",
|
|
3761
|
-
"strict": true,
|
|
3762
|
-
"isESM": true,
|
|
3763
|
-
"relativePath": [
|
|
3764
|
-
"dist",
|
|
3765
|
-
"commands",
|
|
3766
|
-
"execution",
|
|
3767
|
-
"config.js"
|
|
3768
|
-
]
|
|
3769
|
-
},
|
|
3770
|
-
"execution": {
|
|
3771
|
-
"aliases": [],
|
|
3772
|
-
"args": {},
|
|
3773
|
-
"description": "Single execution operations (view, logs, stop)",
|
|
3774
|
-
"examples": [
|
|
3775
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3776
|
-
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
3777
|
-
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
3778
|
-
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
3779
|
-
],
|
|
3780
|
-
"flags": {
|
|
3759
|
+
},
|
|
3781
3760
|
"json": {
|
|
3782
3761
|
"description": "Output as JSON for AI agents/scripts",
|
|
3783
3762
|
"name": "json",
|
|
@@ -3794,28 +3773,34 @@
|
|
|
3794
3773
|
},
|
|
3795
3774
|
"hasDynamicHelp": false,
|
|
3796
3775
|
"hiddenAliases": [],
|
|
3797
|
-
"id": "
|
|
3776
|
+
"id": "docker:restart",
|
|
3798
3777
|
"pluginAlias": "@proletariat/cli",
|
|
3799
3778
|
"pluginName": "@proletariat/cli",
|
|
3800
3779
|
"pluginType": "core",
|
|
3801
3780
|
"strict": true,
|
|
3781
|
+
"enableJsonFlag": false,
|
|
3802
3782
|
"isESM": true,
|
|
3803
3783
|
"relativePath": [
|
|
3804
3784
|
"dist",
|
|
3805
3785
|
"commands",
|
|
3806
|
-
"
|
|
3807
|
-
"
|
|
3786
|
+
"docker",
|
|
3787
|
+
"restart.js"
|
|
3808
3788
|
]
|
|
3809
3789
|
},
|
|
3810
|
-
"
|
|
3790
|
+
"docker:shell": {
|
|
3811
3791
|
"aliases": [],
|
|
3812
|
-
"args": {
|
|
3813
|
-
|
|
3792
|
+
"args": {
|
|
3793
|
+
"target": {
|
|
3794
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3795
|
+
"name": "target",
|
|
3796
|
+
"required": true
|
|
3797
|
+
}
|
|
3798
|
+
},
|
|
3799
|
+
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
3814
3800
|
"examples": [
|
|
3815
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3816
|
-
"<%= config.bin %> <%= command.id %>
|
|
3817
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3818
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3801
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3802
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3803
|
+
"<%= config.bin %> <%= command.id %> abc123 --shell /bin/bash"
|
|
3819
3804
|
],
|
|
3820
3805
|
"flags": {
|
|
3821
3806
|
"json": {
|
|
@@ -3831,34 +3816,27 @@
|
|
|
3831
3816
|
"allowNo": false,
|
|
3832
3817
|
"type": "boolean"
|
|
3833
3818
|
},
|
|
3834
|
-
"
|
|
3819
|
+
"shell": {
|
|
3835
3820
|
"char": "s",
|
|
3836
|
-
"description": "
|
|
3837
|
-
"name": "
|
|
3821
|
+
"description": "Shell to use",
|
|
3822
|
+
"name": "shell",
|
|
3823
|
+
"default": "/bin/sh",
|
|
3838
3824
|
"hasDynamicHelp": false,
|
|
3839
3825
|
"multiple": false,
|
|
3840
|
-
"options": [
|
|
3841
|
-
"starting",
|
|
3842
|
-
"running",
|
|
3843
|
-
"completed",
|
|
3844
|
-
"failed",
|
|
3845
|
-
"stopped"
|
|
3846
|
-
],
|
|
3847
3826
|
"type": "option"
|
|
3848
3827
|
},
|
|
3849
|
-
"
|
|
3850
|
-
"char": "
|
|
3851
|
-
"description": "
|
|
3852
|
-
"name": "
|
|
3828
|
+
"user": {
|
|
3829
|
+
"char": "u",
|
|
3830
|
+
"description": "User to run as",
|
|
3831
|
+
"name": "user",
|
|
3853
3832
|
"hasDynamicHelp": false,
|
|
3854
3833
|
"multiple": false,
|
|
3855
3834
|
"type": "option"
|
|
3856
3835
|
},
|
|
3857
|
-
"
|
|
3858
|
-
"char": "
|
|
3859
|
-
"description": "
|
|
3860
|
-
"name": "
|
|
3861
|
-
"default": 20,
|
|
3836
|
+
"workdir": {
|
|
3837
|
+
"char": "w",
|
|
3838
|
+
"description": "Working directory inside the container",
|
|
3839
|
+
"name": "workdir",
|
|
3862
3840
|
"hasDynamicHelp": false,
|
|
3863
3841
|
"multiple": false,
|
|
3864
3842
|
"type": "option"
|
|
@@ -3866,34 +3844,34 @@
|
|
|
3866
3844
|
},
|
|
3867
3845
|
"hasDynamicHelp": false,
|
|
3868
3846
|
"hiddenAliases": [],
|
|
3869
|
-
"id": "
|
|
3847
|
+
"id": "docker:shell",
|
|
3870
3848
|
"pluginAlias": "@proletariat/cli",
|
|
3871
3849
|
"pluginName": "@proletariat/cli",
|
|
3872
3850
|
"pluginType": "core",
|
|
3873
3851
|
"strict": true,
|
|
3852
|
+
"enableJsonFlag": false,
|
|
3874
3853
|
"isESM": true,
|
|
3875
3854
|
"relativePath": [
|
|
3876
3855
|
"dist",
|
|
3877
3856
|
"commands",
|
|
3878
|
-
"
|
|
3879
|
-
"
|
|
3857
|
+
"docker",
|
|
3858
|
+
"shell.js"
|
|
3880
3859
|
]
|
|
3881
3860
|
},
|
|
3882
|
-
"
|
|
3861
|
+
"docker:start": {
|
|
3883
3862
|
"aliases": [],
|
|
3884
3863
|
"args": {
|
|
3885
|
-
"
|
|
3886
|
-
"description": "Execution ID -
|
|
3887
|
-
"name": "
|
|
3888
|
-
"required":
|
|
3864
|
+
"target": {
|
|
3865
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3866
|
+
"name": "target",
|
|
3867
|
+
"required": true
|
|
3889
3868
|
}
|
|
3890
3869
|
},
|
|
3891
|
-
"description": "
|
|
3870
|
+
"description": "Start a stopped container (by execution ID, agent name, or container ID)",
|
|
3892
3871
|
"examples": [
|
|
3893
3872
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3894
|
-
"<%= config.bin %> <%= command.id %>
|
|
3895
|
-
"<%= config.bin %> <%= command.id %>
|
|
3896
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3873
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3874
|
+
"<%= config.bin %> <%= command.id %> abc123"
|
|
3897
3875
|
],
|
|
3898
3876
|
"flags": {
|
|
3899
3877
|
"json": {
|
|
@@ -3909,54 +3887,36 @@
|
|
|
3909
3887
|
"allowNo": false,
|
|
3910
3888
|
"type": "boolean"
|
|
3911
3889
|
},
|
|
3912
|
-
"
|
|
3913
|
-
"char": "
|
|
3914
|
-
"description": "
|
|
3915
|
-
"name": "
|
|
3890
|
+
"attach": {
|
|
3891
|
+
"char": "a",
|
|
3892
|
+
"description": "Attach to container after starting",
|
|
3893
|
+
"name": "attach",
|
|
3916
3894
|
"allowNo": false,
|
|
3917
3895
|
"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
3896
|
}
|
|
3927
3897
|
},
|
|
3928
3898
|
"hasDynamicHelp": false,
|
|
3929
3899
|
"hiddenAliases": [],
|
|
3930
|
-
"id": "
|
|
3900
|
+
"id": "docker:start",
|
|
3931
3901
|
"pluginAlias": "@proletariat/cli",
|
|
3932
3902
|
"pluginName": "@proletariat/cli",
|
|
3933
3903
|
"pluginType": "core",
|
|
3934
3904
|
"strict": true,
|
|
3905
|
+
"enableJsonFlag": false,
|
|
3935
3906
|
"isESM": true,
|
|
3936
3907
|
"relativePath": [
|
|
3937
3908
|
"dist",
|
|
3938
3909
|
"commands",
|
|
3939
|
-
"
|
|
3940
|
-
"
|
|
3910
|
+
"docker",
|
|
3911
|
+
"start.js"
|
|
3941
3912
|
]
|
|
3942
3913
|
},
|
|
3943
|
-
"
|
|
3914
|
+
"docker:status": {
|
|
3944
3915
|
"aliases": [],
|
|
3945
|
-
"args": {
|
|
3946
|
-
|
|
3947
|
-
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
3948
|
-
"name": "id",
|
|
3949
|
-
"required": false
|
|
3950
|
-
}
|
|
3951
|
-
},
|
|
3952
|
-
"description": "Stop running execution(s)",
|
|
3916
|
+
"args": {},
|
|
3917
|
+
"description": "Check if Docker daemon is running",
|
|
3953
3918
|
"examples": [
|
|
3954
|
-
"<%= config.bin %> <%= command.id %>
|
|
3955
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
3956
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
3957
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
3958
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
3959
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
3919
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3960
3920
|
],
|
|
3961
3921
|
"flags": {
|
|
3962
3922
|
"json": {
|
|
@@ -3971,59 +3931,60 @@
|
|
|
3971
3931
|
"name": "machine",
|
|
3972
3932
|
"allowNo": false,
|
|
3973
3933
|
"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
3934
|
}
|
|
3996
3935
|
},
|
|
3997
3936
|
"hasDynamicHelp": false,
|
|
3998
3937
|
"hiddenAliases": [],
|
|
3999
|
-
"id": "
|
|
3938
|
+
"id": "docker:status",
|
|
4000
3939
|
"pluginAlias": "@proletariat/cli",
|
|
4001
3940
|
"pluginName": "@proletariat/cli",
|
|
4002
3941
|
"pluginType": "core",
|
|
4003
3942
|
"strict": true,
|
|
3943
|
+
"enableJsonFlag": false,
|
|
4004
3944
|
"isESM": true,
|
|
4005
3945
|
"relativePath": [
|
|
4006
3946
|
"dist",
|
|
4007
3947
|
"commands",
|
|
4008
|
-
"
|
|
4009
|
-
"
|
|
3948
|
+
"docker",
|
|
3949
|
+
"status.js"
|
|
4010
3950
|
]
|
|
4011
3951
|
},
|
|
4012
|
-
"
|
|
3952
|
+
"docker:stop": {
|
|
4013
3953
|
"aliases": [],
|
|
4014
3954
|
"args": {
|
|
4015
|
-
"
|
|
4016
|
-
"description": "Execution ID -
|
|
4017
|
-
"name": "
|
|
4018
|
-
"required":
|
|
3955
|
+
"target": {
|
|
3956
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3957
|
+
"name": "target",
|
|
3958
|
+
"required": true
|
|
4019
3959
|
}
|
|
4020
3960
|
},
|
|
4021
|
-
"description": "
|
|
3961
|
+
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
4022
3962
|
"examples": [
|
|
4023
3963
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4024
|
-
"<%= config.bin %> <%= command.id %>
|
|
3964
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3965
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
4025
3966
|
],
|
|
4026
3967
|
"flags": {
|
|
3968
|
+
"force": {
|
|
3969
|
+
"aliases": [
|
|
3970
|
+
"yes",
|
|
3971
|
+
"y"
|
|
3972
|
+
],
|
|
3973
|
+
"char": "f",
|
|
3974
|
+
"description": "Skip confirmation prompt",
|
|
3975
|
+
"name": "force",
|
|
3976
|
+
"allowNo": false,
|
|
3977
|
+
"type": "boolean"
|
|
3978
|
+
},
|
|
3979
|
+
"time": {
|
|
3980
|
+
"char": "t",
|
|
3981
|
+
"description": "Seconds to wait before killing the container",
|
|
3982
|
+
"name": "time",
|
|
3983
|
+
"default": 10,
|
|
3984
|
+
"hasDynamicHelp": false,
|
|
3985
|
+
"multiple": false,
|
|
3986
|
+
"type": "option"
|
|
3987
|
+
},
|
|
4027
3988
|
"json": {
|
|
4028
3989
|
"description": "Output as JSON for AI agents/scripts",
|
|
4029
3990
|
"name": "json",
|
|
@@ -4040,17 +4001,56 @@
|
|
|
4040
4001
|
},
|
|
4041
4002
|
"hasDynamicHelp": false,
|
|
4042
4003
|
"hiddenAliases": [],
|
|
4043
|
-
"id": "
|
|
4004
|
+
"id": "docker:stop",
|
|
4044
4005
|
"pluginAlias": "@proletariat/cli",
|
|
4045
4006
|
"pluginName": "@proletariat/cli",
|
|
4046
4007
|
"pluginType": "core",
|
|
4047
4008
|
"strict": true,
|
|
4009
|
+
"enableJsonFlag": false,
|
|
4048
4010
|
"isESM": true,
|
|
4049
4011
|
"relativePath": [
|
|
4050
4012
|
"dist",
|
|
4051
4013
|
"commands",
|
|
4052
|
-
"
|
|
4053
|
-
"
|
|
4014
|
+
"docker",
|
|
4015
|
+
"stop.js"
|
|
4016
|
+
]
|
|
4017
|
+
},
|
|
4018
|
+
"docker:sync": {
|
|
4019
|
+
"aliases": [],
|
|
4020
|
+
"args": {},
|
|
4021
|
+
"description": "Sync container status from Docker into the database",
|
|
4022
|
+
"examples": [
|
|
4023
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4024
|
+
],
|
|
4025
|
+
"flags": {
|
|
4026
|
+
"json": {
|
|
4027
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4028
|
+
"name": "json",
|
|
4029
|
+
"allowNo": false,
|
|
4030
|
+
"type": "boolean"
|
|
4031
|
+
},
|
|
4032
|
+
"machine": {
|
|
4033
|
+
"char": "m",
|
|
4034
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
4035
|
+
"name": "machine",
|
|
4036
|
+
"allowNo": false,
|
|
4037
|
+
"type": "boolean"
|
|
4038
|
+
}
|
|
4039
|
+
},
|
|
4040
|
+
"hasDynamicHelp": false,
|
|
4041
|
+
"hiddenAliases": [],
|
|
4042
|
+
"id": "docker:sync",
|
|
4043
|
+
"pluginAlias": "@proletariat/cli",
|
|
4044
|
+
"pluginName": "@proletariat/cli",
|
|
4045
|
+
"pluginType": "core",
|
|
4046
|
+
"strict": true,
|
|
4047
|
+
"enableJsonFlag": false,
|
|
4048
|
+
"isESM": true,
|
|
4049
|
+
"relativePath": [
|
|
4050
|
+
"dist",
|
|
4051
|
+
"commands",
|
|
4052
|
+
"docker",
|
|
4053
|
+
"sync.js"
|
|
4054
4054
|
]
|
|
4055
4055
|
},
|
|
4056
4056
|
"feedback": {
|
|
@@ -6843,6 +6843,99 @@
|
|
|
6843
6843
|
"view.js"
|
|
6844
6844
|
]
|
|
6845
6845
|
},
|
|
6846
|
+
"run": {
|
|
6847
|
+
"aliases": [],
|
|
6848
|
+
"args": {
|
|
6849
|
+
"task": {
|
|
6850
|
+
"description": "Task description for the agent",
|
|
6851
|
+
"name": "task",
|
|
6852
|
+
"required": true
|
|
6853
|
+
}
|
|
6854
|
+
},
|
|
6855
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
6856
|
+
"examples": [
|
|
6857
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
6858
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
6859
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
6860
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
6861
|
+
],
|
|
6862
|
+
"flags": {
|
|
6863
|
+
"json": {
|
|
6864
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6865
|
+
"name": "json",
|
|
6866
|
+
"allowNo": false,
|
|
6867
|
+
"type": "boolean"
|
|
6868
|
+
},
|
|
6869
|
+
"machine": {
|
|
6870
|
+
"char": "m",
|
|
6871
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6872
|
+
"name": "machine",
|
|
6873
|
+
"allowNo": false,
|
|
6874
|
+
"type": "boolean"
|
|
6875
|
+
},
|
|
6876
|
+
"runner": {
|
|
6877
|
+
"char": "r",
|
|
6878
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
6879
|
+
"name": "runner",
|
|
6880
|
+
"hasDynamicHelp": false,
|
|
6881
|
+
"multiple": false,
|
|
6882
|
+
"type": "option"
|
|
6883
|
+
},
|
|
6884
|
+
"detached": {
|
|
6885
|
+
"char": "d",
|
|
6886
|
+
"description": "Run in background (detached)",
|
|
6887
|
+
"name": "detached",
|
|
6888
|
+
"allowNo": false,
|
|
6889
|
+
"type": "boolean"
|
|
6890
|
+
},
|
|
6891
|
+
"directory": {
|
|
6892
|
+
"description": "Working directory (default: cwd)",
|
|
6893
|
+
"name": "directory",
|
|
6894
|
+
"hasDynamicHelp": false,
|
|
6895
|
+
"multiple": false,
|
|
6896
|
+
"type": "option"
|
|
6897
|
+
},
|
|
6898
|
+
"permission-mode": {
|
|
6899
|
+
"char": "p",
|
|
6900
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
6901
|
+
"name": "permission-mode",
|
|
6902
|
+
"hasDynamicHelp": false,
|
|
6903
|
+
"multiple": false,
|
|
6904
|
+
"options": [
|
|
6905
|
+
"danger",
|
|
6906
|
+
"safe"
|
|
6907
|
+
],
|
|
6908
|
+
"type": "option"
|
|
6909
|
+
},
|
|
6910
|
+
"environment": {
|
|
6911
|
+
"char": "e",
|
|
6912
|
+
"description": "Environment to run in",
|
|
6913
|
+
"name": "environment",
|
|
6914
|
+
"hasDynamicHelp": false,
|
|
6915
|
+
"multiple": false,
|
|
6916
|
+
"options": [
|
|
6917
|
+
"host",
|
|
6918
|
+
"docker",
|
|
6919
|
+
"podman"
|
|
6920
|
+
],
|
|
6921
|
+
"type": "option"
|
|
6922
|
+
}
|
|
6923
|
+
},
|
|
6924
|
+
"hasDynamicHelp": false,
|
|
6925
|
+
"hiddenAliases": [],
|
|
6926
|
+
"id": "run",
|
|
6927
|
+
"pluginAlias": "@proletariat/cli",
|
|
6928
|
+
"pluginName": "@proletariat/cli",
|
|
6929
|
+
"pluginType": "core",
|
|
6930
|
+
"strict": true,
|
|
6931
|
+
"isESM": true,
|
|
6932
|
+
"relativePath": [
|
|
6933
|
+
"dist",
|
|
6934
|
+
"commands",
|
|
6935
|
+
"run",
|
|
6936
|
+
"index.js"
|
|
6937
|
+
]
|
|
6938
|
+
},
|
|
6846
6939
|
"shortcut:connect": {
|
|
6847
6940
|
"aliases": [],
|
|
6848
6941
|
"args": {},
|
|
@@ -8103,23 +8196,23 @@
|
|
|
8103
8196
|
"logs.js"
|
|
8104
8197
|
]
|
|
8105
8198
|
},
|
|
8106
|
-
"
|
|
8199
|
+
"sync": {
|
|
8107
8200
|
"aliases": [],
|
|
8108
|
-
"args": {
|
|
8109
|
-
|
|
8110
|
-
"description": "Task description for the agent",
|
|
8111
|
-
"name": "task",
|
|
8112
|
-
"required": true
|
|
8113
|
-
}
|
|
8114
|
-
},
|
|
8115
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
8201
|
+
"args": {},
|
|
8202
|
+
"description": "Reconcile ticket state with GitHub PR status",
|
|
8116
8203
|
"examples": [
|
|
8117
|
-
"<%= config.bin %>
|
|
8118
|
-
"<%= config.bin %>
|
|
8119
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
8120
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
8204
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8205
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
8121
8206
|
],
|
|
8122
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
|
+
},
|
|
8123
8216
|
"json": {
|
|
8124
8217
|
"description": "Output as JSON for AI agents/scripts",
|
|
8125
8218
|
"name": "json",
|
|
@@ -8133,109 +8226,16 @@
|
|
|
8133
8226
|
"allowNo": false,
|
|
8134
8227
|
"type": "boolean"
|
|
8135
8228
|
},
|
|
8136
|
-
"
|
|
8137
|
-
"
|
|
8138
|
-
"
|
|
8139
|
-
"name": "runner",
|
|
8140
|
-
"hasDynamicHelp": false,
|
|
8141
|
-
"multiple": false,
|
|
8142
|
-
"type": "option"
|
|
8143
|
-
},
|
|
8144
|
-
"detached": {
|
|
8145
|
-
"char": "d",
|
|
8146
|
-
"description": "Run in background (detached)",
|
|
8147
|
-
"name": "detached",
|
|
8229
|
+
"dry-run": {
|
|
8230
|
+
"description": "Show what would change without applying",
|
|
8231
|
+
"name": "dry-run",
|
|
8148
8232
|
"allowNo": false,
|
|
8149
8233
|
"type": "boolean"
|
|
8150
|
-
},
|
|
8151
|
-
"directory": {
|
|
8152
|
-
"description": "Working directory (default: cwd)",
|
|
8153
|
-
"name": "directory",
|
|
8154
|
-
"hasDynamicHelp": false,
|
|
8155
|
-
"multiple": false,
|
|
8156
|
-
"type": "option"
|
|
8157
|
-
},
|
|
8158
|
-
"permission-mode": {
|
|
8159
|
-
"char": "p",
|
|
8160
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
8161
|
-
"name": "permission-mode",
|
|
8162
|
-
"hasDynamicHelp": false,
|
|
8163
|
-
"multiple": false,
|
|
8164
|
-
"options": [
|
|
8165
|
-
"danger",
|
|
8166
|
-
"safe"
|
|
8167
|
-
],
|
|
8168
|
-
"type": "option"
|
|
8169
|
-
},
|
|
8170
|
-
"environment": {
|
|
8171
|
-
"char": "e",
|
|
8172
|
-
"description": "Environment to run in",
|
|
8173
|
-
"name": "environment",
|
|
8174
|
-
"hasDynamicHelp": false,
|
|
8175
|
-
"multiple": false,
|
|
8176
|
-
"options": [
|
|
8177
|
-
"host",
|
|
8178
|
-
"docker",
|
|
8179
|
-
"podman"
|
|
8180
|
-
],
|
|
8181
|
-
"type": "option"
|
|
8182
8234
|
}
|
|
8183
8235
|
},
|
|
8184
8236
|
"hasDynamicHelp": false,
|
|
8185
8237
|
"hiddenAliases": [],
|
|
8186
|
-
"id": "
|
|
8187
|
-
"pluginAlias": "@proletariat/cli",
|
|
8188
|
-
"pluginName": "@proletariat/cli",
|
|
8189
|
-
"pluginType": "core",
|
|
8190
|
-
"strict": true,
|
|
8191
|
-
"isESM": true,
|
|
8192
|
-
"relativePath": [
|
|
8193
|
-
"dist",
|
|
8194
|
-
"commands",
|
|
8195
|
-
"run",
|
|
8196
|
-
"index.js"
|
|
8197
|
-
]
|
|
8198
|
-
},
|
|
8199
|
-
"sync": {
|
|
8200
|
-
"aliases": [],
|
|
8201
|
-
"args": {},
|
|
8202
|
-
"description": "Reconcile ticket state with GitHub PR status",
|
|
8203
|
-
"examples": [
|
|
8204
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8205
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
8206
|
-
],
|
|
8207
|
-
"flags": {
|
|
8208
|
-
"project": {
|
|
8209
|
-
"char": "P",
|
|
8210
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8211
|
-
"name": "project",
|
|
8212
|
-
"hasDynamicHelp": false,
|
|
8213
|
-
"multiple": false,
|
|
8214
|
-
"type": "option"
|
|
8215
|
-
},
|
|
8216
|
-
"json": {
|
|
8217
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8218
|
-
"name": "json",
|
|
8219
|
-
"allowNo": false,
|
|
8220
|
-
"type": "boolean"
|
|
8221
|
-
},
|
|
8222
|
-
"machine": {
|
|
8223
|
-
"char": "m",
|
|
8224
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
8225
|
-
"name": "machine",
|
|
8226
|
-
"allowNo": false,
|
|
8227
|
-
"type": "boolean"
|
|
8228
|
-
},
|
|
8229
|
-
"dry-run": {
|
|
8230
|
-
"description": "Show what would change without applying",
|
|
8231
|
-
"name": "dry-run",
|
|
8232
|
-
"allowNo": false,
|
|
8233
|
-
"type": "boolean"
|
|
8234
|
-
}
|
|
8235
|
-
},
|
|
8236
|
-
"hasDynamicHelp": false,
|
|
8237
|
-
"hiddenAliases": [],
|
|
8238
|
-
"id": "sync",
|
|
8238
|
+
"id": "sync",
|
|
8239
8239
|
"pluginAlias": "@proletariat/cli",
|
|
8240
8240
|
"pluginName": "@proletariat/cli",
|
|
8241
8241
|
"pluginType": "core",
|
|
@@ -8480,14 +8480,30 @@
|
|
|
8480
8480
|
"stop.js"
|
|
8481
8481
|
]
|
|
8482
8482
|
},
|
|
8483
|
-
"
|
|
8483
|
+
"terminal:title": {
|
|
8484
8484
|
"aliases": [],
|
|
8485
|
-
"args": {
|
|
8486
|
-
|
|
8485
|
+
"args": {
|
|
8486
|
+
"title": {
|
|
8487
|
+
"description": "Title to set for the terminal tab/window",
|
|
8488
|
+
"name": "title",
|
|
8489
|
+
"required": false
|
|
8490
|
+
}
|
|
8491
|
+
},
|
|
8492
|
+
"description": "Set the terminal tab/window title",
|
|
8487
8493
|
"examples": [
|
|
8488
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8494
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
8495
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
8496
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
8497
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
8489
8498
|
],
|
|
8490
8499
|
"flags": {
|
|
8500
|
+
"reset": {
|
|
8501
|
+
"char": "r",
|
|
8502
|
+
"description": "Reset terminal title to default",
|
|
8503
|
+
"name": "reset",
|
|
8504
|
+
"allowNo": false,
|
|
8505
|
+
"type": "boolean"
|
|
8506
|
+
},
|
|
8491
8507
|
"json": {
|
|
8492
8508
|
"description": "Output as JSON for AI agents/scripts",
|
|
8493
8509
|
"name": "json",
|
|
@@ -8504,24 +8520,23 @@
|
|
|
8504
8520
|
},
|
|
8505
8521
|
"hasDynamicHelp": false,
|
|
8506
8522
|
"hiddenAliases": [],
|
|
8507
|
-
"id": "
|
|
8523
|
+
"id": "terminal:title",
|
|
8508
8524
|
"pluginAlias": "@proletariat/cli",
|
|
8509
8525
|
"pluginName": "@proletariat/cli",
|
|
8510
8526
|
"pluginType": "core",
|
|
8511
8527
|
"strict": true,
|
|
8512
|
-
"enableJsonFlag": false,
|
|
8513
8528
|
"isESM": true,
|
|
8514
8529
|
"relativePath": [
|
|
8515
8530
|
"dist",
|
|
8516
8531
|
"commands",
|
|
8517
|
-
"
|
|
8518
|
-
"
|
|
8532
|
+
"terminal",
|
|
8533
|
+
"title.js"
|
|
8519
8534
|
]
|
|
8520
8535
|
},
|
|
8521
|
-
"telemetry:
|
|
8536
|
+
"telemetry:disable": {
|
|
8522
8537
|
"aliases": [],
|
|
8523
8538
|
"args": {},
|
|
8524
|
-
"description": "
|
|
8539
|
+
"description": "Disable anonymous telemetry",
|
|
8525
8540
|
"examples": [
|
|
8526
8541
|
"<%= config.bin %> <%= command.id %>"
|
|
8527
8542
|
],
|
|
@@ -8542,7 +8557,7 @@
|
|
|
8542
8557
|
},
|
|
8543
8558
|
"hasDynamicHelp": false,
|
|
8544
8559
|
"hiddenAliases": [],
|
|
8545
|
-
"id": "telemetry:
|
|
8560
|
+
"id": "telemetry:disable",
|
|
8546
8561
|
"pluginAlias": "@proletariat/cli",
|
|
8547
8562
|
"pluginName": "@proletariat/cli",
|
|
8548
8563
|
"pluginType": "core",
|
|
@@ -8553,16 +8568,15 @@
|
|
|
8553
8568
|
"dist",
|
|
8554
8569
|
"commands",
|
|
8555
8570
|
"telemetry",
|
|
8556
|
-
"
|
|
8571
|
+
"disable.js"
|
|
8557
8572
|
]
|
|
8558
8573
|
},
|
|
8559
|
-
"telemetry": {
|
|
8574
|
+
"telemetry:enable": {
|
|
8560
8575
|
"aliases": [],
|
|
8561
8576
|
"args": {},
|
|
8562
|
-
"description": "
|
|
8577
|
+
"description": "Enable anonymous telemetry",
|
|
8563
8578
|
"examples": [
|
|
8564
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8565
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
8579
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8566
8580
|
],
|
|
8567
8581
|
"flags": {
|
|
8568
8582
|
"json": {
|
|
@@ -8581,7 +8595,7 @@
|
|
|
8581
8595
|
},
|
|
8582
8596
|
"hasDynamicHelp": false,
|
|
8583
8597
|
"hiddenAliases": [],
|
|
8584
|
-
"id": "telemetry",
|
|
8598
|
+
"id": "telemetry:enable",
|
|
8585
8599
|
"pluginAlias": "@proletariat/cli",
|
|
8586
8600
|
"pluginName": "@proletariat/cli",
|
|
8587
8601
|
"pluginType": "core",
|
|
@@ -8592,15 +8606,16 @@
|
|
|
8592
8606
|
"dist",
|
|
8593
8607
|
"commands",
|
|
8594
8608
|
"telemetry",
|
|
8595
|
-
"
|
|
8609
|
+
"enable.js"
|
|
8596
8610
|
]
|
|
8597
8611
|
},
|
|
8598
|
-
"telemetry
|
|
8612
|
+
"telemetry": {
|
|
8599
8613
|
"aliases": [],
|
|
8600
8614
|
"args": {},
|
|
8601
8615
|
"description": "Show telemetry status",
|
|
8602
8616
|
"examples": [
|
|
8603
|
-
"<%= config.bin %>
|
|
8617
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8618
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8604
8619
|
],
|
|
8605
8620
|
"flags": {
|
|
8606
8621
|
"json": {
|
|
@@ -8619,7 +8634,7 @@
|
|
|
8619
8634
|
},
|
|
8620
8635
|
"hasDynamicHelp": false,
|
|
8621
8636
|
"hiddenAliases": [],
|
|
8622
|
-
"id": "telemetry
|
|
8637
|
+
"id": "telemetry",
|
|
8623
8638
|
"pluginAlias": "@proletariat/cli",
|
|
8624
8639
|
"pluginName": "@proletariat/cli",
|
|
8625
8640
|
"pluginType": "core",
|
|
@@ -8630,33 +8645,17 @@
|
|
|
8630
8645
|
"dist",
|
|
8631
8646
|
"commands",
|
|
8632
8647
|
"telemetry",
|
|
8633
|
-
"
|
|
8648
|
+
"index.js"
|
|
8634
8649
|
]
|
|
8635
8650
|
},
|
|
8636
|
-
"
|
|
8651
|
+
"telemetry:status": {
|
|
8637
8652
|
"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",
|
|
8653
|
+
"args": {},
|
|
8654
|
+
"description": "Show telemetry status",
|
|
8646
8655
|
"examples": [
|
|
8647
|
-
"<%= config.bin %>
|
|
8648
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
8649
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
8650
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
8656
|
+
"<%= config.bin %> telemetry status"
|
|
8651
8657
|
],
|
|
8652
8658
|
"flags": {
|
|
8653
|
-
"reset": {
|
|
8654
|
-
"char": "r",
|
|
8655
|
-
"description": "Reset terminal title to default",
|
|
8656
|
-
"name": "reset",
|
|
8657
|
-
"allowNo": false,
|
|
8658
|
-
"type": "boolean"
|
|
8659
|
-
},
|
|
8660
8659
|
"json": {
|
|
8661
8660
|
"description": "Output as JSON for AI agents/scripts",
|
|
8662
8661
|
"name": "json",
|
|
@@ -8673,17 +8672,18 @@
|
|
|
8673
8672
|
},
|
|
8674
8673
|
"hasDynamicHelp": false,
|
|
8675
8674
|
"hiddenAliases": [],
|
|
8676
|
-
"id": "
|
|
8675
|
+
"id": "telemetry:status",
|
|
8677
8676
|
"pluginAlias": "@proletariat/cli",
|
|
8678
8677
|
"pluginName": "@proletariat/cli",
|
|
8679
8678
|
"pluginType": "core",
|
|
8680
8679
|
"strict": true,
|
|
8680
|
+
"enableJsonFlag": false,
|
|
8681
8681
|
"isESM": true,
|
|
8682
8682
|
"relativePath": [
|
|
8683
8683
|
"dist",
|
|
8684
8684
|
"commands",
|
|
8685
|
-
"
|
|
8686
|
-
"
|
|
8685
|
+
"telemetry",
|
|
8686
|
+
"status.js"
|
|
8687
8687
|
]
|
|
8688
8688
|
},
|
|
8689
8689
|
"theme:add-names": {
|
|
@@ -8919,30 +8919,32 @@
|
|
|
8919
8919
|
"set.js"
|
|
8920
8920
|
]
|
|
8921
8921
|
},
|
|
8922
|
-
"
|
|
8922
|
+
"ticket:create": {
|
|
8923
8923
|
"aliases": [],
|
|
8924
|
-
"args": {
|
|
8925
|
-
|
|
8926
|
-
"description": "Tool type (mcp or cli)",
|
|
8927
|
-
"name": "type",
|
|
8928
|
-
"options": [
|
|
8929
|
-
"mcp",
|
|
8930
|
-
"cli"
|
|
8931
|
-
],
|
|
8932
|
-
"required": true
|
|
8933
|
-
},
|
|
8934
|
-
"name": {
|
|
8935
|
-
"description": "Tool name (unique identifier)",
|
|
8936
|
-
"name": "name",
|
|
8937
|
-
"required": true
|
|
8938
|
-
}
|
|
8939
|
-
},
|
|
8940
|
-
"description": "Register an MCP server or CLI tool",
|
|
8924
|
+
"args": {},
|
|
8925
|
+
"description": "Create a new ticket (routes to Linear when configured, or local PMO)",
|
|
8941
8926
|
"examples": [
|
|
8942
|
-
"<%= config.bin %>
|
|
8943
|
-
"<%= config.bin %>
|
|
8927
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8928
|
+
"<%= config.bin %> <%= command.id %> --title \"Fix login bug\" --column Backlog",
|
|
8929
|
+
"<%= config.bin %> <%= command.id %> -t \"Add feature\" -c \"In Progress\" -p P1",
|
|
8930
|
+
"<%= config.bin %> <%= command.id %> --project mobile-app -t \"New feature\"",
|
|
8931
|
+
"<%= config.bin %> <%= command.id %> --epic EPIC-001 -t \"Implement auth flow\"",
|
|
8932
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file ./ticket-desc.md",
|
|
8933
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file - # Read from stdin",
|
|
8934
|
+
"<%= config.bin %> <%= command.id %> --json # Output column choices as JSON",
|
|
8935
|
+
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating",
|
|
8936
|
+
"<%= config.bin %> <%= command.id %> --source linear -t \"Fix bug\" --team ENG",
|
|
8937
|
+
"<%= config.bin %> <%= command.id %> --source pmo -t \"Local task\" -c Backlog"
|
|
8944
8938
|
],
|
|
8945
8939
|
"flags": {
|
|
8940
|
+
"project": {
|
|
8941
|
+
"char": "P",
|
|
8942
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8943
|
+
"name": "project",
|
|
8944
|
+
"hasDynamicHelp": false,
|
|
8945
|
+
"multiple": false,
|
|
8946
|
+
"type": "option"
|
|
8947
|
+
},
|
|
8946
8948
|
"json": {
|
|
8947
8949
|
"description": "Output as JSON for AI agents/scripts",
|
|
8948
8950
|
"name": "json",
|
|
@@ -8956,310 +8958,40 @@
|
|
|
8956
8958
|
"allowNo": false,
|
|
8957
8959
|
"type": "boolean"
|
|
8958
8960
|
},
|
|
8959
|
-
"
|
|
8960
|
-
"
|
|
8961
|
-
"
|
|
8962
|
-
"
|
|
8963
|
-
"multiple": false,
|
|
8964
|
-
"type": "option"
|
|
8965
|
-
},
|
|
8966
|
-
"command": {
|
|
8967
|
-
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
8968
|
-
"name": "command",
|
|
8961
|
+
"title": {
|
|
8962
|
+
"char": "t",
|
|
8963
|
+
"description": "Ticket title [required for non-interactive]",
|
|
8964
|
+
"name": "title",
|
|
8969
8965
|
"hasDynamicHelp": false,
|
|
8970
8966
|
"multiple": false,
|
|
8971
8967
|
"type": "option"
|
|
8972
8968
|
},
|
|
8973
|
-
"
|
|
8974
|
-
"
|
|
8975
|
-
"
|
|
8969
|
+
"column": {
|
|
8970
|
+
"char": "c",
|
|
8971
|
+
"description": "Column to place the ticket in",
|
|
8972
|
+
"name": "column",
|
|
8976
8973
|
"hasDynamicHelp": false,
|
|
8977
8974
|
"multiple": false,
|
|
8978
8975
|
"type": "option"
|
|
8979
8976
|
},
|
|
8980
|
-
"
|
|
8981
|
-
"
|
|
8982
|
-
"
|
|
8977
|
+
"priority": {
|
|
8978
|
+
"char": "p",
|
|
8979
|
+
"description": "Ticket priority (uses workspace priority scale)",
|
|
8980
|
+
"name": "priority",
|
|
8983
8981
|
"hasDynamicHelp": false,
|
|
8984
8982
|
"multiple": false,
|
|
8985
8983
|
"type": "option"
|
|
8986
8984
|
},
|
|
8987
|
-
"
|
|
8988
|
-
"description": "
|
|
8989
|
-
"name": "
|
|
8985
|
+
"category": {
|
|
8986
|
+
"description": "Ticket category (e.g., bug, feature, refactor)",
|
|
8987
|
+
"name": "category",
|
|
8990
8988
|
"hasDynamicHelp": false,
|
|
8991
8989
|
"multiple": false,
|
|
8992
8990
|
"type": "option"
|
|
8993
8991
|
},
|
|
8994
8992
|
"description": {
|
|
8995
8993
|
"char": "d",
|
|
8996
|
-
"description": "
|
|
8997
|
-
"name": "description",
|
|
8998
|
-
"required": true,
|
|
8999
|
-
"hasDynamicHelp": false,
|
|
9000
|
-
"multiple": false,
|
|
9001
|
-
"type": "option"
|
|
9002
|
-
}
|
|
9003
|
-
},
|
|
9004
|
-
"hasDynamicHelp": false,
|
|
9005
|
-
"hiddenAliases": [],
|
|
9006
|
-
"id": "tools:add",
|
|
9007
|
-
"pluginAlias": "@proletariat/cli",
|
|
9008
|
-
"pluginName": "@proletariat/cli",
|
|
9009
|
-
"pluginType": "core",
|
|
9010
|
-
"strict": true,
|
|
9011
|
-
"isESM": true,
|
|
9012
|
-
"relativePath": [
|
|
9013
|
-
"dist",
|
|
9014
|
-
"commands",
|
|
9015
|
-
"tools",
|
|
9016
|
-
"add.js"
|
|
9017
|
-
]
|
|
9018
|
-
},
|
|
9019
|
-
"tools:check": {
|
|
9020
|
-
"aliases": [],
|
|
9021
|
-
"args": {},
|
|
9022
|
-
"description": "Verify all registered tools are available and healthy",
|
|
9023
|
-
"examples": [
|
|
9024
|
-
"<%= config.bin %> tools check",
|
|
9025
|
-
"<%= config.bin %> tools check --json"
|
|
9026
|
-
],
|
|
9027
|
-
"flags": {
|
|
9028
|
-
"json": {
|
|
9029
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9030
|
-
"name": "json",
|
|
9031
|
-
"allowNo": false,
|
|
9032
|
-
"type": "boolean"
|
|
9033
|
-
},
|
|
9034
|
-
"machine": {
|
|
9035
|
-
"char": "m",
|
|
9036
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9037
|
-
"name": "machine",
|
|
9038
|
-
"allowNo": false,
|
|
9039
|
-
"type": "boolean"
|
|
9040
|
-
}
|
|
9041
|
-
},
|
|
9042
|
-
"hasDynamicHelp": false,
|
|
9043
|
-
"hiddenAliases": [],
|
|
9044
|
-
"id": "tools:check",
|
|
9045
|
-
"pluginAlias": "@proletariat/cli",
|
|
9046
|
-
"pluginName": "@proletariat/cli",
|
|
9047
|
-
"pluginType": "core",
|
|
9048
|
-
"strict": true,
|
|
9049
|
-
"enableJsonFlag": false,
|
|
9050
|
-
"isESM": true,
|
|
9051
|
-
"relativePath": [
|
|
9052
|
-
"dist",
|
|
9053
|
-
"commands",
|
|
9054
|
-
"tools",
|
|
9055
|
-
"check.js"
|
|
9056
|
-
]
|
|
9057
|
-
},
|
|
9058
|
-
"tools:detect": {
|
|
9059
|
-
"aliases": [],
|
|
9060
|
-
"args": {},
|
|
9061
|
-
"description": "Auto-detect common CLI tools on the system and register them",
|
|
9062
|
-
"examples": [
|
|
9063
|
-
"<%= config.bin %> tools detect",
|
|
9064
|
-
"<%= config.bin %> tools detect --auto",
|
|
9065
|
-
"<%= config.bin %> tools detect --json"
|
|
9066
|
-
],
|
|
9067
|
-
"flags": {
|
|
9068
|
-
"json": {
|
|
9069
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9070
|
-
"name": "json",
|
|
9071
|
-
"allowNo": false,
|
|
9072
|
-
"type": "boolean"
|
|
9073
|
-
},
|
|
9074
|
-
"machine": {
|
|
9075
|
-
"char": "m",
|
|
9076
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9077
|
-
"name": "machine",
|
|
9078
|
-
"allowNo": false,
|
|
9079
|
-
"type": "boolean"
|
|
9080
|
-
},
|
|
9081
|
-
"auto": {
|
|
9082
|
-
"description": "Automatically register all detected tools without prompting",
|
|
9083
|
-
"name": "auto",
|
|
9084
|
-
"allowNo": false,
|
|
9085
|
-
"type": "boolean"
|
|
9086
|
-
}
|
|
9087
|
-
},
|
|
9088
|
-
"hasDynamicHelp": false,
|
|
9089
|
-
"hiddenAliases": [],
|
|
9090
|
-
"id": "tools:detect",
|
|
9091
|
-
"pluginAlias": "@proletariat/cli",
|
|
9092
|
-
"pluginName": "@proletariat/cli",
|
|
9093
|
-
"pluginType": "core",
|
|
9094
|
-
"strict": true,
|
|
9095
|
-
"enableJsonFlag": false,
|
|
9096
|
-
"isESM": true,
|
|
9097
|
-
"relativePath": [
|
|
9098
|
-
"dist",
|
|
9099
|
-
"commands",
|
|
9100
|
-
"tools",
|
|
9101
|
-
"detect.js"
|
|
9102
|
-
]
|
|
9103
|
-
},
|
|
9104
|
-
"tools": {
|
|
9105
|
-
"aliases": [
|
|
9106
|
-
"tools:list"
|
|
9107
|
-
],
|
|
9108
|
-
"args": {},
|
|
9109
|
-
"description": "Show all registered MCP servers and CLI tools",
|
|
9110
|
-
"examples": [
|
|
9111
|
-
"<%= config.bin %> tools",
|
|
9112
|
-
"<%= config.bin %> tools --json"
|
|
9113
|
-
],
|
|
9114
|
-
"flags": {
|
|
9115
|
-
"json": {
|
|
9116
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9117
|
-
"name": "json",
|
|
9118
|
-
"allowNo": false,
|
|
9119
|
-
"type": "boolean"
|
|
9120
|
-
},
|
|
9121
|
-
"machine": {
|
|
9122
|
-
"char": "m",
|
|
9123
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9124
|
-
"name": "machine",
|
|
9125
|
-
"allowNo": false,
|
|
9126
|
-
"type": "boolean"
|
|
9127
|
-
}
|
|
9128
|
-
},
|
|
9129
|
-
"hasDynamicHelp": false,
|
|
9130
|
-
"hiddenAliases": [],
|
|
9131
|
-
"id": "tools",
|
|
9132
|
-
"pluginAlias": "@proletariat/cli",
|
|
9133
|
-
"pluginName": "@proletariat/cli",
|
|
9134
|
-
"pluginType": "core",
|
|
9135
|
-
"strict": true,
|
|
9136
|
-
"enableJsonFlag": false,
|
|
9137
|
-
"isESM": true,
|
|
9138
|
-
"relativePath": [
|
|
9139
|
-
"dist",
|
|
9140
|
-
"commands",
|
|
9141
|
-
"tools",
|
|
9142
|
-
"index.js"
|
|
9143
|
-
]
|
|
9144
|
-
},
|
|
9145
|
-
"tools:remove": {
|
|
9146
|
-
"aliases": [],
|
|
9147
|
-
"args": {
|
|
9148
|
-
"name": {
|
|
9149
|
-
"description": "Tool name to remove",
|
|
9150
|
-
"name": "name",
|
|
9151
|
-
"required": true
|
|
9152
|
-
}
|
|
9153
|
-
},
|
|
9154
|
-
"description": "Remove a tool from the registry",
|
|
9155
|
-
"examples": [
|
|
9156
|
-
"<%= config.bin %> tools remove arcade",
|
|
9157
|
-
"<%= config.bin %> tools remove ffmpeg"
|
|
9158
|
-
],
|
|
9159
|
-
"flags": {
|
|
9160
|
-
"json": {
|
|
9161
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9162
|
-
"name": "json",
|
|
9163
|
-
"allowNo": false,
|
|
9164
|
-
"type": "boolean"
|
|
9165
|
-
},
|
|
9166
|
-
"machine": {
|
|
9167
|
-
"char": "m",
|
|
9168
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9169
|
-
"name": "machine",
|
|
9170
|
-
"allowNo": false,
|
|
9171
|
-
"type": "boolean"
|
|
9172
|
-
}
|
|
9173
|
-
},
|
|
9174
|
-
"hasDynamicHelp": false,
|
|
9175
|
-
"hiddenAliases": [],
|
|
9176
|
-
"id": "tools:remove",
|
|
9177
|
-
"pluginAlias": "@proletariat/cli",
|
|
9178
|
-
"pluginName": "@proletariat/cli",
|
|
9179
|
-
"pluginType": "core",
|
|
9180
|
-
"strict": true,
|
|
9181
|
-
"enableJsonFlag": false,
|
|
9182
|
-
"isESM": true,
|
|
9183
|
-
"relativePath": [
|
|
9184
|
-
"dist",
|
|
9185
|
-
"commands",
|
|
9186
|
-
"tools",
|
|
9187
|
-
"remove.js"
|
|
9188
|
-
]
|
|
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",
|
|
8994
|
+
"description": "Ticket description",
|
|
9263
8995
|
"name": "description",
|
|
9264
8996
|
"hasDynamicHelp": false,
|
|
9265
8997
|
"multiple": false,
|
|
@@ -10281,6 +10013,274 @@
|
|
|
10281
10013
|
"sync.js"
|
|
10282
10014
|
]
|
|
10283
10015
|
},
|
|
10016
|
+
"tools:add": {
|
|
10017
|
+
"aliases": [],
|
|
10018
|
+
"args": {
|
|
10019
|
+
"type": {
|
|
10020
|
+
"description": "Tool type (mcp or cli)",
|
|
10021
|
+
"name": "type",
|
|
10022
|
+
"options": [
|
|
10023
|
+
"mcp",
|
|
10024
|
+
"cli"
|
|
10025
|
+
],
|
|
10026
|
+
"required": true
|
|
10027
|
+
},
|
|
10028
|
+
"name": {
|
|
10029
|
+
"description": "Tool name (unique identifier)",
|
|
10030
|
+
"name": "name",
|
|
10031
|
+
"required": true
|
|
10032
|
+
}
|
|
10033
|
+
},
|
|
10034
|
+
"description": "Register an MCP server or CLI tool",
|
|
10035
|
+
"examples": [
|
|
10036
|
+
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
10037
|
+
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
10038
|
+
],
|
|
10039
|
+
"flags": {
|
|
10040
|
+
"json": {
|
|
10041
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10042
|
+
"name": "json",
|
|
10043
|
+
"allowNo": false,
|
|
10044
|
+
"type": "boolean"
|
|
10045
|
+
},
|
|
10046
|
+
"machine": {
|
|
10047
|
+
"char": "m",
|
|
10048
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10049
|
+
"name": "machine",
|
|
10050
|
+
"allowNo": false,
|
|
10051
|
+
"type": "boolean"
|
|
10052
|
+
},
|
|
10053
|
+
"url": {
|
|
10054
|
+
"description": "MCP server URL (for remote servers)",
|
|
10055
|
+
"name": "url",
|
|
10056
|
+
"hasDynamicHelp": false,
|
|
10057
|
+
"multiple": false,
|
|
10058
|
+
"type": "option"
|
|
10059
|
+
},
|
|
10060
|
+
"command": {
|
|
10061
|
+
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
10062
|
+
"name": "command",
|
|
10063
|
+
"hasDynamicHelp": false,
|
|
10064
|
+
"multiple": false,
|
|
10065
|
+
"type": "option"
|
|
10066
|
+
},
|
|
10067
|
+
"auth": {
|
|
10068
|
+
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
10069
|
+
"name": "auth",
|
|
10070
|
+
"hasDynamicHelp": false,
|
|
10071
|
+
"multiple": false,
|
|
10072
|
+
"type": "option"
|
|
10073
|
+
},
|
|
10074
|
+
"detect": {
|
|
10075
|
+
"description": "Shell command to detect if CLI tool is installed",
|
|
10076
|
+
"name": "detect",
|
|
10077
|
+
"hasDynamicHelp": false,
|
|
10078
|
+
"multiple": false,
|
|
10079
|
+
"type": "option"
|
|
10080
|
+
},
|
|
10081
|
+
"install": {
|
|
10082
|
+
"description": "Shell command to install the CLI tool",
|
|
10083
|
+
"name": "install",
|
|
10084
|
+
"hasDynamicHelp": false,
|
|
10085
|
+
"multiple": false,
|
|
10086
|
+
"type": "option"
|
|
10087
|
+
},
|
|
10088
|
+
"description": {
|
|
10089
|
+
"char": "d",
|
|
10090
|
+
"description": "Human-readable description",
|
|
10091
|
+
"name": "description",
|
|
10092
|
+
"required": true,
|
|
10093
|
+
"hasDynamicHelp": false,
|
|
10094
|
+
"multiple": false,
|
|
10095
|
+
"type": "option"
|
|
10096
|
+
}
|
|
10097
|
+
},
|
|
10098
|
+
"hasDynamicHelp": false,
|
|
10099
|
+
"hiddenAliases": [],
|
|
10100
|
+
"id": "tools:add",
|
|
10101
|
+
"pluginAlias": "@proletariat/cli",
|
|
10102
|
+
"pluginName": "@proletariat/cli",
|
|
10103
|
+
"pluginType": "core",
|
|
10104
|
+
"strict": true,
|
|
10105
|
+
"isESM": true,
|
|
10106
|
+
"relativePath": [
|
|
10107
|
+
"dist",
|
|
10108
|
+
"commands",
|
|
10109
|
+
"tools",
|
|
10110
|
+
"add.js"
|
|
10111
|
+
]
|
|
10112
|
+
},
|
|
10113
|
+
"tools:check": {
|
|
10114
|
+
"aliases": [],
|
|
10115
|
+
"args": {},
|
|
10116
|
+
"description": "Verify all registered tools are available and healthy",
|
|
10117
|
+
"examples": [
|
|
10118
|
+
"<%= config.bin %> tools check",
|
|
10119
|
+
"<%= config.bin %> tools check --json"
|
|
10120
|
+
],
|
|
10121
|
+
"flags": {
|
|
10122
|
+
"json": {
|
|
10123
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10124
|
+
"name": "json",
|
|
10125
|
+
"allowNo": false,
|
|
10126
|
+
"type": "boolean"
|
|
10127
|
+
},
|
|
10128
|
+
"machine": {
|
|
10129
|
+
"char": "m",
|
|
10130
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10131
|
+
"name": "machine",
|
|
10132
|
+
"allowNo": false,
|
|
10133
|
+
"type": "boolean"
|
|
10134
|
+
}
|
|
10135
|
+
},
|
|
10136
|
+
"hasDynamicHelp": false,
|
|
10137
|
+
"hiddenAliases": [],
|
|
10138
|
+
"id": "tools:check",
|
|
10139
|
+
"pluginAlias": "@proletariat/cli",
|
|
10140
|
+
"pluginName": "@proletariat/cli",
|
|
10141
|
+
"pluginType": "core",
|
|
10142
|
+
"strict": true,
|
|
10143
|
+
"enableJsonFlag": false,
|
|
10144
|
+
"isESM": true,
|
|
10145
|
+
"relativePath": [
|
|
10146
|
+
"dist",
|
|
10147
|
+
"commands",
|
|
10148
|
+
"tools",
|
|
10149
|
+
"check.js"
|
|
10150
|
+
]
|
|
10151
|
+
},
|
|
10152
|
+
"tools:detect": {
|
|
10153
|
+
"aliases": [],
|
|
10154
|
+
"args": {},
|
|
10155
|
+
"description": "Auto-detect common CLI tools on the system and register them",
|
|
10156
|
+
"examples": [
|
|
10157
|
+
"<%= config.bin %> tools detect",
|
|
10158
|
+
"<%= config.bin %> tools detect --auto",
|
|
10159
|
+
"<%= config.bin %> tools detect --json"
|
|
10160
|
+
],
|
|
10161
|
+
"flags": {
|
|
10162
|
+
"json": {
|
|
10163
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10164
|
+
"name": "json",
|
|
10165
|
+
"allowNo": false,
|
|
10166
|
+
"type": "boolean"
|
|
10167
|
+
},
|
|
10168
|
+
"machine": {
|
|
10169
|
+
"char": "m",
|
|
10170
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10171
|
+
"name": "machine",
|
|
10172
|
+
"allowNo": false,
|
|
10173
|
+
"type": "boolean"
|
|
10174
|
+
},
|
|
10175
|
+
"auto": {
|
|
10176
|
+
"description": "Automatically register all detected tools without prompting",
|
|
10177
|
+
"name": "auto",
|
|
10178
|
+
"allowNo": false,
|
|
10179
|
+
"type": "boolean"
|
|
10180
|
+
}
|
|
10181
|
+
},
|
|
10182
|
+
"hasDynamicHelp": false,
|
|
10183
|
+
"hiddenAliases": [],
|
|
10184
|
+
"id": "tools:detect",
|
|
10185
|
+
"pluginAlias": "@proletariat/cli",
|
|
10186
|
+
"pluginName": "@proletariat/cli",
|
|
10187
|
+
"pluginType": "core",
|
|
10188
|
+
"strict": true,
|
|
10189
|
+
"enableJsonFlag": false,
|
|
10190
|
+
"isESM": true,
|
|
10191
|
+
"relativePath": [
|
|
10192
|
+
"dist",
|
|
10193
|
+
"commands",
|
|
10194
|
+
"tools",
|
|
10195
|
+
"detect.js"
|
|
10196
|
+
]
|
|
10197
|
+
},
|
|
10198
|
+
"tools": {
|
|
10199
|
+
"aliases": [
|
|
10200
|
+
"tools:list"
|
|
10201
|
+
],
|
|
10202
|
+
"args": {},
|
|
10203
|
+
"description": "Show all registered MCP servers and CLI tools",
|
|
10204
|
+
"examples": [
|
|
10205
|
+
"<%= config.bin %> tools",
|
|
10206
|
+
"<%= config.bin %> tools --json"
|
|
10207
|
+
],
|
|
10208
|
+
"flags": {
|
|
10209
|
+
"json": {
|
|
10210
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10211
|
+
"name": "json",
|
|
10212
|
+
"allowNo": false,
|
|
10213
|
+
"type": "boolean"
|
|
10214
|
+
},
|
|
10215
|
+
"machine": {
|
|
10216
|
+
"char": "m",
|
|
10217
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10218
|
+
"name": "machine",
|
|
10219
|
+
"allowNo": false,
|
|
10220
|
+
"type": "boolean"
|
|
10221
|
+
}
|
|
10222
|
+
},
|
|
10223
|
+
"hasDynamicHelp": false,
|
|
10224
|
+
"hiddenAliases": [],
|
|
10225
|
+
"id": "tools",
|
|
10226
|
+
"pluginAlias": "@proletariat/cli",
|
|
10227
|
+
"pluginName": "@proletariat/cli",
|
|
10228
|
+
"pluginType": "core",
|
|
10229
|
+
"strict": true,
|
|
10230
|
+
"enableJsonFlag": false,
|
|
10231
|
+
"isESM": true,
|
|
10232
|
+
"relativePath": [
|
|
10233
|
+
"dist",
|
|
10234
|
+
"commands",
|
|
10235
|
+
"tools",
|
|
10236
|
+
"index.js"
|
|
10237
|
+
]
|
|
10238
|
+
},
|
|
10239
|
+
"tools:remove": {
|
|
10240
|
+
"aliases": [],
|
|
10241
|
+
"args": {
|
|
10242
|
+
"name": {
|
|
10243
|
+
"description": "Tool name to remove",
|
|
10244
|
+
"name": "name",
|
|
10245
|
+
"required": true
|
|
10246
|
+
}
|
|
10247
|
+
},
|
|
10248
|
+
"description": "Remove a tool from the registry",
|
|
10249
|
+
"examples": [
|
|
10250
|
+
"<%= config.bin %> tools remove arcade",
|
|
10251
|
+
"<%= config.bin %> tools remove ffmpeg"
|
|
10252
|
+
],
|
|
10253
|
+
"flags": {
|
|
10254
|
+
"json": {
|
|
10255
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10256
|
+
"name": "json",
|
|
10257
|
+
"allowNo": false,
|
|
10258
|
+
"type": "boolean"
|
|
10259
|
+
},
|
|
10260
|
+
"machine": {
|
|
10261
|
+
"char": "m",
|
|
10262
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10263
|
+
"name": "machine",
|
|
10264
|
+
"allowNo": false,
|
|
10265
|
+
"type": "boolean"
|
|
10266
|
+
}
|
|
10267
|
+
},
|
|
10268
|
+
"hasDynamicHelp": false,
|
|
10269
|
+
"hiddenAliases": [],
|
|
10270
|
+
"id": "tools:remove",
|
|
10271
|
+
"pluginAlias": "@proletariat/cli",
|
|
10272
|
+
"pluginName": "@proletariat/cli",
|
|
10273
|
+
"pluginType": "core",
|
|
10274
|
+
"strict": true,
|
|
10275
|
+
"enableJsonFlag": false,
|
|
10276
|
+
"isESM": true,
|
|
10277
|
+
"relativePath": [
|
|
10278
|
+
"dist",
|
|
10279
|
+
"commands",
|
|
10280
|
+
"tools",
|
|
10281
|
+
"remove.js"
|
|
10282
|
+
]
|
|
10283
|
+
},
|
|
10284
10284
|
"version:bump": {
|
|
10285
10285
|
"aliases": [],
|
|
10286
10286
|
"args": {
|
|
@@ -13913,5 +13913,5 @@
|
|
|
13913
13913
|
]
|
|
13914
13914
|
}
|
|
13915
13915
|
},
|
|
13916
|
-
"version": "0.3.
|
|
13916
|
+
"version": "0.3.103"
|
|
13917
13917
|
}
|