@proletariat/cli 0.3.99 → 0.3.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/orchestrate/index.js +24 -6
- package/dist/commands/orchestrate/index.js.map +1 -1
- package/dist/lib/orchestrate/poller.d.ts +22 -0
- package/dist/lib/orchestrate/poller.js +109 -0
- package/dist/lib/orchestrate/poller.js.map +1 -1
- package/dist/lib/sync/engine.js +47 -5
- package/dist/lib/sync/engine.js.map +1 -1
- package/dist/lib/sync/reconciler.d.ts +27 -1
- package/dist/lib/sync/reconciler.js +109 -1
- package/dist/lib/sync/reconciler.js.map +1 -1
- package/oclif.manifest.json +452 -452
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1972,6 +1972,66 @@
|
|
|
1972
1972
|
"sync.js"
|
|
1973
1973
|
]
|
|
1974
1974
|
},
|
|
1975
|
+
"autocomplete:setup": {
|
|
1976
|
+
"aliases": [],
|
|
1977
|
+
"args": {},
|
|
1978
|
+
"description": "Auto-detect shell and set up autocomplete",
|
|
1979
|
+
"examples": [
|
|
1980
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1981
|
+
"<%= config.bin %> <%= command.id %> --install",
|
|
1982
|
+
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
1983
|
+
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
1984
|
+
],
|
|
1985
|
+
"flags": {
|
|
1986
|
+
"json": {
|
|
1987
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1988
|
+
"name": "json",
|
|
1989
|
+
"allowNo": false,
|
|
1990
|
+
"type": "boolean"
|
|
1991
|
+
},
|
|
1992
|
+
"machine": {
|
|
1993
|
+
"char": "m",
|
|
1994
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1995
|
+
"name": "machine",
|
|
1996
|
+
"allowNo": false,
|
|
1997
|
+
"type": "boolean"
|
|
1998
|
+
},
|
|
1999
|
+
"install": {
|
|
2000
|
+
"char": "i",
|
|
2001
|
+
"description": "Automatically install to shell config file",
|
|
2002
|
+
"name": "install",
|
|
2003
|
+
"allowNo": false,
|
|
2004
|
+
"type": "boolean"
|
|
2005
|
+
},
|
|
2006
|
+
"shell": {
|
|
2007
|
+
"char": "s",
|
|
2008
|
+
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2009
|
+
"name": "shell",
|
|
2010
|
+
"hasDynamicHelp": false,
|
|
2011
|
+
"multiple": false,
|
|
2012
|
+
"options": [
|
|
2013
|
+
"zsh",
|
|
2014
|
+
"bash",
|
|
2015
|
+
"powershell"
|
|
2016
|
+
],
|
|
2017
|
+
"type": "option"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
"hasDynamicHelp": false,
|
|
2021
|
+
"hiddenAliases": [],
|
|
2022
|
+
"id": "autocomplete:setup",
|
|
2023
|
+
"pluginAlias": "@proletariat/cli",
|
|
2024
|
+
"pluginName": "@proletariat/cli",
|
|
2025
|
+
"pluginType": "core",
|
|
2026
|
+
"strict": true,
|
|
2027
|
+
"isESM": true,
|
|
2028
|
+
"relativePath": [
|
|
2029
|
+
"dist",
|
|
2030
|
+
"commands",
|
|
2031
|
+
"autocomplete",
|
|
2032
|
+
"setup.js"
|
|
2033
|
+
]
|
|
2034
|
+
},
|
|
1975
2035
|
"branch:create": {
|
|
1976
2036
|
"aliases": [],
|
|
1977
2037
|
"args": {
|
|
@@ -2516,66 +2576,6 @@
|
|
|
2516
2576
|
"stop.js"
|
|
2517
2577
|
]
|
|
2518
2578
|
},
|
|
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,20 +2755,19 @@
|
|
|
2755
2755
|
"open.js"
|
|
2756
2756
|
]
|
|
2757
2757
|
},
|
|
2758
|
-
"
|
|
2758
|
+
"config": {
|
|
2759
2759
|
"aliases": [],
|
|
2760
|
-
"args": {
|
|
2761
|
-
|
|
2762
|
-
"description": "Task description for the agent",
|
|
2763
|
-
"name": "task",
|
|
2764
|
-
"required": false
|
|
2765
|
-
}
|
|
2766
|
-
},
|
|
2767
|
-
"description": "Quick launch Codex for ad-hoc sessions (works anywhere, no HQ required)",
|
|
2760
|
+
"args": {},
|
|
2761
|
+
"description": "View and update workspace configuration",
|
|
2768
2762
|
"examples": [
|
|
2769
|
-
"<%= config.bin %>
|
|
2770
|
-
"<%= config.bin %>
|
|
2771
|
-
"<%= config.bin %>
|
|
2763
|
+
"<%= config.bin %> <%= command.id %> # Interactive menu",
|
|
2764
|
+
"<%= config.bin %> <%= command.id %> --json # Output current config as JSON",
|
|
2765
|
+
"<%= config.bin %> <%= command.id %> --set terminal.app iTerm",
|
|
2766
|
+
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
2767
|
+
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
2768
|
+
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
2769
|
+
"<%= config.bin %> <%= command.id %> --set claude-code.version 2.1.80 # Pin Claude Code version",
|
|
2770
|
+
"<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
|
|
2772
2771
|
],
|
|
2773
2772
|
"flags": {
|
|
2774
2773
|
"json": {
|
|
@@ -2784,36 +2783,32 @@
|
|
|
2784
2783
|
"allowNo": false,
|
|
2785
2784
|
"type": "boolean"
|
|
2786
2785
|
},
|
|
2787
|
-
"
|
|
2788
|
-
"char": "
|
|
2789
|
-
"description": "
|
|
2790
|
-
"name": "
|
|
2786
|
+
"set": {
|
|
2787
|
+
"char": "s",
|
|
2788
|
+
"description": "Set a config value (format: key value)",
|
|
2789
|
+
"name": "set",
|
|
2791
2790
|
"hasDynamicHelp": false,
|
|
2792
|
-
"multiple":
|
|
2793
|
-
"options": [
|
|
2794
|
-
"danger",
|
|
2795
|
-
"safe"
|
|
2796
|
-
],
|
|
2791
|
+
"multiple": true,
|
|
2797
2792
|
"type": "option"
|
|
2798
2793
|
},
|
|
2799
|
-
"
|
|
2800
|
-
"
|
|
2801
|
-
"
|
|
2794
|
+
"list": {
|
|
2795
|
+
"char": "l",
|
|
2796
|
+
"description": "List all configuration values",
|
|
2797
|
+
"name": "list",
|
|
2798
|
+
"allowNo": false,
|
|
2799
|
+
"type": "boolean"
|
|
2800
|
+
},
|
|
2801
|
+
"setting": {
|
|
2802
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
2803
|
+
"name": "setting",
|
|
2802
2804
|
"hasDynamicHelp": false,
|
|
2803
2805
|
"multiple": false,
|
|
2804
2806
|
"type": "option"
|
|
2805
|
-
},
|
|
2806
|
-
"detached": {
|
|
2807
|
-
"char": "d",
|
|
2808
|
-
"description": "Run in background (detached)",
|
|
2809
|
-
"name": "detached",
|
|
2810
|
-
"allowNo": false,
|
|
2811
|
-
"type": "boolean"
|
|
2812
2807
|
}
|
|
2813
2808
|
},
|
|
2814
2809
|
"hasDynamicHelp": false,
|
|
2815
2810
|
"hiddenAliases": [],
|
|
2816
|
-
"id": "
|
|
2811
|
+
"id": "config",
|
|
2817
2812
|
"pluginAlias": "@proletariat/cli",
|
|
2818
2813
|
"pluginName": "@proletariat/cli",
|
|
2819
2814
|
"pluginType": "core",
|
|
@@ -2822,23 +2817,24 @@
|
|
|
2822
2817
|
"relativePath": [
|
|
2823
2818
|
"dist",
|
|
2824
2819
|
"commands",
|
|
2825
|
-
"
|
|
2820
|
+
"config",
|
|
2826
2821
|
"index.js"
|
|
2827
2822
|
]
|
|
2828
2823
|
},
|
|
2829
|
-
"
|
|
2824
|
+
"codex": {
|
|
2830
2825
|
"aliases": [],
|
|
2831
|
-
"args": {
|
|
2832
|
-
|
|
2826
|
+
"args": {
|
|
2827
|
+
"task": {
|
|
2828
|
+
"description": "Task description for the agent",
|
|
2829
|
+
"name": "task",
|
|
2830
|
+
"required": false
|
|
2831
|
+
}
|
|
2832
|
+
},
|
|
2833
|
+
"description": "Quick launch Codex for ad-hoc sessions (works anywhere, no HQ required)",
|
|
2833
2834
|
"examples": [
|
|
2834
|
-
"<%= config.bin %>
|
|
2835
|
-
"<%= config.bin %>
|
|
2836
|
-
"<%= config.bin %>
|
|
2837
|
-
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
2838
|
-
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
2839
|
-
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
2840
|
-
"<%= config.bin %> <%= command.id %> --set claude-code.version 2.1.80 # Pin Claude Code version",
|
|
2841
|
-
"<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
|
|
2835
|
+
"<%= config.bin %> codex \"fix the bug\"",
|
|
2836
|
+
"<%= config.bin %> codex \"add dark mode\" --permission-mode danger",
|
|
2837
|
+
"<%= config.bin %> codex \"add tests\" --directory ./my-project"
|
|
2842
2838
|
],
|
|
2843
2839
|
"flags": {
|
|
2844
2840
|
"json": {
|
|
@@ -2854,32 +2850,36 @@
|
|
|
2854
2850
|
"allowNo": false,
|
|
2855
2851
|
"type": "boolean"
|
|
2856
2852
|
},
|
|
2857
|
-
"
|
|
2858
|
-
"char": "
|
|
2859
|
-
"description": "
|
|
2860
|
-
"name": "
|
|
2853
|
+
"permission-mode": {
|
|
2854
|
+
"char": "p",
|
|
2855
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
2856
|
+
"name": "permission-mode",
|
|
2861
2857
|
"hasDynamicHelp": false,
|
|
2862
|
-
"multiple":
|
|
2858
|
+
"multiple": false,
|
|
2859
|
+
"options": [
|
|
2860
|
+
"danger",
|
|
2861
|
+
"safe"
|
|
2862
|
+
],
|
|
2863
2863
|
"type": "option"
|
|
2864
2864
|
},
|
|
2865
|
-
"
|
|
2866
|
-
"
|
|
2867
|
-
"
|
|
2868
|
-
"name": "list",
|
|
2869
|
-
"allowNo": false,
|
|
2870
|
-
"type": "boolean"
|
|
2871
|
-
},
|
|
2872
|
-
"setting": {
|
|
2873
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
2874
|
-
"name": "setting",
|
|
2865
|
+
"directory": {
|
|
2866
|
+
"description": "Directory to run in (default: cwd)",
|
|
2867
|
+
"name": "directory",
|
|
2875
2868
|
"hasDynamicHelp": false,
|
|
2876
2869
|
"multiple": false,
|
|
2877
2870
|
"type": "option"
|
|
2871
|
+
},
|
|
2872
|
+
"detached": {
|
|
2873
|
+
"char": "d",
|
|
2874
|
+
"description": "Run in background (detached)",
|
|
2875
|
+
"name": "detached",
|
|
2876
|
+
"allowNo": false,
|
|
2877
|
+
"type": "boolean"
|
|
2878
2878
|
}
|
|
2879
2879
|
},
|
|
2880
2880
|
"hasDynamicHelp": false,
|
|
2881
2881
|
"hiddenAliases": [],
|
|
2882
|
-
"id": "
|
|
2882
|
+
"id": "codex",
|
|
2883
2883
|
"pluginAlias": "@proletariat/cli",
|
|
2884
2884
|
"pluginName": "@proletariat/cli",
|
|
2885
2885
|
"pluginType": "core",
|
|
@@ -2888,7 +2888,7 @@
|
|
|
2888
2888
|
"relativePath": [
|
|
2889
2889
|
"dist",
|
|
2890
2890
|
"commands",
|
|
2891
|
-
"
|
|
2891
|
+
"codex",
|
|
2892
2892
|
"index.js"
|
|
2893
2893
|
]
|
|
2894
2894
|
},
|
|
@@ -3702,13 +3702,18 @@
|
|
|
3702
3702
|
"sync.js"
|
|
3703
3703
|
]
|
|
3704
3704
|
},
|
|
3705
|
-
"
|
|
3705
|
+
"execution:config": {
|
|
3706
3706
|
"aliases": [],
|
|
3707
3707
|
"args": {},
|
|
3708
|
-
"description": "
|
|
3708
|
+
"description": "View and update execution preferences",
|
|
3709
3709
|
"examples": [
|
|
3710
|
-
"<%= config.bin %>
|
|
3711
|
-
"<%= config.bin %>
|
|
3710
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
3711
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3712
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
3713
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3714
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3715
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3716
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3712
3717
|
],
|
|
3713
3718
|
"flags": {
|
|
3714
3719
|
"json": {
|
|
@@ -3724,45 +3729,53 @@
|
|
|
3724
3729
|
"allowNo": false,
|
|
3725
3730
|
"type": "boolean"
|
|
3726
3731
|
},
|
|
3727
|
-
"
|
|
3728
|
-
"char": "
|
|
3729
|
-
"description": "
|
|
3730
|
-
"name": "
|
|
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",
|
|
3744
|
+
"allowNo": false,
|
|
3745
|
+
"type": "boolean"
|
|
3746
|
+
},
|
|
3747
|
+
"setting": {
|
|
3748
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
3749
|
+
"name": "setting",
|
|
3731
3750
|
"hasDynamicHelp": false,
|
|
3732
3751
|
"multiple": false,
|
|
3733
|
-
"options": [
|
|
3734
|
-
"submit",
|
|
3735
|
-
"list",
|
|
3736
|
-
"view"
|
|
3737
|
-
],
|
|
3738
3752
|
"type": "option"
|
|
3739
3753
|
}
|
|
3740
3754
|
},
|
|
3741
3755
|
"hasDynamicHelp": false,
|
|
3742
3756
|
"hiddenAliases": [],
|
|
3743
|
-
"id": "
|
|
3757
|
+
"id": "execution:config",
|
|
3744
3758
|
"pluginAlias": "@proletariat/cli",
|
|
3745
3759
|
"pluginName": "@proletariat/cli",
|
|
3746
3760
|
"pluginType": "core",
|
|
3747
3761
|
"strict": true,
|
|
3748
|
-
"enableJsonFlag": false,
|
|
3749
3762
|
"isESM": true,
|
|
3750
3763
|
"relativePath": [
|
|
3751
3764
|
"dist",
|
|
3752
3765
|
"commands",
|
|
3753
|
-
"
|
|
3754
|
-
"
|
|
3766
|
+
"execution",
|
|
3767
|
+
"config.js"
|
|
3755
3768
|
]
|
|
3756
3769
|
},
|
|
3757
|
-
"
|
|
3770
|
+
"execution": {
|
|
3758
3771
|
"aliases": [],
|
|
3759
3772
|
"args": {},
|
|
3760
|
-
"description": "
|
|
3773
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
3761
3774
|
"examples": [
|
|
3762
3775
|
"<%= config.bin %> <%= command.id %>",
|
|
3763
|
-
"<%= config.bin %> <%= command.id %>
|
|
3764
|
-
"<%= config.bin %> <%= command.id %>
|
|
3765
|
-
"<%= 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"
|
|
3766
3779
|
],
|
|
3767
3780
|
"flags": {
|
|
3768
3781
|
"json": {
|
|
@@ -3777,68 +3790,32 @@
|
|
|
3777
3790
|
"name": "machine",
|
|
3778
3791
|
"allowNo": false,
|
|
3779
3792
|
"type": "boolean"
|
|
3780
|
-
},
|
|
3781
|
-
"category": {
|
|
3782
|
-
"char": "c",
|
|
3783
|
-
"description": "Filter by category (bug, feature, general)",
|
|
3784
|
-
"name": "category",
|
|
3785
|
-
"hasDynamicHelp": false,
|
|
3786
|
-
"multiple": false,
|
|
3787
|
-
"options": [
|
|
3788
|
-
"bug",
|
|
3789
|
-
"feature",
|
|
3790
|
-
"general"
|
|
3791
|
-
],
|
|
3792
|
-
"type": "option"
|
|
3793
|
-
},
|
|
3794
|
-
"state": {
|
|
3795
|
-
"char": "s",
|
|
3796
|
-
"description": "Filter by state",
|
|
3797
|
-
"name": "state",
|
|
3798
|
-
"default": "open",
|
|
3799
|
-
"hasDynamicHelp": false,
|
|
3800
|
-
"multiple": false,
|
|
3801
|
-
"options": [
|
|
3802
|
-
"open",
|
|
3803
|
-
"closed",
|
|
3804
|
-
"all"
|
|
3805
|
-
],
|
|
3806
|
-
"type": "option"
|
|
3807
|
-
},
|
|
3808
|
-
"limit": {
|
|
3809
|
-
"char": "l",
|
|
3810
|
-
"description": "Maximum number of issues to show",
|
|
3811
|
-
"name": "limit",
|
|
3812
|
-
"default": 20,
|
|
3813
|
-
"hasDynamicHelp": false,
|
|
3814
|
-
"multiple": false,
|
|
3815
|
-
"type": "option"
|
|
3816
3793
|
}
|
|
3817
3794
|
},
|
|
3818
3795
|
"hasDynamicHelp": false,
|
|
3819
3796
|
"hiddenAliases": [],
|
|
3820
|
-
"id": "
|
|
3797
|
+
"id": "execution",
|
|
3821
3798
|
"pluginAlias": "@proletariat/cli",
|
|
3822
3799
|
"pluginName": "@proletariat/cli",
|
|
3823
3800
|
"pluginType": "core",
|
|
3824
3801
|
"strict": true,
|
|
3825
|
-
"enableJsonFlag": false,
|
|
3826
3802
|
"isESM": true,
|
|
3827
3803
|
"relativePath": [
|
|
3828
3804
|
"dist",
|
|
3829
3805
|
"commands",
|
|
3830
|
-
"
|
|
3831
|
-
"
|
|
3806
|
+
"execution",
|
|
3807
|
+
"index.js"
|
|
3832
3808
|
]
|
|
3833
3809
|
},
|
|
3834
|
-
"
|
|
3810
|
+
"execution:list": {
|
|
3835
3811
|
"aliases": [],
|
|
3836
3812
|
"args": {},
|
|
3837
|
-
"description": "
|
|
3813
|
+
"description": "List running and recent executions",
|
|
3838
3814
|
"examples": [
|
|
3839
3815
|
"<%= config.bin %> <%= command.id %>",
|
|
3840
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3841
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3816
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
3817
|
+
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
3818
|
+
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3842
3819
|
],
|
|
3843
3820
|
"flags": {
|
|
3844
3821
|
"json": {
|
|
@@ -3854,39 +3831,42 @@
|
|
|
3854
3831
|
"allowNo": false,
|
|
3855
3832
|
"type": "boolean"
|
|
3856
3833
|
},
|
|
3857
|
-
"
|
|
3858
|
-
"char": "
|
|
3859
|
-
"description": "
|
|
3860
|
-
"name": "
|
|
3834
|
+
"status": {
|
|
3835
|
+
"char": "s",
|
|
3836
|
+
"description": "Filter by status",
|
|
3837
|
+
"name": "status",
|
|
3861
3838
|
"hasDynamicHelp": false,
|
|
3862
3839
|
"multiple": false,
|
|
3840
|
+
"options": [
|
|
3841
|
+
"starting",
|
|
3842
|
+
"running",
|
|
3843
|
+
"completed",
|
|
3844
|
+
"failed",
|
|
3845
|
+
"stopped"
|
|
3846
|
+
],
|
|
3863
3847
|
"type": "option"
|
|
3864
3848
|
},
|
|
3865
|
-
"
|
|
3866
|
-
"char": "
|
|
3867
|
-
"description": "
|
|
3868
|
-
"name": "
|
|
3849
|
+
"agent": {
|
|
3850
|
+
"char": "a",
|
|
3851
|
+
"description": "Filter by agent name",
|
|
3852
|
+
"name": "agent",
|
|
3869
3853
|
"hasDynamicHelp": false,
|
|
3870
3854
|
"multiple": false,
|
|
3871
3855
|
"type": "option"
|
|
3872
3856
|
},
|
|
3873
|
-
"
|
|
3874
|
-
"char": "
|
|
3875
|
-
"description": "
|
|
3876
|
-
"name": "
|
|
3857
|
+
"limit": {
|
|
3858
|
+
"char": "l",
|
|
3859
|
+
"description": "Number of results",
|
|
3860
|
+
"name": "limit",
|
|
3861
|
+
"default": 20,
|
|
3877
3862
|
"hasDynamicHelp": false,
|
|
3878
3863
|
"multiple": false,
|
|
3879
|
-
"options": [
|
|
3880
|
-
"bug",
|
|
3881
|
-
"feature",
|
|
3882
|
-
"general"
|
|
3883
|
-
],
|
|
3884
3864
|
"type": "option"
|
|
3885
3865
|
}
|
|
3886
3866
|
},
|
|
3887
3867
|
"hasDynamicHelp": false,
|
|
3888
3868
|
"hiddenAliases": [],
|
|
3889
|
-
"id": "
|
|
3869
|
+
"id": "execution:list",
|
|
3890
3870
|
"pluginAlias": "@proletariat/cli",
|
|
3891
3871
|
"pluginName": "@proletariat/cli",
|
|
3892
3872
|
"pluginType": "core",
|
|
@@ -3895,23 +3875,25 @@
|
|
|
3895
3875
|
"relativePath": [
|
|
3896
3876
|
"dist",
|
|
3897
3877
|
"commands",
|
|
3898
|
-
"
|
|
3899
|
-
"
|
|
3878
|
+
"execution",
|
|
3879
|
+
"list.js"
|
|
3900
3880
|
]
|
|
3901
3881
|
},
|
|
3902
|
-
"
|
|
3882
|
+
"execution:logs": {
|
|
3903
3883
|
"aliases": [],
|
|
3904
3884
|
"args": {
|
|
3905
|
-
"
|
|
3906
|
-
"description": "
|
|
3907
|
-
"name": "
|
|
3908
|
-
"required":
|
|
3885
|
+
"id": {
|
|
3886
|
+
"description": "Execution ID - prompts if not provided",
|
|
3887
|
+
"name": "id",
|
|
3888
|
+
"required": false
|
|
3909
3889
|
}
|
|
3910
3890
|
},
|
|
3911
|
-
"description": "View
|
|
3891
|
+
"description": "View execution logs",
|
|
3912
3892
|
"examples": [
|
|
3913
|
-
"<%= config.bin %> <%= command.id %>
|
|
3914
|
-
"<%= config.bin %> <%= command.id %>
|
|
3893
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3894
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
3895
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
3896
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3915
3897
|
],
|
|
3916
3898
|
"flags": {
|
|
3917
3899
|
"json": {
|
|
@@ -3926,36 +3908,55 @@
|
|
|
3926
3908
|
"name": "machine",
|
|
3927
3909
|
"allowNo": false,
|
|
3928
3910
|
"type": "boolean"
|
|
3911
|
+
},
|
|
3912
|
+
"follow": {
|
|
3913
|
+
"char": "f",
|
|
3914
|
+
"description": "Stream logs in real-time",
|
|
3915
|
+
"name": "follow",
|
|
3916
|
+
"allowNo": false,
|
|
3917
|
+
"type": "boolean"
|
|
3918
|
+
},
|
|
3919
|
+
"tail": {
|
|
3920
|
+
"char": "n",
|
|
3921
|
+
"description": "Show last n lines",
|
|
3922
|
+
"name": "tail",
|
|
3923
|
+
"hasDynamicHelp": false,
|
|
3924
|
+
"multiple": false,
|
|
3925
|
+
"type": "option"
|
|
3929
3926
|
}
|
|
3930
3927
|
},
|
|
3931
3928
|
"hasDynamicHelp": false,
|
|
3932
3929
|
"hiddenAliases": [],
|
|
3933
|
-
"id": "
|
|
3930
|
+
"id": "execution:logs",
|
|
3934
3931
|
"pluginAlias": "@proletariat/cli",
|
|
3935
3932
|
"pluginName": "@proletariat/cli",
|
|
3936
3933
|
"pluginType": "core",
|
|
3937
3934
|
"strict": true,
|
|
3938
|
-
"enableJsonFlag": false,
|
|
3939
3935
|
"isESM": true,
|
|
3940
3936
|
"relativePath": [
|
|
3941
3937
|
"dist",
|
|
3942
3938
|
"commands",
|
|
3943
|
-
"
|
|
3944
|
-
"
|
|
3939
|
+
"execution",
|
|
3940
|
+
"logs.js"
|
|
3945
3941
|
]
|
|
3946
3942
|
},
|
|
3947
|
-
"execution:
|
|
3943
|
+
"execution:stop": {
|
|
3948
3944
|
"aliases": [],
|
|
3949
|
-
"args": {
|
|
3950
|
-
|
|
3945
|
+
"args": {
|
|
3946
|
+
"id": {
|
|
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)",
|
|
3951
3953
|
"examples": [
|
|
3952
|
-
"<%= config.bin %>
|
|
3953
|
-
"<%= config.bin %>
|
|
3954
|
-
"<%= config.bin %>
|
|
3955
|
-
"<%= config.bin %>
|
|
3956
|
-
"<%= config.bin %>
|
|
3957
|
-
"<%= config.bin %>
|
|
3958
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3954
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
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"
|
|
3959
3960
|
],
|
|
3960
3961
|
"flags": {
|
|
3961
3962
|
"json": {
|
|
@@ -3971,24 +3972,23 @@
|
|
|
3971
3972
|
"allowNo": false,
|
|
3972
3973
|
"type": "boolean"
|
|
3973
3974
|
},
|
|
3974
|
-
"
|
|
3975
|
-
"char": "
|
|
3976
|
-
"description": "
|
|
3977
|
-
"name": "
|
|
3978
|
-
"
|
|
3979
|
-
"
|
|
3980
|
-
"type": "option"
|
|
3975
|
+
"force": {
|
|
3976
|
+
"char": "f",
|
|
3977
|
+
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
3978
|
+
"name": "force",
|
|
3979
|
+
"allowNo": false,
|
|
3980
|
+
"type": "boolean"
|
|
3981
3981
|
},
|
|
3982
|
-
"
|
|
3983
|
-
"
|
|
3984
|
-
"
|
|
3985
|
-
"name": "list",
|
|
3982
|
+
"all": {
|
|
3983
|
+
"description": "Stop all running executions",
|
|
3984
|
+
"name": "all",
|
|
3986
3985
|
"allowNo": false,
|
|
3987
3986
|
"type": "boolean"
|
|
3988
3987
|
},
|
|
3989
|
-
"
|
|
3990
|
-
"
|
|
3991
|
-
"
|
|
3988
|
+
"agent": {
|
|
3989
|
+
"char": "a",
|
|
3990
|
+
"description": "Stop all executions for a specific agent",
|
|
3991
|
+
"name": "agent",
|
|
3992
3992
|
"hasDynamicHelp": false,
|
|
3993
3993
|
"multiple": false,
|
|
3994
3994
|
"type": "option"
|
|
@@ -3996,7 +3996,7 @@
|
|
|
3996
3996
|
},
|
|
3997
3997
|
"hasDynamicHelp": false,
|
|
3998
3998
|
"hiddenAliases": [],
|
|
3999
|
-
"id": "execution:
|
|
3999
|
+
"id": "execution:stop",
|
|
4000
4000
|
"pluginAlias": "@proletariat/cli",
|
|
4001
4001
|
"pluginName": "@proletariat/cli",
|
|
4002
4002
|
"pluginType": "core",
|
|
@@ -4006,18 +4006,22 @@
|
|
|
4006
4006
|
"dist",
|
|
4007
4007
|
"commands",
|
|
4008
4008
|
"execution",
|
|
4009
|
-
"
|
|
4009
|
+
"stop.js"
|
|
4010
4010
|
]
|
|
4011
4011
|
},
|
|
4012
|
-
"execution": {
|
|
4012
|
+
"execution:view": {
|
|
4013
4013
|
"aliases": [],
|
|
4014
|
-
"args": {
|
|
4015
|
-
|
|
4014
|
+
"args": {
|
|
4015
|
+
"id": {
|
|
4016
|
+
"description": "Execution ID - prompts if not provided",
|
|
4017
|
+
"name": "id",
|
|
4018
|
+
"required": false
|
|
4019
|
+
}
|
|
4020
|
+
},
|
|
4021
|
+
"description": "View details of a specific execution",
|
|
4016
4022
|
"examples": [
|
|
4017
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4018
|
-
"<%= config.bin %> <%= command.id %>
|
|
4019
|
-
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
4020
|
-
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
4023
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4024
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4021
4025
|
],
|
|
4022
4026
|
"flags": {
|
|
4023
4027
|
"json": {
|
|
@@ -4036,7 +4040,7 @@
|
|
|
4036
4040
|
},
|
|
4037
4041
|
"hasDynamicHelp": false,
|
|
4038
4042
|
"hiddenAliases": [],
|
|
4039
|
-
"id": "execution",
|
|
4043
|
+
"id": "execution:view",
|
|
4040
4044
|
"pluginAlias": "@proletariat/cli",
|
|
4041
4045
|
"pluginName": "@proletariat/cli",
|
|
4042
4046
|
"pluginType": "core",
|
|
@@ -4046,18 +4050,16 @@
|
|
|
4046
4050
|
"dist",
|
|
4047
4051
|
"commands",
|
|
4048
4052
|
"execution",
|
|
4049
|
-
"
|
|
4053
|
+
"view.js"
|
|
4050
4054
|
]
|
|
4051
4055
|
},
|
|
4052
|
-
"
|
|
4056
|
+
"feedback": {
|
|
4053
4057
|
"aliases": [],
|
|
4054
4058
|
"args": {},
|
|
4055
|
-
"description": "
|
|
4059
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
4056
4060
|
"examples": [
|
|
4057
4061
|
"<%= config.bin %> <%= command.id %>",
|
|
4058
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4059
|
-
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
4060
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4062
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
4061
4063
|
],
|
|
4062
4064
|
"flags": {
|
|
4063
4065
|
"json": {
|
|
@@ -4073,69 +4075,45 @@
|
|
|
4073
4075
|
"allowNo": false,
|
|
4074
4076
|
"type": "boolean"
|
|
4075
4077
|
},
|
|
4076
|
-
"
|
|
4077
|
-
"char": "
|
|
4078
|
-
"description": "
|
|
4079
|
-
"name": "
|
|
4078
|
+
"action": {
|
|
4079
|
+
"char": "a",
|
|
4080
|
+
"description": "Action to perform (submit, list, view)",
|
|
4081
|
+
"name": "action",
|
|
4080
4082
|
"hasDynamicHelp": false,
|
|
4081
4083
|
"multiple": false,
|
|
4082
4084
|
"options": [
|
|
4083
|
-
"
|
|
4084
|
-
"
|
|
4085
|
-
"
|
|
4086
|
-
"failed",
|
|
4087
|
-
"stopped"
|
|
4085
|
+
"submit",
|
|
4086
|
+
"list",
|
|
4087
|
+
"view"
|
|
4088
4088
|
],
|
|
4089
4089
|
"type": "option"
|
|
4090
|
-
},
|
|
4091
|
-
"agent": {
|
|
4092
|
-
"char": "a",
|
|
4093
|
-
"description": "Filter by agent name",
|
|
4094
|
-
"name": "agent",
|
|
4095
|
-
"hasDynamicHelp": false,
|
|
4096
|
-
"multiple": false,
|
|
4097
|
-
"type": "option"
|
|
4098
|
-
},
|
|
4099
|
-
"limit": {
|
|
4100
|
-
"char": "l",
|
|
4101
|
-
"description": "Number of results",
|
|
4102
|
-
"name": "limit",
|
|
4103
|
-
"default": 20,
|
|
4104
|
-
"hasDynamicHelp": false,
|
|
4105
|
-
"multiple": false,
|
|
4106
|
-
"type": "option"
|
|
4107
4090
|
}
|
|
4108
4091
|
},
|
|
4109
4092
|
"hasDynamicHelp": false,
|
|
4110
4093
|
"hiddenAliases": [],
|
|
4111
|
-
"id": "
|
|
4094
|
+
"id": "feedback",
|
|
4112
4095
|
"pluginAlias": "@proletariat/cli",
|
|
4113
4096
|
"pluginName": "@proletariat/cli",
|
|
4114
4097
|
"pluginType": "core",
|
|
4115
4098
|
"strict": true,
|
|
4099
|
+
"enableJsonFlag": false,
|
|
4116
4100
|
"isESM": true,
|
|
4117
4101
|
"relativePath": [
|
|
4118
4102
|
"dist",
|
|
4119
4103
|
"commands",
|
|
4120
|
-
"
|
|
4121
|
-
"
|
|
4104
|
+
"feedback",
|
|
4105
|
+
"index.js"
|
|
4122
4106
|
]
|
|
4123
4107
|
},
|
|
4124
|
-
"
|
|
4108
|
+
"feedback:list": {
|
|
4125
4109
|
"aliases": [],
|
|
4126
|
-
"args": {
|
|
4127
|
-
|
|
4128
|
-
"description": "Execution ID - prompts if not provided",
|
|
4129
|
-
"name": "id",
|
|
4130
|
-
"required": false
|
|
4131
|
-
}
|
|
4132
|
-
},
|
|
4133
|
-
"description": "View execution logs",
|
|
4110
|
+
"args": {},
|
|
4111
|
+
"description": "List recent feedback issues from the repository",
|
|
4134
4112
|
"examples": [
|
|
4135
|
-
"<%= config.bin %> <%= command.id %>
|
|
4136
|
-
"<%= config.bin %> <%= command.id %>
|
|
4137
|
-
"<%= config.bin %> <%= command.id %>
|
|
4138
|
-
"<%= config.bin %> <%= command.id %>
|
|
4113
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4114
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
4115
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
4116
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4139
4117
|
],
|
|
4140
4118
|
"flags": {
|
|
4141
4119
|
"json": {
|
|
@@ -4151,17 +4129,38 @@
|
|
|
4151
4129
|
"allowNo": false,
|
|
4152
4130
|
"type": "boolean"
|
|
4153
4131
|
},
|
|
4154
|
-
"
|
|
4155
|
-
"char": "
|
|
4156
|
-
"description": "
|
|
4157
|
-
"name": "
|
|
4158
|
-
"
|
|
4159
|
-
"
|
|
4132
|
+
"category": {
|
|
4133
|
+
"char": "c",
|
|
4134
|
+
"description": "Filter by category (bug, feature, general)",
|
|
4135
|
+
"name": "category",
|
|
4136
|
+
"hasDynamicHelp": false,
|
|
4137
|
+
"multiple": false,
|
|
4138
|
+
"options": [
|
|
4139
|
+
"bug",
|
|
4140
|
+
"feature",
|
|
4141
|
+
"general"
|
|
4142
|
+
],
|
|
4143
|
+
"type": "option"
|
|
4160
4144
|
},
|
|
4161
|
-
"
|
|
4162
|
-
"char": "
|
|
4163
|
-
"description": "
|
|
4164
|
-
"name": "
|
|
4145
|
+
"state": {
|
|
4146
|
+
"char": "s",
|
|
4147
|
+
"description": "Filter by state",
|
|
4148
|
+
"name": "state",
|
|
4149
|
+
"default": "open",
|
|
4150
|
+
"hasDynamicHelp": false,
|
|
4151
|
+
"multiple": false,
|
|
4152
|
+
"options": [
|
|
4153
|
+
"open",
|
|
4154
|
+
"closed",
|
|
4155
|
+
"all"
|
|
4156
|
+
],
|
|
4157
|
+
"type": "option"
|
|
4158
|
+
},
|
|
4159
|
+
"limit": {
|
|
4160
|
+
"char": "l",
|
|
4161
|
+
"description": "Maximum number of issues to show",
|
|
4162
|
+
"name": "limit",
|
|
4163
|
+
"default": 20,
|
|
4165
4164
|
"hasDynamicHelp": false,
|
|
4166
4165
|
"multiple": false,
|
|
4167
4166
|
"type": "option"
|
|
@@ -4169,36 +4168,28 @@
|
|
|
4169
4168
|
},
|
|
4170
4169
|
"hasDynamicHelp": false,
|
|
4171
4170
|
"hiddenAliases": [],
|
|
4172
|
-
"id": "
|
|
4171
|
+
"id": "feedback:list",
|
|
4173
4172
|
"pluginAlias": "@proletariat/cli",
|
|
4174
4173
|
"pluginName": "@proletariat/cli",
|
|
4175
4174
|
"pluginType": "core",
|
|
4176
4175
|
"strict": true,
|
|
4176
|
+
"enableJsonFlag": false,
|
|
4177
4177
|
"isESM": true,
|
|
4178
4178
|
"relativePath": [
|
|
4179
4179
|
"dist",
|
|
4180
4180
|
"commands",
|
|
4181
|
-
"
|
|
4182
|
-
"
|
|
4181
|
+
"feedback",
|
|
4182
|
+
"list.js"
|
|
4183
4183
|
]
|
|
4184
4184
|
},
|
|
4185
|
-
"
|
|
4185
|
+
"feedback:submit": {
|
|
4186
4186
|
"aliases": [],
|
|
4187
|
-
"args": {
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
},
|
|
4194
|
-
"description": "Stop running execution(s)",
|
|
4195
|
-
"examples": [
|
|
4196
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4197
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
4198
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
4199
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
4200
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4201
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4187
|
+
"args": {},
|
|
4188
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
4189
|
+
"examples": [
|
|
4190
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4191
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
4192
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4202
4193
|
],
|
|
4203
4194
|
"flags": {
|
|
4204
4195
|
"json": {
|
|
@@ -4214,31 +4205,39 @@
|
|
|
4214
4205
|
"allowNo": false,
|
|
4215
4206
|
"type": "boolean"
|
|
4216
4207
|
},
|
|
4217
|
-
"
|
|
4218
|
-
"char": "
|
|
4219
|
-
"description": "
|
|
4220
|
-
"name": "
|
|
4221
|
-
"
|
|
4222
|
-
"
|
|
4208
|
+
"title": {
|
|
4209
|
+
"char": "t",
|
|
4210
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
4211
|
+
"name": "title",
|
|
4212
|
+
"hasDynamicHelp": false,
|
|
4213
|
+
"multiple": false,
|
|
4214
|
+
"type": "option"
|
|
4223
4215
|
},
|
|
4224
|
-
"
|
|
4225
|
-
"
|
|
4226
|
-
"
|
|
4227
|
-
"
|
|
4228
|
-
"
|
|
4216
|
+
"body": {
|
|
4217
|
+
"char": "b",
|
|
4218
|
+
"description": "Issue description [required for non-interactive]",
|
|
4219
|
+
"name": "body",
|
|
4220
|
+
"hasDynamicHelp": false,
|
|
4221
|
+
"multiple": false,
|
|
4222
|
+
"type": "option"
|
|
4229
4223
|
},
|
|
4230
|
-
"
|
|
4231
|
-
"char": "
|
|
4232
|
-
"description": "
|
|
4233
|
-
"name": "
|
|
4224
|
+
"category": {
|
|
4225
|
+
"char": "c",
|
|
4226
|
+
"description": "Feedback category",
|
|
4227
|
+
"name": "category",
|
|
4234
4228
|
"hasDynamicHelp": false,
|
|
4235
4229
|
"multiple": false,
|
|
4230
|
+
"options": [
|
|
4231
|
+
"bug",
|
|
4232
|
+
"feature",
|
|
4233
|
+
"general"
|
|
4234
|
+
],
|
|
4236
4235
|
"type": "option"
|
|
4237
4236
|
}
|
|
4238
4237
|
},
|
|
4239
4238
|
"hasDynamicHelp": false,
|
|
4240
4239
|
"hiddenAliases": [],
|
|
4241
|
-
"id": "
|
|
4240
|
+
"id": "feedback:submit",
|
|
4242
4241
|
"pluginAlias": "@proletariat/cli",
|
|
4243
4242
|
"pluginName": "@proletariat/cli",
|
|
4244
4243
|
"pluginType": "core",
|
|
@@ -4247,23 +4246,23 @@
|
|
|
4247
4246
|
"relativePath": [
|
|
4248
4247
|
"dist",
|
|
4249
4248
|
"commands",
|
|
4250
|
-
"
|
|
4251
|
-
"
|
|
4249
|
+
"feedback",
|
|
4250
|
+
"submit.js"
|
|
4252
4251
|
]
|
|
4253
4252
|
},
|
|
4254
|
-
"
|
|
4253
|
+
"feedback:view": {
|
|
4255
4254
|
"aliases": [],
|
|
4256
4255
|
"args": {
|
|
4257
|
-
"
|
|
4258
|
-
"description": "
|
|
4259
|
-
"name": "
|
|
4260
|
-
"required":
|
|
4256
|
+
"number": {
|
|
4257
|
+
"description": "Issue number to view",
|
|
4258
|
+
"name": "number",
|
|
4259
|
+
"required": true
|
|
4261
4260
|
}
|
|
4262
4261
|
},
|
|
4263
|
-
"description": "View details of a specific
|
|
4262
|
+
"description": "View details of a specific feedback issue",
|
|
4264
4263
|
"examples": [
|
|
4265
|
-
"<%= config.bin %> <%= command.id %>
|
|
4266
|
-
"<%= config.bin %> <%= command.id %>
|
|
4264
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
4265
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4267
4266
|
],
|
|
4268
4267
|
"flags": {
|
|
4269
4268
|
"json": {
|
|
@@ -4282,16 +4281,17 @@
|
|
|
4282
4281
|
},
|
|
4283
4282
|
"hasDynamicHelp": false,
|
|
4284
4283
|
"hiddenAliases": [],
|
|
4285
|
-
"id": "
|
|
4284
|
+
"id": "feedback:view",
|
|
4286
4285
|
"pluginAlias": "@proletariat/cli",
|
|
4287
4286
|
"pluginName": "@proletariat/cli",
|
|
4288
4287
|
"pluginType": "core",
|
|
4289
4288
|
"strict": true,
|
|
4289
|
+
"enableJsonFlag": false,
|
|
4290
4290
|
"isESM": true,
|
|
4291
4291
|
"relativePath": [
|
|
4292
4292
|
"dist",
|
|
4293
4293
|
"commands",
|
|
4294
|
-
"
|
|
4294
|
+
"feedback",
|
|
4295
4295
|
"view.js"
|
|
4296
4296
|
]
|
|
4297
4297
|
},
|
|
@@ -6438,99 +6438,6 @@
|
|
|
6438
6438
|
"index.js"
|
|
6439
6439
|
]
|
|
6440
6440
|
},
|
|
6441
|
-
"run": {
|
|
6442
|
-
"aliases": [],
|
|
6443
|
-
"args": {
|
|
6444
|
-
"task": {
|
|
6445
|
-
"description": "Task description for the agent",
|
|
6446
|
-
"name": "task",
|
|
6447
|
-
"required": true
|
|
6448
|
-
}
|
|
6449
|
-
},
|
|
6450
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
6451
|
-
"examples": [
|
|
6452
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
6453
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
6454
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
6455
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
6456
|
-
],
|
|
6457
|
-
"flags": {
|
|
6458
|
-
"json": {
|
|
6459
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6460
|
-
"name": "json",
|
|
6461
|
-
"allowNo": false,
|
|
6462
|
-
"type": "boolean"
|
|
6463
|
-
},
|
|
6464
|
-
"machine": {
|
|
6465
|
-
"char": "m",
|
|
6466
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6467
|
-
"name": "machine",
|
|
6468
|
-
"allowNo": false,
|
|
6469
|
-
"type": "boolean"
|
|
6470
|
-
},
|
|
6471
|
-
"runner": {
|
|
6472
|
-
"char": "r",
|
|
6473
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
6474
|
-
"name": "runner",
|
|
6475
|
-
"hasDynamicHelp": false,
|
|
6476
|
-
"multiple": false,
|
|
6477
|
-
"type": "option"
|
|
6478
|
-
},
|
|
6479
|
-
"detached": {
|
|
6480
|
-
"char": "d",
|
|
6481
|
-
"description": "Run in background (detached)",
|
|
6482
|
-
"name": "detached",
|
|
6483
|
-
"allowNo": false,
|
|
6484
|
-
"type": "boolean"
|
|
6485
|
-
},
|
|
6486
|
-
"directory": {
|
|
6487
|
-
"description": "Working directory (default: cwd)",
|
|
6488
|
-
"name": "directory",
|
|
6489
|
-
"hasDynamicHelp": false,
|
|
6490
|
-
"multiple": false,
|
|
6491
|
-
"type": "option"
|
|
6492
|
-
},
|
|
6493
|
-
"permission-mode": {
|
|
6494
|
-
"char": "p",
|
|
6495
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
6496
|
-
"name": "permission-mode",
|
|
6497
|
-
"hasDynamicHelp": false,
|
|
6498
|
-
"multiple": false,
|
|
6499
|
-
"options": [
|
|
6500
|
-
"danger",
|
|
6501
|
-
"safe"
|
|
6502
|
-
],
|
|
6503
|
-
"type": "option"
|
|
6504
|
-
},
|
|
6505
|
-
"environment": {
|
|
6506
|
-
"char": "e",
|
|
6507
|
-
"description": "Environment to run in",
|
|
6508
|
-
"name": "environment",
|
|
6509
|
-
"hasDynamicHelp": false,
|
|
6510
|
-
"multiple": false,
|
|
6511
|
-
"options": [
|
|
6512
|
-
"host",
|
|
6513
|
-
"docker",
|
|
6514
|
-
"podman"
|
|
6515
|
-
],
|
|
6516
|
-
"type": "option"
|
|
6517
|
-
}
|
|
6518
|
-
},
|
|
6519
|
-
"hasDynamicHelp": false,
|
|
6520
|
-
"hiddenAliases": [],
|
|
6521
|
-
"id": "run",
|
|
6522
|
-
"pluginAlias": "@proletariat/cli",
|
|
6523
|
-
"pluginName": "@proletariat/cli",
|
|
6524
|
-
"pluginType": "core",
|
|
6525
|
-
"strict": true,
|
|
6526
|
-
"isESM": true,
|
|
6527
|
-
"relativePath": [
|
|
6528
|
-
"dist",
|
|
6529
|
-
"commands",
|
|
6530
|
-
"run",
|
|
6531
|
-
"index.js"
|
|
6532
|
-
]
|
|
6533
|
-
},
|
|
6534
6441
|
"repo:add": {
|
|
6535
6442
|
"aliases": [],
|
|
6536
6443
|
"args": {
|
|
@@ -6936,6 +6843,99 @@
|
|
|
6936
6843
|
"view.js"
|
|
6937
6844
|
]
|
|
6938
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
|
+
},
|
|
6939
6939
|
"shortcut:connect": {
|
|
6940
6940
|
"aliases": [],
|
|
6941
6941
|
"args": {},
|
|
@@ -13913,5 +13913,5 @@
|
|
|
13913
13913
|
]
|
|
13914
13914
|
}
|
|
13915
13915
|
},
|
|
13916
|
-
"version": "0.3.
|
|
13916
|
+
"version": "0.3.101"
|
|
13917
13917
|
}
|