@proletariat/cli 0.3.102 → 0.3.104

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.
Files changed (94) hide show
  1. package/dist/commands/project/configure.d.ts +13 -0
  2. package/dist/commands/project/configure.js +149 -0
  3. package/dist/commands/project/configure.js.map +1 -0
  4. package/dist/commands/session/attach.d.ts +6 -1
  5. package/dist/commands/session/attach.js +82 -28
  6. package/dist/commands/session/attach.js.map +1 -1
  7. package/dist/commands/session/report.d.ts +5 -0
  8. package/dist/commands/session/report.js +53 -0
  9. package/dist/commands/session/report.js.map +1 -1
  10. package/dist/commands/ticket/delete.js +15 -7
  11. package/dist/commands/ticket/delete.js.map +1 -1
  12. package/dist/commands/ticket/move.js +21 -10
  13. package/dist/commands/ticket/move.js.map +1 -1
  14. package/dist/commands/ticket/update.js +18 -9
  15. package/dist/commands/ticket/update.js.map +1 -1
  16. package/dist/commands/update.js +12 -6
  17. package/dist/commands/update.js.map +1 -1
  18. package/dist/commands/work/ship.js +39 -57
  19. package/dist/commands/work/ship.js.map +1 -1
  20. package/dist/commands/work/start.js +62 -77
  21. package/dist/commands/work/start.js.map +1 -1
  22. package/dist/lib/events/events.d.ts +2 -0
  23. package/dist/lib/execution/devcontainer.d.ts +1 -0
  24. package/dist/lib/execution/devcontainer.js +1 -0
  25. package/dist/lib/execution/devcontainer.js.map +1 -1
  26. package/dist/lib/execution/runners/docker-management.d.ts +22 -3
  27. package/dist/lib/execution/runners/docker-management.js +102 -14
  28. package/dist/lib/execution/runners/docker-management.js.map +1 -1
  29. package/dist/lib/execution/runners/prompt-builder.d.ts +12 -0
  30. package/dist/lib/execution/runners/prompt-builder.js +44 -0
  31. package/dist/lib/execution/runners/prompt-builder.js.map +1 -1
  32. package/dist/lib/orchestrate/actions.js +68 -1
  33. package/dist/lib/orchestrate/actions.js.map +1 -1
  34. package/dist/lib/orchestrate/engine.d.ts +19 -39
  35. package/dist/lib/orchestrate/engine.js +51 -215
  36. package/dist/lib/orchestrate/engine.js.map +1 -1
  37. package/dist/lib/orchestrate/poller.d.ts +4 -1
  38. package/dist/lib/orchestrate/poller.js +63 -13
  39. package/dist/lib/orchestrate/poller.js.map +1 -1
  40. package/dist/lib/orchestrate/presets.js +18 -3
  41. package/dist/lib/orchestrate/presets.js.map +1 -1
  42. package/dist/lib/orchestrate/simple-poller.js +33 -11
  43. package/dist/lib/orchestrate/simple-poller.js.map +1 -1
  44. package/dist/lib/orchestrate/types.d.ts +5 -13
  45. package/dist/lib/orchestrate/types.js +4 -2
  46. package/dist/lib/orchestrate/types.js.map +1 -1
  47. package/dist/lib/pmo/base-command.js +12 -2
  48. package/dist/lib/pmo/base-command.js.map +1 -1
  49. package/dist/lib/pmo/templates-builtin.d.ts +2 -0
  50. package/dist/lib/pmo/templates-builtin.js +13 -0
  51. package/dist/lib/pmo/templates-builtin.js.map +1 -1
  52. package/dist/lib/pr/index.d.ts +9 -0
  53. package/dist/lib/pr/index.js +22 -0
  54. package/dist/lib/pr/index.js.map +1 -1
  55. package/dist/lib/providers/linear-provider.d.ts +11 -12
  56. package/dist/lib/providers/linear-provider.js +150 -177
  57. package/dist/lib/providers/linear-provider.js.map +1 -1
  58. package/dist/lib/providers/resolver.d.ts +5 -5
  59. package/dist/lib/providers/resolver.js +25 -31
  60. package/dist/lib/providers/resolver.js.map +1 -1
  61. package/dist/lib/sync/engine.js +15 -6
  62. package/dist/lib/sync/engine.js.map +1 -1
  63. package/dist/lib/sync/reconciler.d.ts +11 -2
  64. package/dist/lib/sync/reconciler.js +30 -12
  65. package/dist/lib/sync/reconciler.js.map +1 -1
  66. package/dist/lib/update-check.d.ts +24 -0
  67. package/dist/lib/update-check.js +85 -0
  68. package/dist/lib/update-check.js.map +1 -1
  69. package/dist/lib/update-prompt.js +10 -5
  70. package/dist/lib/update-prompt.js.map +1 -1
  71. package/dist/lib/work-lifecycle/hooks/executor.js +2 -0
  72. package/dist/lib/work-lifecycle/hooks/executor.js.map +1 -1
  73. package/dist/lib/work-lifecycle/hooks/index.d.ts +5 -3
  74. package/dist/lib/work-lifecycle/hooks/index.js +3 -2
  75. package/dist/lib/work-lifecycle/hooks/index.js.map +1 -1
  76. package/dist/lib/work-lifecycle/hooks/manager.d.ts +93 -8
  77. package/dist/lib/work-lifecycle/hooks/manager.js +248 -20
  78. package/dist/lib/work-lifecycle/hooks/manager.js.map +1 -1
  79. package/dist/lib/work-lifecycle/hooks/storage.d.ts +1 -0
  80. package/dist/lib/work-lifecycle/hooks/storage.js +28 -6
  81. package/dist/lib/work-lifecycle/hooks/storage.js.map +1 -1
  82. package/dist/lib/work-lifecycle/hooks/types.d.ts +38 -1
  83. package/dist/lib/work-lifecycle/hooks/types.js +4 -0
  84. package/dist/lib/work-lifecycle/hooks/types.js.map +1 -1
  85. package/dist/lib/work-lifecycle/index.d.ts +2 -1
  86. package/dist/lib/work-lifecycle/index.js +1 -1
  87. package/dist/lib/work-lifecycle/index.js.map +1 -1
  88. package/dist/lib/work-lifecycle/settings.d.ts +42 -0
  89. package/dist/lib/work-lifecycle/settings.js +65 -0
  90. package/dist/lib/work-lifecycle/settings.js.map +1 -1
  91. package/dist/lib/work-lifecycle/transition.js +45 -31
  92. package/dist/lib/work-lifecycle/transition.js.map +1 -1
  93. package/oclif.manifest.json +818 -754
  94. package/package.json +1 -1
@@ -2755,19 +2755,20 @@
2755
2755
  "open.js"
2756
2756
  ]
2757
2757
  },
2758
- "config": {
2758
+ "codex": {
2759
2759
  "aliases": [],
2760
- "args": {},
2761
- "description": "View and update workspace configuration",
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 %> <%= command.id %> # Interactive menu",
2764
- "<%= config.bin %> <%= command.id %> --json # Output current config as JSON",
2765
- "<%= config.bin %> <%= command.id %> --set terminal.app iTerm",
2766
- "<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
2767
- "<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
2768
- "<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
2769
- "<%= config.bin %> <%= command.id %> --set claude-code.version 2.1.80 # Pin Claude Code version",
2770
- "<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
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
- "set": {
2787
- "char": "s",
2788
- "description": "Set a config value (format: key value)",
2789
- "name": "set",
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": true,
2792
+ "multiple": false,
2793
+ "options": [
2794
+ "danger",
2795
+ "safe"
2796
+ ],
2792
2797
  "type": "option"
2793
2798
  },
2794
- "list": {
2795
- "char": "l",
2796
- "description": "List all configuration values",
2797
- "name": "list",
2798
- "allowNo": false,
2799
- "type": "boolean"
2800
- },
2801
- "setting": {
2802
- "description": "Navigate to a specific setting prompt (for agent navigation)",
2803
- "name": "setting",
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": "config",
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
- "config",
2825
+ "codex",
2821
2826
  "index.js"
2822
2827
  ]
2823
2828
  },
2824
- "codex": {
2829
+ "config": {
2825
2830
  "aliases": [],
2826
- "args": {
2827
- "task": {
2828
- "description": "Task description for the agent",
2829
- "name": "task",
2830
- "required": false
2831
- }
2832
- },
2833
- "description": "Quick launch Codex for ad-hoc sessions (works anywhere, no HQ required)",
2831
+ "args": {},
2832
+ "description": "View and update workspace configuration",
2834
2833
  "examples": [
2835
- "<%= config.bin %> codex \"fix the bug\"",
2836
- "<%= config.bin %> codex \"add dark mode\" --permission-mode danger",
2837
- "<%= config.bin %> codex \"add tests\" --directory ./my-project"
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
- "permission-mode": {
2854
- "char": "p",
2855
- "description": "Permission mode (danger: skip prompts, safe: require approval)",
2856
- "name": "permission-mode",
2857
+ "set": {
2858
+ "char": "s",
2859
+ "description": "Set a config value (format: key value)",
2860
+ "name": "set",
2857
2861
  "hasDynamicHelp": false,
2858
- "multiple": false,
2859
- "options": [
2860
- "danger",
2861
- "safe"
2862
- ],
2862
+ "multiple": true,
2863
2863
  "type": "option"
2864
2864
  },
2865
- "directory": {
2866
- "description": "Directory to run in (default: cwd)",
2867
- "name": "directory",
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": "codex",
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
- "codex",
2891
+ "config",
2892
2892
  "index.js"
2893
2893
  ]
2894
2894
  },
@@ -3702,18 +3702,13 @@
3702
3702
  "sync.js"
3703
3703
  ]
3704
3704
  },
3705
- "execution:config": {
3705
+ "feedback": {
3706
3706
  "aliases": [],
3707
3707
  "args": {},
3708
- "description": "View and update execution preferences",
3708
+ "description": "Interactive menu for feedback and issue operations",
3709
3709
  "examples": [
3710
- "<%= config.bin %> execution config # Interactive menu",
3711
- "<%= config.bin %> execution config --json # Output current config as JSON",
3712
- "<%= config.bin %> execution config --list # Show all settings",
3713
- "<%= config.bin %> execution config --set defaultEnvironment host",
3714
- "<%= config.bin %> execution config --set outputMode interactive",
3715
- "<%= config.bin %> execution config --set permissionMode safe",
3716
- "<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
3710
+ "<%= config.bin %> <%= command.id %>",
3711
+ "<%= config.bin %> <%= command.id %> --action submit"
3717
3712
  ],
3718
3713
  "flags": {
3719
3714
  "json": {
@@ -3729,53 +3724,45 @@
3729
3724
  "allowNo": false,
3730
3725
  "type": "boolean"
3731
3726
  },
3732
- "set": {
3733
- "char": "s",
3734
- "description": "Set a config value (format: key value)",
3735
- "name": "set",
3736
- "hasDynamicHelp": false,
3737
- "multiple": true,
3738
- "type": "option"
3739
- },
3740
- "list": {
3741
- "char": "l",
3742
- "description": "List all configuration values",
3743
- "name": "list",
3744
- "allowNo": false,
3745
- "type": "boolean"
3746
- },
3747
- "setting": {
3748
- "description": "Navigate to a specific setting prompt (for agent navigation)",
3749
- "name": "setting",
3727
+ "action": {
3728
+ "char": "a",
3729
+ "description": "Action to perform (submit, list, view)",
3730
+ "name": "action",
3750
3731
  "hasDynamicHelp": false,
3751
3732
  "multiple": false,
3733
+ "options": [
3734
+ "submit",
3735
+ "list",
3736
+ "view"
3737
+ ],
3752
3738
  "type": "option"
3753
3739
  }
3754
3740
  },
3755
3741
  "hasDynamicHelp": false,
3756
3742
  "hiddenAliases": [],
3757
- "id": "execution:config",
3743
+ "id": "feedback",
3758
3744
  "pluginAlias": "@proletariat/cli",
3759
3745
  "pluginName": "@proletariat/cli",
3760
3746
  "pluginType": "core",
3761
3747
  "strict": true,
3748
+ "enableJsonFlag": false,
3762
3749
  "isESM": true,
3763
3750
  "relativePath": [
3764
3751
  "dist",
3765
3752
  "commands",
3766
- "execution",
3767
- "config.js"
3753
+ "feedback",
3754
+ "index.js"
3768
3755
  ]
3769
3756
  },
3770
- "execution": {
3757
+ "feedback:list": {
3771
3758
  "aliases": [],
3772
3759
  "args": {},
3773
- "description": "Single execution operations (view, logs, stop)",
3760
+ "description": "List recent feedback issues from the repository",
3774
3761
  "examples": [
3775
3762
  "<%= config.bin %> <%= command.id %>",
3776
- "<%= config.bin %> <%= command.id %> view WORK-001",
3777
- "<%= config.bin %> <%= command.id %> logs WORK-001",
3778
- "<%= config.bin %> <%= command.id %> stop WORK-001"
3763
+ "<%= config.bin %> <%= command.id %> --category bug",
3764
+ "<%= config.bin %> <%= command.id %> --state closed --limit 10",
3765
+ "<%= config.bin %> <%= command.id %> --json"
3779
3766
  ],
3780
3767
  "flags": {
3781
3768
  "json": {
@@ -3790,32 +3777,68 @@
3790
3777
  "name": "machine",
3791
3778
  "allowNo": false,
3792
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"
3793
3816
  }
3794
3817
  },
3795
3818
  "hasDynamicHelp": false,
3796
3819
  "hiddenAliases": [],
3797
- "id": "execution",
3820
+ "id": "feedback:list",
3798
3821
  "pluginAlias": "@proletariat/cli",
3799
3822
  "pluginName": "@proletariat/cli",
3800
3823
  "pluginType": "core",
3801
3824
  "strict": true,
3825
+ "enableJsonFlag": false,
3802
3826
  "isESM": true,
3803
3827
  "relativePath": [
3804
3828
  "dist",
3805
3829
  "commands",
3806
- "execution",
3807
- "index.js"
3830
+ "feedback",
3831
+ "list.js"
3808
3832
  ]
3809
3833
  },
3810
- "execution:list": {
3834
+ "feedback:submit": {
3811
3835
  "aliases": [],
3812
3836
  "args": {},
3813
- "description": "List running and recent executions",
3837
+ "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
3814
3838
  "examples": [
3815
3839
  "<%= config.bin %> <%= command.id %>",
3816
- "<%= config.bin %> <%= command.id %> --status running",
3817
- "<%= config.bin %> <%= command.id %> --agent alice",
3818
- "<%= config.bin %> <%= command.id %> --limit 50"
3840
+ "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
3841
+ "<%= config.bin %> <%= command.id %> --json"
3819
3842
  ],
3820
3843
  "flags": {
3821
3844
  "json": {
@@ -3831,31 +3854,250 @@
3831
3854
  "allowNo": false,
3832
3855
  "type": "boolean"
3833
3856
  },
3834
- "status": {
3835
- "char": "s",
3836
- "description": "Filter by status",
3837
- "name": "status",
3857
+ "title": {
3858
+ "char": "t",
3859
+ "description": "Issue title (one-liner) [required for non-interactive]",
3860
+ "name": "title",
3838
3861
  "hasDynamicHelp": false,
3839
3862
  "multiple": false,
3840
- "options": [
3841
- "starting",
3842
- "running",
3843
- "completed",
3844
- "failed",
3845
- "stopped"
3846
- ],
3847
3863
  "type": "option"
3848
3864
  },
3849
- "agent": {
3850
- "char": "a",
3851
- "description": "Filter by agent name",
3852
- "name": "agent",
3865
+ "body": {
3866
+ "char": "b",
3867
+ "description": "Issue description [required for non-interactive]",
3868
+ "name": "body",
3853
3869
  "hasDynamicHelp": false,
3854
3870
  "multiple": false,
3855
3871
  "type": "option"
3856
3872
  },
3857
- "limit": {
3858
- "char": "l",
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": {
3975
+ "char": "s",
3976
+ "description": "Set a config value (format: key value)",
3977
+ "name": "set",
3978
+ "hasDynamicHelp": false,
3979
+ "multiple": true,
3980
+ "type": "option"
3981
+ },
3982
+ "list": {
3983
+ "char": "l",
3984
+ "description": "List all configuration values",
3985
+ "name": "list",
3986
+ "allowNo": false,
3987
+ "type": "boolean"
3988
+ },
3989
+ "setting": {
3990
+ "description": "Navigate to a specific setting prompt (for agent navigation)",
3991
+ "name": "setting",
3992
+ "hasDynamicHelp": false,
3993
+ "multiple": false,
3994
+ "type": "option"
3995
+ }
3996
+ },
3997
+ "hasDynamicHelp": false,
3998
+ "hiddenAliases": [],
3999
+ "id": "execution:config",
4000
+ "pluginAlias": "@proletariat/cli",
4001
+ "pluginName": "@proletariat/cli",
4002
+ "pluginType": "core",
4003
+ "strict": true,
4004
+ "isESM": true,
4005
+ "relativePath": [
4006
+ "dist",
4007
+ "commands",
4008
+ "execution",
4009
+ "config.js"
4010
+ ]
4011
+ },
4012
+ "execution": {
4013
+ "aliases": [],
4014
+ "args": {},
4015
+ "description": "Single execution operations (view, logs, stop)",
4016
+ "examples": [
4017
+ "<%= config.bin %> <%= command.id %>",
4018
+ "<%= config.bin %> <%= command.id %> view WORK-001",
4019
+ "<%= config.bin %> <%= command.id %> logs WORK-001",
4020
+ "<%= config.bin %> <%= command.id %> stop WORK-001"
4021
+ ],
4022
+ "flags": {
4023
+ "json": {
4024
+ "description": "Output as JSON for AI agents/scripts",
4025
+ "name": "json",
4026
+ "allowNo": false,
4027
+ "type": "boolean"
4028
+ },
4029
+ "machine": {
4030
+ "char": "m",
4031
+ "description": "Output as JSON for AI agents/scripts",
4032
+ "name": "machine",
4033
+ "allowNo": false,
4034
+ "type": "boolean"
4035
+ }
4036
+ },
4037
+ "hasDynamicHelp": false,
4038
+ "hiddenAliases": [],
4039
+ "id": "execution",
4040
+ "pluginAlias": "@proletariat/cli",
4041
+ "pluginName": "@proletariat/cli",
4042
+ "pluginType": "core",
4043
+ "strict": true,
4044
+ "isESM": true,
4045
+ "relativePath": [
4046
+ "dist",
4047
+ "commands",
4048
+ "execution",
4049
+ "index.js"
4050
+ ]
4051
+ },
4052
+ "execution:list": {
4053
+ "aliases": [],
4054
+ "args": {},
4055
+ "description": "List running and recent executions",
4056
+ "examples": [
4057
+ "<%= config.bin %> <%= command.id %>",
4058
+ "<%= config.bin %> <%= command.id %> --status running",
4059
+ "<%= config.bin %> <%= command.id %> --agent alice",
4060
+ "<%= config.bin %> <%= command.id %> --limit 50"
4061
+ ],
4062
+ "flags": {
4063
+ "json": {
4064
+ "description": "Output as JSON for AI agents/scripts",
4065
+ "name": "json",
4066
+ "allowNo": false,
4067
+ "type": "boolean"
4068
+ },
4069
+ "machine": {
4070
+ "char": "m",
4071
+ "description": "Output as JSON for AI agents/scripts",
4072
+ "name": "machine",
4073
+ "allowNo": false,
4074
+ "type": "boolean"
4075
+ },
4076
+ "status": {
4077
+ "char": "s",
4078
+ "description": "Filter by status",
4079
+ "name": "status",
4080
+ "hasDynamicHelp": false,
4081
+ "multiple": false,
4082
+ "options": [
4083
+ "starting",
4084
+ "running",
4085
+ "completed",
4086
+ "failed",
4087
+ "stopped"
4088
+ ],
4089
+ "type": "option"
4090
+ },
4091
+ "agent": {
4092
+ "char": "a",
4093
+ "description": "Filter by agent name",
4094
+ "name": "agent",
4095
+ "hasDynamicHelp": false,
4096
+ "multiple": false,
4097
+ "type": "option"
4098
+ },
4099
+ "limit": {
4100
+ "char": "l",
3859
4101
  "description": "Number of results",
3860
4102
  "name": "limit",
3861
4103
  "default": 20,
@@ -4053,13 +4295,15 @@
4053
4295
  "view.js"
4054
4296
  ]
4055
4297
  },
4056
- "feedback": {
4298
+ "gh": {
4057
4299
  "aliases": [],
4058
4300
  "args": {},
4059
- "description": "Interactive menu for feedback and issue operations",
4301
+ "description": "GitHub CLI setup and status for PR workflow",
4060
4302
  "examples": [
4061
4303
  "<%= config.bin %> <%= command.id %>",
4062
- "<%= config.bin %> <%= command.id %> --action submit"
4304
+ "<%= config.bin %> <%= command.id %> status",
4305
+ "<%= config.bin %> <%= command.id %> login",
4306
+ "<%= config.bin %> <%= command.id %> token"
4063
4307
  ],
4064
4308
  "flags": {
4065
4309
  "json": {
@@ -4074,24 +4318,11 @@
4074
4318
  "name": "machine",
4075
4319
  "allowNo": false,
4076
4320
  "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
4321
  }
4091
4322
  },
4092
4323
  "hasDynamicHelp": false,
4093
4324
  "hiddenAliases": [],
4094
- "id": "feedback",
4325
+ "id": "gh",
4095
4326
  "pluginAlias": "@proletariat/cli",
4096
4327
  "pluginName": "@proletariat/cli",
4097
4328
  "pluginType": "core",
@@ -4101,242 +4332,11 @@
4101
4332
  "relativePath": [
4102
4333
  "dist",
4103
4334
  "commands",
4104
- "feedback",
4335
+ "gh",
4105
4336
  "index.js"
4106
4337
  ]
4107
4338
  },
4108
- "feedback:list": {
4109
- "aliases": [],
4110
- "args": {},
4111
- "description": "List recent feedback issues from the repository",
4112
- "examples": [
4113
- "<%= config.bin %> <%= command.id %>",
4114
- "<%= config.bin %> <%= command.id %> --category bug",
4115
- "<%= config.bin %> <%= command.id %> --state closed --limit 10",
4116
- "<%= config.bin %> <%= command.id %> --json"
4117
- ],
4118
- "flags": {
4119
- "json": {
4120
- "description": "Output as JSON for AI agents/scripts",
4121
- "name": "json",
4122
- "allowNo": false,
4123
- "type": "boolean"
4124
- },
4125
- "machine": {
4126
- "char": "m",
4127
- "description": "Output as JSON for AI agents/scripts",
4128
- "name": "machine",
4129
- "allowNo": false,
4130
- "type": "boolean"
4131
- },
4132
- "category": {
4133
- "char": "c",
4134
- "description": "Filter by category (bug, feature, general)",
4135
- "name": "category",
4136
- "hasDynamicHelp": false,
4137
- "multiple": false,
4138
- "options": [
4139
- "bug",
4140
- "feature",
4141
- "general"
4142
- ],
4143
- "type": "option"
4144
- },
4145
- "state": {
4146
- "char": "s",
4147
- "description": "Filter by state",
4148
- "name": "state",
4149
- "default": "open",
4150
- "hasDynamicHelp": false,
4151
- "multiple": false,
4152
- "options": [
4153
- "open",
4154
- "closed",
4155
- "all"
4156
- ],
4157
- "type": "option"
4158
- },
4159
- "limit": {
4160
- "char": "l",
4161
- "description": "Maximum number of issues to show",
4162
- "name": "limit",
4163
- "default": 20,
4164
- "hasDynamicHelp": false,
4165
- "multiple": false,
4166
- "type": "option"
4167
- }
4168
- },
4169
- "hasDynamicHelp": false,
4170
- "hiddenAliases": [],
4171
- "id": "feedback:list",
4172
- "pluginAlias": "@proletariat/cli",
4173
- "pluginName": "@proletariat/cli",
4174
- "pluginType": "core",
4175
- "strict": true,
4176
- "enableJsonFlag": false,
4177
- "isESM": true,
4178
- "relativePath": [
4179
- "dist",
4180
- "commands",
4181
- "feedback",
4182
- "list.js"
4183
- ]
4184
- },
4185
- "feedback:submit": {
4186
- "aliases": [],
4187
- "args": {},
4188
- "description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
4189
- "examples": [
4190
- "<%= config.bin %> <%= command.id %>",
4191
- "<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
4192
- "<%= config.bin %> <%= command.id %> --json"
4193
- ],
4194
- "flags": {
4195
- "json": {
4196
- "description": "Output as JSON for AI agents/scripts",
4197
- "name": "json",
4198
- "allowNo": false,
4199
- "type": "boolean"
4200
- },
4201
- "machine": {
4202
- "char": "m",
4203
- "description": "Output as JSON for AI agents/scripts",
4204
- "name": "machine",
4205
- "allowNo": false,
4206
- "type": "boolean"
4207
- },
4208
- "title": {
4209
- "char": "t",
4210
- "description": "Issue title (one-liner) [required for non-interactive]",
4211
- "name": "title",
4212
- "hasDynamicHelp": false,
4213
- "multiple": false,
4214
- "type": "option"
4215
- },
4216
- "body": {
4217
- "char": "b",
4218
- "description": "Issue description [required for non-interactive]",
4219
- "name": "body",
4220
- "hasDynamicHelp": false,
4221
- "multiple": false,
4222
- "type": "option"
4223
- },
4224
- "category": {
4225
- "char": "c",
4226
- "description": "Feedback category",
4227
- "name": "category",
4228
- "hasDynamicHelp": false,
4229
- "multiple": false,
4230
- "options": [
4231
- "bug",
4232
- "feature",
4233
- "general"
4234
- ],
4235
- "type": "option"
4236
- }
4237
- },
4238
- "hasDynamicHelp": false,
4239
- "hiddenAliases": [],
4240
- "id": "feedback:submit",
4241
- "pluginAlias": "@proletariat/cli",
4242
- "pluginName": "@proletariat/cli",
4243
- "pluginType": "core",
4244
- "strict": true,
4245
- "isESM": true,
4246
- "relativePath": [
4247
- "dist",
4248
- "commands",
4249
- "feedback",
4250
- "submit.js"
4251
- ]
4252
- },
4253
- "feedback:view": {
4254
- "aliases": [],
4255
- "args": {
4256
- "number": {
4257
- "description": "Issue number to view",
4258
- "name": "number",
4259
- "required": true
4260
- }
4261
- },
4262
- "description": "View details of a specific feedback issue",
4263
- "examples": [
4264
- "<%= config.bin %> <%= command.id %> 123",
4265
- "<%= config.bin %> <%= command.id %> 123 --json"
4266
- ],
4267
- "flags": {
4268
- "json": {
4269
- "description": "Output as JSON for AI agents/scripts",
4270
- "name": "json",
4271
- "allowNo": false,
4272
- "type": "boolean"
4273
- },
4274
- "machine": {
4275
- "char": "m",
4276
- "description": "Output as JSON for AI agents/scripts",
4277
- "name": "machine",
4278
- "allowNo": false,
4279
- "type": "boolean"
4280
- }
4281
- },
4282
- "hasDynamicHelp": false,
4283
- "hiddenAliases": [],
4284
- "id": "feedback:view",
4285
- "pluginAlias": "@proletariat/cli",
4286
- "pluginName": "@proletariat/cli",
4287
- "pluginType": "core",
4288
- "strict": true,
4289
- "enableJsonFlag": false,
4290
- "isESM": true,
4291
- "relativePath": [
4292
- "dist",
4293
- "commands",
4294
- "feedback",
4295
- "view.js"
4296
- ]
4297
- },
4298
- "gh": {
4299
- "aliases": [],
4300
- "args": {},
4301
- "description": "GitHub CLI setup and status for PR workflow",
4302
- "examples": [
4303
- "<%= config.bin %> <%= command.id %>",
4304
- "<%= config.bin %> <%= command.id %> status",
4305
- "<%= config.bin %> <%= command.id %> login",
4306
- "<%= config.bin %> <%= command.id %> token"
4307
- ],
4308
- "flags": {
4309
- "json": {
4310
- "description": "Output as JSON for AI agents/scripts",
4311
- "name": "json",
4312
- "allowNo": false,
4313
- "type": "boolean"
4314
- },
4315
- "machine": {
4316
- "char": "m",
4317
- "description": "Output as JSON for AI agents/scripts",
4318
- "name": "machine",
4319
- "allowNo": false,
4320
- "type": "boolean"
4321
- }
4322
- },
4323
- "hasDynamicHelp": false,
4324
- "hiddenAliases": [],
4325
- "id": "gh",
4326
- "pluginAlias": "@proletariat/cli",
4327
- "pluginName": "@proletariat/cli",
4328
- "pluginType": "core",
4329
- "strict": true,
4330
- "enableJsonFlag": false,
4331
- "isESM": true,
4332
- "relativePath": [
4333
- "dist",
4334
- "commands",
4335
- "gh",
4336
- "index.js"
4337
- ]
4338
- },
4339
- "gh:login": {
4339
+ "gh:login": {
4340
4340
  "aliases": [],
4341
4341
  "args": {},
4342
4342
  "description": "Login to GitHub CLI for PR workflow",
@@ -4512,6 +4512,8 @@
4512
4512
  "on_agent_died",
4513
4513
  "on_agent_completed",
4514
4514
  "on_agent_idle",
4515
+ "on_review_approved",
4516
+ "on_changes_requested",
4515
4517
  "on_version_published"
4516
4518
  ],
4517
4519
  "required": true
@@ -6337,20 +6339,23 @@
6337
6339
  "status.js"
6338
6340
  ]
6339
6341
  },
6340
- "qa": {
6341
- "aliases": [
6342
- "explore"
6343
- ],
6342
+ "project:configure": {
6343
+ "aliases": [],
6344
6344
  "args": {},
6345
- "description": "Spawn an exploratory QA agent to autonomously test the CLI (no ticket required)",
6345
+ "description": "Configure workflow column mapping for a project",
6346
6346
  "examples": [
6347
- "<%= config.bin %> <%= command.id %> # Quick launch QA agent",
6348
- "<%= config.bin %> <%= command.id %> --seed # Seed test data first",
6349
- "<%= config.bin %> <%= command.id %> --watch # Stream agent's tmux screen",
6350
- "<%= config.bin %> <%= command.id %> --environment host # Run on host instead of container",
6351
- "<%= config.bin %> <%= command.id %> --seed --watch # Seed data and watch live"
6347
+ "<%= config.bin %> <%= command.id %> --workflow",
6348
+ "<%= config.bin %> <%= command.id %> --workflow --show"
6352
6349
  ],
6353
6350
  "flags": {
6351
+ "project": {
6352
+ "char": "P",
6353
+ "description": "Project ID (uses first project if only one exists)",
6354
+ "name": "project",
6355
+ "hasDynamicHelp": false,
6356
+ "multiple": false,
6357
+ "type": "option"
6358
+ },
6354
6359
  "json": {
6355
6360
  "description": "Output as JSON for AI agents/scripts",
6356
6361
  "name": "json",
@@ -6364,15 +6369,71 @@
6364
6369
  "allowNo": false,
6365
6370
  "type": "boolean"
6366
6371
  },
6367
- "seed": {
6368
- "char": "s",
6369
- "description": "Seed test data before starting QA (runs seed-explore-data.mjs)",
6370
- "name": "seed",
6372
+ "workflow": {
6373
+ "char": "w",
6374
+ "description": "Configure workflow column mapping",
6375
+ "name": "workflow",
6371
6376
  "allowNo": false,
6372
6377
  "type": "boolean"
6373
6378
  },
6374
- "watch": {
6375
- "char": "w",
6379
+ "show": {
6380
+ "description": "Show current workflow mapping without prompting",
6381
+ "name": "show",
6382
+ "allowNo": false,
6383
+ "type": "boolean"
6384
+ }
6385
+ },
6386
+ "hasDynamicHelp": false,
6387
+ "hiddenAliases": [],
6388
+ "id": "project:configure",
6389
+ "pluginAlias": "@proletariat/cli",
6390
+ "pluginName": "@proletariat/cli",
6391
+ "pluginType": "core",
6392
+ "strict": true,
6393
+ "isESM": true,
6394
+ "relativePath": [
6395
+ "dist",
6396
+ "commands",
6397
+ "project",
6398
+ "configure.js"
6399
+ ]
6400
+ },
6401
+ "qa": {
6402
+ "aliases": [
6403
+ "explore"
6404
+ ],
6405
+ "args": {},
6406
+ "description": "Spawn an exploratory QA agent to autonomously test the CLI (no ticket required)",
6407
+ "examples": [
6408
+ "<%= config.bin %> <%= command.id %> # Quick launch QA agent",
6409
+ "<%= config.bin %> <%= command.id %> --seed # Seed test data first",
6410
+ "<%= config.bin %> <%= command.id %> --watch # Stream agent's tmux screen",
6411
+ "<%= config.bin %> <%= command.id %> --environment host # Run on host instead of container",
6412
+ "<%= config.bin %> <%= command.id %> --seed --watch # Seed data and watch live"
6413
+ ],
6414
+ "flags": {
6415
+ "json": {
6416
+ "description": "Output as JSON for AI agents/scripts",
6417
+ "name": "json",
6418
+ "allowNo": false,
6419
+ "type": "boolean"
6420
+ },
6421
+ "machine": {
6422
+ "char": "m",
6423
+ "description": "Output as JSON for AI agents/scripts",
6424
+ "name": "machine",
6425
+ "allowNo": false,
6426
+ "type": "boolean"
6427
+ },
6428
+ "seed": {
6429
+ "char": "s",
6430
+ "description": "Seed test data before starting QA (runs seed-explore-data.mjs)",
6431
+ "name": "seed",
6432
+ "allowNo": false,
6433
+ "type": "boolean"
6434
+ },
6435
+ "watch": {
6436
+ "char": "w",
6376
6437
  "description": "Stream the agent's tmux screen to your terminal in real-time",
6377
6438
  "name": "watch",
6378
6439
  "allowNo": false,
@@ -6843,6 +6904,99 @@
6843
6904
  "view.js"
6844
6905
  ]
6845
6906
  },
6907
+ "run": {
6908
+ "aliases": [],
6909
+ "args": {
6910
+ "task": {
6911
+ "description": "Task description for the agent",
6912
+ "name": "task",
6913
+ "required": true
6914
+ }
6915
+ },
6916
+ "description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
6917
+ "examples": [
6918
+ "<%= config.bin %> run \"fix the login bug\"",
6919
+ "<%= config.bin %> run --runner claude-code \"add dark mode\"",
6920
+ "<%= config.bin %> run -d \"fix the bug\"",
6921
+ "<%= config.bin %> run --runner codex \"add tests\""
6922
+ ],
6923
+ "flags": {
6924
+ "json": {
6925
+ "description": "Output as JSON for AI agents/scripts",
6926
+ "name": "json",
6927
+ "allowNo": false,
6928
+ "type": "boolean"
6929
+ },
6930
+ "machine": {
6931
+ "char": "m",
6932
+ "description": "Output as JSON for AI agents/scripts",
6933
+ "name": "machine",
6934
+ "allowNo": false,
6935
+ "type": "boolean"
6936
+ },
6937
+ "runner": {
6938
+ "char": "r",
6939
+ "description": "Runner to use (claude-code, codex, pi)",
6940
+ "name": "runner",
6941
+ "hasDynamicHelp": false,
6942
+ "multiple": false,
6943
+ "type": "option"
6944
+ },
6945
+ "detached": {
6946
+ "char": "d",
6947
+ "description": "Run in background (detached)",
6948
+ "name": "detached",
6949
+ "allowNo": false,
6950
+ "type": "boolean"
6951
+ },
6952
+ "directory": {
6953
+ "description": "Working directory (default: cwd)",
6954
+ "name": "directory",
6955
+ "hasDynamicHelp": false,
6956
+ "multiple": false,
6957
+ "type": "option"
6958
+ },
6959
+ "permission-mode": {
6960
+ "char": "p",
6961
+ "description": "Permission mode (danger: skip prompts, safe: require approval)",
6962
+ "name": "permission-mode",
6963
+ "hasDynamicHelp": false,
6964
+ "multiple": false,
6965
+ "options": [
6966
+ "danger",
6967
+ "safe"
6968
+ ],
6969
+ "type": "option"
6970
+ },
6971
+ "environment": {
6972
+ "char": "e",
6973
+ "description": "Environment to run in",
6974
+ "name": "environment",
6975
+ "hasDynamicHelp": false,
6976
+ "multiple": false,
6977
+ "options": [
6978
+ "host",
6979
+ "docker",
6980
+ "podman"
6981
+ ],
6982
+ "type": "option"
6983
+ }
6984
+ },
6985
+ "hasDynamicHelp": false,
6986
+ "hiddenAliases": [],
6987
+ "id": "run",
6988
+ "pluginAlias": "@proletariat/cli",
6989
+ "pluginName": "@proletariat/cli",
6990
+ "pluginType": "core",
6991
+ "strict": true,
6992
+ "isESM": true,
6993
+ "relativePath": [
6994
+ "dist",
6995
+ "commands",
6996
+ "run",
6997
+ "index.js"
6998
+ ]
6999
+ },
6846
7000
  "shortcut:connect": {
6847
7001
  "aliases": [],
6848
7002
  "args": {},
@@ -6950,23 +7104,22 @@
6950
7104
  },
6951
7105
  "new-tab": {
6952
7106
  "char": "n",
6953
- "description": "Open in a new terminal tab (default: true)",
7107
+ "description": "Open in a new terminal tab (requires macOS + supported terminal)",
6954
7108
  "name": "new-tab",
6955
7109
  "allowNo": false,
6956
7110
  "type": "boolean"
6957
7111
  },
6958
7112
  "current-terminal": {
6959
7113
  "char": "c",
6960
- "description": "Attach in current terminal instead of new tab",
7114
+ "description": "Attach in current terminal (this is now the default behavior)",
6961
7115
  "name": "current-terminal",
6962
7116
  "allowNo": false,
6963
7117
  "type": "boolean"
6964
7118
  },
6965
7119
  "terminal": {
6966
7120
  "char": "t",
6967
- "description": "Terminal app to use (iTerm, Terminal, Ghostty)",
7121
+ "description": "Terminal app to use for --new-tab (iTerm, Terminal, Ghostty)",
6968
7122
  "name": "terminal",
6969
- "default": "iTerm",
6970
7123
  "hasDynamicHelp": false,
6971
7124
  "multiple": false,
6972
7125
  "type": "option"
@@ -8103,99 +8256,6 @@
8103
8256
  "logs.js"
8104
8257
  ]
8105
8258
  },
8106
- "run": {
8107
- "aliases": [],
8108
- "args": {
8109
- "task": {
8110
- "description": "Task description for the agent",
8111
- "name": "task",
8112
- "required": true
8113
- }
8114
- },
8115
- "description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
8116
- "examples": [
8117
- "<%= config.bin %> run \"fix the login bug\"",
8118
- "<%= config.bin %> run --runner claude-code \"add dark mode\"",
8119
- "<%= config.bin %> run -d \"fix the bug\"",
8120
- "<%= config.bin %> run --runner codex \"add tests\""
8121
- ],
8122
- "flags": {
8123
- "json": {
8124
- "description": "Output as JSON for AI agents/scripts",
8125
- "name": "json",
8126
- "allowNo": false,
8127
- "type": "boolean"
8128
- },
8129
- "machine": {
8130
- "char": "m",
8131
- "description": "Output as JSON for AI agents/scripts",
8132
- "name": "machine",
8133
- "allowNo": false,
8134
- "type": "boolean"
8135
- },
8136
- "runner": {
8137
- "char": "r",
8138
- "description": "Runner to use (claude-code, codex, pi)",
8139
- "name": "runner",
8140
- "hasDynamicHelp": false,
8141
- "multiple": false,
8142
- "type": "option"
8143
- },
8144
- "detached": {
8145
- "char": "d",
8146
- "description": "Run in background (detached)",
8147
- "name": "detached",
8148
- "allowNo": false,
8149
- "type": "boolean"
8150
- },
8151
- "directory": {
8152
- "description": "Working directory (default: cwd)",
8153
- "name": "directory",
8154
- "hasDynamicHelp": false,
8155
- "multiple": false,
8156
- "type": "option"
8157
- },
8158
- "permission-mode": {
8159
- "char": "p",
8160
- "description": "Permission mode (danger: skip prompts, safe: require approval)",
8161
- "name": "permission-mode",
8162
- "hasDynamicHelp": false,
8163
- "multiple": false,
8164
- "options": [
8165
- "danger",
8166
- "safe"
8167
- ],
8168
- "type": "option"
8169
- },
8170
- "environment": {
8171
- "char": "e",
8172
- "description": "Environment to run in",
8173
- "name": "environment",
8174
- "hasDynamicHelp": false,
8175
- "multiple": false,
8176
- "options": [
8177
- "host",
8178
- "docker",
8179
- "podman"
8180
- ],
8181
- "type": "option"
8182
- }
8183
- },
8184
- "hasDynamicHelp": false,
8185
- "hiddenAliases": [],
8186
- "id": "run",
8187
- "pluginAlias": "@proletariat/cli",
8188
- "pluginName": "@proletariat/cli",
8189
- "pluginType": "core",
8190
- "strict": true,
8191
- "isESM": true,
8192
- "relativePath": [
8193
- "dist",
8194
- "commands",
8195
- "run",
8196
- "index.js"
8197
- ]
8198
- },
8199
8259
  "sync": {
8200
8260
  "aliases": [],
8201
8261
  "args": {},
@@ -8919,275 +8979,7 @@
8919
8979
  "set.js"
8920
8980
  ]
8921
8981
  },
8922
- "tools:add": {
8923
- "aliases": [],
8924
- "args": {
8925
- "type": {
8926
- "description": "Tool type (mcp or cli)",
8927
- "name": "type",
8928
- "options": [
8929
- "mcp",
8930
- "cli"
8931
- ],
8932
- "required": true
8933
- },
8934
- "name": {
8935
- "description": "Tool name (unique identifier)",
8936
- "name": "name",
8937
- "required": true
8938
- }
8939
- },
8940
- "description": "Register an MCP server or CLI tool",
8941
- "examples": [
8942
- "<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
8943
- "<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
8944
- ],
8945
- "flags": {
8946
- "json": {
8947
- "description": "Output as JSON for AI agents/scripts",
8948
- "name": "json",
8949
- "allowNo": false,
8950
- "type": "boolean"
8951
- },
8952
- "machine": {
8953
- "char": "m",
8954
- "description": "Output as JSON for AI agents/scripts",
8955
- "name": "machine",
8956
- "allowNo": false,
8957
- "type": "boolean"
8958
- },
8959
- "url": {
8960
- "description": "MCP server URL (for remote servers)",
8961
- "name": "url",
8962
- "hasDynamicHelp": false,
8963
- "multiple": false,
8964
- "type": "option"
8965
- },
8966
- "command": {
8967
- "description": "Command to run (MCP server command or CLI tool binary)",
8968
- "name": "command",
8969
- "hasDynamicHelp": false,
8970
- "multiple": false,
8971
- "type": "option"
8972
- },
8973
- "auth": {
8974
- "description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
8975
- "name": "auth",
8976
- "hasDynamicHelp": false,
8977
- "multiple": false,
8978
- "type": "option"
8979
- },
8980
- "detect": {
8981
- "description": "Shell command to detect if CLI tool is installed",
8982
- "name": "detect",
8983
- "hasDynamicHelp": false,
8984
- "multiple": false,
8985
- "type": "option"
8986
- },
8987
- "install": {
8988
- "description": "Shell command to install the CLI tool",
8989
- "name": "install",
8990
- "hasDynamicHelp": false,
8991
- "multiple": false,
8992
- "type": "option"
8993
- },
8994
- "description": {
8995
- "char": "d",
8996
- "description": "Human-readable description",
8997
- "name": "description",
8998
- "required": true,
8999
- "hasDynamicHelp": false,
9000
- "multiple": false,
9001
- "type": "option"
9002
- }
9003
- },
9004
- "hasDynamicHelp": false,
9005
- "hiddenAliases": [],
9006
- "id": "tools:add",
9007
- "pluginAlias": "@proletariat/cli",
9008
- "pluginName": "@proletariat/cli",
9009
- "pluginType": "core",
9010
- "strict": true,
9011
- "isESM": true,
9012
- "relativePath": [
9013
- "dist",
9014
- "commands",
9015
- "tools",
9016
- "add.js"
9017
- ]
9018
- },
9019
- "tools:check": {
9020
- "aliases": [],
9021
- "args": {},
9022
- "description": "Verify all registered tools are available and healthy",
9023
- "examples": [
9024
- "<%= config.bin %> tools check",
9025
- "<%= config.bin %> tools check --json"
9026
- ],
9027
- "flags": {
9028
- "json": {
9029
- "description": "Output as JSON for AI agents/scripts",
9030
- "name": "json",
9031
- "allowNo": false,
9032
- "type": "boolean"
9033
- },
9034
- "machine": {
9035
- "char": "m",
9036
- "description": "Output as JSON for AI agents/scripts",
9037
- "name": "machine",
9038
- "allowNo": false,
9039
- "type": "boolean"
9040
- }
9041
- },
9042
- "hasDynamicHelp": false,
9043
- "hiddenAliases": [],
9044
- "id": "tools:check",
9045
- "pluginAlias": "@proletariat/cli",
9046
- "pluginName": "@proletariat/cli",
9047
- "pluginType": "core",
9048
- "strict": true,
9049
- "enableJsonFlag": false,
9050
- "isESM": true,
9051
- "relativePath": [
9052
- "dist",
9053
- "commands",
9054
- "tools",
9055
- "check.js"
9056
- ]
9057
- },
9058
- "tools:detect": {
9059
- "aliases": [],
9060
- "args": {},
9061
- "description": "Auto-detect common CLI tools on the system and register them",
9062
- "examples": [
9063
- "<%= config.bin %> tools detect",
9064
- "<%= config.bin %> tools detect --auto",
9065
- "<%= config.bin %> tools detect --json"
9066
- ],
9067
- "flags": {
9068
- "json": {
9069
- "description": "Output as JSON for AI agents/scripts",
9070
- "name": "json",
9071
- "allowNo": false,
9072
- "type": "boolean"
9073
- },
9074
- "machine": {
9075
- "char": "m",
9076
- "description": "Output as JSON for AI agents/scripts",
9077
- "name": "machine",
9078
- "allowNo": false,
9079
- "type": "boolean"
9080
- },
9081
- "auto": {
9082
- "description": "Automatically register all detected tools without prompting",
9083
- "name": "auto",
9084
- "allowNo": false,
9085
- "type": "boolean"
9086
- }
9087
- },
9088
- "hasDynamicHelp": false,
9089
- "hiddenAliases": [],
9090
- "id": "tools:detect",
9091
- "pluginAlias": "@proletariat/cli",
9092
- "pluginName": "@proletariat/cli",
9093
- "pluginType": "core",
9094
- "strict": true,
9095
- "enableJsonFlag": false,
9096
- "isESM": true,
9097
- "relativePath": [
9098
- "dist",
9099
- "commands",
9100
- "tools",
9101
- "detect.js"
9102
- ]
9103
- },
9104
- "tools": {
9105
- "aliases": [
9106
- "tools:list"
9107
- ],
9108
- "args": {},
9109
- "description": "Show all registered MCP servers and CLI tools",
9110
- "examples": [
9111
- "<%= config.bin %> tools",
9112
- "<%= config.bin %> tools --json"
9113
- ],
9114
- "flags": {
9115
- "json": {
9116
- "description": "Output as JSON for AI agents/scripts",
9117
- "name": "json",
9118
- "allowNo": false,
9119
- "type": "boolean"
9120
- },
9121
- "machine": {
9122
- "char": "m",
9123
- "description": "Output as JSON for AI agents/scripts",
9124
- "name": "machine",
9125
- "allowNo": false,
9126
- "type": "boolean"
9127
- }
9128
- },
9129
- "hasDynamicHelp": false,
9130
- "hiddenAliases": [],
9131
- "id": "tools",
9132
- "pluginAlias": "@proletariat/cli",
9133
- "pluginName": "@proletariat/cli",
9134
- "pluginType": "core",
9135
- "strict": true,
9136
- "enableJsonFlag": false,
9137
- "isESM": true,
9138
- "relativePath": [
9139
- "dist",
9140
- "commands",
9141
- "tools",
9142
- "index.js"
9143
- ]
9144
- },
9145
- "tools:remove": {
9146
- "aliases": [],
9147
- "args": {
9148
- "name": {
9149
- "description": "Tool name to remove",
9150
- "name": "name",
9151
- "required": true
9152
- }
9153
- },
9154
- "description": "Remove a tool from the registry",
9155
- "examples": [
9156
- "<%= config.bin %> tools remove arcade",
9157
- "<%= config.bin %> tools remove ffmpeg"
9158
- ],
9159
- "flags": {
9160
- "json": {
9161
- "description": "Output as JSON for AI agents/scripts",
9162
- "name": "json",
9163
- "allowNo": false,
9164
- "type": "boolean"
9165
- },
9166
- "machine": {
9167
- "char": "m",
9168
- "description": "Output as JSON for AI agents/scripts",
9169
- "name": "machine",
9170
- "allowNo": false,
9171
- "type": "boolean"
9172
- }
9173
- },
9174
- "hasDynamicHelp": false,
9175
- "hiddenAliases": [],
9176
- "id": "tools:remove",
9177
- "pluginAlias": "@proletariat/cli",
9178
- "pluginName": "@proletariat/cli",
9179
- "pluginType": "core",
9180
- "strict": true,
9181
- "enableJsonFlag": false,
9182
- "isESM": true,
9183
- "relativePath": [
9184
- "dist",
9185
- "commands",
9186
- "tools",
9187
- "remove.js"
9188
- ]
9189
- },
9190
- "ticket:create": {
8982
+ "ticket:create": {
9191
8983
  "aliases": [],
9192
8984
  "args": {},
9193
8985
  "description": "Create a new ticket (routes to Linear when configured, or local PMO)",
@@ -10055,6 +9847,274 @@
10055
9847
  "update.js"
10056
9848
  ]
10057
9849
  },
9850
+ "tools:add": {
9851
+ "aliases": [],
9852
+ "args": {
9853
+ "type": {
9854
+ "description": "Tool type (mcp or cli)",
9855
+ "name": "type",
9856
+ "options": [
9857
+ "mcp",
9858
+ "cli"
9859
+ ],
9860
+ "required": true
9861
+ },
9862
+ "name": {
9863
+ "description": "Tool name (unique identifier)",
9864
+ "name": "name",
9865
+ "required": true
9866
+ }
9867
+ },
9868
+ "description": "Register an MCP server or CLI tool",
9869
+ "examples": [
9870
+ "<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
9871
+ "<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
9872
+ ],
9873
+ "flags": {
9874
+ "json": {
9875
+ "description": "Output as JSON for AI agents/scripts",
9876
+ "name": "json",
9877
+ "allowNo": false,
9878
+ "type": "boolean"
9879
+ },
9880
+ "machine": {
9881
+ "char": "m",
9882
+ "description": "Output as JSON for AI agents/scripts",
9883
+ "name": "machine",
9884
+ "allowNo": false,
9885
+ "type": "boolean"
9886
+ },
9887
+ "url": {
9888
+ "description": "MCP server URL (for remote servers)",
9889
+ "name": "url",
9890
+ "hasDynamicHelp": false,
9891
+ "multiple": false,
9892
+ "type": "option"
9893
+ },
9894
+ "command": {
9895
+ "description": "Command to run (MCP server command or CLI tool binary)",
9896
+ "name": "command",
9897
+ "hasDynamicHelp": false,
9898
+ "multiple": false,
9899
+ "type": "option"
9900
+ },
9901
+ "auth": {
9902
+ "description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
9903
+ "name": "auth",
9904
+ "hasDynamicHelp": false,
9905
+ "multiple": false,
9906
+ "type": "option"
9907
+ },
9908
+ "detect": {
9909
+ "description": "Shell command to detect if CLI tool is installed",
9910
+ "name": "detect",
9911
+ "hasDynamicHelp": false,
9912
+ "multiple": false,
9913
+ "type": "option"
9914
+ },
9915
+ "install": {
9916
+ "description": "Shell command to install the CLI tool",
9917
+ "name": "install",
9918
+ "hasDynamicHelp": false,
9919
+ "multiple": false,
9920
+ "type": "option"
9921
+ },
9922
+ "description": {
9923
+ "char": "d",
9924
+ "description": "Human-readable description",
9925
+ "name": "description",
9926
+ "required": true,
9927
+ "hasDynamicHelp": false,
9928
+ "multiple": false,
9929
+ "type": "option"
9930
+ }
9931
+ },
9932
+ "hasDynamicHelp": false,
9933
+ "hiddenAliases": [],
9934
+ "id": "tools:add",
9935
+ "pluginAlias": "@proletariat/cli",
9936
+ "pluginName": "@proletariat/cli",
9937
+ "pluginType": "core",
9938
+ "strict": true,
9939
+ "isESM": true,
9940
+ "relativePath": [
9941
+ "dist",
9942
+ "commands",
9943
+ "tools",
9944
+ "add.js"
9945
+ ]
9946
+ },
9947
+ "tools:check": {
9948
+ "aliases": [],
9949
+ "args": {},
9950
+ "description": "Verify all registered tools are available and healthy",
9951
+ "examples": [
9952
+ "<%= config.bin %> tools check",
9953
+ "<%= config.bin %> tools check --json"
9954
+ ],
9955
+ "flags": {
9956
+ "json": {
9957
+ "description": "Output as JSON for AI agents/scripts",
9958
+ "name": "json",
9959
+ "allowNo": false,
9960
+ "type": "boolean"
9961
+ },
9962
+ "machine": {
9963
+ "char": "m",
9964
+ "description": "Output as JSON for AI agents/scripts",
9965
+ "name": "machine",
9966
+ "allowNo": false,
9967
+ "type": "boolean"
9968
+ }
9969
+ },
9970
+ "hasDynamicHelp": false,
9971
+ "hiddenAliases": [],
9972
+ "id": "tools:check",
9973
+ "pluginAlias": "@proletariat/cli",
9974
+ "pluginName": "@proletariat/cli",
9975
+ "pluginType": "core",
9976
+ "strict": true,
9977
+ "enableJsonFlag": false,
9978
+ "isESM": true,
9979
+ "relativePath": [
9980
+ "dist",
9981
+ "commands",
9982
+ "tools",
9983
+ "check.js"
9984
+ ]
9985
+ },
9986
+ "tools:detect": {
9987
+ "aliases": [],
9988
+ "args": {},
9989
+ "description": "Auto-detect common CLI tools on the system and register them",
9990
+ "examples": [
9991
+ "<%= config.bin %> tools detect",
9992
+ "<%= config.bin %> tools detect --auto",
9993
+ "<%= config.bin %> tools detect --json"
9994
+ ],
9995
+ "flags": {
9996
+ "json": {
9997
+ "description": "Output as JSON for AI agents/scripts",
9998
+ "name": "json",
9999
+ "allowNo": false,
10000
+ "type": "boolean"
10001
+ },
10002
+ "machine": {
10003
+ "char": "m",
10004
+ "description": "Output as JSON for AI agents/scripts",
10005
+ "name": "machine",
10006
+ "allowNo": false,
10007
+ "type": "boolean"
10008
+ },
10009
+ "auto": {
10010
+ "description": "Automatically register all detected tools without prompting",
10011
+ "name": "auto",
10012
+ "allowNo": false,
10013
+ "type": "boolean"
10014
+ }
10015
+ },
10016
+ "hasDynamicHelp": false,
10017
+ "hiddenAliases": [],
10018
+ "id": "tools:detect",
10019
+ "pluginAlias": "@proletariat/cli",
10020
+ "pluginName": "@proletariat/cli",
10021
+ "pluginType": "core",
10022
+ "strict": true,
10023
+ "enableJsonFlag": false,
10024
+ "isESM": true,
10025
+ "relativePath": [
10026
+ "dist",
10027
+ "commands",
10028
+ "tools",
10029
+ "detect.js"
10030
+ ]
10031
+ },
10032
+ "tools": {
10033
+ "aliases": [
10034
+ "tools:list"
10035
+ ],
10036
+ "args": {},
10037
+ "description": "Show all registered MCP servers and CLI tools",
10038
+ "examples": [
10039
+ "<%= config.bin %> tools",
10040
+ "<%= config.bin %> tools --json"
10041
+ ],
10042
+ "flags": {
10043
+ "json": {
10044
+ "description": "Output as JSON for AI agents/scripts",
10045
+ "name": "json",
10046
+ "allowNo": false,
10047
+ "type": "boolean"
10048
+ },
10049
+ "machine": {
10050
+ "char": "m",
10051
+ "description": "Output as JSON for AI agents/scripts",
10052
+ "name": "machine",
10053
+ "allowNo": false,
10054
+ "type": "boolean"
10055
+ }
10056
+ },
10057
+ "hasDynamicHelp": false,
10058
+ "hiddenAliases": [],
10059
+ "id": "tools",
10060
+ "pluginAlias": "@proletariat/cli",
10061
+ "pluginName": "@proletariat/cli",
10062
+ "pluginType": "core",
10063
+ "strict": true,
10064
+ "enableJsonFlag": false,
10065
+ "isESM": true,
10066
+ "relativePath": [
10067
+ "dist",
10068
+ "commands",
10069
+ "tools",
10070
+ "index.js"
10071
+ ]
10072
+ },
10073
+ "tools:remove": {
10074
+ "aliases": [],
10075
+ "args": {
10076
+ "name": {
10077
+ "description": "Tool name to remove",
10078
+ "name": "name",
10079
+ "required": true
10080
+ }
10081
+ },
10082
+ "description": "Remove a tool from the registry",
10083
+ "examples": [
10084
+ "<%= config.bin %> tools remove arcade",
10085
+ "<%= config.bin %> tools remove ffmpeg"
10086
+ ],
10087
+ "flags": {
10088
+ "json": {
10089
+ "description": "Output as JSON for AI agents/scripts",
10090
+ "name": "json",
10091
+ "allowNo": false,
10092
+ "type": "boolean"
10093
+ },
10094
+ "machine": {
10095
+ "char": "m",
10096
+ "description": "Output as JSON for AI agents/scripts",
10097
+ "name": "machine",
10098
+ "allowNo": false,
10099
+ "type": "boolean"
10100
+ }
10101
+ },
10102
+ "hasDynamicHelp": false,
10103
+ "hiddenAliases": [],
10104
+ "id": "tools:remove",
10105
+ "pluginAlias": "@proletariat/cli",
10106
+ "pluginName": "@proletariat/cli",
10107
+ "pluginType": "core",
10108
+ "strict": true,
10109
+ "enableJsonFlag": false,
10110
+ "isESM": true,
10111
+ "relativePath": [
10112
+ "dist",
10113
+ "commands",
10114
+ "tools",
10115
+ "remove.js"
10116
+ ]
10117
+ },
10058
10118
  "trello:configure": {
10059
10119
  "aliases": [],
10060
10120
  "args": {},
@@ -13589,6 +13649,8 @@
13589
13649
  "on_agent_died",
13590
13650
  "on_agent_completed",
13591
13651
  "on_agent_idle",
13652
+ "on_review_approved",
13653
+ "on_changes_requested",
13592
13654
  "on_version_published"
13593
13655
  ],
13594
13656
  "type": "option"
@@ -13727,6 +13789,8 @@
13727
13789
  "on_agent_died",
13728
13790
  "on_agent_completed",
13729
13791
  "on_agent_idle",
13792
+ "on_review_approved",
13793
+ "on_changes_requested",
13730
13794
  "on_version_published"
13731
13795
  ],
13732
13796
  "type": "option"
@@ -13913,5 +13977,5 @@
13913
13977
  ]
13914
13978
  }
13915
13979
  },
13916
- "version": "0.3.102"
13980
+ "version": "0.3.104"
13917
13981
  }