@proletariat/cli 0.3.98 → 0.3.99
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 +12 -0
- package/dist/commands/orchestrate/index.js.map +1 -1
- package/dist/commands/qa/index.js +1 -1
- package/dist/commands/ticket/create.d.ts +44 -0
- package/dist/commands/ticket/create.js +754 -0
- package/dist/commands/ticket/create.js.map +1 -0
- package/dist/commands/ticket/delete.d.ts +17 -0
- package/dist/commands/ticket/delete.js +204 -0
- package/dist/commands/ticket/delete.js.map +1 -0
- package/dist/commands/ticket/edit.d.ts +28 -0
- package/dist/commands/ticket/edit.js +402 -0
- package/dist/commands/ticket/edit.js.map +1 -0
- package/dist/commands/ticket/index.d.ts +13 -0
- package/dist/commands/ticket/index.js +74 -0
- package/dist/commands/ticket/index.js.map +1 -0
- package/dist/commands/ticket/list.d.ts +33 -0
- package/dist/commands/ticket/list.js +519 -0
- package/dist/commands/ticket/list.js.map +1 -0
- package/dist/commands/ticket/move.d.ts +27 -0
- package/dist/commands/ticket/move.js +413 -0
- package/dist/commands/ticket/move.js.map +1 -0
- package/dist/commands/ticket/show.d.ts +14 -0
- package/dist/commands/ticket/show.js +110 -0
- package/dist/commands/ticket/show.js.map +1 -0
- package/dist/commands/ticket/update.d.ts +28 -0
- package/dist/commands/ticket/update.js +458 -0
- package/dist/commands/ticket/update.js.map +1 -0
- package/dist/lib/execution/preflight.js +1 -1
- package/dist/lib/execution/preflight.js.map +1 -1
- package/dist/lib/mcp/tools/action.d.ts +6 -0
- package/dist/lib/mcp/tools/action.js +123 -0
- package/dist/lib/mcp/tools/action.js.map +1 -0
- package/dist/lib/mcp/tools/index.d.ts +2 -0
- package/dist/lib/mcp/tools/index.js +2 -0
- package/dist/lib/mcp/tools/index.js.map +1 -1
- package/dist/lib/mcp/tools/ticket.d.ts +6 -0
- package/dist/lib/mcp/tools/ticket.js +464 -0
- package/dist/lib/mcp/tools/ticket.js.map +1 -0
- package/oclif.manifest.json +1891 -1023
- 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
|
},
|
|
@@ -3702,18 +3702,13 @@
|
|
|
3702
3702
|
"sync.js"
|
|
3703
3703
|
]
|
|
3704
3704
|
},
|
|
3705
|
-
"
|
|
3705
|
+
"feedback": {
|
|
3706
3706
|
"aliases": [],
|
|
3707
3707
|
"args": {},
|
|
3708
|
-
"description": "
|
|
3708
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
3709
3709
|
"examples": [
|
|
3710
|
-
"<%= config.bin %>
|
|
3711
|
-
"<%= config.bin %>
|
|
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"
|
|
3710
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3711
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
3717
3712
|
],
|
|
3718
3713
|
"flags": {
|
|
3719
3714
|
"json": {
|
|
@@ -3729,7 +3724,254 @@
|
|
|
3729
3724
|
"allowNo": false,
|
|
3730
3725
|
"type": "boolean"
|
|
3731
3726
|
},
|
|
3732
|
-
"
|
|
3727
|
+
"action": {
|
|
3728
|
+
"char": "a",
|
|
3729
|
+
"description": "Action to perform (submit, list, view)",
|
|
3730
|
+
"name": "action",
|
|
3731
|
+
"hasDynamicHelp": false,
|
|
3732
|
+
"multiple": false,
|
|
3733
|
+
"options": [
|
|
3734
|
+
"submit",
|
|
3735
|
+
"list",
|
|
3736
|
+
"view"
|
|
3737
|
+
],
|
|
3738
|
+
"type": "option"
|
|
3739
|
+
}
|
|
3740
|
+
},
|
|
3741
|
+
"hasDynamicHelp": false,
|
|
3742
|
+
"hiddenAliases": [],
|
|
3743
|
+
"id": "feedback",
|
|
3744
|
+
"pluginAlias": "@proletariat/cli",
|
|
3745
|
+
"pluginName": "@proletariat/cli",
|
|
3746
|
+
"pluginType": "core",
|
|
3747
|
+
"strict": true,
|
|
3748
|
+
"enableJsonFlag": false,
|
|
3749
|
+
"isESM": true,
|
|
3750
|
+
"relativePath": [
|
|
3751
|
+
"dist",
|
|
3752
|
+
"commands",
|
|
3753
|
+
"feedback",
|
|
3754
|
+
"index.js"
|
|
3755
|
+
]
|
|
3756
|
+
},
|
|
3757
|
+
"feedback:list": {
|
|
3758
|
+
"aliases": [],
|
|
3759
|
+
"args": {},
|
|
3760
|
+
"description": "List recent feedback issues from the repository",
|
|
3761
|
+
"examples": [
|
|
3762
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3763
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
3764
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
3765
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
3766
|
+
],
|
|
3767
|
+
"flags": {
|
|
3768
|
+
"json": {
|
|
3769
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3770
|
+
"name": "json",
|
|
3771
|
+
"allowNo": false,
|
|
3772
|
+
"type": "boolean"
|
|
3773
|
+
},
|
|
3774
|
+
"machine": {
|
|
3775
|
+
"char": "m",
|
|
3776
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3777
|
+
"name": "machine",
|
|
3778
|
+
"allowNo": false,
|
|
3779
|
+
"type": "boolean"
|
|
3780
|
+
},
|
|
3781
|
+
"category": {
|
|
3782
|
+
"char": "c",
|
|
3783
|
+
"description": "Filter by category (bug, feature, general)",
|
|
3784
|
+
"name": "category",
|
|
3785
|
+
"hasDynamicHelp": false,
|
|
3786
|
+
"multiple": false,
|
|
3787
|
+
"options": [
|
|
3788
|
+
"bug",
|
|
3789
|
+
"feature",
|
|
3790
|
+
"general"
|
|
3791
|
+
],
|
|
3792
|
+
"type": "option"
|
|
3793
|
+
},
|
|
3794
|
+
"state": {
|
|
3795
|
+
"char": "s",
|
|
3796
|
+
"description": "Filter by state",
|
|
3797
|
+
"name": "state",
|
|
3798
|
+
"default": "open",
|
|
3799
|
+
"hasDynamicHelp": false,
|
|
3800
|
+
"multiple": false,
|
|
3801
|
+
"options": [
|
|
3802
|
+
"open",
|
|
3803
|
+
"closed",
|
|
3804
|
+
"all"
|
|
3805
|
+
],
|
|
3806
|
+
"type": "option"
|
|
3807
|
+
},
|
|
3808
|
+
"limit": {
|
|
3809
|
+
"char": "l",
|
|
3810
|
+
"description": "Maximum number of issues to show",
|
|
3811
|
+
"name": "limit",
|
|
3812
|
+
"default": 20,
|
|
3813
|
+
"hasDynamicHelp": false,
|
|
3814
|
+
"multiple": false,
|
|
3815
|
+
"type": "option"
|
|
3816
|
+
}
|
|
3817
|
+
},
|
|
3818
|
+
"hasDynamicHelp": false,
|
|
3819
|
+
"hiddenAliases": [],
|
|
3820
|
+
"id": "feedback:list",
|
|
3821
|
+
"pluginAlias": "@proletariat/cli",
|
|
3822
|
+
"pluginName": "@proletariat/cli",
|
|
3823
|
+
"pluginType": "core",
|
|
3824
|
+
"strict": true,
|
|
3825
|
+
"enableJsonFlag": false,
|
|
3826
|
+
"isESM": true,
|
|
3827
|
+
"relativePath": [
|
|
3828
|
+
"dist",
|
|
3829
|
+
"commands",
|
|
3830
|
+
"feedback",
|
|
3831
|
+
"list.js"
|
|
3832
|
+
]
|
|
3833
|
+
},
|
|
3834
|
+
"feedback:submit": {
|
|
3835
|
+
"aliases": [],
|
|
3836
|
+
"args": {},
|
|
3837
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
3838
|
+
"examples": [
|
|
3839
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3840
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
3841
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
3842
|
+
],
|
|
3843
|
+
"flags": {
|
|
3844
|
+
"json": {
|
|
3845
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3846
|
+
"name": "json",
|
|
3847
|
+
"allowNo": false,
|
|
3848
|
+
"type": "boolean"
|
|
3849
|
+
},
|
|
3850
|
+
"machine": {
|
|
3851
|
+
"char": "m",
|
|
3852
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3853
|
+
"name": "machine",
|
|
3854
|
+
"allowNo": false,
|
|
3855
|
+
"type": "boolean"
|
|
3856
|
+
},
|
|
3857
|
+
"title": {
|
|
3858
|
+
"char": "t",
|
|
3859
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
3860
|
+
"name": "title",
|
|
3861
|
+
"hasDynamicHelp": false,
|
|
3862
|
+
"multiple": false,
|
|
3863
|
+
"type": "option"
|
|
3864
|
+
},
|
|
3865
|
+
"body": {
|
|
3866
|
+
"char": "b",
|
|
3867
|
+
"description": "Issue description [required for non-interactive]",
|
|
3868
|
+
"name": "body",
|
|
3869
|
+
"hasDynamicHelp": false,
|
|
3870
|
+
"multiple": false,
|
|
3871
|
+
"type": "option"
|
|
3872
|
+
},
|
|
3873
|
+
"category": {
|
|
3874
|
+
"char": "c",
|
|
3875
|
+
"description": "Feedback category",
|
|
3876
|
+
"name": "category",
|
|
3877
|
+
"hasDynamicHelp": false,
|
|
3878
|
+
"multiple": false,
|
|
3879
|
+
"options": [
|
|
3880
|
+
"bug",
|
|
3881
|
+
"feature",
|
|
3882
|
+
"general"
|
|
3883
|
+
],
|
|
3884
|
+
"type": "option"
|
|
3885
|
+
}
|
|
3886
|
+
},
|
|
3887
|
+
"hasDynamicHelp": false,
|
|
3888
|
+
"hiddenAliases": [],
|
|
3889
|
+
"id": "feedback:submit",
|
|
3890
|
+
"pluginAlias": "@proletariat/cli",
|
|
3891
|
+
"pluginName": "@proletariat/cli",
|
|
3892
|
+
"pluginType": "core",
|
|
3893
|
+
"strict": true,
|
|
3894
|
+
"isESM": true,
|
|
3895
|
+
"relativePath": [
|
|
3896
|
+
"dist",
|
|
3897
|
+
"commands",
|
|
3898
|
+
"feedback",
|
|
3899
|
+
"submit.js"
|
|
3900
|
+
]
|
|
3901
|
+
},
|
|
3902
|
+
"feedback:view": {
|
|
3903
|
+
"aliases": [],
|
|
3904
|
+
"args": {
|
|
3905
|
+
"number": {
|
|
3906
|
+
"description": "Issue number to view",
|
|
3907
|
+
"name": "number",
|
|
3908
|
+
"required": true
|
|
3909
|
+
}
|
|
3910
|
+
},
|
|
3911
|
+
"description": "View details of a specific feedback issue",
|
|
3912
|
+
"examples": [
|
|
3913
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
3914
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
3915
|
+
],
|
|
3916
|
+
"flags": {
|
|
3917
|
+
"json": {
|
|
3918
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3919
|
+
"name": "json",
|
|
3920
|
+
"allowNo": false,
|
|
3921
|
+
"type": "boolean"
|
|
3922
|
+
},
|
|
3923
|
+
"machine": {
|
|
3924
|
+
"char": "m",
|
|
3925
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3926
|
+
"name": "machine",
|
|
3927
|
+
"allowNo": false,
|
|
3928
|
+
"type": "boolean"
|
|
3929
|
+
}
|
|
3930
|
+
},
|
|
3931
|
+
"hasDynamicHelp": false,
|
|
3932
|
+
"hiddenAliases": [],
|
|
3933
|
+
"id": "feedback:view",
|
|
3934
|
+
"pluginAlias": "@proletariat/cli",
|
|
3935
|
+
"pluginName": "@proletariat/cli",
|
|
3936
|
+
"pluginType": "core",
|
|
3937
|
+
"strict": true,
|
|
3938
|
+
"enableJsonFlag": false,
|
|
3939
|
+
"isESM": true,
|
|
3940
|
+
"relativePath": [
|
|
3941
|
+
"dist",
|
|
3942
|
+
"commands",
|
|
3943
|
+
"feedback",
|
|
3944
|
+
"view.js"
|
|
3945
|
+
]
|
|
3946
|
+
},
|
|
3947
|
+
"execution:config": {
|
|
3948
|
+
"aliases": [],
|
|
3949
|
+
"args": {},
|
|
3950
|
+
"description": "View and update execution preferences",
|
|
3951
|
+
"examples": [
|
|
3952
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
3953
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3954
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
3955
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3956
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3957
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3958
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3959
|
+
],
|
|
3960
|
+
"flags": {
|
|
3961
|
+
"json": {
|
|
3962
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3963
|
+
"name": "json",
|
|
3964
|
+
"allowNo": false,
|
|
3965
|
+
"type": "boolean"
|
|
3966
|
+
},
|
|
3967
|
+
"machine": {
|
|
3968
|
+
"char": "m",
|
|
3969
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3970
|
+
"name": "machine",
|
|
3971
|
+
"allowNo": false,
|
|
3972
|
+
"type": "boolean"
|
|
3973
|
+
},
|
|
3974
|
+
"set": {
|
|
3733
3975
|
"char": "s",
|
|
3734
3976
|
"description": "Set a config value (format: key value)",
|
|
3735
3977
|
"name": "set",
|
|
@@ -4053,257 +4295,15 @@
|
|
|
4053
4295
|
"view.js"
|
|
4054
4296
|
]
|
|
4055
4297
|
},
|
|
4056
|
-
"
|
|
4298
|
+
"gh": {
|
|
4057
4299
|
"aliases": [],
|
|
4058
4300
|
"args": {},
|
|
4059
|
-
"description": "
|
|
4301
|
+
"description": "GitHub CLI setup and status for PR workflow",
|
|
4060
4302
|
"examples": [
|
|
4061
4303
|
"<%= config.bin %> <%= command.id %>",
|
|
4062
|
-
"<%= config.bin %> <%= command.id %>
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
"json": {
|
|
4066
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4067
|
-
"name": "json",
|
|
4068
|
-
"allowNo": false,
|
|
4069
|
-
"type": "boolean"
|
|
4070
|
-
},
|
|
4071
|
-
"machine": {
|
|
4072
|
-
"char": "m",
|
|
4073
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4074
|
-
"name": "machine",
|
|
4075
|
-
"allowNo": false,
|
|
4076
|
-
"type": "boolean"
|
|
4077
|
-
},
|
|
4078
|
-
"action": {
|
|
4079
|
-
"char": "a",
|
|
4080
|
-
"description": "Action to perform (submit, list, view)",
|
|
4081
|
-
"name": "action",
|
|
4082
|
-
"hasDynamicHelp": false,
|
|
4083
|
-
"multiple": false,
|
|
4084
|
-
"options": [
|
|
4085
|
-
"submit",
|
|
4086
|
-
"list",
|
|
4087
|
-
"view"
|
|
4088
|
-
],
|
|
4089
|
-
"type": "option"
|
|
4090
|
-
}
|
|
4091
|
-
},
|
|
4092
|
-
"hasDynamicHelp": false,
|
|
4093
|
-
"hiddenAliases": [],
|
|
4094
|
-
"id": "feedback",
|
|
4095
|
-
"pluginAlias": "@proletariat/cli",
|
|
4096
|
-
"pluginName": "@proletariat/cli",
|
|
4097
|
-
"pluginType": "core",
|
|
4098
|
-
"strict": true,
|
|
4099
|
-
"enableJsonFlag": false,
|
|
4100
|
-
"isESM": true,
|
|
4101
|
-
"relativePath": [
|
|
4102
|
-
"dist",
|
|
4103
|
-
"commands",
|
|
4104
|
-
"feedback",
|
|
4105
|
-
"index.js"
|
|
4106
|
-
]
|
|
4107
|
-
},
|
|
4108
|
-
"feedback:list": {
|
|
4109
|
-
"aliases": [],
|
|
4110
|
-
"args": {},
|
|
4111
|
-
"description": "List recent feedback issues from the repository",
|
|
4112
|
-
"examples": [
|
|
4113
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4114
|
-
"<%= config.bin %> <%= command.id %> --category bug",
|
|
4115
|
-
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
4116
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
4117
|
-
],
|
|
4118
|
-
"flags": {
|
|
4119
|
-
"json": {
|
|
4120
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4121
|
-
"name": "json",
|
|
4122
|
-
"allowNo": false,
|
|
4123
|
-
"type": "boolean"
|
|
4124
|
-
},
|
|
4125
|
-
"machine": {
|
|
4126
|
-
"char": "m",
|
|
4127
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4128
|
-
"name": "machine",
|
|
4129
|
-
"allowNo": false,
|
|
4130
|
-
"type": "boolean"
|
|
4131
|
-
},
|
|
4132
|
-
"category": {
|
|
4133
|
-
"char": "c",
|
|
4134
|
-
"description": "Filter by category (bug, feature, general)",
|
|
4135
|
-
"name": "category",
|
|
4136
|
-
"hasDynamicHelp": false,
|
|
4137
|
-
"multiple": false,
|
|
4138
|
-
"options": [
|
|
4139
|
-
"bug",
|
|
4140
|
-
"feature",
|
|
4141
|
-
"general"
|
|
4142
|
-
],
|
|
4143
|
-
"type": "option"
|
|
4144
|
-
},
|
|
4145
|
-
"state": {
|
|
4146
|
-
"char": "s",
|
|
4147
|
-
"description": "Filter by state",
|
|
4148
|
-
"name": "state",
|
|
4149
|
-
"default": "open",
|
|
4150
|
-
"hasDynamicHelp": false,
|
|
4151
|
-
"multiple": false,
|
|
4152
|
-
"options": [
|
|
4153
|
-
"open",
|
|
4154
|
-
"closed",
|
|
4155
|
-
"all"
|
|
4156
|
-
],
|
|
4157
|
-
"type": "option"
|
|
4158
|
-
},
|
|
4159
|
-
"limit": {
|
|
4160
|
-
"char": "l",
|
|
4161
|
-
"description": "Maximum number of issues to show",
|
|
4162
|
-
"name": "limit",
|
|
4163
|
-
"default": 20,
|
|
4164
|
-
"hasDynamicHelp": false,
|
|
4165
|
-
"multiple": false,
|
|
4166
|
-
"type": "option"
|
|
4167
|
-
}
|
|
4168
|
-
},
|
|
4169
|
-
"hasDynamicHelp": false,
|
|
4170
|
-
"hiddenAliases": [],
|
|
4171
|
-
"id": "feedback:list",
|
|
4172
|
-
"pluginAlias": "@proletariat/cli",
|
|
4173
|
-
"pluginName": "@proletariat/cli",
|
|
4174
|
-
"pluginType": "core",
|
|
4175
|
-
"strict": true,
|
|
4176
|
-
"enableJsonFlag": false,
|
|
4177
|
-
"isESM": true,
|
|
4178
|
-
"relativePath": [
|
|
4179
|
-
"dist",
|
|
4180
|
-
"commands",
|
|
4181
|
-
"feedback",
|
|
4182
|
-
"list.js"
|
|
4183
|
-
]
|
|
4184
|
-
},
|
|
4185
|
-
"feedback:submit": {
|
|
4186
|
-
"aliases": [],
|
|
4187
|
-
"args": {},
|
|
4188
|
-
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
4189
|
-
"examples": [
|
|
4190
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4191
|
-
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
4192
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
4193
|
-
],
|
|
4194
|
-
"flags": {
|
|
4195
|
-
"json": {
|
|
4196
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4197
|
-
"name": "json",
|
|
4198
|
-
"allowNo": false,
|
|
4199
|
-
"type": "boolean"
|
|
4200
|
-
},
|
|
4201
|
-
"machine": {
|
|
4202
|
-
"char": "m",
|
|
4203
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4204
|
-
"name": "machine",
|
|
4205
|
-
"allowNo": false,
|
|
4206
|
-
"type": "boolean"
|
|
4207
|
-
},
|
|
4208
|
-
"title": {
|
|
4209
|
-
"char": "t",
|
|
4210
|
-
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
4211
|
-
"name": "title",
|
|
4212
|
-
"hasDynamicHelp": false,
|
|
4213
|
-
"multiple": false,
|
|
4214
|
-
"type": "option"
|
|
4215
|
-
},
|
|
4216
|
-
"body": {
|
|
4217
|
-
"char": "b",
|
|
4218
|
-
"description": "Issue description [required for non-interactive]",
|
|
4219
|
-
"name": "body",
|
|
4220
|
-
"hasDynamicHelp": false,
|
|
4221
|
-
"multiple": false,
|
|
4222
|
-
"type": "option"
|
|
4223
|
-
},
|
|
4224
|
-
"category": {
|
|
4225
|
-
"char": "c",
|
|
4226
|
-
"description": "Feedback category",
|
|
4227
|
-
"name": "category",
|
|
4228
|
-
"hasDynamicHelp": false,
|
|
4229
|
-
"multiple": false,
|
|
4230
|
-
"options": [
|
|
4231
|
-
"bug",
|
|
4232
|
-
"feature",
|
|
4233
|
-
"general"
|
|
4234
|
-
],
|
|
4235
|
-
"type": "option"
|
|
4236
|
-
}
|
|
4237
|
-
},
|
|
4238
|
-
"hasDynamicHelp": false,
|
|
4239
|
-
"hiddenAliases": [],
|
|
4240
|
-
"id": "feedback:submit",
|
|
4241
|
-
"pluginAlias": "@proletariat/cli",
|
|
4242
|
-
"pluginName": "@proletariat/cli",
|
|
4243
|
-
"pluginType": "core",
|
|
4244
|
-
"strict": true,
|
|
4245
|
-
"isESM": true,
|
|
4246
|
-
"relativePath": [
|
|
4247
|
-
"dist",
|
|
4248
|
-
"commands",
|
|
4249
|
-
"feedback",
|
|
4250
|
-
"submit.js"
|
|
4251
|
-
]
|
|
4252
|
-
},
|
|
4253
|
-
"feedback:view": {
|
|
4254
|
-
"aliases": [],
|
|
4255
|
-
"args": {
|
|
4256
|
-
"number": {
|
|
4257
|
-
"description": "Issue number to view",
|
|
4258
|
-
"name": "number",
|
|
4259
|
-
"required": true
|
|
4260
|
-
}
|
|
4261
|
-
},
|
|
4262
|
-
"description": "View details of a specific feedback issue",
|
|
4263
|
-
"examples": [
|
|
4264
|
-
"<%= config.bin %> <%= command.id %> 123",
|
|
4265
|
-
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4266
|
-
],
|
|
4267
|
-
"flags": {
|
|
4268
|
-
"json": {
|
|
4269
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4270
|
-
"name": "json",
|
|
4271
|
-
"allowNo": false,
|
|
4272
|
-
"type": "boolean"
|
|
4273
|
-
},
|
|
4274
|
-
"machine": {
|
|
4275
|
-
"char": "m",
|
|
4276
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
4277
|
-
"name": "machine",
|
|
4278
|
-
"allowNo": false,
|
|
4279
|
-
"type": "boolean"
|
|
4280
|
-
}
|
|
4281
|
-
},
|
|
4282
|
-
"hasDynamicHelp": false,
|
|
4283
|
-
"hiddenAliases": [],
|
|
4284
|
-
"id": "feedback:view",
|
|
4285
|
-
"pluginAlias": "@proletariat/cli",
|
|
4286
|
-
"pluginName": "@proletariat/cli",
|
|
4287
|
-
"pluginType": "core",
|
|
4288
|
-
"strict": true,
|
|
4289
|
-
"enableJsonFlag": false,
|
|
4290
|
-
"isESM": true,
|
|
4291
|
-
"relativePath": [
|
|
4292
|
-
"dist",
|
|
4293
|
-
"commands",
|
|
4294
|
-
"feedback",
|
|
4295
|
-
"view.js"
|
|
4296
|
-
]
|
|
4297
|
-
},
|
|
4298
|
-
"gh": {
|
|
4299
|
-
"aliases": [],
|
|
4300
|
-
"args": {},
|
|
4301
|
-
"description": "GitHub CLI setup and status for PR workflow",
|
|
4302
|
-
"examples": [
|
|
4303
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4304
|
-
"<%= config.bin %> <%= command.id %> status",
|
|
4305
|
-
"<%= config.bin %> <%= command.id %> login",
|
|
4306
|
-
"<%= config.bin %> <%= command.id %> token"
|
|
4304
|
+
"<%= config.bin %> <%= command.id %> status",
|
|
4305
|
+
"<%= config.bin %> <%= command.id %> login",
|
|
4306
|
+
"<%= config.bin %> <%= command.id %> token"
|
|
4307
4307
|
],
|
|
4308
4308
|
"flags": {
|
|
4309
4309
|
"json": {
|
|
@@ -6438,16 +6438,109 @@
|
|
|
6438
6438
|
"index.js"
|
|
6439
6439
|
]
|
|
6440
6440
|
},
|
|
6441
|
-
"
|
|
6441
|
+
"run": {
|
|
6442
6442
|
"aliases": [],
|
|
6443
6443
|
"args": {
|
|
6444
|
-
"
|
|
6445
|
-
"description": "
|
|
6446
|
-
"name": "
|
|
6447
|
-
"required":
|
|
6444
|
+
"task": {
|
|
6445
|
+
"description": "Task description for the agent",
|
|
6446
|
+
"name": "task",
|
|
6447
|
+
"required": true
|
|
6448
6448
|
}
|
|
6449
6449
|
},
|
|
6450
|
-
"description": "
|
|
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
|
+
"repo:add": {
|
|
6535
|
+
"aliases": [],
|
|
6536
|
+
"args": {
|
|
6537
|
+
"path": {
|
|
6538
|
+
"description": "Repository path or Git URL",
|
|
6539
|
+
"name": "path",
|
|
6540
|
+
"required": false
|
|
6541
|
+
}
|
|
6542
|
+
},
|
|
6543
|
+
"description": "Add a repository to the HQ",
|
|
6451
6544
|
"examples": [
|
|
6452
6545
|
"<%= config.bin %> <%= command.id %> /path/to/repo",
|
|
6453
6546
|
"<%= config.bin %> <%= command.id %> git@github.com:user/repo.git",
|
|
@@ -6843,99 +6936,6 @@
|
|
|
6843
6936
|
"view.js"
|
|
6844
6937
|
]
|
|
6845
6938
|
},
|
|
6846
|
-
"run": {
|
|
6847
|
-
"aliases": [],
|
|
6848
|
-
"args": {
|
|
6849
|
-
"task": {
|
|
6850
|
-
"description": "Task description for the agent",
|
|
6851
|
-
"name": "task",
|
|
6852
|
-
"required": true
|
|
6853
|
-
}
|
|
6854
|
-
},
|
|
6855
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
6856
|
-
"examples": [
|
|
6857
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
6858
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
6859
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
6860
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
6861
|
-
],
|
|
6862
|
-
"flags": {
|
|
6863
|
-
"json": {
|
|
6864
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6865
|
-
"name": "json",
|
|
6866
|
-
"allowNo": false,
|
|
6867
|
-
"type": "boolean"
|
|
6868
|
-
},
|
|
6869
|
-
"machine": {
|
|
6870
|
-
"char": "m",
|
|
6871
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6872
|
-
"name": "machine",
|
|
6873
|
-
"allowNo": false,
|
|
6874
|
-
"type": "boolean"
|
|
6875
|
-
},
|
|
6876
|
-
"runner": {
|
|
6877
|
-
"char": "r",
|
|
6878
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
6879
|
-
"name": "runner",
|
|
6880
|
-
"hasDynamicHelp": false,
|
|
6881
|
-
"multiple": false,
|
|
6882
|
-
"type": "option"
|
|
6883
|
-
},
|
|
6884
|
-
"detached": {
|
|
6885
|
-
"char": "d",
|
|
6886
|
-
"description": "Run in background (detached)",
|
|
6887
|
-
"name": "detached",
|
|
6888
|
-
"allowNo": false,
|
|
6889
|
-
"type": "boolean"
|
|
6890
|
-
},
|
|
6891
|
-
"directory": {
|
|
6892
|
-
"description": "Working directory (default: cwd)",
|
|
6893
|
-
"name": "directory",
|
|
6894
|
-
"hasDynamicHelp": false,
|
|
6895
|
-
"multiple": false,
|
|
6896
|
-
"type": "option"
|
|
6897
|
-
},
|
|
6898
|
-
"permission-mode": {
|
|
6899
|
-
"char": "p",
|
|
6900
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
6901
|
-
"name": "permission-mode",
|
|
6902
|
-
"hasDynamicHelp": false,
|
|
6903
|
-
"multiple": false,
|
|
6904
|
-
"options": [
|
|
6905
|
-
"danger",
|
|
6906
|
-
"safe"
|
|
6907
|
-
],
|
|
6908
|
-
"type": "option"
|
|
6909
|
-
},
|
|
6910
|
-
"environment": {
|
|
6911
|
-
"char": "e",
|
|
6912
|
-
"description": "Environment to run in",
|
|
6913
|
-
"name": "environment",
|
|
6914
|
-
"hasDynamicHelp": false,
|
|
6915
|
-
"multiple": false,
|
|
6916
|
-
"options": [
|
|
6917
|
-
"host",
|
|
6918
|
-
"docker",
|
|
6919
|
-
"podman"
|
|
6920
|
-
],
|
|
6921
|
-
"type": "option"
|
|
6922
|
-
}
|
|
6923
|
-
},
|
|
6924
|
-
"hasDynamicHelp": false,
|
|
6925
|
-
"hiddenAliases": [],
|
|
6926
|
-
"id": "run",
|
|
6927
|
-
"pluginAlias": "@proletariat/cli",
|
|
6928
|
-
"pluginName": "@proletariat/cli",
|
|
6929
|
-
"pluginType": "core",
|
|
6930
|
-
"strict": true,
|
|
6931
|
-
"isESM": true,
|
|
6932
|
-
"relativePath": [
|
|
6933
|
-
"dist",
|
|
6934
|
-
"commands",
|
|
6935
|
-
"run",
|
|
6936
|
-
"index.js"
|
|
6937
|
-
]
|
|
6938
|
-
},
|
|
6939
6939
|
"shortcut:connect": {
|
|
6940
6940
|
"aliases": [],
|
|
6941
6941
|
"args": {},
|
|
@@ -7004,15 +7004,30 @@
|
|
|
7004
7004
|
"connect.js"
|
|
7005
7005
|
]
|
|
7006
7006
|
},
|
|
7007
|
-
"
|
|
7007
|
+
"session:attach": {
|
|
7008
7008
|
"aliases": [],
|
|
7009
|
-
"args": {
|
|
7010
|
-
|
|
7009
|
+
"args": {
|
|
7010
|
+
"session": {
|
|
7011
|
+
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
7012
|
+
"name": "session",
|
|
7013
|
+
"required": false
|
|
7014
|
+
}
|
|
7015
|
+
},
|
|
7016
|
+
"description": "Attach to an active agent session (DB-first: only attaches to tracked executions)",
|
|
7011
7017
|
"examples": [
|
|
7012
7018
|
"<%= config.bin %> <%= command.id %>",
|
|
7013
|
-
"<%= config.bin %> <%= command.id %>
|
|
7019
|
+
"<%= config.bin %> <%= command.id %> TKT-347-implement-altman",
|
|
7020
|
+
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
7014
7021
|
],
|
|
7015
7022
|
"flags": {
|
|
7023
|
+
"project": {
|
|
7024
|
+
"char": "P",
|
|
7025
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7026
|
+
"name": "project",
|
|
7027
|
+
"hasDynamicHelp": false,
|
|
7028
|
+
"multiple": false,
|
|
7029
|
+
"type": "option"
|
|
7030
|
+
},
|
|
7016
7031
|
"json": {
|
|
7017
7032
|
"description": "Output as JSON for AI agents/scripts",
|
|
7018
7033
|
"name": "json",
|
|
@@ -7025,31 +7040,55 @@
|
|
|
7025
7040
|
"name": "machine",
|
|
7026
7041
|
"allowNo": false,
|
|
7027
7042
|
"type": "boolean"
|
|
7043
|
+
},
|
|
7044
|
+
"new-tab": {
|
|
7045
|
+
"char": "n",
|
|
7046
|
+
"description": "Open in a new terminal tab (default: true)",
|
|
7047
|
+
"name": "new-tab",
|
|
7048
|
+
"allowNo": false,
|
|
7049
|
+
"type": "boolean"
|
|
7050
|
+
},
|
|
7051
|
+
"current-terminal": {
|
|
7052
|
+
"char": "c",
|
|
7053
|
+
"description": "Attach in current terminal instead of new tab",
|
|
7054
|
+
"name": "current-terminal",
|
|
7055
|
+
"allowNo": false,
|
|
7056
|
+
"type": "boolean"
|
|
7057
|
+
},
|
|
7058
|
+
"terminal": {
|
|
7059
|
+
"char": "t",
|
|
7060
|
+
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7061
|
+
"name": "terminal",
|
|
7062
|
+
"default": "iTerm",
|
|
7063
|
+
"hasDynamicHelp": false,
|
|
7064
|
+
"multiple": false,
|
|
7065
|
+
"type": "option"
|
|
7028
7066
|
}
|
|
7029
7067
|
},
|
|
7030
7068
|
"hasDynamicHelp": false,
|
|
7031
7069
|
"hiddenAliases": [],
|
|
7032
|
-
"id": "
|
|
7070
|
+
"id": "session:attach",
|
|
7033
7071
|
"pluginAlias": "@proletariat/cli",
|
|
7034
7072
|
"pluginName": "@proletariat/cli",
|
|
7035
7073
|
"pluginType": "core",
|
|
7036
7074
|
"strict": true,
|
|
7037
|
-
"enableJsonFlag": false,
|
|
7038
7075
|
"isESM": true,
|
|
7039
7076
|
"relativePath": [
|
|
7040
7077
|
"dist",
|
|
7041
7078
|
"commands",
|
|
7042
|
-
"
|
|
7043
|
-
"
|
|
7079
|
+
"session",
|
|
7080
|
+
"attach.js"
|
|
7044
7081
|
]
|
|
7045
7082
|
},
|
|
7046
|
-
"
|
|
7083
|
+
"session:cleanup": {
|
|
7047
7084
|
"aliases": [],
|
|
7048
7085
|
"args": {},
|
|
7049
|
-
"description": "
|
|
7086
|
+
"description": "Stop and remove Docker containers for completed agents",
|
|
7050
7087
|
"examples": [
|
|
7051
|
-
"<%= config.bin %>
|
|
7052
|
-
"<%= config.bin %>
|
|
7088
|
+
"<%= config.bin %> session cleanup",
|
|
7089
|
+
"<%= config.bin %> session cleanup --dry-run",
|
|
7090
|
+
"<%= config.bin %> session cleanup --force",
|
|
7091
|
+
"<%= config.bin %> session cleanup --force --yes"
|
|
7053
7092
|
],
|
|
7054
7093
|
"flags": {
|
|
7055
7094
|
"json": {
|
|
@@ -7064,74 +7103,58 @@
|
|
|
7064
7103
|
"name": "machine",
|
|
7065
7104
|
"allowNo": false,
|
|
7066
7105
|
"type": "boolean"
|
|
7067
|
-
}
|
|
7068
|
-
|
|
7069
|
-
|
|
7070
|
-
|
|
7071
|
-
|
|
7072
|
-
"pluginAlias": "@proletariat/cli",
|
|
7073
|
-
"pluginName": "@proletariat/cli",
|
|
7074
|
-
"pluginType": "core",
|
|
7075
|
-
"strict": true,
|
|
7076
|
-
"enableJsonFlag": false,
|
|
7077
|
-
"isESM": true,
|
|
7078
|
-
"relativePath": [
|
|
7079
|
-
"dist",
|
|
7080
|
-
"commands",
|
|
7081
|
-
"support",
|
|
7082
|
-
"discord.js"
|
|
7083
|
-
]
|
|
7084
|
-
},
|
|
7085
|
-
"support:docs": {
|
|
7086
|
-
"aliases": [],
|
|
7087
|
-
"args": {},
|
|
7088
|
-
"description": "Open documentation in browser",
|
|
7089
|
-
"examples": [
|
|
7090
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7091
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
7092
|
-
],
|
|
7093
|
-
"flags": {
|
|
7094
|
-
"json": {
|
|
7095
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7096
|
-
"name": "json",
|
|
7106
|
+
},
|
|
7107
|
+
"dry-run": {
|
|
7108
|
+
"char": "d",
|
|
7109
|
+
"description": "Show what would be cleaned up without actually doing it",
|
|
7110
|
+
"name": "dry-run",
|
|
7097
7111
|
"allowNo": false,
|
|
7098
7112
|
"type": "boolean"
|
|
7099
7113
|
},
|
|
7100
|
-
"
|
|
7101
|
-
"char": "
|
|
7102
|
-
"description": "
|
|
7103
|
-
"name": "
|
|
7114
|
+
"force": {
|
|
7115
|
+
"char": "f",
|
|
7116
|
+
"description": "Remove all agent containers, including those with active executions",
|
|
7117
|
+
"name": "force",
|
|
7118
|
+
"allowNo": false,
|
|
7119
|
+
"type": "boolean"
|
|
7120
|
+
},
|
|
7121
|
+
"yes": {
|
|
7122
|
+
"char": "y",
|
|
7123
|
+
"description": "Skip confirmation prompt when using --force",
|
|
7124
|
+
"name": "yes",
|
|
7104
7125
|
"allowNo": false,
|
|
7105
7126
|
"type": "boolean"
|
|
7106
7127
|
}
|
|
7107
7128
|
},
|
|
7108
7129
|
"hasDynamicHelp": false,
|
|
7109
7130
|
"hiddenAliases": [],
|
|
7110
|
-
"id": "
|
|
7131
|
+
"id": "session:cleanup",
|
|
7111
7132
|
"pluginAlias": "@proletariat/cli",
|
|
7112
7133
|
"pluginName": "@proletariat/cli",
|
|
7113
7134
|
"pluginType": "core",
|
|
7114
7135
|
"strict": true,
|
|
7115
|
-
"enableJsonFlag": false,
|
|
7116
7136
|
"isESM": true,
|
|
7117
7137
|
"relativePath": [
|
|
7118
7138
|
"dist",
|
|
7119
7139
|
"commands",
|
|
7120
|
-
"
|
|
7121
|
-
"
|
|
7140
|
+
"session",
|
|
7141
|
+
"cleanup.js"
|
|
7122
7142
|
]
|
|
7123
7143
|
},
|
|
7124
|
-
"
|
|
7144
|
+
"session:create": {
|
|
7125
7145
|
"aliases": [],
|
|
7126
|
-
"args": {
|
|
7127
|
-
|
|
7146
|
+
"args": {
|
|
7147
|
+
"name": {
|
|
7148
|
+
"description": "Name for the new tmux session",
|
|
7149
|
+
"name": "name",
|
|
7150
|
+
"required": true
|
|
7151
|
+
}
|
|
7152
|
+
},
|
|
7153
|
+
"description": "Create a new tmux session",
|
|
7128
7154
|
"examples": [
|
|
7129
|
-
"<%= config.bin %> <%= command.id %>",
|
|
7130
|
-
"<%= config.bin %> <%= command.id %>
|
|
7131
|
-
"<%= config.bin %> <%= command.id %>
|
|
7132
|
-
"<%= config.bin %> <%= command.id %> discord",
|
|
7133
|
-
"<%= config.bin %> <%= command.id %> issues",
|
|
7134
|
-
"<%= config.bin %> <%= command.id %> logs"
|
|
7155
|
+
"<%= config.bin %> <%= command.id %> my-session",
|
|
7156
|
+
"<%= config.bin %> <%= command.id %> my-session --command \"npm run dev\"",
|
|
7157
|
+
"<%= config.bin %> <%= command.id %> my-session --detach"
|
|
7135
7158
|
],
|
|
7136
7159
|
"flags": {
|
|
7137
7160
|
"json": {
|
|
@@ -7146,32 +7169,53 @@
|
|
|
7146
7169
|
"name": "machine",
|
|
7147
7170
|
"allowNo": false,
|
|
7148
7171
|
"type": "boolean"
|
|
7172
|
+
},
|
|
7173
|
+
"command": {
|
|
7174
|
+
"char": "c",
|
|
7175
|
+
"description": "Initial command to run in the session",
|
|
7176
|
+
"name": "command",
|
|
7177
|
+
"hasDynamicHelp": false,
|
|
7178
|
+
"multiple": false,
|
|
7179
|
+
"type": "option"
|
|
7180
|
+
},
|
|
7181
|
+
"detach": {
|
|
7182
|
+
"char": "d",
|
|
7183
|
+
"description": "Create session in detached mode (do not attach)",
|
|
7184
|
+
"name": "detach",
|
|
7185
|
+
"allowNo": false,
|
|
7186
|
+
"type": "boolean"
|
|
7149
7187
|
}
|
|
7150
7188
|
},
|
|
7151
7189
|
"hasDynamicHelp": false,
|
|
7152
7190
|
"hiddenAliases": [],
|
|
7153
|
-
"id": "
|
|
7191
|
+
"id": "session:create",
|
|
7154
7192
|
"pluginAlias": "@proletariat/cli",
|
|
7155
7193
|
"pluginName": "@proletariat/cli",
|
|
7156
7194
|
"pluginType": "core",
|
|
7157
7195
|
"strict": true,
|
|
7158
|
-
"enableJsonFlag": false,
|
|
7159
7196
|
"isESM": true,
|
|
7160
7197
|
"relativePath": [
|
|
7161
7198
|
"dist",
|
|
7162
7199
|
"commands",
|
|
7163
|
-
"
|
|
7164
|
-
"
|
|
7200
|
+
"session",
|
|
7201
|
+
"create.js"
|
|
7165
7202
|
]
|
|
7166
7203
|
},
|
|
7167
|
-
"
|
|
7204
|
+
"session:exec": {
|
|
7168
7205
|
"aliases": [],
|
|
7169
|
-
"args": {
|
|
7170
|
-
|
|
7206
|
+
"args": {
|
|
7207
|
+
"target": {
|
|
7208
|
+
"description": "Agent name or ticket ID",
|
|
7209
|
+
"name": "target",
|
|
7210
|
+
"required": true
|
|
7211
|
+
}
|
|
7212
|
+
},
|
|
7213
|
+
"description": "Run a command in an agent's worktree/container context",
|
|
7171
7214
|
"examples": [
|
|
7172
|
-
"<%= config.bin %>
|
|
7173
|
-
"<%= config.bin %>
|
|
7174
|
-
"<%= config.bin %>
|
|
7215
|
+
"<%= config.bin %> session exec altman -- git status",
|
|
7216
|
+
"<%= config.bin %> session exec TKT-123 -- gh pr view --json number,state",
|
|
7217
|
+
"<%= config.bin %> session exec altman -- ls -la",
|
|
7218
|
+
"<%= config.bin %> session exec altman --json -- git log --oneline -5"
|
|
7175
7219
|
],
|
|
7176
7220
|
"flags": {
|
|
7177
7221
|
"json": {
|
|
@@ -7187,37 +7231,43 @@
|
|
|
7187
7231
|
"allowNo": false,
|
|
7188
7232
|
"type": "boolean"
|
|
7189
7233
|
},
|
|
7190
|
-
"
|
|
7191
|
-
"
|
|
7192
|
-
"
|
|
7193
|
-
"
|
|
7194
|
-
"
|
|
7234
|
+
"timeout": {
|
|
7235
|
+
"char": "t",
|
|
7236
|
+
"description": "Command timeout in seconds",
|
|
7237
|
+
"name": "timeout",
|
|
7238
|
+
"default": 30,
|
|
7239
|
+
"hasDynamicHelp": false,
|
|
7240
|
+
"multiple": false,
|
|
7241
|
+
"type": "option"
|
|
7195
7242
|
}
|
|
7196
7243
|
},
|
|
7197
7244
|
"hasDynamicHelp": false,
|
|
7198
7245
|
"hiddenAliases": [],
|
|
7199
|
-
"id": "
|
|
7246
|
+
"id": "session:exec",
|
|
7200
7247
|
"pluginAlias": "@proletariat/cli",
|
|
7201
7248
|
"pluginName": "@proletariat/cli",
|
|
7202
7249
|
"pluginType": "core",
|
|
7203
|
-
"strict":
|
|
7204
|
-
"enableJsonFlag": false,
|
|
7250
|
+
"strict": false,
|
|
7205
7251
|
"isESM": true,
|
|
7206
7252
|
"relativePath": [
|
|
7207
7253
|
"dist",
|
|
7208
7254
|
"commands",
|
|
7209
|
-
"
|
|
7210
|
-
"
|
|
7255
|
+
"session",
|
|
7256
|
+
"exec.js"
|
|
7211
7257
|
]
|
|
7212
7258
|
},
|
|
7213
|
-
"
|
|
7259
|
+
"session:health": {
|
|
7214
7260
|
"aliases": [],
|
|
7215
7261
|
"args": {},
|
|
7216
|
-
"description": "
|
|
7262
|
+
"description": "Check health of running agent sessions, detect/recover hung agents, and auto-poke idle agents",
|
|
7217
7263
|
"examples": [
|
|
7218
|
-
"<%= config.bin %>
|
|
7219
|
-
"<%= config.bin %>
|
|
7220
|
-
"<%= config.bin %>
|
|
7264
|
+
"<%= config.bin %> session health",
|
|
7265
|
+
"<%= config.bin %> session health --fix",
|
|
7266
|
+
"<%= config.bin %> session health --poke-idle",
|
|
7267
|
+
"<%= config.bin %> session health --fix --poke-idle",
|
|
7268
|
+
"<%= config.bin %> session health --watch",
|
|
7269
|
+
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
7270
|
+
"<%= config.bin %> session health --watch --poke-idle"
|
|
7221
7271
|
],
|
|
7222
7272
|
"flags": {
|
|
7223
7273
|
"project": {
|
|
@@ -7241,16 +7291,44 @@
|
|
|
7241
7291
|
"allowNo": false,
|
|
7242
7292
|
"type": "boolean"
|
|
7243
7293
|
},
|
|
7244
|
-
"
|
|
7245
|
-
"description": "
|
|
7246
|
-
"name": "
|
|
7294
|
+
"fix": {
|
|
7295
|
+
"description": "Send Escape to hung agents to unstick them",
|
|
7296
|
+
"name": "fix",
|
|
7297
|
+
"allowNo": false,
|
|
7298
|
+
"type": "boolean"
|
|
7299
|
+
},
|
|
7300
|
+
"poke-idle": {
|
|
7301
|
+
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
7302
|
+
"name": "poke-idle",
|
|
7247
7303
|
"allowNo": false,
|
|
7248
7304
|
"type": "boolean"
|
|
7305
|
+
},
|
|
7306
|
+
"watch": {
|
|
7307
|
+
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
7308
|
+
"name": "watch",
|
|
7309
|
+
"allowNo": false,
|
|
7310
|
+
"type": "boolean"
|
|
7311
|
+
},
|
|
7312
|
+
"interval": {
|
|
7313
|
+
"description": "Watch polling interval in minutes",
|
|
7314
|
+
"name": "interval",
|
|
7315
|
+
"default": 5,
|
|
7316
|
+
"hasDynamicHelp": false,
|
|
7317
|
+
"multiple": false,
|
|
7318
|
+
"type": "option"
|
|
7319
|
+
},
|
|
7320
|
+
"threshold": {
|
|
7321
|
+
"description": "Minutes an agent must be hung/idle before auto-recovery in watch mode",
|
|
7322
|
+
"name": "threshold",
|
|
7323
|
+
"default": 10,
|
|
7324
|
+
"hasDynamicHelp": false,
|
|
7325
|
+
"multiple": false,
|
|
7326
|
+
"type": "option"
|
|
7249
7327
|
}
|
|
7250
7328
|
},
|
|
7251
7329
|
"hasDynamicHelp": false,
|
|
7252
7330
|
"hiddenAliases": [],
|
|
7253
|
-
"id": "
|
|
7331
|
+
"id": "session:health",
|
|
7254
7332
|
"pluginAlias": "@proletariat/cli",
|
|
7255
7333
|
"pluginName": "@proletariat/cli",
|
|
7256
7334
|
"pluginType": "core",
|
|
@@ -7259,34 +7337,21 @@
|
|
|
7259
7337
|
"relativePath": [
|
|
7260
7338
|
"dist",
|
|
7261
7339
|
"commands",
|
|
7262
|
-
"
|
|
7263
|
-
"
|
|
7340
|
+
"session",
|
|
7341
|
+
"health.js"
|
|
7264
7342
|
]
|
|
7265
7343
|
},
|
|
7266
|
-
"session
|
|
7344
|
+
"session": {
|
|
7267
7345
|
"aliases": [],
|
|
7268
|
-
"args": {
|
|
7269
|
-
|
|
7270
|
-
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
7271
|
-
"name": "session",
|
|
7272
|
-
"required": false
|
|
7273
|
-
}
|
|
7274
|
-
},
|
|
7275
|
-
"description": "Attach to an active agent session (DB-first: only attaches to tracked executions)",
|
|
7346
|
+
"args": {},
|
|
7347
|
+
"description": "Manage agent tmux sessions (list, attach, create, detach)",
|
|
7276
7348
|
"examples": [
|
|
7277
7349
|
"<%= config.bin %> <%= command.id %>",
|
|
7278
|
-
"<%= config.bin %> <%= command.id %>
|
|
7279
|
-
"<%= config.bin %> <%= command.id %>
|
|
7350
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
7351
|
+
"<%= config.bin %> <%= command.id %> attach TKT-347-implement",
|
|
7352
|
+
"<%= config.bin %> <%= command.id %> create my-session"
|
|
7280
7353
|
],
|
|
7281
7354
|
"flags": {
|
|
7282
|
-
"project": {
|
|
7283
|
-
"char": "P",
|
|
7284
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7285
|
-
"name": "project",
|
|
7286
|
-
"hasDynamicHelp": false,
|
|
7287
|
-
"multiple": false,
|
|
7288
|
-
"type": "option"
|
|
7289
|
-
},
|
|
7290
7355
|
"json": {
|
|
7291
7356
|
"description": "Output as JSON for AI agents/scripts",
|
|
7292
7357
|
"name": "json",
|
|
@@ -7299,34 +7364,11 @@
|
|
|
7299
7364
|
"name": "machine",
|
|
7300
7365
|
"allowNo": false,
|
|
7301
7366
|
"type": "boolean"
|
|
7302
|
-
},
|
|
7303
|
-
"new-tab": {
|
|
7304
|
-
"char": "n",
|
|
7305
|
-
"description": "Open in a new terminal tab (default: true)",
|
|
7306
|
-
"name": "new-tab",
|
|
7307
|
-
"allowNo": false,
|
|
7308
|
-
"type": "boolean"
|
|
7309
|
-
},
|
|
7310
|
-
"current-terminal": {
|
|
7311
|
-
"char": "c",
|
|
7312
|
-
"description": "Attach in current terminal instead of new tab",
|
|
7313
|
-
"name": "current-terminal",
|
|
7314
|
-
"allowNo": false,
|
|
7315
|
-
"type": "boolean"
|
|
7316
|
-
},
|
|
7317
|
-
"terminal": {
|
|
7318
|
-
"char": "t",
|
|
7319
|
-
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7320
|
-
"name": "terminal",
|
|
7321
|
-
"default": "iTerm",
|
|
7322
|
-
"hasDynamicHelp": false,
|
|
7323
|
-
"multiple": false,
|
|
7324
|
-
"type": "option"
|
|
7325
7367
|
}
|
|
7326
7368
|
},
|
|
7327
7369
|
"hasDynamicHelp": false,
|
|
7328
7370
|
"hiddenAliases": [],
|
|
7329
|
-
"id": "session
|
|
7371
|
+
"id": "session",
|
|
7330
7372
|
"pluginAlias": "@proletariat/cli",
|
|
7331
7373
|
"pluginName": "@proletariat/cli",
|
|
7332
7374
|
"pluginType": "core",
|
|
@@ -7336,18 +7378,24 @@
|
|
|
7336
7378
|
"dist",
|
|
7337
7379
|
"commands",
|
|
7338
7380
|
"session",
|
|
7339
|
-
"
|
|
7381
|
+
"index.js"
|
|
7340
7382
|
]
|
|
7341
7383
|
},
|
|
7342
|
-
"session:
|
|
7384
|
+
"session:inspect": {
|
|
7343
7385
|
"aliases": [],
|
|
7344
|
-
"args": {
|
|
7345
|
-
|
|
7386
|
+
"args": {
|
|
7387
|
+
"target": {
|
|
7388
|
+
"description": "Agent name or ticket ID",
|
|
7389
|
+
"name": "target",
|
|
7390
|
+
"required": true
|
|
7391
|
+
}
|
|
7392
|
+
},
|
|
7393
|
+
"description": "Comprehensive agent status inspection (git, PR, process, output) in one call",
|
|
7346
7394
|
"examples": [
|
|
7347
|
-
"<%= config.bin %> session
|
|
7348
|
-
"<%= config.bin %> session
|
|
7349
|
-
"<%= config.bin %> session
|
|
7350
|
-
"<%= config.bin %> session
|
|
7395
|
+
"<%= config.bin %> session inspect altman",
|
|
7396
|
+
"<%= config.bin %> session inspect TKT-123",
|
|
7397
|
+
"<%= config.bin %> session inspect altman --lines 50",
|
|
7398
|
+
"<%= config.bin %> session inspect altman --json"
|
|
7351
7399
|
],
|
|
7352
7400
|
"flags": {
|
|
7353
7401
|
"json": {
|
|
@@ -7363,31 +7411,19 @@
|
|
|
7363
7411
|
"allowNo": false,
|
|
7364
7412
|
"type": "boolean"
|
|
7365
7413
|
},
|
|
7366
|
-
"
|
|
7367
|
-
"char": "
|
|
7368
|
-
"description": "
|
|
7369
|
-
"name": "
|
|
7370
|
-
"
|
|
7371
|
-
"
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
"char": "f",
|
|
7375
|
-
"description": "Remove all agent containers, including those with active executions",
|
|
7376
|
-
"name": "force",
|
|
7377
|
-
"allowNo": false,
|
|
7378
|
-
"type": "boolean"
|
|
7379
|
-
},
|
|
7380
|
-
"yes": {
|
|
7381
|
-
"char": "y",
|
|
7382
|
-
"description": "Skip confirmation prompt when using --force",
|
|
7383
|
-
"name": "yes",
|
|
7384
|
-
"allowNo": false,
|
|
7385
|
-
"type": "boolean"
|
|
7414
|
+
"lines": {
|
|
7415
|
+
"char": "l",
|
|
7416
|
+
"description": "Number of output lines to include",
|
|
7417
|
+
"name": "lines",
|
|
7418
|
+
"default": 100,
|
|
7419
|
+
"hasDynamicHelp": false,
|
|
7420
|
+
"multiple": false,
|
|
7421
|
+
"type": "option"
|
|
7386
7422
|
}
|
|
7387
7423
|
},
|
|
7388
7424
|
"hasDynamicHelp": false,
|
|
7389
7425
|
"hiddenAliases": [],
|
|
7390
|
-
"id": "session:
|
|
7426
|
+
"id": "session:inspect",
|
|
7391
7427
|
"pluginAlias": "@proletariat/cli",
|
|
7392
7428
|
"pluginName": "@proletariat/cli",
|
|
7393
7429
|
"pluginType": "core",
|
|
@@ -7397,23 +7433,17 @@
|
|
|
7397
7433
|
"dist",
|
|
7398
7434
|
"commands",
|
|
7399
7435
|
"session",
|
|
7400
|
-
"
|
|
7436
|
+
"inspect.js"
|
|
7401
7437
|
]
|
|
7402
7438
|
},
|
|
7403
|
-
"session:
|
|
7439
|
+
"session:list": {
|
|
7404
7440
|
"aliases": [],
|
|
7405
|
-
"args": {
|
|
7406
|
-
|
|
7407
|
-
"description": "Name for the new tmux session",
|
|
7408
|
-
"name": "name",
|
|
7409
|
-
"required": true
|
|
7410
|
-
}
|
|
7411
|
-
},
|
|
7412
|
-
"description": "Create a new tmux session",
|
|
7441
|
+
"args": {},
|
|
7442
|
+
"description": "List active agent sessions (DB-first: shows tracked executions with runtime liveness)",
|
|
7413
7443
|
"examples": [
|
|
7414
|
-
"<%= config.bin %> <%= command.id %>
|
|
7415
|
-
"<%= config.bin %> <%= command.id %>
|
|
7416
|
-
"<%= config.bin %> <%= command.id %>
|
|
7444
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7445
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
7446
|
+
"<%= config.bin %> <%= command.id %> --orphans"
|
|
7417
7447
|
],
|
|
7418
7448
|
"flags": {
|
|
7419
7449
|
"json": {
|
|
@@ -7429,25 +7459,23 @@
|
|
|
7429
7459
|
"allowNo": false,
|
|
7430
7460
|
"type": "boolean"
|
|
7431
7461
|
},
|
|
7432
|
-
"
|
|
7433
|
-
"char": "
|
|
7434
|
-
"description": "
|
|
7435
|
-
"name": "
|
|
7436
|
-
"
|
|
7437
|
-
"
|
|
7438
|
-
"type": "option"
|
|
7462
|
+
"all": {
|
|
7463
|
+
"char": "a",
|
|
7464
|
+
"description": "Show all sessions including stale DB records (dead runtime)",
|
|
7465
|
+
"name": "all",
|
|
7466
|
+
"allowNo": false,
|
|
7467
|
+
"type": "boolean"
|
|
7439
7468
|
},
|
|
7440
|
-
"
|
|
7441
|
-
"
|
|
7442
|
-
"
|
|
7443
|
-
"name": "detach",
|
|
7469
|
+
"orphans": {
|
|
7470
|
+
"description": "Also show orphan tmux sessions not tracked in the DB (garbage to prune)",
|
|
7471
|
+
"name": "orphans",
|
|
7444
7472
|
"allowNo": false,
|
|
7445
7473
|
"type": "boolean"
|
|
7446
7474
|
}
|
|
7447
7475
|
},
|
|
7448
7476
|
"hasDynamicHelp": false,
|
|
7449
7477
|
"hiddenAliases": [],
|
|
7450
|
-
"id": "session:
|
|
7478
|
+
"id": "session:list",
|
|
7451
7479
|
"pluginAlias": "@proletariat/cli",
|
|
7452
7480
|
"pluginName": "@proletariat/cli",
|
|
7453
7481
|
"pluginType": "core",
|
|
@@ -7457,26 +7485,39 @@
|
|
|
7457
7485
|
"dist",
|
|
7458
7486
|
"commands",
|
|
7459
7487
|
"session",
|
|
7460
|
-
"
|
|
7488
|
+
"list.js"
|
|
7461
7489
|
]
|
|
7462
7490
|
},
|
|
7463
|
-
"session:
|
|
7491
|
+
"session:peek": {
|
|
7464
7492
|
"aliases": [],
|
|
7465
7493
|
"args": {
|
|
7466
7494
|
"target": {
|
|
7467
|
-
"description": "Agent name or
|
|
7495
|
+
"description": "Agent name, ticket ID (e.g. TKT-123), or execution ID (e.g. WORK-XXXXXXXX)",
|
|
7468
7496
|
"name": "target",
|
|
7469
|
-
"required":
|
|
7497
|
+
"required": false
|
|
7470
7498
|
}
|
|
7471
7499
|
},
|
|
7472
|
-
"description": "
|
|
7500
|
+
"description": "View agent tmux pane content without attaching (non-interactive)",
|
|
7473
7501
|
"examples": [
|
|
7474
|
-
"<%= config.bin %> session
|
|
7475
|
-
"<%= config.bin %> session
|
|
7476
|
-
"<%= config.bin %> session
|
|
7477
|
-
"<%= config.bin %> session
|
|
7502
|
+
"<%= config.bin %> session peek altman",
|
|
7503
|
+
"<%= config.bin %> session peek TKT-123",
|
|
7504
|
+
"<%= config.bin %> session peek WORK-ABCD1234",
|
|
7505
|
+
"<%= config.bin %> session peek altman --lines 100",
|
|
7506
|
+
"<%= config.bin %> session peek altman --full",
|
|
7507
|
+
"<%= config.bin %> session peek altman --follow",
|
|
7508
|
+
"<%= config.bin %> session peek altman --since 2025-01-01T12:00:00Z",
|
|
7509
|
+
"<%= config.bin %> session peek TKT-123 --json",
|
|
7510
|
+
"<%= config.bin %> session peek altman | grep error"
|
|
7478
7511
|
],
|
|
7479
7512
|
"flags": {
|
|
7513
|
+
"project": {
|
|
7514
|
+
"char": "P",
|
|
7515
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
7516
|
+
"name": "project",
|
|
7517
|
+
"hasDynamicHelp": false,
|
|
7518
|
+
"multiple": false,
|
|
7519
|
+
"type": "option"
|
|
7520
|
+
},
|
|
7480
7521
|
"json": {
|
|
7481
7522
|
"description": "Output as JSON for AI agents/scripts",
|
|
7482
7523
|
"name": "json",
|
|
@@ -7490,11 +7531,39 @@
|
|
|
7490
7531
|
"allowNo": false,
|
|
7491
7532
|
"type": "boolean"
|
|
7492
7533
|
},
|
|
7493
|
-
"
|
|
7494
|
-
"char": "
|
|
7495
|
-
"description": "
|
|
7496
|
-
"name": "
|
|
7497
|
-
"default":
|
|
7534
|
+
"lines": {
|
|
7535
|
+
"char": "l",
|
|
7536
|
+
"description": "Number of scrollback lines to capture",
|
|
7537
|
+
"name": "lines",
|
|
7538
|
+
"default": 200,
|
|
7539
|
+
"hasDynamicHelp": false,
|
|
7540
|
+
"multiple": false,
|
|
7541
|
+
"type": "option"
|
|
7542
|
+
},
|
|
7543
|
+
"full": {
|
|
7544
|
+
"description": "Capture entire scrollback buffer (up to 32768 lines)",
|
|
7545
|
+
"name": "full",
|
|
7546
|
+
"allowNo": false,
|
|
7547
|
+
"type": "boolean"
|
|
7548
|
+
},
|
|
7549
|
+
"since": {
|
|
7550
|
+
"description": "Filter output to lines after this timestamp (ISO 8601)",
|
|
7551
|
+
"name": "since",
|
|
7552
|
+
"hasDynamicHelp": false,
|
|
7553
|
+
"multiple": false,
|
|
7554
|
+
"type": "option"
|
|
7555
|
+
},
|
|
7556
|
+
"follow": {
|
|
7557
|
+
"char": "f",
|
|
7558
|
+
"description": "Stream output continuously (like tail -f)",
|
|
7559
|
+
"name": "follow",
|
|
7560
|
+
"allowNo": false,
|
|
7561
|
+
"type": "boolean"
|
|
7562
|
+
},
|
|
7563
|
+
"interval": {
|
|
7564
|
+
"description": "Polling interval in seconds for --follow mode",
|
|
7565
|
+
"name": "interval",
|
|
7566
|
+
"default": 2,
|
|
7498
7567
|
"hasDynamicHelp": false,
|
|
7499
7568
|
"multiple": false,
|
|
7500
7569
|
"type": "option"
|
|
@@ -7502,41 +7571,42 @@
|
|
|
7502
7571
|
},
|
|
7503
7572
|
"hasDynamicHelp": false,
|
|
7504
7573
|
"hiddenAliases": [],
|
|
7505
|
-
"id": "session:
|
|
7574
|
+
"id": "session:peek",
|
|
7506
7575
|
"pluginAlias": "@proletariat/cli",
|
|
7507
7576
|
"pluginName": "@proletariat/cli",
|
|
7508
7577
|
"pluginType": "core",
|
|
7509
|
-
"strict":
|
|
7578
|
+
"strict": true,
|
|
7510
7579
|
"isESM": true,
|
|
7511
7580
|
"relativePath": [
|
|
7512
7581
|
"dist",
|
|
7513
7582
|
"commands",
|
|
7514
7583
|
"session",
|
|
7515
|
-
"
|
|
7584
|
+
"peek.js"
|
|
7516
7585
|
]
|
|
7517
7586
|
},
|
|
7518
|
-
"session:
|
|
7587
|
+
"session:poke": {
|
|
7519
7588
|
"aliases": [],
|
|
7520
|
-
"args": {
|
|
7521
|
-
|
|
7589
|
+
"args": {
|
|
7590
|
+
"agent": {
|
|
7591
|
+
"description": "Agent name or ticket ID of the running agent",
|
|
7592
|
+
"name": "agent",
|
|
7593
|
+
"required": true
|
|
7594
|
+
},
|
|
7595
|
+
"message": {
|
|
7596
|
+
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
7597
|
+
"name": "message",
|
|
7598
|
+
"required": false
|
|
7599
|
+
}
|
|
7600
|
+
},
|
|
7601
|
+
"description": "Send a message to a running agent's Claude Code session",
|
|
7522
7602
|
"examples": [
|
|
7523
|
-
"<%= config.bin %> session
|
|
7524
|
-
"<%= config.bin %> session
|
|
7525
|
-
"<%= config.bin %> session
|
|
7526
|
-
"<%= config.bin %> session
|
|
7527
|
-
"<%= config.bin %> session
|
|
7528
|
-
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
7529
|
-
"<%= config.bin %> session health --watch --poke-idle"
|
|
7603
|
+
"<%= config.bin %> session poke altman \"Please focus on the tests first\"",
|
|
7604
|
+
"<%= config.bin %> session poke TKT-123 \"Add error handling for edge cases\"",
|
|
7605
|
+
"<%= config.bin %> session poke altman --file prompt.md",
|
|
7606
|
+
"<%= config.bin %> session poke altman \"Run the tests\" --wait --timeout 60",
|
|
7607
|
+
"echo \"multi-line message\" | <%= config.bin %> session poke altman -"
|
|
7530
7608
|
],
|
|
7531
7609
|
"flags": {
|
|
7532
|
-
"project": {
|
|
7533
|
-
"char": "P",
|
|
7534
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7535
|
-
"name": "project",
|
|
7536
|
-
"hasDynamicHelp": false,
|
|
7537
|
-
"multiple": false,
|
|
7538
|
-
"type": "option"
|
|
7539
|
-
},
|
|
7540
7610
|
"json": {
|
|
7541
7611
|
"description": "Output as JSON for AI agents/scripts",
|
|
7542
7612
|
"name": "json",
|
|
@@ -7550,36 +7620,25 @@
|
|
|
7550
7620
|
"allowNo": false,
|
|
7551
7621
|
"type": "boolean"
|
|
7552
7622
|
},
|
|
7553
|
-
"
|
|
7554
|
-
"
|
|
7555
|
-
"
|
|
7556
|
-
"
|
|
7557
|
-
"type": "boolean"
|
|
7558
|
-
},
|
|
7559
|
-
"poke-idle": {
|
|
7560
|
-
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
7561
|
-
"name": "poke-idle",
|
|
7562
|
-
"allowNo": false,
|
|
7563
|
-
"type": "boolean"
|
|
7564
|
-
},
|
|
7565
|
-
"watch": {
|
|
7566
|
-
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
7567
|
-
"name": "watch",
|
|
7568
|
-
"allowNo": false,
|
|
7569
|
-
"type": "boolean"
|
|
7570
|
-
},
|
|
7571
|
-
"interval": {
|
|
7572
|
-
"description": "Watch polling interval in minutes",
|
|
7573
|
-
"name": "interval",
|
|
7574
|
-
"default": 5,
|
|
7623
|
+
"file": {
|
|
7624
|
+
"char": "F",
|
|
7625
|
+
"description": "Read message from a file (supports multi-line)",
|
|
7626
|
+
"name": "file",
|
|
7575
7627
|
"hasDynamicHelp": false,
|
|
7576
7628
|
"multiple": false,
|
|
7577
7629
|
"type": "option"
|
|
7578
7630
|
},
|
|
7579
|
-
"
|
|
7580
|
-
"
|
|
7581
|
-
"
|
|
7582
|
-
"
|
|
7631
|
+
"wait": {
|
|
7632
|
+
"char": "w",
|
|
7633
|
+
"description": "Wait for response after sending (capture output after message is sent)",
|
|
7634
|
+
"name": "wait",
|
|
7635
|
+
"allowNo": false,
|
|
7636
|
+
"type": "boolean"
|
|
7637
|
+
},
|
|
7638
|
+
"timeout": {
|
|
7639
|
+
"description": "Timeout in seconds for --wait mode",
|
|
7640
|
+
"name": "timeout",
|
|
7641
|
+
"default": 120,
|
|
7583
7642
|
"hasDynamicHelp": false,
|
|
7584
7643
|
"multiple": false,
|
|
7585
7644
|
"type": "option"
|
|
@@ -7587,7 +7646,7 @@
|
|
|
7587
7646
|
},
|
|
7588
7647
|
"hasDynamicHelp": false,
|
|
7589
7648
|
"hiddenAliases": [],
|
|
7590
|
-
"id": "session:
|
|
7649
|
+
"id": "session:poke",
|
|
7591
7650
|
"pluginAlias": "@proletariat/cli",
|
|
7592
7651
|
"pluginName": "@proletariat/cli",
|
|
7593
7652
|
"pluginType": "core",
|
|
@@ -7597,18 +7656,18 @@
|
|
|
7597
7656
|
"dist",
|
|
7598
7657
|
"commands",
|
|
7599
7658
|
"session",
|
|
7600
|
-
"
|
|
7659
|
+
"poke.js"
|
|
7601
7660
|
]
|
|
7602
7661
|
},
|
|
7603
|
-
"session": {
|
|
7662
|
+
"session:prune": {
|
|
7604
7663
|
"aliases": [],
|
|
7605
7664
|
"args": {},
|
|
7606
|
-
"description": "
|
|
7665
|
+
"description": "Clean up stale sessions, orphan tmux sessions, dead Docker containers, and idle ephemeral agents",
|
|
7607
7666
|
"examples": [
|
|
7608
|
-
"<%= config.bin %>
|
|
7609
|
-
"<%= config.bin %>
|
|
7610
|
-
"<%= config.bin %>
|
|
7611
|
-
"<%= config.bin %>
|
|
7667
|
+
"<%= config.bin %> session prune",
|
|
7668
|
+
"<%= config.bin %> session prune --dry-run",
|
|
7669
|
+
"<%= config.bin %> session prune --force",
|
|
7670
|
+
"<%= config.bin %> session prune --age 24"
|
|
7612
7671
|
],
|
|
7613
7672
|
"flags": {
|
|
7614
7673
|
"json": {
|
|
@@ -7623,58 +7682,32 @@
|
|
|
7623
7682
|
"name": "machine",
|
|
7624
7683
|
"allowNo": false,
|
|
7625
7684
|
"type": "boolean"
|
|
7626
|
-
}
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
"pluginAlias": "@proletariat/cli",
|
|
7632
|
-
"pluginName": "@proletariat/cli",
|
|
7633
|
-
"pluginType": "core",
|
|
7634
|
-
"strict": true,
|
|
7635
|
-
"isESM": true,
|
|
7636
|
-
"relativePath": [
|
|
7637
|
-
"dist",
|
|
7638
|
-
"commands",
|
|
7639
|
-
"session",
|
|
7640
|
-
"index.js"
|
|
7641
|
-
]
|
|
7642
|
-
},
|
|
7643
|
-
"session:inspect": {
|
|
7644
|
-
"aliases": [],
|
|
7645
|
-
"args": {
|
|
7646
|
-
"target": {
|
|
7647
|
-
"description": "Agent name or ticket ID",
|
|
7648
|
-
"name": "target",
|
|
7649
|
-
"required": true
|
|
7650
|
-
}
|
|
7651
|
-
},
|
|
7652
|
-
"description": "Comprehensive agent status inspection (git, PR, process, output) in one call",
|
|
7653
|
-
"examples": [
|
|
7654
|
-
"<%= config.bin %> session inspect altman",
|
|
7655
|
-
"<%= config.bin %> session inspect TKT-123",
|
|
7656
|
-
"<%= config.bin %> session inspect altman --lines 50",
|
|
7657
|
-
"<%= config.bin %> session inspect altman --json"
|
|
7658
|
-
],
|
|
7659
|
-
"flags": {
|
|
7660
|
-
"json": {
|
|
7661
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
7662
|
-
"name": "json",
|
|
7685
|
+
},
|
|
7686
|
+
"dry-run": {
|
|
7687
|
+
"char": "d",
|
|
7688
|
+
"description": "Show what would be pruned without actually doing it",
|
|
7689
|
+
"name": "dry-run",
|
|
7663
7690
|
"allowNo": false,
|
|
7664
7691
|
"type": "boolean"
|
|
7665
7692
|
},
|
|
7666
|
-
"
|
|
7667
|
-
"char": "
|
|
7668
|
-
"description": "
|
|
7669
|
-
"name": "
|
|
7693
|
+
"force": {
|
|
7694
|
+
"char": "f",
|
|
7695
|
+
"description": "Force cleanup even if agents have uncommitted/unpushed work",
|
|
7696
|
+
"name": "force",
|
|
7670
7697
|
"allowNo": false,
|
|
7671
7698
|
"type": "boolean"
|
|
7672
7699
|
},
|
|
7673
|
-
"
|
|
7674
|
-
"char": "
|
|
7675
|
-
"description": "
|
|
7676
|
-
"name": "
|
|
7677
|
-
"
|
|
7700
|
+
"yes": {
|
|
7701
|
+
"char": "y",
|
|
7702
|
+
"description": "Skip confirmation prompt",
|
|
7703
|
+
"name": "yes",
|
|
7704
|
+
"allowNo": false,
|
|
7705
|
+
"type": "boolean"
|
|
7706
|
+
},
|
|
7707
|
+
"age": {
|
|
7708
|
+
"description": "Only prune sessions/agents idle for more than N hours (default: 0 = all idle)",
|
|
7709
|
+
"name": "age",
|
|
7710
|
+
"default": 0,
|
|
7678
7711
|
"hasDynamicHelp": false,
|
|
7679
7712
|
"multiple": false,
|
|
7680
7713
|
"type": "option"
|
|
@@ -7682,7 +7715,7 @@
|
|
|
7682
7715
|
},
|
|
7683
7716
|
"hasDynamicHelp": false,
|
|
7684
7717
|
"hiddenAliases": [],
|
|
7685
|
-
"id": "session:
|
|
7718
|
+
"id": "session:prune",
|
|
7686
7719
|
"pluginAlias": "@proletariat/cli",
|
|
7687
7720
|
"pluginName": "@proletariat/cli",
|
|
7688
7721
|
"pluginType": "core",
|
|
@@ -7692,17 +7725,17 @@
|
|
|
7692
7725
|
"dist",
|
|
7693
7726
|
"commands",
|
|
7694
7727
|
"session",
|
|
7695
|
-
"
|
|
7728
|
+
"prune.js"
|
|
7696
7729
|
]
|
|
7697
7730
|
},
|
|
7698
|
-
"session:
|
|
7731
|
+
"session:report": {
|
|
7699
7732
|
"aliases": [],
|
|
7700
7733
|
"args": {},
|
|
7701
|
-
"description": "
|
|
7734
|
+
"description": "Report agent session lifecycle events and trigger cleanup",
|
|
7702
7735
|
"examples": [
|
|
7703
|
-
"<%= config.bin %>
|
|
7704
|
-
"<%= config.bin %>
|
|
7705
|
-
"<%= config.bin %>
|
|
7736
|
+
"<%= config.bin %> session report --agent bold-turing --status exited",
|
|
7737
|
+
"<%= config.bin %> session report --agent bold-turing --status completed",
|
|
7738
|
+
"<%= config.bin %> session report --agent bold-turing --status errored"
|
|
7706
7739
|
],
|
|
7707
7740
|
"flags": {
|
|
7708
7741
|
"json": {
|
|
@@ -7718,23 +7751,32 @@
|
|
|
7718
7751
|
"allowNo": false,
|
|
7719
7752
|
"type": "boolean"
|
|
7720
7753
|
},
|
|
7721
|
-
"
|
|
7722
|
-
"
|
|
7723
|
-
"
|
|
7724
|
-
"
|
|
7725
|
-
"
|
|
7726
|
-
"
|
|
7754
|
+
"agent": {
|
|
7755
|
+
"description": "Agent name",
|
|
7756
|
+
"name": "agent",
|
|
7757
|
+
"required": true,
|
|
7758
|
+
"hasDynamicHelp": false,
|
|
7759
|
+
"multiple": false,
|
|
7760
|
+
"type": "option"
|
|
7727
7761
|
},
|
|
7728
|
-
"
|
|
7729
|
-
"description": "
|
|
7730
|
-
"name": "
|
|
7731
|
-
"
|
|
7732
|
-
"
|
|
7762
|
+
"status": {
|
|
7763
|
+
"description": "Session status (started, completed, errored, exited)",
|
|
7764
|
+
"name": "status",
|
|
7765
|
+
"required": true,
|
|
7766
|
+
"hasDynamicHelp": false,
|
|
7767
|
+
"multiple": false,
|
|
7768
|
+
"options": [
|
|
7769
|
+
"started",
|
|
7770
|
+
"completed",
|
|
7771
|
+
"errored",
|
|
7772
|
+
"exited"
|
|
7773
|
+
],
|
|
7774
|
+
"type": "option"
|
|
7733
7775
|
}
|
|
7734
7776
|
},
|
|
7735
7777
|
"hasDynamicHelp": false,
|
|
7736
7778
|
"hiddenAliases": [],
|
|
7737
|
-
"id": "session:
|
|
7779
|
+
"id": "session:report",
|
|
7738
7780
|
"pluginAlias": "@proletariat/cli",
|
|
7739
7781
|
"pluginName": "@proletariat/cli",
|
|
7740
7782
|
"pluginType": "core",
|
|
@@ -7744,39 +7786,27 @@
|
|
|
7744
7786
|
"dist",
|
|
7745
7787
|
"commands",
|
|
7746
7788
|
"session",
|
|
7747
|
-
"
|
|
7789
|
+
"report.js"
|
|
7748
7790
|
]
|
|
7749
7791
|
},
|
|
7750
|
-
"session:
|
|
7792
|
+
"session:restart": {
|
|
7751
7793
|
"aliases": [],
|
|
7752
7794
|
"args": {
|
|
7753
7795
|
"target": {
|
|
7754
|
-
"description": "Agent name
|
|
7796
|
+
"description": "Agent name or ticket ID",
|
|
7755
7797
|
"name": "target",
|
|
7756
|
-
"required":
|
|
7798
|
+
"required": true
|
|
7757
7799
|
}
|
|
7758
7800
|
},
|
|
7759
|
-
"description": "
|
|
7801
|
+
"description": "Gracefully restart a stuck or completed agent session",
|
|
7760
7802
|
"examples": [
|
|
7761
|
-
"<%= config.bin %> session
|
|
7762
|
-
"<%= config.bin %> session
|
|
7763
|
-
"<%= config.bin %> session
|
|
7764
|
-
"<%= config.bin %> session
|
|
7765
|
-
"<%= config.bin %> session
|
|
7766
|
-
"<%= config.bin %> session peek altman --follow",
|
|
7767
|
-
"<%= config.bin %> session peek altman --since 2025-01-01T12:00:00Z",
|
|
7768
|
-
"<%= config.bin %> session peek TKT-123 --json",
|
|
7769
|
-
"<%= config.bin %> session peek altman | grep error"
|
|
7803
|
+
"<%= config.bin %> session restart altman",
|
|
7804
|
+
"<%= config.bin %> session restart TKT-123",
|
|
7805
|
+
"<%= config.bin %> session restart altman --fresh",
|
|
7806
|
+
"<%= config.bin %> session restart altman --resume",
|
|
7807
|
+
"<%= config.bin %> session restart altman --timeout 30"
|
|
7770
7808
|
],
|
|
7771
7809
|
"flags": {
|
|
7772
|
-
"project": {
|
|
7773
|
-
"char": "P",
|
|
7774
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7775
|
-
"name": "project",
|
|
7776
|
-
"hasDynamicHelp": false,
|
|
7777
|
-
"multiple": false,
|
|
7778
|
-
"type": "option"
|
|
7779
|
-
},
|
|
7780
7810
|
"json": {
|
|
7781
7811
|
"description": "Output as JSON for AI agents/scripts",
|
|
7782
7812
|
"name": "json",
|
|
@@ -7790,39 +7820,28 @@
|
|
|
7790
7820
|
"allowNo": false,
|
|
7791
7821
|
"type": "boolean"
|
|
7792
7822
|
},
|
|
7793
|
-
"
|
|
7794
|
-
"
|
|
7795
|
-
"
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
"
|
|
7799
|
-
"multiple": false,
|
|
7800
|
-
"type": "option"
|
|
7801
|
-
},
|
|
7802
|
-
"full": {
|
|
7803
|
-
"description": "Capture entire scrollback buffer (up to 32768 lines)",
|
|
7804
|
-
"name": "full",
|
|
7823
|
+
"fresh": {
|
|
7824
|
+
"description": "Reset worktree to branch HEAD before restarting",
|
|
7825
|
+
"exclusive": [
|
|
7826
|
+
"resume"
|
|
7827
|
+
],
|
|
7828
|
+
"name": "fresh",
|
|
7805
7829
|
"allowNo": false,
|
|
7806
7830
|
"type": "boolean"
|
|
7807
7831
|
},
|
|
7808
|
-
"
|
|
7809
|
-
"description": "
|
|
7810
|
-
"
|
|
7811
|
-
|
|
7812
|
-
|
|
7813
|
-
"
|
|
7814
|
-
},
|
|
7815
|
-
"follow": {
|
|
7816
|
-
"char": "f",
|
|
7817
|
-
"description": "Stream output continuously (like tail -f)",
|
|
7818
|
-
"name": "follow",
|
|
7832
|
+
"resume": {
|
|
7833
|
+
"description": "Continue from where the agent left off (pass --resume flag to Claude Code)",
|
|
7834
|
+
"exclusive": [
|
|
7835
|
+
"fresh"
|
|
7836
|
+
],
|
|
7837
|
+
"name": "resume",
|
|
7819
7838
|
"allowNo": false,
|
|
7820
7839
|
"type": "boolean"
|
|
7821
7840
|
},
|
|
7822
|
-
"
|
|
7823
|
-
"description": "
|
|
7824
|
-
"name": "
|
|
7825
|
-
"default":
|
|
7841
|
+
"timeout": {
|
|
7842
|
+
"description": "Seconds to wait for clean exit before force restart",
|
|
7843
|
+
"name": "timeout",
|
|
7844
|
+
"default": 15,
|
|
7826
7845
|
"hasDynamicHelp": false,
|
|
7827
7846
|
"multiple": false,
|
|
7828
7847
|
"type": "option"
|
|
@@ -7830,7 +7849,7 @@
|
|
|
7830
7849
|
},
|
|
7831
7850
|
"hasDynamicHelp": false,
|
|
7832
7851
|
"hiddenAliases": [],
|
|
7833
|
-
"id": "session:
|
|
7852
|
+
"id": "session:restart",
|
|
7834
7853
|
"pluginAlias": "@proletariat/cli",
|
|
7835
7854
|
"pluginName": "@proletariat/cli",
|
|
7836
7855
|
"pluginType": "core",
|
|
@@ -7840,30 +7859,19 @@
|
|
|
7840
7859
|
"dist",
|
|
7841
7860
|
"commands",
|
|
7842
7861
|
"session",
|
|
7843
|
-
"
|
|
7862
|
+
"restart.js"
|
|
7844
7863
|
]
|
|
7845
7864
|
},
|
|
7846
|
-
"session:
|
|
7865
|
+
"session:watch": {
|
|
7847
7866
|
"aliases": [],
|
|
7848
|
-
"args": {
|
|
7849
|
-
|
|
7850
|
-
"description": "Agent name or ticket ID of the running agent",
|
|
7851
|
-
"name": "agent",
|
|
7852
|
-
"required": true
|
|
7853
|
-
},
|
|
7854
|
-
"message": {
|
|
7855
|
-
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
7856
|
-
"name": "message",
|
|
7857
|
-
"required": false
|
|
7858
|
-
}
|
|
7859
|
-
},
|
|
7860
|
-
"description": "Send a message to a running agent's Claude Code session",
|
|
7867
|
+
"args": {},
|
|
7868
|
+
"description": "Watch agent sessions for heartbeat timeouts, tmux server crashes, and auto-recover",
|
|
7861
7869
|
"examples": [
|
|
7862
|
-
"<%= config.bin %> session
|
|
7863
|
-
"<%= config.bin %> session
|
|
7864
|
-
"<%= config.bin %> session
|
|
7865
|
-
"<%= config.bin %> session
|
|
7866
|
-
"
|
|
7870
|
+
"<%= config.bin %> session watch",
|
|
7871
|
+
"<%= config.bin %> session watch --interval 3 --timeout 10",
|
|
7872
|
+
"<%= config.bin %> session watch --no-kill",
|
|
7873
|
+
"<%= config.bin %> session watch --no-recover",
|
|
7874
|
+
"<%= config.bin %> session watch --once"
|
|
7867
7875
|
],
|
|
7868
7876
|
"flags": {
|
|
7869
7877
|
"json": {
|
|
@@ -7879,33 +7887,44 @@
|
|
|
7879
7887
|
"allowNo": false,
|
|
7880
7888
|
"type": "boolean"
|
|
7881
7889
|
},
|
|
7882
|
-
"
|
|
7883
|
-
"
|
|
7884
|
-
"
|
|
7885
|
-
"
|
|
7890
|
+
"interval": {
|
|
7891
|
+
"description": "Poll interval in minutes",
|
|
7892
|
+
"name": "interval",
|
|
7893
|
+
"default": 5,
|
|
7886
7894
|
"hasDynamicHelp": false,
|
|
7887
7895
|
"multiple": false,
|
|
7888
7896
|
"type": "option"
|
|
7889
7897
|
},
|
|
7890
|
-
"wait": {
|
|
7891
|
-
"char": "w",
|
|
7892
|
-
"description": "Wait for response after sending (capture output after message is sent)",
|
|
7893
|
-
"name": "wait",
|
|
7894
|
-
"allowNo": false,
|
|
7895
|
-
"type": "boolean"
|
|
7896
|
-
},
|
|
7897
7898
|
"timeout": {
|
|
7898
|
-
"description": "
|
|
7899
|
+
"description": "Heartbeat timeout in minutes before marking agent as stale",
|
|
7899
7900
|
"name": "timeout",
|
|
7900
|
-
"default":
|
|
7901
|
+
"default": 15,
|
|
7901
7902
|
"hasDynamicHelp": false,
|
|
7902
7903
|
"multiple": false,
|
|
7903
7904
|
"type": "option"
|
|
7905
|
+
},
|
|
7906
|
+
"kill": {
|
|
7907
|
+
"description": "Auto-kill containers for stale agents",
|
|
7908
|
+
"name": "kill",
|
|
7909
|
+
"allowNo": true,
|
|
7910
|
+
"type": "boolean"
|
|
7911
|
+
},
|
|
7912
|
+
"recover": {
|
|
7913
|
+
"description": "Auto-recover agent sessions after tmux server crash",
|
|
7914
|
+
"name": "recover",
|
|
7915
|
+
"allowNo": true,
|
|
7916
|
+
"type": "boolean"
|
|
7917
|
+
},
|
|
7918
|
+
"once": {
|
|
7919
|
+
"description": "Run a single check and exit (no polling loop)",
|
|
7920
|
+
"name": "once",
|
|
7921
|
+
"allowNo": false,
|
|
7922
|
+
"type": "boolean"
|
|
7904
7923
|
}
|
|
7905
7924
|
},
|
|
7906
7925
|
"hasDynamicHelp": false,
|
|
7907
7926
|
"hiddenAliases": [],
|
|
7908
|
-
"id": "session:
|
|
7927
|
+
"id": "session:watch",
|
|
7909
7928
|
"pluginAlias": "@proletariat/cli",
|
|
7910
7929
|
"pluginName": "@proletariat/cli",
|
|
7911
7930
|
"pluginType": "core",
|
|
@@ -7915,18 +7934,16 @@
|
|
|
7915
7934
|
"dist",
|
|
7916
7935
|
"commands",
|
|
7917
7936
|
"session",
|
|
7918
|
-
"
|
|
7937
|
+
"watch.js"
|
|
7919
7938
|
]
|
|
7920
7939
|
},
|
|
7921
|
-
"
|
|
7940
|
+
"support:book": {
|
|
7922
7941
|
"aliases": [],
|
|
7923
7942
|
"args": {},
|
|
7924
|
-
"description": "
|
|
7943
|
+
"description": "Book a call for support",
|
|
7925
7944
|
"examples": [
|
|
7926
|
-
"<%= config.bin %>
|
|
7927
|
-
"<%= config.bin %>
|
|
7928
|
-
"<%= config.bin %> session prune --force",
|
|
7929
|
-
"<%= config.bin %> session prune --age 24"
|
|
7945
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7946
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7930
7947
|
],
|
|
7931
7948
|
"flags": {
|
|
7932
7949
|
"json": {
|
|
@@ -7941,60 +7958,31 @@
|
|
|
7941
7958
|
"name": "machine",
|
|
7942
7959
|
"allowNo": false,
|
|
7943
7960
|
"type": "boolean"
|
|
7944
|
-
},
|
|
7945
|
-
"dry-run": {
|
|
7946
|
-
"char": "d",
|
|
7947
|
-
"description": "Show what would be pruned without actually doing it",
|
|
7948
|
-
"name": "dry-run",
|
|
7949
|
-
"allowNo": false,
|
|
7950
|
-
"type": "boolean"
|
|
7951
|
-
},
|
|
7952
|
-
"force": {
|
|
7953
|
-
"char": "f",
|
|
7954
|
-
"description": "Force cleanup even if agents have uncommitted/unpushed work",
|
|
7955
|
-
"name": "force",
|
|
7956
|
-
"allowNo": false,
|
|
7957
|
-
"type": "boolean"
|
|
7958
|
-
},
|
|
7959
|
-
"yes": {
|
|
7960
|
-
"char": "y",
|
|
7961
|
-
"description": "Skip confirmation prompt",
|
|
7962
|
-
"name": "yes",
|
|
7963
|
-
"allowNo": false,
|
|
7964
|
-
"type": "boolean"
|
|
7965
|
-
},
|
|
7966
|
-
"age": {
|
|
7967
|
-
"description": "Only prune sessions/agents idle for more than N hours (default: 0 = all idle)",
|
|
7968
|
-
"name": "age",
|
|
7969
|
-
"default": 0,
|
|
7970
|
-
"hasDynamicHelp": false,
|
|
7971
|
-
"multiple": false,
|
|
7972
|
-
"type": "option"
|
|
7973
7961
|
}
|
|
7974
7962
|
},
|
|
7975
7963
|
"hasDynamicHelp": false,
|
|
7976
7964
|
"hiddenAliases": [],
|
|
7977
|
-
"id": "
|
|
7965
|
+
"id": "support:book",
|
|
7978
7966
|
"pluginAlias": "@proletariat/cli",
|
|
7979
7967
|
"pluginName": "@proletariat/cli",
|
|
7980
7968
|
"pluginType": "core",
|
|
7981
7969
|
"strict": true,
|
|
7970
|
+
"enableJsonFlag": false,
|
|
7982
7971
|
"isESM": true,
|
|
7983
7972
|
"relativePath": [
|
|
7984
7973
|
"dist",
|
|
7985
7974
|
"commands",
|
|
7986
|
-
"
|
|
7987
|
-
"
|
|
7975
|
+
"support",
|
|
7976
|
+
"book.js"
|
|
7988
7977
|
]
|
|
7989
7978
|
},
|
|
7990
|
-
"
|
|
7979
|
+
"support:discord": {
|
|
7991
7980
|
"aliases": [],
|
|
7992
7981
|
"args": {},
|
|
7993
|
-
"description": "
|
|
7982
|
+
"description": "Join the Discord community",
|
|
7994
7983
|
"examples": [
|
|
7995
|
-
"<%= config.bin %>
|
|
7996
|
-
"<%= config.bin %>
|
|
7997
|
-
"<%= config.bin %> session report --agent bold-turing --status errored"
|
|
7984
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7985
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7998
7986
|
],
|
|
7999
7987
|
"flags": {
|
|
8000
7988
|
"json": {
|
|
@@ -8009,61 +7997,31 @@
|
|
|
8009
7997
|
"name": "machine",
|
|
8010
7998
|
"allowNo": false,
|
|
8011
7999
|
"type": "boolean"
|
|
8012
|
-
},
|
|
8013
|
-
"agent": {
|
|
8014
|
-
"description": "Agent name",
|
|
8015
|
-
"name": "agent",
|
|
8016
|
-
"required": true,
|
|
8017
|
-
"hasDynamicHelp": false,
|
|
8018
|
-
"multiple": false,
|
|
8019
|
-
"type": "option"
|
|
8020
|
-
},
|
|
8021
|
-
"status": {
|
|
8022
|
-
"description": "Session status (started, completed, errored, exited)",
|
|
8023
|
-
"name": "status",
|
|
8024
|
-
"required": true,
|
|
8025
|
-
"hasDynamicHelp": false,
|
|
8026
|
-
"multiple": false,
|
|
8027
|
-
"options": [
|
|
8028
|
-
"started",
|
|
8029
|
-
"completed",
|
|
8030
|
-
"errored",
|
|
8031
|
-
"exited"
|
|
8032
|
-
],
|
|
8033
|
-
"type": "option"
|
|
8034
8000
|
}
|
|
8035
8001
|
},
|
|
8036
8002
|
"hasDynamicHelp": false,
|
|
8037
8003
|
"hiddenAliases": [],
|
|
8038
|
-
"id": "
|
|
8004
|
+
"id": "support:discord",
|
|
8039
8005
|
"pluginAlias": "@proletariat/cli",
|
|
8040
8006
|
"pluginName": "@proletariat/cli",
|
|
8041
8007
|
"pluginType": "core",
|
|
8042
8008
|
"strict": true,
|
|
8009
|
+
"enableJsonFlag": false,
|
|
8043
8010
|
"isESM": true,
|
|
8044
8011
|
"relativePath": [
|
|
8045
8012
|
"dist",
|
|
8046
8013
|
"commands",
|
|
8047
|
-
"
|
|
8048
|
-
"
|
|
8014
|
+
"support",
|
|
8015
|
+
"discord.js"
|
|
8049
8016
|
]
|
|
8050
8017
|
},
|
|
8051
|
-
"
|
|
8018
|
+
"support:docs": {
|
|
8052
8019
|
"aliases": [],
|
|
8053
|
-
"args": {
|
|
8054
|
-
|
|
8055
|
-
"description": "Agent name or ticket ID",
|
|
8056
|
-
"name": "target",
|
|
8057
|
-
"required": true
|
|
8058
|
-
}
|
|
8059
|
-
},
|
|
8060
|
-
"description": "Gracefully restart a stuck or completed agent session",
|
|
8020
|
+
"args": {},
|
|
8021
|
+
"description": "Open documentation in browser",
|
|
8061
8022
|
"examples": [
|
|
8062
|
-
"<%= config.bin %>
|
|
8063
|
-
"<%= config.bin %>
|
|
8064
|
-
"<%= config.bin %> session restart altman --fresh",
|
|
8065
|
-
"<%= config.bin %> session restart altman --resume",
|
|
8066
|
-
"<%= config.bin %> session restart altman --timeout 30"
|
|
8023
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8024
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8067
8025
|
],
|
|
8068
8026
|
"flags": {
|
|
8069
8027
|
"json": {
|
|
@@ -8078,59 +8036,75 @@
|
|
|
8078
8036
|
"name": "machine",
|
|
8079
8037
|
"allowNo": false,
|
|
8080
8038
|
"type": "boolean"
|
|
8081
|
-
}
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8086
|
-
|
|
8087
|
-
|
|
8039
|
+
}
|
|
8040
|
+
},
|
|
8041
|
+
"hasDynamicHelp": false,
|
|
8042
|
+
"hiddenAliases": [],
|
|
8043
|
+
"id": "support:docs",
|
|
8044
|
+
"pluginAlias": "@proletariat/cli",
|
|
8045
|
+
"pluginName": "@proletariat/cli",
|
|
8046
|
+
"pluginType": "core",
|
|
8047
|
+
"strict": true,
|
|
8048
|
+
"enableJsonFlag": false,
|
|
8049
|
+
"isESM": true,
|
|
8050
|
+
"relativePath": [
|
|
8051
|
+
"dist",
|
|
8052
|
+
"commands",
|
|
8053
|
+
"support",
|
|
8054
|
+
"docs.js"
|
|
8055
|
+
]
|
|
8056
|
+
},
|
|
8057
|
+
"support": {
|
|
8058
|
+
"aliases": [],
|
|
8059
|
+
"args": {},
|
|
8060
|
+
"description": "Get help, troubleshoot, and connect with the community",
|
|
8061
|
+
"examples": [
|
|
8062
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8063
|
+
"<%= config.bin %> <%= command.id %> book",
|
|
8064
|
+
"<%= config.bin %> <%= command.id %> docs",
|
|
8065
|
+
"<%= config.bin %> <%= command.id %> discord",
|
|
8066
|
+
"<%= config.bin %> <%= command.id %> issues",
|
|
8067
|
+
"<%= config.bin %> <%= command.id %> logs"
|
|
8068
|
+
],
|
|
8069
|
+
"flags": {
|
|
8070
|
+
"json": {
|
|
8071
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8072
|
+
"name": "json",
|
|
8088
8073
|
"allowNo": false,
|
|
8089
8074
|
"type": "boolean"
|
|
8090
8075
|
},
|
|
8091
|
-
"
|
|
8092
|
-
"
|
|
8093
|
-
"
|
|
8094
|
-
|
|
8095
|
-
],
|
|
8096
|
-
"name": "resume",
|
|
8076
|
+
"machine": {
|
|
8077
|
+
"char": "m",
|
|
8078
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8079
|
+
"name": "machine",
|
|
8097
8080
|
"allowNo": false,
|
|
8098
8081
|
"type": "boolean"
|
|
8099
|
-
},
|
|
8100
|
-
"timeout": {
|
|
8101
|
-
"description": "Seconds to wait for clean exit before force restart",
|
|
8102
|
-
"name": "timeout",
|
|
8103
|
-
"default": 15,
|
|
8104
|
-
"hasDynamicHelp": false,
|
|
8105
|
-
"multiple": false,
|
|
8106
|
-
"type": "option"
|
|
8107
8082
|
}
|
|
8108
8083
|
},
|
|
8109
8084
|
"hasDynamicHelp": false,
|
|
8110
8085
|
"hiddenAliases": [],
|
|
8111
|
-
"id": "
|
|
8086
|
+
"id": "support",
|
|
8112
8087
|
"pluginAlias": "@proletariat/cli",
|
|
8113
8088
|
"pluginName": "@proletariat/cli",
|
|
8114
8089
|
"pluginType": "core",
|
|
8115
8090
|
"strict": true,
|
|
8091
|
+
"enableJsonFlag": false,
|
|
8116
8092
|
"isESM": true,
|
|
8117
8093
|
"relativePath": [
|
|
8118
8094
|
"dist",
|
|
8119
8095
|
"commands",
|
|
8120
|
-
"
|
|
8121
|
-
"
|
|
8096
|
+
"support",
|
|
8097
|
+
"index.js"
|
|
8122
8098
|
]
|
|
8123
8099
|
},
|
|
8124
|
-
"
|
|
8100
|
+
"support:issues": {
|
|
8125
8101
|
"aliases": [],
|
|
8126
8102
|
"args": {},
|
|
8127
|
-
"description": "
|
|
8103
|
+
"description": "Browse GitHub Issues",
|
|
8128
8104
|
"examples": [
|
|
8129
|
-
"<%= config.bin %>
|
|
8130
|
-
"<%= config.bin %>
|
|
8131
|
-
"<%= config.bin %>
|
|
8132
|
-
"<%= config.bin %> session watch --no-recover",
|
|
8133
|
-
"<%= config.bin %> session watch --once"
|
|
8105
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8106
|
+
"<%= config.bin %> <%= command.id %> --browser",
|
|
8107
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8134
8108
|
],
|
|
8135
8109
|
"flags": {
|
|
8136
8110
|
"json": {
|
|
@@ -8146,44 +8120,70 @@
|
|
|
8146
8120
|
"allowNo": false,
|
|
8147
8121
|
"type": "boolean"
|
|
8148
8122
|
},
|
|
8149
|
-
"
|
|
8150
|
-
"description": "
|
|
8151
|
-
"name": "
|
|
8152
|
-
"
|
|
8153
|
-
"
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8123
|
+
"browser": {
|
|
8124
|
+
"description": "Open issues in browser (default behavior)",
|
|
8125
|
+
"name": "browser",
|
|
8126
|
+
"allowNo": true,
|
|
8127
|
+
"type": "boolean"
|
|
8128
|
+
}
|
|
8129
|
+
},
|
|
8130
|
+
"hasDynamicHelp": false,
|
|
8131
|
+
"hiddenAliases": [],
|
|
8132
|
+
"id": "support:issues",
|
|
8133
|
+
"pluginAlias": "@proletariat/cli",
|
|
8134
|
+
"pluginName": "@proletariat/cli",
|
|
8135
|
+
"pluginType": "core",
|
|
8136
|
+
"strict": true,
|
|
8137
|
+
"enableJsonFlag": false,
|
|
8138
|
+
"isESM": true,
|
|
8139
|
+
"relativePath": [
|
|
8140
|
+
"dist",
|
|
8141
|
+
"commands",
|
|
8142
|
+
"support",
|
|
8143
|
+
"issues.js"
|
|
8144
|
+
]
|
|
8145
|
+
},
|
|
8146
|
+
"support:logs": {
|
|
8147
|
+
"aliases": [],
|
|
8148
|
+
"args": {},
|
|
8149
|
+
"description": "Collect diagnostic info for troubleshooting",
|
|
8150
|
+
"examples": [
|
|
8151
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8152
|
+
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
8153
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8154
|
+
],
|
|
8155
|
+
"flags": {
|
|
8156
|
+
"project": {
|
|
8157
|
+
"char": "P",
|
|
8158
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8159
|
+
"name": "project",
|
|
8161
8160
|
"hasDynamicHelp": false,
|
|
8162
8161
|
"multiple": false,
|
|
8163
8162
|
"type": "option"
|
|
8164
8163
|
},
|
|
8165
|
-
"
|
|
8166
|
-
"description": "
|
|
8167
|
-
"name": "
|
|
8168
|
-
"allowNo":
|
|
8164
|
+
"json": {
|
|
8165
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8166
|
+
"name": "json",
|
|
8167
|
+
"allowNo": false,
|
|
8169
8168
|
"type": "boolean"
|
|
8170
8169
|
},
|
|
8171
|
-
"
|
|
8172
|
-
"
|
|
8173
|
-
"
|
|
8174
|
-
"
|
|
8170
|
+
"machine": {
|
|
8171
|
+
"char": "m",
|
|
8172
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8173
|
+
"name": "machine",
|
|
8174
|
+
"allowNo": false,
|
|
8175
8175
|
"type": "boolean"
|
|
8176
8176
|
},
|
|
8177
|
-
"
|
|
8178
|
-
"description": "
|
|
8179
|
-
"name": "
|
|
8177
|
+
"clipboard": {
|
|
8178
|
+
"description": "Copy diagnostics to clipboard",
|
|
8179
|
+
"name": "clipboard",
|
|
8180
8180
|
"allowNo": false,
|
|
8181
8181
|
"type": "boolean"
|
|
8182
8182
|
}
|
|
8183
8183
|
},
|
|
8184
8184
|
"hasDynamicHelp": false,
|
|
8185
8185
|
"hiddenAliases": [],
|
|
8186
|
-
"id": "
|
|
8186
|
+
"id": "support:logs",
|
|
8187
8187
|
"pluginAlias": "@proletariat/cli",
|
|
8188
8188
|
"pluginName": "@proletariat/cli",
|
|
8189
8189
|
"pluginType": "core",
|
|
@@ -8192,8 +8192,8 @@
|
|
|
8192
8192
|
"relativePath": [
|
|
8193
8193
|
"dist",
|
|
8194
8194
|
"commands",
|
|
8195
|
-
"
|
|
8196
|
-
"
|
|
8195
|
+
"support",
|
|
8196
|
+
"logs.js"
|
|
8197
8197
|
]
|
|
8198
8198
|
},
|
|
8199
8199
|
"sync": {
|
|
@@ -8919,6 +8919,874 @@
|
|
|
8919
8919
|
"set.js"
|
|
8920
8920
|
]
|
|
8921
8921
|
},
|
|
8922
|
+
"ticket:create": {
|
|
8923
|
+
"aliases": [],
|
|
8924
|
+
"args": {},
|
|
8925
|
+
"description": "Create a new ticket (routes to Linear when configured, or local PMO)",
|
|
8926
|
+
"examples": [
|
|
8927
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8928
|
+
"<%= config.bin %> <%= command.id %> --title \"Fix login bug\" --column Backlog",
|
|
8929
|
+
"<%= config.bin %> <%= command.id %> -t \"Add feature\" -c \"In Progress\" -p P1",
|
|
8930
|
+
"<%= config.bin %> <%= command.id %> --project mobile-app -t \"New feature\"",
|
|
8931
|
+
"<%= config.bin %> <%= command.id %> --epic EPIC-001 -t \"Implement auth flow\"",
|
|
8932
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file ./ticket-desc.md",
|
|
8933
|
+
"<%= config.bin %> <%= command.id %> --title \"My ticket\" --description-file - # Read from stdin",
|
|
8934
|
+
"<%= config.bin %> <%= command.id %> --json # Output column choices as JSON",
|
|
8935
|
+
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating",
|
|
8936
|
+
"<%= config.bin %> <%= command.id %> --source linear -t \"Fix bug\" --team ENG",
|
|
8937
|
+
"<%= config.bin %> <%= command.id %> --source pmo -t \"Local task\" -c Backlog"
|
|
8938
|
+
],
|
|
8939
|
+
"flags": {
|
|
8940
|
+
"project": {
|
|
8941
|
+
"char": "P",
|
|
8942
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8943
|
+
"name": "project",
|
|
8944
|
+
"hasDynamicHelp": false,
|
|
8945
|
+
"multiple": false,
|
|
8946
|
+
"type": "option"
|
|
8947
|
+
},
|
|
8948
|
+
"json": {
|
|
8949
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8950
|
+
"name": "json",
|
|
8951
|
+
"allowNo": false,
|
|
8952
|
+
"type": "boolean"
|
|
8953
|
+
},
|
|
8954
|
+
"machine": {
|
|
8955
|
+
"char": "m",
|
|
8956
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8957
|
+
"name": "machine",
|
|
8958
|
+
"allowNo": false,
|
|
8959
|
+
"type": "boolean"
|
|
8960
|
+
},
|
|
8961
|
+
"title": {
|
|
8962
|
+
"char": "t",
|
|
8963
|
+
"description": "Ticket title [required for non-interactive]",
|
|
8964
|
+
"name": "title",
|
|
8965
|
+
"hasDynamicHelp": false,
|
|
8966
|
+
"multiple": false,
|
|
8967
|
+
"type": "option"
|
|
8968
|
+
},
|
|
8969
|
+
"column": {
|
|
8970
|
+
"char": "c",
|
|
8971
|
+
"description": "Column to place the ticket in",
|
|
8972
|
+
"name": "column",
|
|
8973
|
+
"hasDynamicHelp": false,
|
|
8974
|
+
"multiple": false,
|
|
8975
|
+
"type": "option"
|
|
8976
|
+
},
|
|
8977
|
+
"priority": {
|
|
8978
|
+
"char": "p",
|
|
8979
|
+
"description": "Ticket priority (uses workspace priority scale)",
|
|
8980
|
+
"name": "priority",
|
|
8981
|
+
"hasDynamicHelp": false,
|
|
8982
|
+
"multiple": false,
|
|
8983
|
+
"type": "option"
|
|
8984
|
+
},
|
|
8985
|
+
"category": {
|
|
8986
|
+
"description": "Ticket category (e.g., bug, feature, refactor)",
|
|
8987
|
+
"name": "category",
|
|
8988
|
+
"hasDynamicHelp": false,
|
|
8989
|
+
"multiple": false,
|
|
8990
|
+
"type": "option"
|
|
8991
|
+
},
|
|
8992
|
+
"description": {
|
|
8993
|
+
"char": "d",
|
|
8994
|
+
"description": "Ticket description",
|
|
8995
|
+
"name": "description",
|
|
8996
|
+
"hasDynamicHelp": false,
|
|
8997
|
+
"multiple": false,
|
|
8998
|
+
"type": "option"
|
|
8999
|
+
},
|
|
9000
|
+
"description-file": {
|
|
9001
|
+
"char": "D",
|
|
9002
|
+
"description": "Path to a markdown file for the ticket description (use - for stdin)",
|
|
9003
|
+
"exclusive": [
|
|
9004
|
+
"description"
|
|
9005
|
+
],
|
|
9006
|
+
"name": "description-file",
|
|
9007
|
+
"hasDynamicHelp": false,
|
|
9008
|
+
"multiple": false,
|
|
9009
|
+
"type": "option"
|
|
9010
|
+
},
|
|
9011
|
+
"id": {
|
|
9012
|
+
"description": "Custom ticket ID (auto-generated if not provided)",
|
|
9013
|
+
"name": "id",
|
|
9014
|
+
"hasDynamicHelp": false,
|
|
9015
|
+
"multiple": false,
|
|
9016
|
+
"type": "option"
|
|
9017
|
+
},
|
|
9018
|
+
"interactive": {
|
|
9019
|
+
"char": "i",
|
|
9020
|
+
"description": "Interactive mode",
|
|
9021
|
+
"name": "interactive",
|
|
9022
|
+
"allowNo": false,
|
|
9023
|
+
"type": "boolean"
|
|
9024
|
+
},
|
|
9025
|
+
"epic": {
|
|
9026
|
+
"char": "e",
|
|
9027
|
+
"description": "Link ticket to an epic (e.g., EPIC-001)",
|
|
9028
|
+
"name": "epic",
|
|
9029
|
+
"hasDynamicHelp": false,
|
|
9030
|
+
"multiple": false,
|
|
9031
|
+
"type": "option"
|
|
9032
|
+
},
|
|
9033
|
+
"template": {
|
|
9034
|
+
"char": "T",
|
|
9035
|
+
"description": "Create from a template (e.g., bug-report, feature-request)",
|
|
9036
|
+
"name": "template",
|
|
9037
|
+
"hasDynamicHelp": false,
|
|
9038
|
+
"multiple": false,
|
|
9039
|
+
"type": "option"
|
|
9040
|
+
},
|
|
9041
|
+
"labels": {
|
|
9042
|
+
"aliases": [
|
|
9043
|
+
"label"
|
|
9044
|
+
],
|
|
9045
|
+
"char": "l",
|
|
9046
|
+
"description": "Labels (comma-separated)",
|
|
9047
|
+
"name": "labels",
|
|
9048
|
+
"hasDynamicHelp": false,
|
|
9049
|
+
"multiple": false,
|
|
9050
|
+
"type": "option"
|
|
9051
|
+
},
|
|
9052
|
+
"dry-run": {
|
|
9053
|
+
"description": "Validate inputs without creating ticket (use with --json for structured output)",
|
|
9054
|
+
"name": "dry-run",
|
|
9055
|
+
"allowNo": false,
|
|
9056
|
+
"type": "boolean"
|
|
9057
|
+
},
|
|
9058
|
+
"source": {
|
|
9059
|
+
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9060
|
+
"name": "source",
|
|
9061
|
+
"default": "auto",
|
|
9062
|
+
"hasDynamicHelp": false,
|
|
9063
|
+
"multiple": false,
|
|
9064
|
+
"options": [
|
|
9065
|
+
"auto",
|
|
9066
|
+
"pmo",
|
|
9067
|
+
"linear"
|
|
9068
|
+
],
|
|
9069
|
+
"type": "option"
|
|
9070
|
+
},
|
|
9071
|
+
"team": {
|
|
9072
|
+
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9073
|
+
"name": "team",
|
|
9074
|
+
"hasDynamicHelp": false,
|
|
9075
|
+
"multiple": false,
|
|
9076
|
+
"type": "option"
|
|
9077
|
+
}
|
|
9078
|
+
},
|
|
9079
|
+
"hasDynamicHelp": false,
|
|
9080
|
+
"hiddenAliases": [],
|
|
9081
|
+
"id": "ticket:create",
|
|
9082
|
+
"pluginAlias": "@proletariat/cli",
|
|
9083
|
+
"pluginName": "@proletariat/cli",
|
|
9084
|
+
"pluginType": "core",
|
|
9085
|
+
"strict": true,
|
|
9086
|
+
"isESM": true,
|
|
9087
|
+
"relativePath": [
|
|
9088
|
+
"dist",
|
|
9089
|
+
"commands",
|
|
9090
|
+
"ticket",
|
|
9091
|
+
"create.js"
|
|
9092
|
+
]
|
|
9093
|
+
},
|
|
9094
|
+
"ticket:delete": {
|
|
9095
|
+
"aliases": [],
|
|
9096
|
+
"args": {
|
|
9097
|
+
"ticketId": {
|
|
9098
|
+
"description": "Ticket ID to delete - prompts with dropdown if not provided",
|
|
9099
|
+
"name": "ticketId",
|
|
9100
|
+
"required": false
|
|
9101
|
+
}
|
|
9102
|
+
},
|
|
9103
|
+
"description": "Delete ticket(s) permanently",
|
|
9104
|
+
"examples": [
|
|
9105
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9106
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --force",
|
|
9107
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
9108
|
+
"<%= config.bin %> <%= command.id %> --bulk",
|
|
9109
|
+
"<%= config.bin %> <%= command.id %> --json # Output choices as JSON"
|
|
9110
|
+
],
|
|
9111
|
+
"flags": {
|
|
9112
|
+
"project": {
|
|
9113
|
+
"char": "P",
|
|
9114
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9115
|
+
"name": "project",
|
|
9116
|
+
"hasDynamicHelp": false,
|
|
9117
|
+
"multiple": false,
|
|
9118
|
+
"type": "option"
|
|
9119
|
+
},
|
|
9120
|
+
"json": {
|
|
9121
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9122
|
+
"name": "json",
|
|
9123
|
+
"allowNo": false,
|
|
9124
|
+
"type": "boolean"
|
|
9125
|
+
},
|
|
9126
|
+
"machine": {
|
|
9127
|
+
"char": "m",
|
|
9128
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9129
|
+
"name": "machine",
|
|
9130
|
+
"allowNo": false,
|
|
9131
|
+
"type": "boolean"
|
|
9132
|
+
},
|
|
9133
|
+
"force": {
|
|
9134
|
+
"char": "f",
|
|
9135
|
+
"description": "Skip confirmation prompt",
|
|
9136
|
+
"name": "force",
|
|
9137
|
+
"allowNo": false,
|
|
9138
|
+
"type": "boolean"
|
|
9139
|
+
},
|
|
9140
|
+
"bulk": {
|
|
9141
|
+
"char": "b",
|
|
9142
|
+
"description": "Enable bulk mode to delete multiple tickets",
|
|
9143
|
+
"name": "bulk",
|
|
9144
|
+
"allowNo": false,
|
|
9145
|
+
"type": "boolean"
|
|
9146
|
+
}
|
|
9147
|
+
},
|
|
9148
|
+
"hasDynamicHelp": false,
|
|
9149
|
+
"hiddenAliases": [],
|
|
9150
|
+
"id": "ticket:delete",
|
|
9151
|
+
"pluginAlias": "@proletariat/cli",
|
|
9152
|
+
"pluginName": "@proletariat/cli",
|
|
9153
|
+
"pluginType": "core",
|
|
9154
|
+
"strict": true,
|
|
9155
|
+
"isESM": true,
|
|
9156
|
+
"relativePath": [
|
|
9157
|
+
"dist",
|
|
9158
|
+
"commands",
|
|
9159
|
+
"ticket",
|
|
9160
|
+
"delete.js"
|
|
9161
|
+
]
|
|
9162
|
+
},
|
|
9163
|
+
"ticket:edit": {
|
|
9164
|
+
"aliases": [],
|
|
9165
|
+
"args": {
|
|
9166
|
+
"ticketId": {
|
|
9167
|
+
"description": "Ticket ID to edit - prompts with dropdown if not provided",
|
|
9168
|
+
"name": "ticketId",
|
|
9169
|
+
"required": false
|
|
9170
|
+
}
|
|
9171
|
+
},
|
|
9172
|
+
"description": "Edit an existing ticket",
|
|
9173
|
+
"examples": [
|
|
9174
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9175
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --title \"New title\"",
|
|
9176
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --priority P1 --category bug",
|
|
9177
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --add-subtask \"Implement feature\" --add-subtask \"Write tests\"",
|
|
9178
|
+
"<%= config.bin %> <%= command.id %> TICK-001 --owner \"john\" --assignee \"agent-1\"",
|
|
9179
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
9180
|
+
],
|
|
9181
|
+
"flags": {
|
|
9182
|
+
"project": {
|
|
9183
|
+
"char": "P",
|
|
9184
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9185
|
+
"name": "project",
|
|
9186
|
+
"hasDynamicHelp": false,
|
|
9187
|
+
"multiple": false,
|
|
9188
|
+
"type": "option"
|
|
9189
|
+
},
|
|
9190
|
+
"json": {
|
|
9191
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9192
|
+
"name": "json",
|
|
9193
|
+
"allowNo": false,
|
|
9194
|
+
"type": "boolean"
|
|
9195
|
+
},
|
|
9196
|
+
"machine": {
|
|
9197
|
+
"char": "m",
|
|
9198
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9199
|
+
"name": "machine",
|
|
9200
|
+
"allowNo": false,
|
|
9201
|
+
"type": "boolean"
|
|
9202
|
+
},
|
|
9203
|
+
"title": {
|
|
9204
|
+
"char": "t",
|
|
9205
|
+
"description": "New ticket title",
|
|
9206
|
+
"name": "title",
|
|
9207
|
+
"hasDynamicHelp": false,
|
|
9208
|
+
"multiple": false,
|
|
9209
|
+
"type": "option"
|
|
9210
|
+
},
|
|
9211
|
+
"description": {
|
|
9212
|
+
"char": "d",
|
|
9213
|
+
"description": "New ticket description",
|
|
9214
|
+
"name": "description",
|
|
9215
|
+
"hasDynamicHelp": false,
|
|
9216
|
+
"multiple": false,
|
|
9217
|
+
"type": "option"
|
|
9218
|
+
},
|
|
9219
|
+
"priority": {
|
|
9220
|
+
"char": "p",
|
|
9221
|
+
"description": "New ticket priority (uses workspace priority scale, \"none\" to clear)",
|
|
9222
|
+
"name": "priority",
|
|
9223
|
+
"hasDynamicHelp": false,
|
|
9224
|
+
"multiple": false,
|
|
9225
|
+
"type": "option"
|
|
9226
|
+
},
|
|
9227
|
+
"category": {
|
|
9228
|
+
"description": "New ticket category",
|
|
9229
|
+
"name": "category",
|
|
9230
|
+
"hasDynamicHelp": false,
|
|
9231
|
+
"multiple": false,
|
|
9232
|
+
"type": "option"
|
|
9233
|
+
},
|
|
9234
|
+
"owner": {
|
|
9235
|
+
"char": "o",
|
|
9236
|
+
"description": "Ticket owner (human responsible)",
|
|
9237
|
+
"name": "owner",
|
|
9238
|
+
"hasDynamicHelp": false,
|
|
9239
|
+
"multiple": false,
|
|
9240
|
+
"type": "option"
|
|
9241
|
+
},
|
|
9242
|
+
"assignee": {
|
|
9243
|
+
"char": "a",
|
|
9244
|
+
"description": "Ticket assignee (who executes)",
|
|
9245
|
+
"name": "assignee",
|
|
9246
|
+
"hasDynamicHelp": false,
|
|
9247
|
+
"multiple": false,
|
|
9248
|
+
"type": "option"
|
|
9249
|
+
},
|
|
9250
|
+
"add-subtask": {
|
|
9251
|
+
"description": "Add a subtask (can be used multiple times)",
|
|
9252
|
+
"name": "add-subtask",
|
|
9253
|
+
"hasDynamicHelp": false,
|
|
9254
|
+
"multiple": true,
|
|
9255
|
+
"type": "option"
|
|
9256
|
+
},
|
|
9257
|
+
"clear-subtasks": {
|
|
9258
|
+
"description": "Clear all existing subtasks before adding new ones",
|
|
9259
|
+
"name": "clear-subtasks",
|
|
9260
|
+
"allowNo": false,
|
|
9261
|
+
"type": "boolean"
|
|
9262
|
+
},
|
|
9263
|
+
"add-label": {
|
|
9264
|
+
"description": "Add a label (can be used multiple times)",
|
|
9265
|
+
"name": "add-label",
|
|
9266
|
+
"hasDynamicHelp": false,
|
|
9267
|
+
"multiple": true,
|
|
9268
|
+
"type": "option"
|
|
9269
|
+
},
|
|
9270
|
+
"remove-label": {
|
|
9271
|
+
"description": "Remove a label",
|
|
9272
|
+
"name": "remove-label",
|
|
9273
|
+
"hasDynamicHelp": false,
|
|
9274
|
+
"multiple": true,
|
|
9275
|
+
"type": "option"
|
|
9276
|
+
},
|
|
9277
|
+
"add-ac": {
|
|
9278
|
+
"description": "Add an acceptance criterion (can be used multiple times)",
|
|
9279
|
+
"name": "add-ac",
|
|
9280
|
+
"hasDynamicHelp": false,
|
|
9281
|
+
"multiple": true,
|
|
9282
|
+
"type": "option"
|
|
9283
|
+
},
|
|
9284
|
+
"clear-ac": {
|
|
9285
|
+
"description": "Clear all existing acceptance criteria before adding new ones",
|
|
9286
|
+
"name": "clear-ac",
|
|
9287
|
+
"allowNo": false,
|
|
9288
|
+
"type": "boolean"
|
|
9289
|
+
},
|
|
9290
|
+
"interactive": {
|
|
9291
|
+
"char": "i",
|
|
9292
|
+
"description": "Interactive mode - prompts for all fields",
|
|
9293
|
+
"name": "interactive",
|
|
9294
|
+
"allowNo": false,
|
|
9295
|
+
"type": "boolean"
|
|
9296
|
+
}
|
|
9297
|
+
},
|
|
9298
|
+
"hasDynamicHelp": false,
|
|
9299
|
+
"hiddenAliases": [],
|
|
9300
|
+
"id": "ticket:edit",
|
|
9301
|
+
"pluginAlias": "@proletariat/cli",
|
|
9302
|
+
"pluginName": "@proletariat/cli",
|
|
9303
|
+
"pluginType": "core",
|
|
9304
|
+
"strict": true,
|
|
9305
|
+
"isESM": true,
|
|
9306
|
+
"relativePath": [
|
|
9307
|
+
"dist",
|
|
9308
|
+
"commands",
|
|
9309
|
+
"ticket",
|
|
9310
|
+
"edit.js"
|
|
9311
|
+
]
|
|
9312
|
+
},
|
|
9313
|
+
"ticket": {
|
|
9314
|
+
"aliases": [],
|
|
9315
|
+
"args": {},
|
|
9316
|
+
"description": "Interactive menu for ticket operations",
|
|
9317
|
+
"examples": [
|
|
9318
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9319
|
+
],
|
|
9320
|
+
"flags": {
|
|
9321
|
+
"json": {
|
|
9322
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9323
|
+
"name": "json",
|
|
9324
|
+
"allowNo": false,
|
|
9325
|
+
"type": "boolean"
|
|
9326
|
+
},
|
|
9327
|
+
"machine": {
|
|
9328
|
+
"char": "m",
|
|
9329
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9330
|
+
"name": "machine",
|
|
9331
|
+
"allowNo": false,
|
|
9332
|
+
"type": "boolean"
|
|
9333
|
+
}
|
|
9334
|
+
},
|
|
9335
|
+
"hasDynamicHelp": false,
|
|
9336
|
+
"hiddenAliases": [],
|
|
9337
|
+
"id": "ticket",
|
|
9338
|
+
"pluginAlias": "@proletariat/cli",
|
|
9339
|
+
"pluginName": "@proletariat/cli",
|
|
9340
|
+
"pluginType": "core",
|
|
9341
|
+
"strict": true,
|
|
9342
|
+
"isESM": true,
|
|
9343
|
+
"relativePath": [
|
|
9344
|
+
"dist",
|
|
9345
|
+
"commands",
|
|
9346
|
+
"ticket",
|
|
9347
|
+
"index.js"
|
|
9348
|
+
]
|
|
9349
|
+
},
|
|
9350
|
+
"ticket:list": {
|
|
9351
|
+
"aliases": [],
|
|
9352
|
+
"args": {},
|
|
9353
|
+
"description": "List tickets from the PMO board",
|
|
9354
|
+
"examples": [
|
|
9355
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9356
|
+
"<%= config.bin %> <%= command.id %> --column Backlog",
|
|
9357
|
+
"<%= config.bin %> <%= command.id %> --priority P0",
|
|
9358
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
9359
|
+
"<%= config.bin %> <%= command.id %> --search \"login\"",
|
|
9360
|
+
"<%= config.bin %> <%= command.id %> --project mobile-app",
|
|
9361
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
9362
|
+
"<%= config.bin %> <%= command.id %> --all --group-by priority",
|
|
9363
|
+
"<%= config.bin %> <%= command.id %> -g priority",
|
|
9364
|
+
"<%= config.bin %> <%= command.id %> --limit 10",
|
|
9365
|
+
"<%= config.bin %> <%= command.id %> --limit 10 --offset 20"
|
|
9366
|
+
],
|
|
9367
|
+
"flags": {
|
|
9368
|
+
"project": {
|
|
9369
|
+
"char": "P",
|
|
9370
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9371
|
+
"name": "project",
|
|
9372
|
+
"hasDynamicHelp": false,
|
|
9373
|
+
"multiple": false,
|
|
9374
|
+
"type": "option"
|
|
9375
|
+
},
|
|
9376
|
+
"json": {
|
|
9377
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9378
|
+
"name": "json",
|
|
9379
|
+
"allowNo": false,
|
|
9380
|
+
"type": "boolean"
|
|
9381
|
+
},
|
|
9382
|
+
"machine": {
|
|
9383
|
+
"char": "m",
|
|
9384
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9385
|
+
"name": "machine",
|
|
9386
|
+
"allowNo": false,
|
|
9387
|
+
"type": "boolean"
|
|
9388
|
+
},
|
|
9389
|
+
"column": {
|
|
9390
|
+
"char": "c",
|
|
9391
|
+
"description": "Filter by column",
|
|
9392
|
+
"name": "column",
|
|
9393
|
+
"hasDynamicHelp": false,
|
|
9394
|
+
"multiple": false,
|
|
9395
|
+
"type": "option"
|
|
9396
|
+
},
|
|
9397
|
+
"priority": {
|
|
9398
|
+
"char": "p",
|
|
9399
|
+
"description": "Filter by priority (uses workspace priority scale)",
|
|
9400
|
+
"name": "priority",
|
|
9401
|
+
"hasDynamicHelp": false,
|
|
9402
|
+
"multiple": false,
|
|
9403
|
+
"type": "option"
|
|
9404
|
+
},
|
|
9405
|
+
"category": {
|
|
9406
|
+
"description": "Filter by category",
|
|
9407
|
+
"name": "category",
|
|
9408
|
+
"hasDynamicHelp": false,
|
|
9409
|
+
"multiple": false,
|
|
9410
|
+
"type": "option"
|
|
9411
|
+
},
|
|
9412
|
+
"search": {
|
|
9413
|
+
"char": "s",
|
|
9414
|
+
"description": "Search in title and description",
|
|
9415
|
+
"name": "search",
|
|
9416
|
+
"hasDynamicHelp": false,
|
|
9417
|
+
"multiple": false,
|
|
9418
|
+
"type": "option"
|
|
9419
|
+
},
|
|
9420
|
+
"format": {
|
|
9421
|
+
"char": "f",
|
|
9422
|
+
"description": "Output format",
|
|
9423
|
+
"name": "format",
|
|
9424
|
+
"default": "table",
|
|
9425
|
+
"hasDynamicHelp": false,
|
|
9426
|
+
"multiple": false,
|
|
9427
|
+
"options": [
|
|
9428
|
+
"table",
|
|
9429
|
+
"compact",
|
|
9430
|
+
"json"
|
|
9431
|
+
],
|
|
9432
|
+
"type": "option"
|
|
9433
|
+
},
|
|
9434
|
+
"all": {
|
|
9435
|
+
"char": "a",
|
|
9436
|
+
"description": "Show tickets across all projects",
|
|
9437
|
+
"name": "all",
|
|
9438
|
+
"allowNo": false,
|
|
9439
|
+
"type": "boolean"
|
|
9440
|
+
},
|
|
9441
|
+
"label": {
|
|
9442
|
+
"description": "Filter by label name",
|
|
9443
|
+
"name": "label",
|
|
9444
|
+
"hasDynamicHelp": false,
|
|
9445
|
+
"multiple": false,
|
|
9446
|
+
"type": "option"
|
|
9447
|
+
},
|
|
9448
|
+
"group-by": {
|
|
9449
|
+
"char": "g",
|
|
9450
|
+
"description": "Group tickets by field",
|
|
9451
|
+
"name": "group-by",
|
|
9452
|
+
"default": "status",
|
|
9453
|
+
"hasDynamicHelp": false,
|
|
9454
|
+
"multiple": false,
|
|
9455
|
+
"options": [
|
|
9456
|
+
"status",
|
|
9457
|
+
"priority"
|
|
9458
|
+
],
|
|
9459
|
+
"type": "option"
|
|
9460
|
+
},
|
|
9461
|
+
"limit": {
|
|
9462
|
+
"char": "l",
|
|
9463
|
+
"description": "Maximum number of tickets to display",
|
|
9464
|
+
"name": "limit",
|
|
9465
|
+
"hasDynamicHelp": false,
|
|
9466
|
+
"multiple": false,
|
|
9467
|
+
"type": "option"
|
|
9468
|
+
},
|
|
9469
|
+
"offset": {
|
|
9470
|
+
"description": "Skip first N tickets (for pagination)",
|
|
9471
|
+
"name": "offset",
|
|
9472
|
+
"hasDynamicHelp": false,
|
|
9473
|
+
"multiple": false,
|
|
9474
|
+
"type": "option"
|
|
9475
|
+
},
|
|
9476
|
+
"source": {
|
|
9477
|
+
"description": "Ticket source: \"pmo\" for local DB, \"linear\" for Linear API, or \"auto\" to detect (default: auto)",
|
|
9478
|
+
"name": "source",
|
|
9479
|
+
"default": "auto",
|
|
9480
|
+
"hasDynamicHelp": false,
|
|
9481
|
+
"multiple": false,
|
|
9482
|
+
"options": [
|
|
9483
|
+
"auto",
|
|
9484
|
+
"pmo",
|
|
9485
|
+
"linear"
|
|
9486
|
+
],
|
|
9487
|
+
"type": "option"
|
|
9488
|
+
},
|
|
9489
|
+
"team": {
|
|
9490
|
+
"description": "Linear team key (fallback: PRLT_LINEAR_TEAM)",
|
|
9491
|
+
"name": "team",
|
|
9492
|
+
"hasDynamicHelp": false,
|
|
9493
|
+
"multiple": false,
|
|
9494
|
+
"type": "option"
|
|
9495
|
+
}
|
|
9496
|
+
},
|
|
9497
|
+
"hasDynamicHelp": false,
|
|
9498
|
+
"hiddenAliases": [],
|
|
9499
|
+
"id": "ticket:list",
|
|
9500
|
+
"pluginAlias": "@proletariat/cli",
|
|
9501
|
+
"pluginName": "@proletariat/cli",
|
|
9502
|
+
"pluginType": "core",
|
|
9503
|
+
"strict": true,
|
|
9504
|
+
"enableJsonFlag": false,
|
|
9505
|
+
"isESM": true,
|
|
9506
|
+
"relativePath": [
|
|
9507
|
+
"dist",
|
|
9508
|
+
"commands",
|
|
9509
|
+
"ticket",
|
|
9510
|
+
"list.js"
|
|
9511
|
+
]
|
|
9512
|
+
},
|
|
9513
|
+
"ticket:move": {
|
|
9514
|
+
"aliases": [],
|
|
9515
|
+
"args": {
|
|
9516
|
+
"ticketId": {
|
|
9517
|
+
"description": "Ticket ID - prompts with dropdown if not provided",
|
|
9518
|
+
"name": "ticketId",
|
|
9519
|
+
"required": false
|
|
9520
|
+
},
|
|
9521
|
+
"column": {
|
|
9522
|
+
"description": "Target column - prompts with dropdown if not provided",
|
|
9523
|
+
"name": "column",
|
|
9524
|
+
"required": false
|
|
9525
|
+
}
|
|
9526
|
+
},
|
|
9527
|
+
"description": "Move ticket(s) to a different column",
|
|
9528
|
+
"examples": [
|
|
9529
|
+
"<%= config.bin %> <%= command.id %> my-ticket \"In Progress\"",
|
|
9530
|
+
"<%= config.bin %> <%= command.id %> implement-auth Done",
|
|
9531
|
+
"<%= config.bin %> <%= command.id %> TKT-123 --status \"In Review\"",
|
|
9532
|
+
"<%= config.bin %> <%= command.id %> fix-bug \"In Review\" --position 0",
|
|
9533
|
+
"<%= config.bin %> <%= command.id %> TKT-123 --to-project PROJ-002",
|
|
9534
|
+
"<%= config.bin %> <%= command.id %> --bulk"
|
|
9535
|
+
],
|
|
9536
|
+
"flags": {
|
|
9537
|
+
"project": {
|
|
9538
|
+
"char": "P",
|
|
9539
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9540
|
+
"name": "project",
|
|
9541
|
+
"hasDynamicHelp": false,
|
|
9542
|
+
"multiple": false,
|
|
9543
|
+
"type": "option"
|
|
9544
|
+
},
|
|
9545
|
+
"json": {
|
|
9546
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9547
|
+
"name": "json",
|
|
9548
|
+
"allowNo": false,
|
|
9549
|
+
"type": "boolean"
|
|
9550
|
+
},
|
|
9551
|
+
"machine": {
|
|
9552
|
+
"char": "m",
|
|
9553
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9554
|
+
"name": "machine",
|
|
9555
|
+
"allowNo": false,
|
|
9556
|
+
"type": "boolean"
|
|
9557
|
+
},
|
|
9558
|
+
"status": {
|
|
9559
|
+
"char": "s",
|
|
9560
|
+
"description": "Target status/column (alternative to positional column argument)",
|
|
9561
|
+
"name": "status",
|
|
9562
|
+
"hasDynamicHelp": false,
|
|
9563
|
+
"multiple": false,
|
|
9564
|
+
"type": "option"
|
|
9565
|
+
},
|
|
9566
|
+
"position": {
|
|
9567
|
+
"description": "Position within the column (0 = top)",
|
|
9568
|
+
"name": "position",
|
|
9569
|
+
"hasDynamicHelp": false,
|
|
9570
|
+
"multiple": false,
|
|
9571
|
+
"type": "option"
|
|
9572
|
+
},
|
|
9573
|
+
"to-project": {
|
|
9574
|
+
"description": "Move ticket to a different project (uses Backlog/default column)",
|
|
9575
|
+
"name": "to-project",
|
|
9576
|
+
"hasDynamicHelp": false,
|
|
9577
|
+
"multiple": false,
|
|
9578
|
+
"type": "option"
|
|
9579
|
+
},
|
|
9580
|
+
"bulk": {
|
|
9581
|
+
"char": "b",
|
|
9582
|
+
"description": "Enable bulk mode to move multiple tickets",
|
|
9583
|
+
"name": "bulk",
|
|
9584
|
+
"allowNo": false,
|
|
9585
|
+
"type": "boolean"
|
|
9586
|
+
},
|
|
9587
|
+
"force": {
|
|
9588
|
+
"char": "f",
|
|
9589
|
+
"description": "Skip confirmation prompt (bulk mode only)",
|
|
9590
|
+
"name": "force",
|
|
9591
|
+
"allowNo": false,
|
|
9592
|
+
"type": "boolean"
|
|
9593
|
+
}
|
|
9594
|
+
},
|
|
9595
|
+
"hasDynamicHelp": false,
|
|
9596
|
+
"hiddenAliases": [],
|
|
9597
|
+
"id": "ticket:move",
|
|
9598
|
+
"pluginAlias": "@proletariat/cli",
|
|
9599
|
+
"pluginName": "@proletariat/cli",
|
|
9600
|
+
"pluginType": "core",
|
|
9601
|
+
"strict": true,
|
|
9602
|
+
"isESM": true,
|
|
9603
|
+
"relativePath": [
|
|
9604
|
+
"dist",
|
|
9605
|
+
"commands",
|
|
9606
|
+
"ticket",
|
|
9607
|
+
"move.js"
|
|
9608
|
+
]
|
|
9609
|
+
},
|
|
9610
|
+
"ticket:show": {
|
|
9611
|
+
"aliases": [],
|
|
9612
|
+
"args": {
|
|
9613
|
+
"ticketId": {
|
|
9614
|
+
"description": "Ticket ID to view - prompts with dropdown if not provided",
|
|
9615
|
+
"name": "ticketId",
|
|
9616
|
+
"required": false
|
|
9617
|
+
}
|
|
9618
|
+
},
|
|
9619
|
+
"description": "View detailed ticket information",
|
|
9620
|
+
"examples": [
|
|
9621
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
9622
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
9623
|
+
],
|
|
9624
|
+
"flags": {
|
|
9625
|
+
"project": {
|
|
9626
|
+
"char": "P",
|
|
9627
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9628
|
+
"name": "project",
|
|
9629
|
+
"hasDynamicHelp": false,
|
|
9630
|
+
"multiple": false,
|
|
9631
|
+
"type": "option"
|
|
9632
|
+
},
|
|
9633
|
+
"json": {
|
|
9634
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9635
|
+
"name": "json",
|
|
9636
|
+
"allowNo": false,
|
|
9637
|
+
"type": "boolean"
|
|
9638
|
+
},
|
|
9639
|
+
"machine": {
|
|
9640
|
+
"char": "m",
|
|
9641
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9642
|
+
"name": "machine",
|
|
9643
|
+
"allowNo": false,
|
|
9644
|
+
"type": "boolean"
|
|
9645
|
+
}
|
|
9646
|
+
},
|
|
9647
|
+
"hasDynamicHelp": false,
|
|
9648
|
+
"hiddenAliases": [],
|
|
9649
|
+
"id": "ticket:show",
|
|
9650
|
+
"pluginAlias": "@proletariat/cli",
|
|
9651
|
+
"pluginName": "@proletariat/cli",
|
|
9652
|
+
"pluginType": "core",
|
|
9653
|
+
"strict": true,
|
|
9654
|
+
"isESM": true,
|
|
9655
|
+
"relativePath": [
|
|
9656
|
+
"dist",
|
|
9657
|
+
"commands",
|
|
9658
|
+
"ticket",
|
|
9659
|
+
"show.js"
|
|
9660
|
+
]
|
|
9661
|
+
},
|
|
9662
|
+
"ticket:update": {
|
|
9663
|
+
"aliases": [],
|
|
9664
|
+
"args": {
|
|
9665
|
+
"ticketId": {
|
|
9666
|
+
"description": "Ticket ID - prompts with dropdown if not provided",
|
|
9667
|
+
"name": "ticketId",
|
|
9668
|
+
"required": false
|
|
9669
|
+
}
|
|
9670
|
+
},
|
|
9671
|
+
"description": "Update ticket fields (title, description, priority, category, labels, status)",
|
|
9672
|
+
"examples": [
|
|
9673
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --title \"New title\"",
|
|
9674
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --description \"Updated description\"",
|
|
9675
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --description-file ./spec.md",
|
|
9676
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --priority P1",
|
|
9677
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --category bug",
|
|
9678
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --labels frontend,urgent",
|
|
9679
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --status \"In Progress\"",
|
|
9680
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --title \"Fix auth\" --priority P0 --status \"In Progress\" --json",
|
|
9681
|
+
"<%= config.bin %> <%= command.id %> --bulk --priority P1"
|
|
9682
|
+
],
|
|
9683
|
+
"flags": {
|
|
9684
|
+
"project": {
|
|
9685
|
+
"char": "P",
|
|
9686
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9687
|
+
"name": "project",
|
|
9688
|
+
"hasDynamicHelp": false,
|
|
9689
|
+
"multiple": false,
|
|
9690
|
+
"type": "option"
|
|
9691
|
+
},
|
|
9692
|
+
"json": {
|
|
9693
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9694
|
+
"name": "json",
|
|
9695
|
+
"allowNo": false,
|
|
9696
|
+
"type": "boolean"
|
|
9697
|
+
},
|
|
9698
|
+
"machine": {
|
|
9699
|
+
"char": "m",
|
|
9700
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9701
|
+
"name": "machine",
|
|
9702
|
+
"allowNo": false,
|
|
9703
|
+
"type": "boolean"
|
|
9704
|
+
},
|
|
9705
|
+
"title": {
|
|
9706
|
+
"char": "t",
|
|
9707
|
+
"description": "Set ticket title",
|
|
9708
|
+
"name": "title",
|
|
9709
|
+
"hasDynamicHelp": false,
|
|
9710
|
+
"multiple": false,
|
|
9711
|
+
"type": "option"
|
|
9712
|
+
},
|
|
9713
|
+
"description": {
|
|
9714
|
+
"char": "d",
|
|
9715
|
+
"description": "Set ticket description",
|
|
9716
|
+
"name": "description",
|
|
9717
|
+
"hasDynamicHelp": false,
|
|
9718
|
+
"multiple": false,
|
|
9719
|
+
"type": "option"
|
|
9720
|
+
},
|
|
9721
|
+
"description-file": {
|
|
9722
|
+
"description": "Read ticket description from a file",
|
|
9723
|
+
"name": "description-file",
|
|
9724
|
+
"hasDynamicHelp": false,
|
|
9725
|
+
"multiple": false,
|
|
9726
|
+
"type": "option"
|
|
9727
|
+
},
|
|
9728
|
+
"priority": {
|
|
9729
|
+
"char": "p",
|
|
9730
|
+
"description": "Set priority (uses workspace priority scale, \"none\" to clear)",
|
|
9731
|
+
"name": "priority",
|
|
9732
|
+
"hasDynamicHelp": false,
|
|
9733
|
+
"multiple": false,
|
|
9734
|
+
"type": "option"
|
|
9735
|
+
},
|
|
9736
|
+
"category": {
|
|
9737
|
+
"char": "c",
|
|
9738
|
+
"description": "Set category (e.g., feature, bug, refactor, \"none\" to clear)",
|
|
9739
|
+
"name": "category",
|
|
9740
|
+
"hasDynamicHelp": false,
|
|
9741
|
+
"multiple": false,
|
|
9742
|
+
"type": "option"
|
|
9743
|
+
},
|
|
9744
|
+
"labels": {
|
|
9745
|
+
"char": "l",
|
|
9746
|
+
"description": "Set labels (comma-separated, replaces existing labels; use \"\" to clear)",
|
|
9747
|
+
"name": "labels",
|
|
9748
|
+
"hasDynamicHelp": false,
|
|
9749
|
+
"multiple": false,
|
|
9750
|
+
"type": "option"
|
|
9751
|
+
},
|
|
9752
|
+
"status": {
|
|
9753
|
+
"char": "s",
|
|
9754
|
+
"description": "Set status/column (e.g., \"In Progress\", \"Done\")",
|
|
9755
|
+
"name": "status",
|
|
9756
|
+
"hasDynamicHelp": false,
|
|
9757
|
+
"multiple": false,
|
|
9758
|
+
"type": "option"
|
|
9759
|
+
},
|
|
9760
|
+
"bulk": {
|
|
9761
|
+
"char": "b",
|
|
9762
|
+
"description": "Enable bulk mode to update multiple tickets",
|
|
9763
|
+
"name": "bulk",
|
|
9764
|
+
"allowNo": false,
|
|
9765
|
+
"type": "boolean"
|
|
9766
|
+
},
|
|
9767
|
+
"force": {
|
|
9768
|
+
"char": "f",
|
|
9769
|
+
"description": "Skip confirmation prompt",
|
|
9770
|
+
"name": "force",
|
|
9771
|
+
"allowNo": false,
|
|
9772
|
+
"type": "boolean"
|
|
9773
|
+
}
|
|
9774
|
+
},
|
|
9775
|
+
"hasDynamicHelp": false,
|
|
9776
|
+
"hiddenAliases": [],
|
|
9777
|
+
"id": "ticket:update",
|
|
9778
|
+
"pluginAlias": "@proletariat/cli",
|
|
9779
|
+
"pluginName": "@proletariat/cli",
|
|
9780
|
+
"pluginType": "core",
|
|
9781
|
+
"strict": true,
|
|
9782
|
+
"isESM": true,
|
|
9783
|
+
"relativePath": [
|
|
9784
|
+
"dist",
|
|
9785
|
+
"commands",
|
|
9786
|
+
"ticket",
|
|
9787
|
+
"update.js"
|
|
9788
|
+
]
|
|
9789
|
+
},
|
|
8922
9790
|
"tools:add": {
|
|
8923
9791
|
"aliases": [],
|
|
8924
9792
|
"args": {
|
|
@@ -13045,5 +13913,5 @@
|
|
|
13045
13913
|
]
|
|
13046
13914
|
}
|
|
13047
13915
|
},
|
|
13048
|
-
"version": "0.3.
|
|
13916
|
+
"version": "0.3.99"
|
|
13049
13917
|
}
|