@proletariat/cli 0.3.103 → 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.
- package/dist/commands/project/configure.d.ts +13 -0
- package/dist/commands/project/configure.js +149 -0
- package/dist/commands/project/configure.js.map +1 -0
- package/dist/commands/session/attach.d.ts +6 -1
- package/dist/commands/session/attach.js +82 -28
- package/dist/commands/session/attach.js.map +1 -1
- package/dist/commands/session/report.d.ts +5 -0
- package/dist/commands/session/report.js +53 -0
- package/dist/commands/session/report.js.map +1 -1
- package/dist/commands/ticket/delete.js +15 -7
- package/dist/commands/ticket/delete.js.map +1 -1
- package/dist/commands/ticket/move.js +21 -10
- package/dist/commands/ticket/move.js.map +1 -1
- package/dist/commands/ticket/update.js +18 -9
- package/dist/commands/ticket/update.js.map +1 -1
- package/dist/commands/update.js +12 -6
- package/dist/commands/update.js.map +1 -1
- package/dist/commands/work/ship.js +39 -57
- package/dist/commands/work/ship.js.map +1 -1
- package/dist/commands/work/start.js +62 -77
- package/dist/commands/work/start.js.map +1 -1
- package/dist/lib/events/events.d.ts +2 -0
- package/dist/lib/execution/devcontainer.d.ts +1 -0
- package/dist/lib/execution/devcontainer.js +1 -0
- package/dist/lib/execution/devcontainer.js.map +1 -1
- package/dist/lib/execution/runners/docker-management.d.ts +22 -3
- package/dist/lib/execution/runners/docker-management.js +102 -14
- package/dist/lib/execution/runners/docker-management.js.map +1 -1
- package/dist/lib/execution/runners/prompt-builder.d.ts +12 -0
- package/dist/lib/execution/runners/prompt-builder.js +44 -0
- package/dist/lib/execution/runners/prompt-builder.js.map +1 -1
- package/dist/lib/orchestrate/actions.js +68 -1
- package/dist/lib/orchestrate/actions.js.map +1 -1
- package/dist/lib/orchestrate/poller.d.ts +4 -1
- package/dist/lib/orchestrate/poller.js +63 -13
- package/dist/lib/orchestrate/poller.js.map +1 -1
- package/dist/lib/orchestrate/presets.js +18 -3
- package/dist/lib/orchestrate/presets.js.map +1 -1
- package/dist/lib/orchestrate/simple-poller.js +33 -11
- package/dist/lib/orchestrate/simple-poller.js.map +1 -1
- package/dist/lib/orchestrate/types.d.ts +2 -2
- package/dist/lib/orchestrate/types.js +3 -0
- package/dist/lib/orchestrate/types.js.map +1 -1
- package/dist/lib/pmo/base-command.js +12 -2
- package/dist/lib/pmo/base-command.js.map +1 -1
- package/dist/lib/pmo/templates-builtin.d.ts +2 -0
- package/dist/lib/pmo/templates-builtin.js +13 -0
- package/dist/lib/pmo/templates-builtin.js.map +1 -1
- package/dist/lib/pr/index.d.ts +9 -0
- package/dist/lib/pr/index.js +22 -0
- package/dist/lib/pr/index.js.map +1 -1
- package/dist/lib/providers/linear-provider.d.ts +11 -12
- package/dist/lib/providers/linear-provider.js +150 -177
- package/dist/lib/providers/linear-provider.js.map +1 -1
- package/dist/lib/providers/resolver.d.ts +5 -5
- package/dist/lib/providers/resolver.js +25 -31
- package/dist/lib/providers/resolver.js.map +1 -1
- package/dist/lib/sync/engine.js +15 -6
- package/dist/lib/sync/engine.js.map +1 -1
- package/dist/lib/sync/reconciler.d.ts +11 -2
- package/dist/lib/sync/reconciler.js +30 -12
- package/dist/lib/sync/reconciler.js.map +1 -1
- package/dist/lib/update-check.d.ts +24 -0
- package/dist/lib/update-check.js +85 -0
- package/dist/lib/update-check.js.map +1 -1
- package/dist/lib/update-prompt.js +10 -5
- package/dist/lib/update-prompt.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/types.d.ts +1 -1
- package/dist/lib/work-lifecycle/hooks/types.js +2 -0
- package/dist/lib/work-lifecycle/hooks/types.js.map +1 -1
- package/dist/lib/work-lifecycle/settings.d.ts +42 -0
- package/dist/lib/work-lifecycle/settings.js +65 -0
- package/dist/lib/work-lifecycle/settings.js.map +1 -1
- package/dist/lib/work-lifecycle/transition.js +45 -31
- package/dist/lib/work-lifecycle/transition.js.map +1 -1
- package/oclif.manifest.json +959 -895
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1972,6 +1972,66 @@
|
|
|
1972
1972
|
"sync.js"
|
|
1973
1973
|
]
|
|
1974
1974
|
},
|
|
1975
|
+
"autocomplete:setup": {
|
|
1976
|
+
"aliases": [],
|
|
1977
|
+
"args": {},
|
|
1978
|
+
"description": "Auto-detect shell and set up autocomplete",
|
|
1979
|
+
"examples": [
|
|
1980
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1981
|
+
"<%= config.bin %> <%= command.id %> --install",
|
|
1982
|
+
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
1983
|
+
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
1984
|
+
],
|
|
1985
|
+
"flags": {
|
|
1986
|
+
"json": {
|
|
1987
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1988
|
+
"name": "json",
|
|
1989
|
+
"allowNo": false,
|
|
1990
|
+
"type": "boolean"
|
|
1991
|
+
},
|
|
1992
|
+
"machine": {
|
|
1993
|
+
"char": "m",
|
|
1994
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
1995
|
+
"name": "machine",
|
|
1996
|
+
"allowNo": false,
|
|
1997
|
+
"type": "boolean"
|
|
1998
|
+
},
|
|
1999
|
+
"install": {
|
|
2000
|
+
"char": "i",
|
|
2001
|
+
"description": "Automatically install to shell config file",
|
|
2002
|
+
"name": "install",
|
|
2003
|
+
"allowNo": false,
|
|
2004
|
+
"type": "boolean"
|
|
2005
|
+
},
|
|
2006
|
+
"shell": {
|
|
2007
|
+
"char": "s",
|
|
2008
|
+
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2009
|
+
"name": "shell",
|
|
2010
|
+
"hasDynamicHelp": false,
|
|
2011
|
+
"multiple": false,
|
|
2012
|
+
"options": [
|
|
2013
|
+
"zsh",
|
|
2014
|
+
"bash",
|
|
2015
|
+
"powershell"
|
|
2016
|
+
],
|
|
2017
|
+
"type": "option"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
"hasDynamicHelp": false,
|
|
2021
|
+
"hiddenAliases": [],
|
|
2022
|
+
"id": "autocomplete:setup",
|
|
2023
|
+
"pluginAlias": "@proletariat/cli",
|
|
2024
|
+
"pluginName": "@proletariat/cli",
|
|
2025
|
+
"pluginType": "core",
|
|
2026
|
+
"strict": true,
|
|
2027
|
+
"isESM": true,
|
|
2028
|
+
"relativePath": [
|
|
2029
|
+
"dist",
|
|
2030
|
+
"commands",
|
|
2031
|
+
"autocomplete",
|
|
2032
|
+
"setup.js"
|
|
2033
|
+
]
|
|
2034
|
+
},
|
|
1975
2035
|
"branch:create": {
|
|
1976
2036
|
"aliases": [],
|
|
1977
2037
|
"args": {
|
|
@@ -2516,66 +2576,6 @@
|
|
|
2516
2576
|
"stop.js"
|
|
2517
2577
|
]
|
|
2518
2578
|
},
|
|
2519
|
-
"autocomplete:setup": {
|
|
2520
|
-
"aliases": [],
|
|
2521
|
-
"args": {},
|
|
2522
|
-
"description": "Auto-detect shell and set up autocomplete",
|
|
2523
|
-
"examples": [
|
|
2524
|
-
"<%= config.bin %> <%= command.id %>",
|
|
2525
|
-
"<%= config.bin %> <%= command.id %> --install",
|
|
2526
|
-
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
2527
|
-
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
2528
|
-
],
|
|
2529
|
-
"flags": {
|
|
2530
|
-
"json": {
|
|
2531
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2532
|
-
"name": "json",
|
|
2533
|
-
"allowNo": false,
|
|
2534
|
-
"type": "boolean"
|
|
2535
|
-
},
|
|
2536
|
-
"machine": {
|
|
2537
|
-
"char": "m",
|
|
2538
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2539
|
-
"name": "machine",
|
|
2540
|
-
"allowNo": false,
|
|
2541
|
-
"type": "boolean"
|
|
2542
|
-
},
|
|
2543
|
-
"install": {
|
|
2544
|
-
"char": "i",
|
|
2545
|
-
"description": "Automatically install to shell config file",
|
|
2546
|
-
"name": "install",
|
|
2547
|
-
"allowNo": false,
|
|
2548
|
-
"type": "boolean"
|
|
2549
|
-
},
|
|
2550
|
-
"shell": {
|
|
2551
|
-
"char": "s",
|
|
2552
|
-
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2553
|
-
"name": "shell",
|
|
2554
|
-
"hasDynamicHelp": false,
|
|
2555
|
-
"multiple": false,
|
|
2556
|
-
"options": [
|
|
2557
|
-
"zsh",
|
|
2558
|
-
"bash",
|
|
2559
|
-
"powershell"
|
|
2560
|
-
],
|
|
2561
|
-
"type": "option"
|
|
2562
|
-
}
|
|
2563
|
-
},
|
|
2564
|
-
"hasDynamicHelp": false,
|
|
2565
|
-
"hiddenAliases": [],
|
|
2566
|
-
"id": "autocomplete:setup",
|
|
2567
|
-
"pluginAlias": "@proletariat/cli",
|
|
2568
|
-
"pluginName": "@proletariat/cli",
|
|
2569
|
-
"pluginType": "core",
|
|
2570
|
-
"strict": true,
|
|
2571
|
-
"isESM": true,
|
|
2572
|
-
"relativePath": [
|
|
2573
|
-
"dist",
|
|
2574
|
-
"commands",
|
|
2575
|
-
"autocomplete",
|
|
2576
|
-
"setup.js"
|
|
2577
|
-
]
|
|
2578
|
-
},
|
|
2579
2579
|
"claude": {
|
|
2580
2580
|
"aliases": [],
|
|
2581
2581
|
"args": {},
|
|
@@ -3009,20 +3009,41 @@
|
|
|
3009
3009
|
"repair.js"
|
|
3010
3010
|
]
|
|
3011
3011
|
},
|
|
3012
|
-
"
|
|
3012
|
+
"docker:clean": {
|
|
3013
3013
|
"aliases": [],
|
|
3014
3014
|
"args": {},
|
|
3015
|
-
"description": "
|
|
3015
|
+
"description": "Remove orphaned containers (containers without running agents)",
|
|
3016
3016
|
"examples": [
|
|
3017
|
-
"<%= config.bin %>
|
|
3018
|
-
"<%= config.bin %>
|
|
3019
|
-
"<%= config.bin %>
|
|
3020
|
-
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3021
|
-
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3022
|
-
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3023
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3017
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3018
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
3019
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3024
3020
|
],
|
|
3025
3021
|
"flags": {
|
|
3022
|
+
"force": {
|
|
3023
|
+
"aliases": [
|
|
3024
|
+
"yes",
|
|
3025
|
+
"y"
|
|
3026
|
+
],
|
|
3027
|
+
"char": "f",
|
|
3028
|
+
"description": "Skip confirmation prompt",
|
|
3029
|
+
"name": "force",
|
|
3030
|
+
"allowNo": false,
|
|
3031
|
+
"type": "boolean"
|
|
3032
|
+
},
|
|
3033
|
+
"dry-run": {
|
|
3034
|
+
"char": "d",
|
|
3035
|
+
"description": "Show what would be removed without removing",
|
|
3036
|
+
"name": "dry-run",
|
|
3037
|
+
"allowNo": false,
|
|
3038
|
+
"type": "boolean"
|
|
3039
|
+
},
|
|
3040
|
+
"all": {
|
|
3041
|
+
"char": "a",
|
|
3042
|
+
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3043
|
+
"name": "all",
|
|
3044
|
+
"allowNo": false,
|
|
3045
|
+
"type": "boolean"
|
|
3046
|
+
},
|
|
3026
3047
|
"json": {
|
|
3027
3048
|
"description": "Output as JSON for AI agents/scripts",
|
|
3028
3049
|
"name": "json",
|
|
@@ -3035,54 +3056,41 @@
|
|
|
3035
3056
|
"name": "machine",
|
|
3036
3057
|
"allowNo": false,
|
|
3037
3058
|
"type": "boolean"
|
|
3038
|
-
},
|
|
3039
|
-
"set": {
|
|
3040
|
-
"char": "s",
|
|
3041
|
-
"description": "Set a config value (format: key value)",
|
|
3042
|
-
"name": "set",
|
|
3043
|
-
"hasDynamicHelp": false,
|
|
3044
|
-
"multiple": true,
|
|
3045
|
-
"type": "option"
|
|
3046
|
-
},
|
|
3047
|
-
"list": {
|
|
3048
|
-
"char": "l",
|
|
3049
|
-
"description": "List all configuration values",
|
|
3050
|
-
"name": "list",
|
|
3051
|
-
"allowNo": false,
|
|
3052
|
-
"type": "boolean"
|
|
3053
|
-
},
|
|
3054
|
-
"setting": {
|
|
3055
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
3056
|
-
"name": "setting",
|
|
3057
|
-
"hasDynamicHelp": false,
|
|
3058
|
-
"multiple": false,
|
|
3059
|
-
"type": "option"
|
|
3060
3059
|
}
|
|
3061
3060
|
},
|
|
3062
3061
|
"hasDynamicHelp": false,
|
|
3063
3062
|
"hiddenAliases": [],
|
|
3064
|
-
"id": "
|
|
3063
|
+
"id": "docker:clean",
|
|
3065
3064
|
"pluginAlias": "@proletariat/cli",
|
|
3066
3065
|
"pluginName": "@proletariat/cli",
|
|
3067
3066
|
"pluginType": "core",
|
|
3068
3067
|
"strict": true,
|
|
3068
|
+
"enableJsonFlag": false,
|
|
3069
3069
|
"isESM": true,
|
|
3070
3070
|
"relativePath": [
|
|
3071
3071
|
"dist",
|
|
3072
3072
|
"commands",
|
|
3073
|
-
"
|
|
3074
|
-
"
|
|
3073
|
+
"docker",
|
|
3074
|
+
"clean.js"
|
|
3075
3075
|
]
|
|
3076
3076
|
},
|
|
3077
|
-
"
|
|
3077
|
+
"docker": {
|
|
3078
3078
|
"aliases": [],
|
|
3079
3079
|
"args": {},
|
|
3080
|
-
"description": "
|
|
3080
|
+
"description": "Manage Docker containers used by agents",
|
|
3081
3081
|
"examples": [
|
|
3082
3082
|
"<%= config.bin %> <%= command.id %>",
|
|
3083
|
-
"<%= config.bin %>
|
|
3084
|
-
"<%= config.bin %>
|
|
3085
|
-
"<%= config.bin %>
|
|
3083
|
+
"<%= config.bin %> docker status",
|
|
3084
|
+
"<%= config.bin %> docker list",
|
|
3085
|
+
"<%= config.bin %> docker logs WORK-001",
|
|
3086
|
+
"<%= config.bin %> docker start WORK-001",
|
|
3087
|
+
"<%= config.bin %> docker stop kalanick",
|
|
3088
|
+
"<%= config.bin %> docker shell WORK-001",
|
|
3089
|
+
"<%= config.bin %> docker restart abc123",
|
|
3090
|
+
"<%= config.bin %> docker sync",
|
|
3091
|
+
"<%= config.bin %> docker rebuild-cache",
|
|
3092
|
+
"<%= config.bin %> docker clean",
|
|
3093
|
+
"<%= config.bin %> docker prune"
|
|
3086
3094
|
],
|
|
3087
3095
|
"flags": {
|
|
3088
3096
|
"json": {
|
|
@@ -3101,7 +3109,7 @@
|
|
|
3101
3109
|
},
|
|
3102
3110
|
"hasDynamicHelp": false,
|
|
3103
3111
|
"hiddenAliases": [],
|
|
3104
|
-
"id": "
|
|
3112
|
+
"id": "docker",
|
|
3105
3113
|
"pluginAlias": "@proletariat/cli",
|
|
3106
3114
|
"pluginName": "@proletariat/cli",
|
|
3107
3115
|
"pluginType": "core",
|
|
@@ -3110,19 +3118,18 @@
|
|
|
3110
3118
|
"relativePath": [
|
|
3111
3119
|
"dist",
|
|
3112
3120
|
"commands",
|
|
3113
|
-
"
|
|
3121
|
+
"docker",
|
|
3114
3122
|
"index.js"
|
|
3115
3123
|
]
|
|
3116
3124
|
},
|
|
3117
|
-
"
|
|
3125
|
+
"docker:list": {
|
|
3118
3126
|
"aliases": [],
|
|
3119
3127
|
"args": {},
|
|
3120
|
-
"description": "
|
|
3128
|
+
"description": "Show Docker containers from agent_work table with status",
|
|
3121
3129
|
"examples": [
|
|
3122
3130
|
"<%= config.bin %> <%= command.id %>",
|
|
3123
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3124
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3125
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3131
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3132
|
+
"<%= config.bin %> <%= command.id %> --running"
|
|
3126
3133
|
],
|
|
3127
3134
|
"flags": {
|
|
3128
3135
|
"json": {
|
|
@@ -3138,69 +3145,52 @@
|
|
|
3138
3145
|
"allowNo": false,
|
|
3139
3146
|
"type": "boolean"
|
|
3140
3147
|
},
|
|
3141
|
-
"
|
|
3142
|
-
"char": "s",
|
|
3143
|
-
"description": "Filter by status",
|
|
3144
|
-
"name": "status",
|
|
3145
|
-
"hasDynamicHelp": false,
|
|
3146
|
-
"multiple": false,
|
|
3147
|
-
"options": [
|
|
3148
|
-
"starting",
|
|
3149
|
-
"running",
|
|
3150
|
-
"completed",
|
|
3151
|
-
"failed",
|
|
3152
|
-
"stopped"
|
|
3153
|
-
],
|
|
3154
|
-
"type": "option"
|
|
3155
|
-
},
|
|
3156
|
-
"agent": {
|
|
3148
|
+
"all": {
|
|
3157
3149
|
"char": "a",
|
|
3158
|
-
"description": "
|
|
3159
|
-
"name": "
|
|
3160
|
-
"
|
|
3161
|
-
"
|
|
3162
|
-
"type": "option"
|
|
3150
|
+
"description": "Show all containers (including non-devcontainer)",
|
|
3151
|
+
"name": "all",
|
|
3152
|
+
"allowNo": false,
|
|
3153
|
+
"type": "boolean"
|
|
3163
3154
|
},
|
|
3164
|
-
"
|
|
3165
|
-
"char": "
|
|
3166
|
-
"description": "
|
|
3167
|
-
"name": "
|
|
3168
|
-
"
|
|
3169
|
-
"
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
},
|
|
3174
|
-
"hasDynamicHelp": false,
|
|
3155
|
+
"running": {
|
|
3156
|
+
"char": "r",
|
|
3157
|
+
"description": "Only show running containers",
|
|
3158
|
+
"name": "running",
|
|
3159
|
+
"allowNo": false,
|
|
3160
|
+
"type": "boolean"
|
|
3161
|
+
}
|
|
3162
|
+
},
|
|
3163
|
+
"hasDynamicHelp": false,
|
|
3175
3164
|
"hiddenAliases": [],
|
|
3176
|
-
"id": "
|
|
3165
|
+
"id": "docker:list",
|
|
3177
3166
|
"pluginAlias": "@proletariat/cli",
|
|
3178
3167
|
"pluginName": "@proletariat/cli",
|
|
3179
3168
|
"pluginType": "core",
|
|
3180
3169
|
"strict": true,
|
|
3170
|
+
"enableJsonFlag": false,
|
|
3181
3171
|
"isESM": true,
|
|
3182
3172
|
"relativePath": [
|
|
3183
3173
|
"dist",
|
|
3184
3174
|
"commands",
|
|
3185
|
-
"
|
|
3175
|
+
"docker",
|
|
3186
3176
|
"list.js"
|
|
3187
3177
|
]
|
|
3188
3178
|
},
|
|
3189
|
-
"
|
|
3179
|
+
"docker:logs": {
|
|
3190
3180
|
"aliases": [],
|
|
3191
3181
|
"args": {
|
|
3192
|
-
"
|
|
3193
|
-
"description": "Execution ID -
|
|
3194
|
-
"name": "
|
|
3195
|
-
"required":
|
|
3182
|
+
"target": {
|
|
3183
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3184
|
+
"name": "target",
|
|
3185
|
+
"required": true
|
|
3196
3186
|
}
|
|
3197
3187
|
},
|
|
3198
|
-
"description": "View execution
|
|
3188
|
+
"description": "View logs from a container (by execution ID, agent name, or container ID)",
|
|
3199
3189
|
"examples": [
|
|
3200
3190
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3201
|
-
"<%= config.bin %> <%= command.id %>
|
|
3202
|
-
"<%= config.bin %> <%= command.id %>
|
|
3203
|
-
"<%= config.bin %> <%= command.id %>
|
|
3191
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3192
|
+
"<%= config.bin %> <%= command.id %> abc123 --follow",
|
|
3193
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 100"
|
|
3204
3194
|
],
|
|
3205
3195
|
"flags": {
|
|
3206
3196
|
"json": {
|
|
@@ -3218,119 +3208,86 @@
|
|
|
3218
3208
|
},
|
|
3219
3209
|
"follow": {
|
|
3220
3210
|
"char": "f",
|
|
3221
|
-
"description": "
|
|
3211
|
+
"description": "Follow log output",
|
|
3222
3212
|
"name": "follow",
|
|
3223
3213
|
"allowNo": false,
|
|
3224
3214
|
"type": "boolean"
|
|
3225
3215
|
},
|
|
3226
3216
|
"tail": {
|
|
3227
3217
|
"char": "n",
|
|
3228
|
-
"description": "
|
|
3218
|
+
"description": "Number of lines to show from the end",
|
|
3229
3219
|
"name": "tail",
|
|
3220
|
+
"default": 100,
|
|
3230
3221
|
"hasDynamicHelp": false,
|
|
3231
3222
|
"multiple": false,
|
|
3232
3223
|
"type": "option"
|
|
3224
|
+
},
|
|
3225
|
+
"timestamps": {
|
|
3226
|
+
"char": "t",
|
|
3227
|
+
"description": "Show timestamps",
|
|
3228
|
+
"name": "timestamps",
|
|
3229
|
+
"allowNo": false,
|
|
3230
|
+
"type": "boolean"
|
|
3233
3231
|
}
|
|
3234
3232
|
},
|
|
3235
3233
|
"hasDynamicHelp": false,
|
|
3236
3234
|
"hiddenAliases": [],
|
|
3237
|
-
"id": "
|
|
3235
|
+
"id": "docker:logs",
|
|
3238
3236
|
"pluginAlias": "@proletariat/cli",
|
|
3239
3237
|
"pluginName": "@proletariat/cli",
|
|
3240
3238
|
"pluginType": "core",
|
|
3241
3239
|
"strict": true,
|
|
3240
|
+
"enableJsonFlag": false,
|
|
3242
3241
|
"isESM": true,
|
|
3243
3242
|
"relativePath": [
|
|
3244
3243
|
"dist",
|
|
3245
3244
|
"commands",
|
|
3246
|
-
"
|
|
3245
|
+
"docker",
|
|
3247
3246
|
"logs.js"
|
|
3248
3247
|
]
|
|
3249
3248
|
},
|
|
3250
|
-
"
|
|
3249
|
+
"docker:prune": {
|
|
3251
3250
|
"aliases": [],
|
|
3252
|
-
"args": {
|
|
3253
|
-
|
|
3254
|
-
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
3255
|
-
"name": "id",
|
|
3256
|
-
"required": false
|
|
3257
|
-
}
|
|
3258
|
-
},
|
|
3259
|
-
"description": "Stop running execution(s)",
|
|
3251
|
+
"args": {},
|
|
3252
|
+
"description": "Remove unused Docker resources (containers, images, volumes, networks)",
|
|
3260
3253
|
"examples": [
|
|
3261
|
-
"<%= config.bin %> <%= command.id %>
|
|
3262
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
3263
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
3254
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3264
3255
|
"<%= config.bin %> <%= command.id %> --all",
|
|
3265
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3266
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3256
|
+
"<%= config.bin %> <%= command.id %> --volumes",
|
|
3257
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3267
3258
|
],
|
|
3268
3259
|
"flags": {
|
|
3269
|
-
"
|
|
3270
|
-
"
|
|
3271
|
-
|
|
3260
|
+
"force": {
|
|
3261
|
+
"aliases": [
|
|
3262
|
+
"yes",
|
|
3263
|
+
"y"
|
|
3264
|
+
],
|
|
3265
|
+
"char": "f",
|
|
3266
|
+
"description": "Skip confirmation prompt",
|
|
3267
|
+
"name": "force",
|
|
3272
3268
|
"allowNo": false,
|
|
3273
3269
|
"type": "boolean"
|
|
3274
3270
|
},
|
|
3275
|
-
"
|
|
3276
|
-
"char": "
|
|
3277
|
-
"description": "
|
|
3278
|
-
"name": "
|
|
3271
|
+
"dry-run": {
|
|
3272
|
+
"char": "d",
|
|
3273
|
+
"description": "Show what would be removed without removing",
|
|
3274
|
+
"name": "dry-run",
|
|
3279
3275
|
"allowNo": false,
|
|
3280
3276
|
"type": "boolean"
|
|
3281
3277
|
},
|
|
3282
|
-
"
|
|
3283
|
-
"char": "
|
|
3284
|
-
"description": "
|
|
3285
|
-
"name": "
|
|
3278
|
+
"all": {
|
|
3279
|
+
"char": "a",
|
|
3280
|
+
"description": "Remove all unused images, not just dangling ones",
|
|
3281
|
+
"name": "all",
|
|
3286
3282
|
"allowNo": false,
|
|
3287
3283
|
"type": "boolean"
|
|
3288
3284
|
},
|
|
3289
|
-
"
|
|
3290
|
-
"description": "
|
|
3291
|
-
"name": "
|
|
3285
|
+
"volumes": {
|
|
3286
|
+
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3287
|
+
"name": "volumes",
|
|
3292
3288
|
"allowNo": false,
|
|
3293
3289
|
"type": "boolean"
|
|
3294
3290
|
},
|
|
3295
|
-
"agent": {
|
|
3296
|
-
"char": "a",
|
|
3297
|
-
"description": "Stop all executions for a specific agent",
|
|
3298
|
-
"name": "agent",
|
|
3299
|
-
"hasDynamicHelp": false,
|
|
3300
|
-
"multiple": false,
|
|
3301
|
-
"type": "option"
|
|
3302
|
-
}
|
|
3303
|
-
},
|
|
3304
|
-
"hasDynamicHelp": false,
|
|
3305
|
-
"hiddenAliases": [],
|
|
3306
|
-
"id": "execution:stop",
|
|
3307
|
-
"pluginAlias": "@proletariat/cli",
|
|
3308
|
-
"pluginName": "@proletariat/cli",
|
|
3309
|
-
"pluginType": "core",
|
|
3310
|
-
"strict": true,
|
|
3311
|
-
"isESM": true,
|
|
3312
|
-
"relativePath": [
|
|
3313
|
-
"dist",
|
|
3314
|
-
"commands",
|
|
3315
|
-
"execution",
|
|
3316
|
-
"stop.js"
|
|
3317
|
-
]
|
|
3318
|
-
},
|
|
3319
|
-
"execution:view": {
|
|
3320
|
-
"aliases": [],
|
|
3321
|
-
"args": {
|
|
3322
|
-
"id": {
|
|
3323
|
-
"description": "Execution ID - prompts if not provided",
|
|
3324
|
-
"name": "id",
|
|
3325
|
-
"required": false
|
|
3326
|
-
}
|
|
3327
|
-
},
|
|
3328
|
-
"description": "View details of a specific execution",
|
|
3329
|
-
"examples": [
|
|
3330
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3331
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3332
|
-
],
|
|
3333
|
-
"flags": {
|
|
3334
3291
|
"json": {
|
|
3335
3292
|
"description": "Output as JSON for AI agents/scripts",
|
|
3336
3293
|
"name": "json",
|
|
@@ -3347,51 +3304,39 @@
|
|
|
3347
3304
|
},
|
|
3348
3305
|
"hasDynamicHelp": false,
|
|
3349
3306
|
"hiddenAliases": [],
|
|
3350
|
-
"id": "
|
|
3307
|
+
"id": "docker:prune",
|
|
3351
3308
|
"pluginAlias": "@proletariat/cli",
|
|
3352
3309
|
"pluginName": "@proletariat/cli",
|
|
3353
3310
|
"pluginType": "core",
|
|
3354
3311
|
"strict": true,
|
|
3312
|
+
"enableJsonFlag": false,
|
|
3355
3313
|
"isESM": true,
|
|
3356
3314
|
"relativePath": [
|
|
3357
3315
|
"dist",
|
|
3358
3316
|
"commands",
|
|
3359
|
-
"
|
|
3360
|
-
"
|
|
3317
|
+
"docker",
|
|
3318
|
+
"prune.js"
|
|
3361
3319
|
]
|
|
3362
3320
|
},
|
|
3363
|
-
"docker:
|
|
3321
|
+
"docker:rebuild-cache": {
|
|
3364
3322
|
"aliases": [],
|
|
3365
3323
|
"args": {},
|
|
3366
|
-
"description": "
|
|
3324
|
+
"description": "Rebuild the shared pnpm store cache volume for fast agent installs",
|
|
3367
3325
|
"examples": [
|
|
3368
3326
|
"<%= config.bin %> <%= command.id %>",
|
|
3369
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
3370
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3327
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
3371
3328
|
],
|
|
3372
3329
|
"flags": {
|
|
3373
3330
|
"force": {
|
|
3374
|
-
"aliases": [
|
|
3375
|
-
"yes",
|
|
3376
|
-
"y"
|
|
3377
|
-
],
|
|
3378
3331
|
"char": "f",
|
|
3379
|
-
"description": "
|
|
3332
|
+
"description": "Delete and rebuild the cache even if it already exists",
|
|
3380
3333
|
"name": "force",
|
|
3381
3334
|
"allowNo": false,
|
|
3382
3335
|
"type": "boolean"
|
|
3383
3336
|
},
|
|
3384
|
-
"
|
|
3385
|
-
"
|
|
3386
|
-
"
|
|
3387
|
-
"name": "dry-run",
|
|
3388
|
-
"allowNo": false,
|
|
3389
|
-
"type": "boolean"
|
|
3390
|
-
},
|
|
3391
|
-
"all": {
|
|
3392
|
-
"char": "a",
|
|
3393
|
-
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3394
|
-
"name": "all",
|
|
3337
|
+
"delete-only": {
|
|
3338
|
+
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3339
|
+
"name": "delete-only",
|
|
3395
3340
|
"allowNo": false,
|
|
3396
3341
|
"type": "boolean"
|
|
3397
3342
|
},
|
|
@@ -3411,7 +3356,7 @@
|
|
|
3411
3356
|
},
|
|
3412
3357
|
"hasDynamicHelp": false,
|
|
3413
3358
|
"hiddenAliases": [],
|
|
3414
|
-
"id": "docker:
|
|
3359
|
+
"id": "docker:rebuild-cache",
|
|
3415
3360
|
"pluginAlias": "@proletariat/cli",
|
|
3416
3361
|
"pluginName": "@proletariat/cli",
|
|
3417
3362
|
"pluginType": "core",
|
|
@@ -3422,28 +3367,45 @@
|
|
|
3422
3367
|
"dist",
|
|
3423
3368
|
"commands",
|
|
3424
3369
|
"docker",
|
|
3425
|
-
"
|
|
3370
|
+
"rebuild-cache.js"
|
|
3426
3371
|
]
|
|
3427
3372
|
},
|
|
3428
|
-
"docker": {
|
|
3373
|
+
"docker:restart": {
|
|
3429
3374
|
"aliases": [],
|
|
3430
|
-
"args": {
|
|
3431
|
-
|
|
3375
|
+
"args": {
|
|
3376
|
+
"target": {
|
|
3377
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3378
|
+
"name": "target",
|
|
3379
|
+
"required": true
|
|
3380
|
+
}
|
|
3381
|
+
},
|
|
3382
|
+
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3432
3383
|
"examples": [
|
|
3433
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3434
|
-
"<%= config.bin %>
|
|
3435
|
-
"<%= config.bin %>
|
|
3436
|
-
"<%= config.bin %> docker logs WORK-001",
|
|
3437
|
-
"<%= config.bin %> docker start WORK-001",
|
|
3438
|
-
"<%= config.bin %> docker stop kalanick",
|
|
3439
|
-
"<%= config.bin %> docker shell WORK-001",
|
|
3440
|
-
"<%= config.bin %> docker restart abc123",
|
|
3441
|
-
"<%= config.bin %> docker sync",
|
|
3442
|
-
"<%= config.bin %> docker rebuild-cache",
|
|
3443
|
-
"<%= config.bin %> docker clean",
|
|
3444
|
-
"<%= config.bin %> docker prune"
|
|
3384
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3385
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3386
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3445
3387
|
],
|
|
3446
3388
|
"flags": {
|
|
3389
|
+
"force": {
|
|
3390
|
+
"aliases": [
|
|
3391
|
+
"yes",
|
|
3392
|
+
"y"
|
|
3393
|
+
],
|
|
3394
|
+
"char": "f",
|
|
3395
|
+
"description": "Skip confirmation prompt",
|
|
3396
|
+
"name": "force",
|
|
3397
|
+
"allowNo": false,
|
|
3398
|
+
"type": "boolean"
|
|
3399
|
+
},
|
|
3400
|
+
"time": {
|
|
3401
|
+
"char": "t",
|
|
3402
|
+
"description": "Seconds to wait before killing the container during stop",
|
|
3403
|
+
"name": "time",
|
|
3404
|
+
"default": 10,
|
|
3405
|
+
"hasDynamicHelp": false,
|
|
3406
|
+
"multiple": false,
|
|
3407
|
+
"type": "option"
|
|
3408
|
+
},
|
|
3447
3409
|
"json": {
|
|
3448
3410
|
"description": "Output as JSON for AI agents/scripts",
|
|
3449
3411
|
"name": "json",
|
|
@@ -3460,27 +3422,34 @@
|
|
|
3460
3422
|
},
|
|
3461
3423
|
"hasDynamicHelp": false,
|
|
3462
3424
|
"hiddenAliases": [],
|
|
3463
|
-
"id": "docker",
|
|
3425
|
+
"id": "docker:restart",
|
|
3464
3426
|
"pluginAlias": "@proletariat/cli",
|
|
3465
3427
|
"pluginName": "@proletariat/cli",
|
|
3466
3428
|
"pluginType": "core",
|
|
3467
3429
|
"strict": true,
|
|
3430
|
+
"enableJsonFlag": false,
|
|
3468
3431
|
"isESM": true,
|
|
3469
3432
|
"relativePath": [
|
|
3470
3433
|
"dist",
|
|
3471
3434
|
"commands",
|
|
3472
3435
|
"docker",
|
|
3473
|
-
"
|
|
3436
|
+
"restart.js"
|
|
3474
3437
|
]
|
|
3475
3438
|
},
|
|
3476
|
-
"docker:
|
|
3439
|
+
"docker:shell": {
|
|
3477
3440
|
"aliases": [],
|
|
3478
|
-
"args": {
|
|
3479
|
-
|
|
3441
|
+
"args": {
|
|
3442
|
+
"target": {
|
|
3443
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3444
|
+
"name": "target",
|
|
3445
|
+
"required": true
|
|
3446
|
+
}
|
|
3447
|
+
},
|
|
3448
|
+
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
3480
3449
|
"examples": [
|
|
3481
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3482
|
-
"<%= config.bin %> <%= command.id %>
|
|
3483
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3450
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3451
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3452
|
+
"<%= config.bin %> <%= command.id %> abc123 --shell /bin/bash"
|
|
3484
3453
|
],
|
|
3485
3454
|
"flags": {
|
|
3486
3455
|
"json": {
|
|
@@ -3496,24 +3465,35 @@
|
|
|
3496
3465
|
"allowNo": false,
|
|
3497
3466
|
"type": "boolean"
|
|
3498
3467
|
},
|
|
3499
|
-
"
|
|
3500
|
-
"char": "
|
|
3501
|
-
"description": "
|
|
3502
|
-
"name": "
|
|
3503
|
-
"
|
|
3504
|
-
"
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
"
|
|
3510
|
-
"
|
|
3511
|
-
"
|
|
3468
|
+
"shell": {
|
|
3469
|
+
"char": "s",
|
|
3470
|
+
"description": "Shell to use",
|
|
3471
|
+
"name": "shell",
|
|
3472
|
+
"default": "/bin/sh",
|
|
3473
|
+
"hasDynamicHelp": false,
|
|
3474
|
+
"multiple": false,
|
|
3475
|
+
"type": "option"
|
|
3476
|
+
},
|
|
3477
|
+
"user": {
|
|
3478
|
+
"char": "u",
|
|
3479
|
+
"description": "User to run as",
|
|
3480
|
+
"name": "user",
|
|
3481
|
+
"hasDynamicHelp": false,
|
|
3482
|
+
"multiple": false,
|
|
3483
|
+
"type": "option"
|
|
3484
|
+
},
|
|
3485
|
+
"workdir": {
|
|
3486
|
+
"char": "w",
|
|
3487
|
+
"description": "Working directory inside the container",
|
|
3488
|
+
"name": "workdir",
|
|
3489
|
+
"hasDynamicHelp": false,
|
|
3490
|
+
"multiple": false,
|
|
3491
|
+
"type": "option"
|
|
3512
3492
|
}
|
|
3513
3493
|
},
|
|
3514
3494
|
"hasDynamicHelp": false,
|
|
3515
3495
|
"hiddenAliases": [],
|
|
3516
|
-
"id": "docker:
|
|
3496
|
+
"id": "docker:shell",
|
|
3517
3497
|
"pluginAlias": "@proletariat/cli",
|
|
3518
3498
|
"pluginName": "@proletariat/cli",
|
|
3519
3499
|
"pluginType": "core",
|
|
@@ -3524,10 +3504,10 @@
|
|
|
3524
3504
|
"dist",
|
|
3525
3505
|
"commands",
|
|
3526
3506
|
"docker",
|
|
3527
|
-
"
|
|
3507
|
+
"shell.js"
|
|
3528
3508
|
]
|
|
3529
3509
|
},
|
|
3530
|
-
"docker:
|
|
3510
|
+
"docker:start": {
|
|
3531
3511
|
"aliases": [],
|
|
3532
3512
|
"args": {
|
|
3533
3513
|
"target": {
|
|
@@ -3536,12 +3516,11 @@
|
|
|
3536
3516
|
"required": true
|
|
3537
3517
|
}
|
|
3538
3518
|
},
|
|
3539
|
-
"description": "
|
|
3519
|
+
"description": "Start a stopped container (by execution ID, agent name, or container ID)",
|
|
3540
3520
|
"examples": [
|
|
3541
3521
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3542
3522
|
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3543
|
-
"<%= config.bin %> <%= command.id %> abc123
|
|
3544
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --tail 100"
|
|
3523
|
+
"<%= config.bin %> <%= command.id %> abc123"
|
|
3545
3524
|
],
|
|
3546
3525
|
"flags": {
|
|
3547
3526
|
"json": {
|
|
@@ -3557,33 +3536,55 @@
|
|
|
3557
3536
|
"allowNo": false,
|
|
3558
3537
|
"type": "boolean"
|
|
3559
3538
|
},
|
|
3560
|
-
"
|
|
3561
|
-
"char": "
|
|
3562
|
-
"description": "
|
|
3563
|
-
"name": "
|
|
3539
|
+
"attach": {
|
|
3540
|
+
"char": "a",
|
|
3541
|
+
"description": "Attach to container after starting",
|
|
3542
|
+
"name": "attach",
|
|
3543
|
+
"allowNo": false,
|
|
3544
|
+
"type": "boolean"
|
|
3545
|
+
}
|
|
3546
|
+
},
|
|
3547
|
+
"hasDynamicHelp": false,
|
|
3548
|
+
"hiddenAliases": [],
|
|
3549
|
+
"id": "docker:start",
|
|
3550
|
+
"pluginAlias": "@proletariat/cli",
|
|
3551
|
+
"pluginName": "@proletariat/cli",
|
|
3552
|
+
"pluginType": "core",
|
|
3553
|
+
"strict": true,
|
|
3554
|
+
"enableJsonFlag": false,
|
|
3555
|
+
"isESM": true,
|
|
3556
|
+
"relativePath": [
|
|
3557
|
+
"dist",
|
|
3558
|
+
"commands",
|
|
3559
|
+
"docker",
|
|
3560
|
+
"start.js"
|
|
3561
|
+
]
|
|
3562
|
+
},
|
|
3563
|
+
"docker:status": {
|
|
3564
|
+
"aliases": [],
|
|
3565
|
+
"args": {},
|
|
3566
|
+
"description": "Check if Docker daemon is running",
|
|
3567
|
+
"examples": [
|
|
3568
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3569
|
+
],
|
|
3570
|
+
"flags": {
|
|
3571
|
+
"json": {
|
|
3572
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3573
|
+
"name": "json",
|
|
3564
3574
|
"allowNo": false,
|
|
3565
3575
|
"type": "boolean"
|
|
3566
3576
|
},
|
|
3567
|
-
"
|
|
3568
|
-
"char": "
|
|
3569
|
-
"description": "
|
|
3570
|
-
"name": "
|
|
3571
|
-
"default": 100,
|
|
3572
|
-
"hasDynamicHelp": false,
|
|
3573
|
-
"multiple": false,
|
|
3574
|
-
"type": "option"
|
|
3575
|
-
},
|
|
3576
|
-
"timestamps": {
|
|
3577
|
-
"char": "t",
|
|
3578
|
-
"description": "Show timestamps",
|
|
3579
|
-
"name": "timestamps",
|
|
3577
|
+
"machine": {
|
|
3578
|
+
"char": "m",
|
|
3579
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3580
|
+
"name": "machine",
|
|
3580
3581
|
"allowNo": false,
|
|
3581
3582
|
"type": "boolean"
|
|
3582
3583
|
}
|
|
3583
3584
|
},
|
|
3584
3585
|
"hasDynamicHelp": false,
|
|
3585
3586
|
"hiddenAliases": [],
|
|
3586
|
-
"id": "docker:
|
|
3587
|
+
"id": "docker:status",
|
|
3587
3588
|
"pluginAlias": "@proletariat/cli",
|
|
3588
3589
|
"pluginName": "@proletariat/cli",
|
|
3589
3590
|
"pluginType": "core",
|
|
@@ -3594,18 +3595,23 @@
|
|
|
3594
3595
|
"dist",
|
|
3595
3596
|
"commands",
|
|
3596
3597
|
"docker",
|
|
3597
|
-
"
|
|
3598
|
+
"status.js"
|
|
3598
3599
|
]
|
|
3599
3600
|
},
|
|
3600
|
-
"docker:
|
|
3601
|
+
"docker:stop": {
|
|
3601
3602
|
"aliases": [],
|
|
3602
|
-
"args": {
|
|
3603
|
-
|
|
3603
|
+
"args": {
|
|
3604
|
+
"target": {
|
|
3605
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3606
|
+
"name": "target",
|
|
3607
|
+
"required": true
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3610
|
+
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
3604
3611
|
"examples": [
|
|
3605
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3606
|
-
"<%= config.bin %> <%= command.id %>
|
|
3607
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3608
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3612
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3613
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3614
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3609
3615
|
],
|
|
3610
3616
|
"flags": {
|
|
3611
3617
|
"force": {
|
|
@@ -3619,25 +3625,14 @@
|
|
|
3619
3625
|
"allowNo": false,
|
|
3620
3626
|
"type": "boolean"
|
|
3621
3627
|
},
|
|
3622
|
-
"
|
|
3623
|
-
"char": "
|
|
3624
|
-
"description": "
|
|
3625
|
-
"name": "
|
|
3626
|
-
"
|
|
3627
|
-
"
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
"char": "a",
|
|
3631
|
-
"description": "Remove all unused images, not just dangling ones",
|
|
3632
|
-
"name": "all",
|
|
3633
|
-
"allowNo": false,
|
|
3634
|
-
"type": "boolean"
|
|
3635
|
-
},
|
|
3636
|
-
"volumes": {
|
|
3637
|
-
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3638
|
-
"name": "volumes",
|
|
3639
|
-
"allowNo": false,
|
|
3640
|
-
"type": "boolean"
|
|
3628
|
+
"time": {
|
|
3629
|
+
"char": "t",
|
|
3630
|
+
"description": "Seconds to wait before killing the container",
|
|
3631
|
+
"name": "time",
|
|
3632
|
+
"default": 10,
|
|
3633
|
+
"hasDynamicHelp": false,
|
|
3634
|
+
"multiple": false,
|
|
3635
|
+
"type": "option"
|
|
3641
3636
|
},
|
|
3642
3637
|
"json": {
|
|
3643
3638
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -3655,7 +3650,7 @@
|
|
|
3655
3650
|
},
|
|
3656
3651
|
"hasDynamicHelp": false,
|
|
3657
3652
|
"hiddenAliases": [],
|
|
3658
|
-
"id": "docker:
|
|
3653
|
+
"id": "docker:stop",
|
|
3659
3654
|
"pluginAlias": "@proletariat/cli",
|
|
3660
3655
|
"pluginName": "@proletariat/cli",
|
|
3661
3656
|
"pluginType": "core",
|
|
@@ -3666,31 +3661,17 @@
|
|
|
3666
3661
|
"dist",
|
|
3667
3662
|
"commands",
|
|
3668
3663
|
"docker",
|
|
3669
|
-
"
|
|
3664
|
+
"stop.js"
|
|
3670
3665
|
]
|
|
3671
3666
|
},
|
|
3672
|
-
"docker:
|
|
3667
|
+
"docker:sync": {
|
|
3673
3668
|
"aliases": [],
|
|
3674
3669
|
"args": {},
|
|
3675
|
-
"description": "
|
|
3670
|
+
"description": "Sync container status from Docker into the database",
|
|
3676
3671
|
"examples": [
|
|
3677
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3678
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
3672
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3679
3673
|
],
|
|
3680
3674
|
"flags": {
|
|
3681
|
-
"force": {
|
|
3682
|
-
"char": "f",
|
|
3683
|
-
"description": "Delete and rebuild the cache even if it already exists",
|
|
3684
|
-
"name": "force",
|
|
3685
|
-
"allowNo": false,
|
|
3686
|
-
"type": "boolean"
|
|
3687
|
-
},
|
|
3688
|
-
"delete-only": {
|
|
3689
|
-
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3690
|
-
"name": "delete-only",
|
|
3691
|
-
"allowNo": false,
|
|
3692
|
-
"type": "boolean"
|
|
3693
|
-
},
|
|
3694
3675
|
"json": {
|
|
3695
3676
|
"description": "Output as JSON for AI agents/scripts",
|
|
3696
3677
|
"name": "json",
|
|
@@ -3707,7 +3688,7 @@
|
|
|
3707
3688
|
},
|
|
3708
3689
|
"hasDynamicHelp": false,
|
|
3709
3690
|
"hiddenAliases": [],
|
|
3710
|
-
"id": "docker:
|
|
3691
|
+
"id": "docker:sync",
|
|
3711
3692
|
"pluginAlias": "@proletariat/cli",
|
|
3712
3693
|
"pluginName": "@proletariat/cli",
|
|
3713
3694
|
"pluginType": "core",
|
|
@@ -3718,45 +3699,72 @@
|
|
|
3718
3699
|
"dist",
|
|
3719
3700
|
"commands",
|
|
3720
3701
|
"docker",
|
|
3721
|
-
"
|
|
3702
|
+
"sync.js"
|
|
3722
3703
|
]
|
|
3723
3704
|
},
|
|
3724
|
-
"
|
|
3705
|
+
"feedback": {
|
|
3725
3706
|
"aliases": [],
|
|
3726
|
-
"args": {
|
|
3727
|
-
|
|
3728
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3729
|
-
"name": "target",
|
|
3730
|
-
"required": true
|
|
3731
|
-
}
|
|
3732
|
-
},
|
|
3733
|
-
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3707
|
+
"args": {},
|
|
3708
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
3734
3709
|
"examples": [
|
|
3735
|
-
"<%= config.bin %> <%= command.id %>
|
|
3736
|
-
"<%= config.bin %> <%= command.id %>
|
|
3737
|
-
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3710
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3711
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
3738
3712
|
],
|
|
3739
3713
|
"flags": {
|
|
3740
|
-
"
|
|
3741
|
-
"
|
|
3742
|
-
|
|
3743
|
-
"y"
|
|
3744
|
-
],
|
|
3745
|
-
"char": "f",
|
|
3746
|
-
"description": "Skip confirmation prompt",
|
|
3747
|
-
"name": "force",
|
|
3714
|
+
"json": {
|
|
3715
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3716
|
+
"name": "json",
|
|
3748
3717
|
"allowNo": false,
|
|
3749
3718
|
"type": "boolean"
|
|
3750
3719
|
},
|
|
3751
|
-
"
|
|
3752
|
-
"char": "
|
|
3753
|
-
"description": "
|
|
3754
|
-
"name": "
|
|
3755
|
-
"
|
|
3720
|
+
"machine": {
|
|
3721
|
+
"char": "m",
|
|
3722
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3723
|
+
"name": "machine",
|
|
3724
|
+
"allowNo": false,
|
|
3725
|
+
"type": "boolean"
|
|
3726
|
+
},
|
|
3727
|
+
"action": {
|
|
3728
|
+
"char": "a",
|
|
3729
|
+
"description": "Action to perform (submit, list, view)",
|
|
3730
|
+
"name": "action",
|
|
3756
3731
|
"hasDynamicHelp": false,
|
|
3757
3732
|
"multiple": false,
|
|
3733
|
+
"options": [
|
|
3734
|
+
"submit",
|
|
3735
|
+
"list",
|
|
3736
|
+
"view"
|
|
3737
|
+
],
|
|
3758
3738
|
"type": "option"
|
|
3759
|
-
}
|
|
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": {
|
|
3760
3768
|
"json": {
|
|
3761
3769
|
"description": "Output as JSON for AI agents/scripts",
|
|
3762
3770
|
"name": "json",
|
|
@@ -3769,11 +3777,47 @@
|
|
|
3769
3777
|
"name": "machine",
|
|
3770
3778
|
"allowNo": false,
|
|
3771
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"
|
|
3772
3816
|
}
|
|
3773
3817
|
},
|
|
3774
3818
|
"hasDynamicHelp": false,
|
|
3775
3819
|
"hiddenAliases": [],
|
|
3776
|
-
"id": "
|
|
3820
|
+
"id": "feedback:list",
|
|
3777
3821
|
"pluginAlias": "@proletariat/cli",
|
|
3778
3822
|
"pluginName": "@proletariat/cli",
|
|
3779
3823
|
"pluginType": "core",
|
|
@@ -3783,24 +3827,18 @@
|
|
|
3783
3827
|
"relativePath": [
|
|
3784
3828
|
"dist",
|
|
3785
3829
|
"commands",
|
|
3786
|
-
"
|
|
3787
|
-
"
|
|
3830
|
+
"feedback",
|
|
3831
|
+
"list.js"
|
|
3788
3832
|
]
|
|
3789
3833
|
},
|
|
3790
|
-
"
|
|
3834
|
+
"feedback:submit": {
|
|
3791
3835
|
"aliases": [],
|
|
3792
|
-
"args": {
|
|
3793
|
-
|
|
3794
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3795
|
-
"name": "target",
|
|
3796
|
-
"required": true
|
|
3797
|
-
}
|
|
3798
|
-
},
|
|
3799
|
-
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
3836
|
+
"args": {},
|
|
3837
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
3800
3838
|
"examples": [
|
|
3801
|
-
"<%= config.bin %> <%= command.id %>
|
|
3802
|
-
"<%= config.bin %> <%= command.id %>
|
|
3803
|
-
"<%= config.bin %> <%= command.id %>
|
|
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"
|
|
3804
3842
|
],
|
|
3805
3843
|
"flags": {
|
|
3806
3844
|
"json": {
|
|
@@ -3816,62 +3854,64 @@
|
|
|
3816
3854
|
"allowNo": false,
|
|
3817
3855
|
"type": "boolean"
|
|
3818
3856
|
},
|
|
3819
|
-
"
|
|
3820
|
-
"char": "
|
|
3821
|
-
"description": "
|
|
3822
|
-
"name": "
|
|
3823
|
-
"default": "/bin/sh",
|
|
3857
|
+
"title": {
|
|
3858
|
+
"char": "t",
|
|
3859
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
3860
|
+
"name": "title",
|
|
3824
3861
|
"hasDynamicHelp": false,
|
|
3825
3862
|
"multiple": false,
|
|
3826
3863
|
"type": "option"
|
|
3827
3864
|
},
|
|
3828
|
-
"
|
|
3829
|
-
"char": "
|
|
3830
|
-
"description": "
|
|
3831
|
-
"name": "
|
|
3865
|
+
"body": {
|
|
3866
|
+
"char": "b",
|
|
3867
|
+
"description": "Issue description [required for non-interactive]",
|
|
3868
|
+
"name": "body",
|
|
3832
3869
|
"hasDynamicHelp": false,
|
|
3833
3870
|
"multiple": false,
|
|
3834
3871
|
"type": "option"
|
|
3835
3872
|
},
|
|
3836
|
-
"
|
|
3837
|
-
"char": "
|
|
3838
|
-
"description": "
|
|
3839
|
-
"name": "
|
|
3873
|
+
"category": {
|
|
3874
|
+
"char": "c",
|
|
3875
|
+
"description": "Feedback category",
|
|
3876
|
+
"name": "category",
|
|
3840
3877
|
"hasDynamicHelp": false,
|
|
3841
3878
|
"multiple": false,
|
|
3879
|
+
"options": [
|
|
3880
|
+
"bug",
|
|
3881
|
+
"feature",
|
|
3882
|
+
"general"
|
|
3883
|
+
],
|
|
3842
3884
|
"type": "option"
|
|
3843
3885
|
}
|
|
3844
3886
|
},
|
|
3845
3887
|
"hasDynamicHelp": false,
|
|
3846
3888
|
"hiddenAliases": [],
|
|
3847
|
-
"id": "
|
|
3889
|
+
"id": "feedback:submit",
|
|
3848
3890
|
"pluginAlias": "@proletariat/cli",
|
|
3849
3891
|
"pluginName": "@proletariat/cli",
|
|
3850
3892
|
"pluginType": "core",
|
|
3851
3893
|
"strict": true,
|
|
3852
|
-
"enableJsonFlag": false,
|
|
3853
3894
|
"isESM": true,
|
|
3854
3895
|
"relativePath": [
|
|
3855
3896
|
"dist",
|
|
3856
3897
|
"commands",
|
|
3857
|
-
"
|
|
3858
|
-
"
|
|
3898
|
+
"feedback",
|
|
3899
|
+
"submit.js"
|
|
3859
3900
|
]
|
|
3860
3901
|
},
|
|
3861
|
-
"
|
|
3902
|
+
"feedback:view": {
|
|
3862
3903
|
"aliases": [],
|
|
3863
3904
|
"args": {
|
|
3864
|
-
"
|
|
3865
|
-
"description": "
|
|
3866
|
-
"name": "
|
|
3905
|
+
"number": {
|
|
3906
|
+
"description": "Issue number to view",
|
|
3907
|
+
"name": "number",
|
|
3867
3908
|
"required": true
|
|
3868
3909
|
}
|
|
3869
3910
|
},
|
|
3870
|
-
"description": "
|
|
3911
|
+
"description": "View details of a specific feedback issue",
|
|
3871
3912
|
"examples": [
|
|
3872
|
-
"<%= config.bin %> <%= command.id %>
|
|
3873
|
-
"<%= config.bin %> <%= command.id %>
|
|
3874
|
-
"<%= config.bin %> <%= command.id %> abc123"
|
|
3913
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
3914
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
3875
3915
|
],
|
|
3876
3916
|
"flags": {
|
|
3877
3917
|
"json": {
|
|
@@ -3886,18 +3926,11 @@
|
|
|
3886
3926
|
"name": "machine",
|
|
3887
3927
|
"allowNo": false,
|
|
3888
3928
|
"type": "boolean"
|
|
3889
|
-
},
|
|
3890
|
-
"attach": {
|
|
3891
|
-
"char": "a",
|
|
3892
|
-
"description": "Attach to container after starting",
|
|
3893
|
-
"name": "attach",
|
|
3894
|
-
"allowNo": false,
|
|
3895
|
-
"type": "boolean"
|
|
3896
3929
|
}
|
|
3897
3930
|
},
|
|
3898
3931
|
"hasDynamicHelp": false,
|
|
3899
3932
|
"hiddenAliases": [],
|
|
3900
|
-
"id": "
|
|
3933
|
+
"id": "feedback:view",
|
|
3901
3934
|
"pluginAlias": "@proletariat/cli",
|
|
3902
3935
|
"pluginName": "@proletariat/cli",
|
|
3903
3936
|
"pluginType": "core",
|
|
@@ -3907,16 +3940,22 @@
|
|
|
3907
3940
|
"relativePath": [
|
|
3908
3941
|
"dist",
|
|
3909
3942
|
"commands",
|
|
3910
|
-
"
|
|
3911
|
-
"
|
|
3943
|
+
"feedback",
|
|
3944
|
+
"view.js"
|
|
3912
3945
|
]
|
|
3913
3946
|
},
|
|
3914
|
-
"
|
|
3947
|
+
"execution:config": {
|
|
3915
3948
|
"aliases": [],
|
|
3916
3949
|
"args": {},
|
|
3917
|
-
"description": "
|
|
3950
|
+
"description": "View and update execution preferences",
|
|
3918
3951
|
"examples": [
|
|
3919
|
-
"<%= config.bin %>
|
|
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"
|
|
3920
3959
|
],
|
|
3921
3960
|
"flags": {
|
|
3922
3961
|
"json": {
|
|
@@ -3931,96 +3970,54 @@
|
|
|
3931
3970
|
"name": "machine",
|
|
3932
3971
|
"allowNo": false,
|
|
3933
3972
|
"type": "boolean"
|
|
3934
|
-
}
|
|
3935
|
-
},
|
|
3936
|
-
"hasDynamicHelp": false,
|
|
3937
|
-
"hiddenAliases": [],
|
|
3938
|
-
"id": "docker:status",
|
|
3939
|
-
"pluginAlias": "@proletariat/cli",
|
|
3940
|
-
"pluginName": "@proletariat/cli",
|
|
3941
|
-
"pluginType": "core",
|
|
3942
|
-
"strict": true,
|
|
3943
|
-
"enableJsonFlag": false,
|
|
3944
|
-
"isESM": true,
|
|
3945
|
-
"relativePath": [
|
|
3946
|
-
"dist",
|
|
3947
|
-
"commands",
|
|
3948
|
-
"docker",
|
|
3949
|
-
"status.js"
|
|
3950
|
-
]
|
|
3951
|
-
},
|
|
3952
|
-
"docker:stop": {
|
|
3953
|
-
"aliases": [],
|
|
3954
|
-
"args": {
|
|
3955
|
-
"target": {
|
|
3956
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3957
|
-
"name": "target",
|
|
3958
|
-
"required": true
|
|
3959
|
-
}
|
|
3960
|
-
},
|
|
3961
|
-
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
3962
|
-
"examples": [
|
|
3963
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3964
|
-
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3965
|
-
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3966
|
-
],
|
|
3967
|
-
"flags": {
|
|
3968
|
-
"force": {
|
|
3969
|
-
"aliases": [
|
|
3970
|
-
"yes",
|
|
3971
|
-
"y"
|
|
3972
|
-
],
|
|
3973
|
-
"char": "f",
|
|
3974
|
-
"description": "Skip confirmation prompt",
|
|
3975
|
-
"name": "force",
|
|
3976
|
-
"allowNo": false,
|
|
3977
|
-
"type": "boolean"
|
|
3978
3973
|
},
|
|
3979
|
-
"
|
|
3980
|
-
"char": "
|
|
3981
|
-
"description": "
|
|
3982
|
-
"name": "
|
|
3983
|
-
"default": 10,
|
|
3974
|
+
"set": {
|
|
3975
|
+
"char": "s",
|
|
3976
|
+
"description": "Set a config value (format: key value)",
|
|
3977
|
+
"name": "set",
|
|
3984
3978
|
"hasDynamicHelp": false,
|
|
3985
|
-
"multiple":
|
|
3979
|
+
"multiple": true,
|
|
3986
3980
|
"type": "option"
|
|
3987
3981
|
},
|
|
3988
|
-
"
|
|
3989
|
-
"
|
|
3990
|
-
"
|
|
3982
|
+
"list": {
|
|
3983
|
+
"char": "l",
|
|
3984
|
+
"description": "List all configuration values",
|
|
3985
|
+
"name": "list",
|
|
3991
3986
|
"allowNo": false,
|
|
3992
3987
|
"type": "boolean"
|
|
3993
3988
|
},
|
|
3994
|
-
"
|
|
3995
|
-
"
|
|
3996
|
-
"
|
|
3997
|
-
"
|
|
3998
|
-
"
|
|
3999
|
-
"type": "
|
|
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"
|
|
4000
3995
|
}
|
|
4001
3996
|
},
|
|
4002
3997
|
"hasDynamicHelp": false,
|
|
4003
3998
|
"hiddenAliases": [],
|
|
4004
|
-
"id": "
|
|
3999
|
+
"id": "execution:config",
|
|
4005
4000
|
"pluginAlias": "@proletariat/cli",
|
|
4006
4001
|
"pluginName": "@proletariat/cli",
|
|
4007
4002
|
"pluginType": "core",
|
|
4008
4003
|
"strict": true,
|
|
4009
|
-
"enableJsonFlag": false,
|
|
4010
4004
|
"isESM": true,
|
|
4011
4005
|
"relativePath": [
|
|
4012
4006
|
"dist",
|
|
4013
4007
|
"commands",
|
|
4014
|
-
"
|
|
4015
|
-
"
|
|
4008
|
+
"execution",
|
|
4009
|
+
"config.js"
|
|
4016
4010
|
]
|
|
4017
4011
|
},
|
|
4018
|
-
"
|
|
4012
|
+
"execution": {
|
|
4019
4013
|
"aliases": [],
|
|
4020
4014
|
"args": {},
|
|
4021
|
-
"description": "
|
|
4015
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
4022
4016
|
"examples": [
|
|
4023
|
-
"<%= config.bin %> <%= command.id %>"
|
|
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"
|
|
4024
4021
|
],
|
|
4025
4022
|
"flags": {
|
|
4026
4023
|
"json": {
|
|
@@ -4039,27 +4036,28 @@
|
|
|
4039
4036
|
},
|
|
4040
4037
|
"hasDynamicHelp": false,
|
|
4041
4038
|
"hiddenAliases": [],
|
|
4042
|
-
"id": "
|
|
4039
|
+
"id": "execution",
|
|
4043
4040
|
"pluginAlias": "@proletariat/cli",
|
|
4044
4041
|
"pluginName": "@proletariat/cli",
|
|
4045
4042
|
"pluginType": "core",
|
|
4046
4043
|
"strict": true,
|
|
4047
|
-
"enableJsonFlag": false,
|
|
4048
4044
|
"isESM": true,
|
|
4049
4045
|
"relativePath": [
|
|
4050
4046
|
"dist",
|
|
4051
4047
|
"commands",
|
|
4052
|
-
"
|
|
4053
|
-
"
|
|
4048
|
+
"execution",
|
|
4049
|
+
"index.js"
|
|
4054
4050
|
]
|
|
4055
4051
|
},
|
|
4056
|
-
"
|
|
4052
|
+
"execution:list": {
|
|
4057
4053
|
"aliases": [],
|
|
4058
4054
|
"args": {},
|
|
4059
|
-
"description": "
|
|
4055
|
+
"description": "List running and recent executions",
|
|
4060
4056
|
"examples": [
|
|
4061
4057
|
"<%= config.bin %> <%= command.id %>",
|
|
4062
|
-
"<%= 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"
|
|
4063
4061
|
],
|
|
4064
4062
|
"flags": {
|
|
4065
4063
|
"json": {
|
|
@@ -4075,45 +4073,69 @@
|
|
|
4075
4073
|
"allowNo": false,
|
|
4076
4074
|
"type": "boolean"
|
|
4077
4075
|
},
|
|
4078
|
-
"
|
|
4079
|
-
"char": "
|
|
4080
|
-
"description": "
|
|
4081
|
-
"name": "
|
|
4076
|
+
"status": {
|
|
4077
|
+
"char": "s",
|
|
4078
|
+
"description": "Filter by status",
|
|
4079
|
+
"name": "status",
|
|
4082
4080
|
"hasDynamicHelp": false,
|
|
4083
4081
|
"multiple": false,
|
|
4084
4082
|
"options": [
|
|
4085
|
-
"
|
|
4086
|
-
"
|
|
4087
|
-
"
|
|
4083
|
+
"starting",
|
|
4084
|
+
"running",
|
|
4085
|
+
"completed",
|
|
4086
|
+
"failed",
|
|
4087
|
+
"stopped"
|
|
4088
4088
|
],
|
|
4089
4089
|
"type": "option"
|
|
4090
|
+
},
|
|
4091
|
+
"agent": {
|
|
4092
|
+
"char": "a",
|
|
4093
|
+
"description": "Filter by agent name",
|
|
4094
|
+
"name": "agent",
|
|
4095
|
+
"hasDynamicHelp": false,
|
|
4096
|
+
"multiple": false,
|
|
4097
|
+
"type": "option"
|
|
4098
|
+
},
|
|
4099
|
+
"limit": {
|
|
4100
|
+
"char": "l",
|
|
4101
|
+
"description": "Number of results",
|
|
4102
|
+
"name": "limit",
|
|
4103
|
+
"default": 20,
|
|
4104
|
+
"hasDynamicHelp": false,
|
|
4105
|
+
"multiple": false,
|
|
4106
|
+
"type": "option"
|
|
4090
4107
|
}
|
|
4091
4108
|
},
|
|
4092
4109
|
"hasDynamicHelp": false,
|
|
4093
4110
|
"hiddenAliases": [],
|
|
4094
|
-
"id": "
|
|
4111
|
+
"id": "execution:list",
|
|
4095
4112
|
"pluginAlias": "@proletariat/cli",
|
|
4096
4113
|
"pluginName": "@proletariat/cli",
|
|
4097
4114
|
"pluginType": "core",
|
|
4098
4115
|
"strict": true,
|
|
4099
|
-
"enableJsonFlag": false,
|
|
4100
4116
|
"isESM": true,
|
|
4101
4117
|
"relativePath": [
|
|
4102
4118
|
"dist",
|
|
4103
4119
|
"commands",
|
|
4104
|
-
"
|
|
4105
|
-
"
|
|
4120
|
+
"execution",
|
|
4121
|
+
"list.js"
|
|
4106
4122
|
]
|
|
4107
4123
|
},
|
|
4108
|
-
"
|
|
4124
|
+
"execution:logs": {
|
|
4109
4125
|
"aliases": [],
|
|
4110
|
-
"args": {
|
|
4111
|
-
|
|
4126
|
+
"args": {
|
|
4127
|
+
"id": {
|
|
4128
|
+
"description": "Execution ID - prompts if not provided",
|
|
4129
|
+
"name": "id",
|
|
4130
|
+
"required": false
|
|
4131
|
+
}
|
|
4132
|
+
},
|
|
4133
|
+
"description": "View execution logs",
|
|
4112
4134
|
"examples": [
|
|
4113
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4114
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4115
|
-
"<%= config.bin %> <%= command.id %>
|
|
4116
|
-
"<%= config.bin %> <%= command.id %>
|
|
4135
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4136
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
4137
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
4138
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4117
4139
|
],
|
|
4118
4140
|
"flags": {
|
|
4119
4141
|
"json": {
|
|
@@ -4129,38 +4151,17 @@
|
|
|
4129
4151
|
"allowNo": false,
|
|
4130
4152
|
"type": "boolean"
|
|
4131
4153
|
},
|
|
4132
|
-
"
|
|
4133
|
-
"char": "
|
|
4134
|
-
"description": "
|
|
4135
|
-
"name": "
|
|
4136
|
-
"
|
|
4137
|
-
"
|
|
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"
|
|
4154
|
+
"follow": {
|
|
4155
|
+
"char": "f",
|
|
4156
|
+
"description": "Stream logs in real-time",
|
|
4157
|
+
"name": "follow",
|
|
4158
|
+
"allowNo": false,
|
|
4159
|
+
"type": "boolean"
|
|
4158
4160
|
},
|
|
4159
|
-
"
|
|
4160
|
-
"char": "
|
|
4161
|
-
"description": "
|
|
4162
|
-
"name": "
|
|
4163
|
-
"default": 20,
|
|
4161
|
+
"tail": {
|
|
4162
|
+
"char": "n",
|
|
4163
|
+
"description": "Show last n lines",
|
|
4164
|
+
"name": "tail",
|
|
4164
4165
|
"hasDynamicHelp": false,
|
|
4165
4166
|
"multiple": false,
|
|
4166
4167
|
"type": "option"
|
|
@@ -4168,28 +4169,36 @@
|
|
|
4168
4169
|
},
|
|
4169
4170
|
"hasDynamicHelp": false,
|
|
4170
4171
|
"hiddenAliases": [],
|
|
4171
|
-
"id": "
|
|
4172
|
+
"id": "execution:logs",
|
|
4172
4173
|
"pluginAlias": "@proletariat/cli",
|
|
4173
4174
|
"pluginName": "@proletariat/cli",
|
|
4174
4175
|
"pluginType": "core",
|
|
4175
4176
|
"strict": true,
|
|
4176
|
-
"enableJsonFlag": false,
|
|
4177
4177
|
"isESM": true,
|
|
4178
4178
|
"relativePath": [
|
|
4179
4179
|
"dist",
|
|
4180
4180
|
"commands",
|
|
4181
|
-
"
|
|
4182
|
-
"
|
|
4181
|
+
"execution",
|
|
4182
|
+
"logs.js"
|
|
4183
4183
|
]
|
|
4184
4184
|
},
|
|
4185
|
-
"
|
|
4185
|
+
"execution:stop": {
|
|
4186
4186
|
"aliases": [],
|
|
4187
|
-
"args": {
|
|
4188
|
-
|
|
4187
|
+
"args": {
|
|
4188
|
+
"id": {
|
|
4189
|
+
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
4190
|
+
"name": "id",
|
|
4191
|
+
"required": false
|
|
4192
|
+
}
|
|
4193
|
+
},
|
|
4194
|
+
"description": "Stop running execution(s)",
|
|
4189
4195
|
"examples": [
|
|
4190
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4191
|
-
"<%= config.bin %> <%= command.id %>
|
|
4192
|
-
"<%= config.bin %> <%= command.id %>
|
|
4196
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4197
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
4198
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
4199
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
4200
|
+
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4201
|
+
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4193
4202
|
],
|
|
4194
4203
|
"flags": {
|
|
4195
4204
|
"json": {
|
|
@@ -4205,39 +4214,31 @@
|
|
|
4205
4214
|
"allowNo": false,
|
|
4206
4215
|
"type": "boolean"
|
|
4207
4216
|
},
|
|
4208
|
-
"
|
|
4209
|
-
"char": "
|
|
4210
|
-
"description": "
|
|
4211
|
-
"name": "
|
|
4212
|
-
"
|
|
4213
|
-
"
|
|
4214
|
-
"type": "option"
|
|
4217
|
+
"force": {
|
|
4218
|
+
"char": "f",
|
|
4219
|
+
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
4220
|
+
"name": "force",
|
|
4221
|
+
"allowNo": false,
|
|
4222
|
+
"type": "boolean"
|
|
4215
4223
|
},
|
|
4216
|
-
"
|
|
4217
|
-
"
|
|
4218
|
-
"
|
|
4219
|
-
"
|
|
4220
|
-
"
|
|
4221
|
-
"multiple": false,
|
|
4222
|
-
"type": "option"
|
|
4224
|
+
"all": {
|
|
4225
|
+
"description": "Stop all running executions",
|
|
4226
|
+
"name": "all",
|
|
4227
|
+
"allowNo": false,
|
|
4228
|
+
"type": "boolean"
|
|
4223
4229
|
},
|
|
4224
|
-
"
|
|
4225
|
-
"char": "
|
|
4226
|
-
"description": "
|
|
4227
|
-
"name": "
|
|
4230
|
+
"agent": {
|
|
4231
|
+
"char": "a",
|
|
4232
|
+
"description": "Stop all executions for a specific agent",
|
|
4233
|
+
"name": "agent",
|
|
4228
4234
|
"hasDynamicHelp": false,
|
|
4229
4235
|
"multiple": false,
|
|
4230
|
-
"options": [
|
|
4231
|
-
"bug",
|
|
4232
|
-
"feature",
|
|
4233
|
-
"general"
|
|
4234
|
-
],
|
|
4235
4236
|
"type": "option"
|
|
4236
4237
|
}
|
|
4237
4238
|
},
|
|
4238
4239
|
"hasDynamicHelp": false,
|
|
4239
4240
|
"hiddenAliases": [],
|
|
4240
|
-
"id": "
|
|
4241
|
+
"id": "execution:stop",
|
|
4241
4242
|
"pluginAlias": "@proletariat/cli",
|
|
4242
4243
|
"pluginName": "@proletariat/cli",
|
|
4243
4244
|
"pluginType": "core",
|
|
@@ -4246,23 +4247,23 @@
|
|
|
4246
4247
|
"relativePath": [
|
|
4247
4248
|
"dist",
|
|
4248
4249
|
"commands",
|
|
4249
|
-
"
|
|
4250
|
-
"
|
|
4250
|
+
"execution",
|
|
4251
|
+
"stop.js"
|
|
4251
4252
|
]
|
|
4252
4253
|
},
|
|
4253
|
-
"
|
|
4254
|
+
"execution:view": {
|
|
4254
4255
|
"aliases": [],
|
|
4255
4256
|
"args": {
|
|
4256
|
-
"
|
|
4257
|
-
"description": "
|
|
4258
|
-
"name": "
|
|
4259
|
-
"required":
|
|
4257
|
+
"id": {
|
|
4258
|
+
"description": "Execution ID - prompts if not provided",
|
|
4259
|
+
"name": "id",
|
|
4260
|
+
"required": false
|
|
4260
4261
|
}
|
|
4261
4262
|
},
|
|
4262
|
-
"description": "View details of a specific
|
|
4263
|
+
"description": "View details of a specific execution",
|
|
4263
4264
|
"examples": [
|
|
4264
|
-
"<%= config.bin %> <%= command.id %>
|
|
4265
|
-
"<%= config.bin %> <%= command.id %>
|
|
4265
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4266
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4266
4267
|
],
|
|
4267
4268
|
"flags": {
|
|
4268
4269
|
"json": {
|
|
@@ -4281,17 +4282,16 @@
|
|
|
4281
4282
|
},
|
|
4282
4283
|
"hasDynamicHelp": false,
|
|
4283
4284
|
"hiddenAliases": [],
|
|
4284
|
-
"id": "
|
|
4285
|
+
"id": "execution:view",
|
|
4285
4286
|
"pluginAlias": "@proletariat/cli",
|
|
4286
4287
|
"pluginName": "@proletariat/cli",
|
|
4287
4288
|
"pluginType": "core",
|
|
4288
4289
|
"strict": true,
|
|
4289
|
-
"enableJsonFlag": false,
|
|
4290
4290
|
"isESM": true,
|
|
4291
4291
|
"relativePath": [
|
|
4292
4292
|
"dist",
|
|
4293
4293
|
"commands",
|
|
4294
|
-
"
|
|
4294
|
+
"execution",
|
|
4295
4295
|
"view.js"
|
|
4296
4296
|
]
|
|
4297
4297
|
},
|
|
@@ -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,6 +6339,65 @@
|
|
|
6337
6339
|
"status.js"
|
|
6338
6340
|
]
|
|
6339
6341
|
},
|
|
6342
|
+
"project:configure": {
|
|
6343
|
+
"aliases": [],
|
|
6344
|
+
"args": {},
|
|
6345
|
+
"description": "Configure workflow column mapping for a project",
|
|
6346
|
+
"examples": [
|
|
6347
|
+
"<%= config.bin %> <%= command.id %> --workflow",
|
|
6348
|
+
"<%= config.bin %> <%= command.id %> --workflow --show"
|
|
6349
|
+
],
|
|
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
|
+
},
|
|
6359
|
+
"json": {
|
|
6360
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6361
|
+
"name": "json",
|
|
6362
|
+
"allowNo": false,
|
|
6363
|
+
"type": "boolean"
|
|
6364
|
+
},
|
|
6365
|
+
"machine": {
|
|
6366
|
+
"char": "m",
|
|
6367
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6368
|
+
"name": "machine",
|
|
6369
|
+
"allowNo": false,
|
|
6370
|
+
"type": "boolean"
|
|
6371
|
+
},
|
|
6372
|
+
"workflow": {
|
|
6373
|
+
"char": "w",
|
|
6374
|
+
"description": "Configure workflow column mapping",
|
|
6375
|
+
"name": "workflow",
|
|
6376
|
+
"allowNo": false,
|
|
6377
|
+
"type": "boolean"
|
|
6378
|
+
},
|
|
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
|
+
},
|
|
6340
6401
|
"qa": {
|
|
6341
6402
|
"aliases": [
|
|
6342
6403
|
"explore"
|
|
@@ -7043,23 +7104,22 @@
|
|
|
7043
7104
|
},
|
|
7044
7105
|
"new-tab": {
|
|
7045
7106
|
"char": "n",
|
|
7046
|
-
"description": "Open in a new terminal tab (
|
|
7107
|
+
"description": "Open in a new terminal tab (requires macOS + supported terminal)",
|
|
7047
7108
|
"name": "new-tab",
|
|
7048
7109
|
"allowNo": false,
|
|
7049
7110
|
"type": "boolean"
|
|
7050
7111
|
},
|
|
7051
7112
|
"current-terminal": {
|
|
7052
7113
|
"char": "c",
|
|
7053
|
-
"description": "Attach in current terminal
|
|
7114
|
+
"description": "Attach in current terminal (this is now the default behavior)",
|
|
7054
7115
|
"name": "current-terminal",
|
|
7055
7116
|
"allowNo": false,
|
|
7056
7117
|
"type": "boolean"
|
|
7057
7118
|
},
|
|
7058
7119
|
"terminal": {
|
|
7059
7120
|
"char": "t",
|
|
7060
|
-
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7121
|
+
"description": "Terminal app to use for --new-tab (iTerm, Terminal, Ghostty)",
|
|
7061
7122
|
"name": "terminal",
|
|
7062
|
-
"default": "iTerm",
|
|
7063
7123
|
"hasDynamicHelp": false,
|
|
7064
7124
|
"multiple": false,
|
|
7065
7125
|
"type": "option"
|
|
@@ -8480,30 +8540,14 @@
|
|
|
8480
8540
|
"stop.js"
|
|
8481
8541
|
]
|
|
8482
8542
|
},
|
|
8483
|
-
"
|
|
8543
|
+
"telemetry:disable": {
|
|
8484
8544
|
"aliases": [],
|
|
8485
|
-
"args": {
|
|
8486
|
-
|
|
8487
|
-
"description": "Title to set for the terminal tab/window",
|
|
8488
|
-
"name": "title",
|
|
8489
|
-
"required": false
|
|
8490
|
-
}
|
|
8491
|
-
},
|
|
8492
|
-
"description": "Set the terminal tab/window title",
|
|
8545
|
+
"args": {},
|
|
8546
|
+
"description": "Disable anonymous telemetry",
|
|
8493
8547
|
"examples": [
|
|
8494
|
-
"<%= config.bin %> <%= command.id %>
|
|
8495
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
8496
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
8497
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
8548
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8498
8549
|
],
|
|
8499
8550
|
"flags": {
|
|
8500
|
-
"reset": {
|
|
8501
|
-
"char": "r",
|
|
8502
|
-
"description": "Reset terminal title to default",
|
|
8503
|
-
"name": "reset",
|
|
8504
|
-
"allowNo": false,
|
|
8505
|
-
"type": "boolean"
|
|
8506
|
-
},
|
|
8507
8551
|
"json": {
|
|
8508
8552
|
"description": "Output as JSON for AI agents/scripts",
|
|
8509
8553
|
"name": "json",
|
|
@@ -8520,23 +8564,24 @@
|
|
|
8520
8564
|
},
|
|
8521
8565
|
"hasDynamicHelp": false,
|
|
8522
8566
|
"hiddenAliases": [],
|
|
8523
|
-
"id": "
|
|
8567
|
+
"id": "telemetry:disable",
|
|
8524
8568
|
"pluginAlias": "@proletariat/cli",
|
|
8525
8569
|
"pluginName": "@proletariat/cli",
|
|
8526
8570
|
"pluginType": "core",
|
|
8527
8571
|
"strict": true,
|
|
8572
|
+
"enableJsonFlag": false,
|
|
8528
8573
|
"isESM": true,
|
|
8529
8574
|
"relativePath": [
|
|
8530
8575
|
"dist",
|
|
8531
8576
|
"commands",
|
|
8532
|
-
"
|
|
8533
|
-
"
|
|
8577
|
+
"telemetry",
|
|
8578
|
+
"disable.js"
|
|
8534
8579
|
]
|
|
8535
8580
|
},
|
|
8536
|
-
"telemetry:
|
|
8581
|
+
"telemetry:enable": {
|
|
8537
8582
|
"aliases": [],
|
|
8538
8583
|
"args": {},
|
|
8539
|
-
"description": "
|
|
8584
|
+
"description": "Enable anonymous telemetry",
|
|
8540
8585
|
"examples": [
|
|
8541
8586
|
"<%= config.bin %> <%= command.id %>"
|
|
8542
8587
|
],
|
|
@@ -8557,7 +8602,7 @@
|
|
|
8557
8602
|
},
|
|
8558
8603
|
"hasDynamicHelp": false,
|
|
8559
8604
|
"hiddenAliases": [],
|
|
8560
|
-
"id": "telemetry:
|
|
8605
|
+
"id": "telemetry:enable",
|
|
8561
8606
|
"pluginAlias": "@proletariat/cli",
|
|
8562
8607
|
"pluginName": "@proletariat/cli",
|
|
8563
8608
|
"pluginType": "core",
|
|
@@ -8568,15 +8613,16 @@
|
|
|
8568
8613
|
"dist",
|
|
8569
8614
|
"commands",
|
|
8570
8615
|
"telemetry",
|
|
8571
|
-
"
|
|
8616
|
+
"enable.js"
|
|
8572
8617
|
]
|
|
8573
8618
|
},
|
|
8574
|
-
"telemetry
|
|
8619
|
+
"telemetry": {
|
|
8575
8620
|
"aliases": [],
|
|
8576
8621
|
"args": {},
|
|
8577
|
-
"description": "
|
|
8622
|
+
"description": "Show telemetry status",
|
|
8578
8623
|
"examples": [
|
|
8579
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8624
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8625
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8580
8626
|
],
|
|
8581
8627
|
"flags": {
|
|
8582
8628
|
"json": {
|
|
@@ -8595,7 +8641,7 @@
|
|
|
8595
8641
|
},
|
|
8596
8642
|
"hasDynamicHelp": false,
|
|
8597
8643
|
"hiddenAliases": [],
|
|
8598
|
-
"id": "telemetry
|
|
8644
|
+
"id": "telemetry",
|
|
8599
8645
|
"pluginAlias": "@proletariat/cli",
|
|
8600
8646
|
"pluginName": "@proletariat/cli",
|
|
8601
8647
|
"pluginType": "core",
|
|
@@ -8606,16 +8652,15 @@
|
|
|
8606
8652
|
"dist",
|
|
8607
8653
|
"commands",
|
|
8608
8654
|
"telemetry",
|
|
8609
|
-
"
|
|
8655
|
+
"index.js"
|
|
8610
8656
|
]
|
|
8611
8657
|
},
|
|
8612
|
-
"telemetry": {
|
|
8658
|
+
"telemetry:status": {
|
|
8613
8659
|
"aliases": [],
|
|
8614
8660
|
"args": {},
|
|
8615
8661
|
"description": "Show telemetry status",
|
|
8616
8662
|
"examples": [
|
|
8617
|
-
"<%= config.bin %>
|
|
8618
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
8663
|
+
"<%= config.bin %> telemetry status"
|
|
8619
8664
|
],
|
|
8620
8665
|
"flags": {
|
|
8621
8666
|
"json": {
|
|
@@ -8634,7 +8679,7 @@
|
|
|
8634
8679
|
},
|
|
8635
8680
|
"hasDynamicHelp": false,
|
|
8636
8681
|
"hiddenAliases": [],
|
|
8637
|
-
"id": "telemetry",
|
|
8682
|
+
"id": "telemetry:status",
|
|
8638
8683
|
"pluginAlias": "@proletariat/cli",
|
|
8639
8684
|
"pluginName": "@proletariat/cli",
|
|
8640
8685
|
"pluginType": "core",
|
|
@@ -8645,17 +8690,33 @@
|
|
|
8645
8690
|
"dist",
|
|
8646
8691
|
"commands",
|
|
8647
8692
|
"telemetry",
|
|
8648
|
-
"
|
|
8693
|
+
"status.js"
|
|
8649
8694
|
]
|
|
8650
8695
|
},
|
|
8651
|
-
"
|
|
8696
|
+
"terminal:title": {
|
|
8652
8697
|
"aliases": [],
|
|
8653
|
-
"args": {
|
|
8654
|
-
|
|
8698
|
+
"args": {
|
|
8699
|
+
"title": {
|
|
8700
|
+
"description": "Title to set for the terminal tab/window",
|
|
8701
|
+
"name": "title",
|
|
8702
|
+
"required": false
|
|
8703
|
+
}
|
|
8704
|
+
},
|
|
8705
|
+
"description": "Set the terminal tab/window title",
|
|
8655
8706
|
"examples": [
|
|
8656
|
-
"<%= config.bin %>
|
|
8707
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
8708
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
8709
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
8710
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
8657
8711
|
],
|
|
8658
8712
|
"flags": {
|
|
8713
|
+
"reset": {
|
|
8714
|
+
"char": "r",
|
|
8715
|
+
"description": "Reset terminal title to default",
|
|
8716
|
+
"name": "reset",
|
|
8717
|
+
"allowNo": false,
|
|
8718
|
+
"type": "boolean"
|
|
8719
|
+
},
|
|
8659
8720
|
"json": {
|
|
8660
8721
|
"description": "Output as JSON for AI agents/scripts",
|
|
8661
8722
|
"name": "json",
|
|
@@ -8672,18 +8733,17 @@
|
|
|
8672
8733
|
},
|
|
8673
8734
|
"hasDynamicHelp": false,
|
|
8674
8735
|
"hiddenAliases": [],
|
|
8675
|
-
"id": "
|
|
8736
|
+
"id": "terminal:title",
|
|
8676
8737
|
"pluginAlias": "@proletariat/cli",
|
|
8677
8738
|
"pluginName": "@proletariat/cli",
|
|
8678
8739
|
"pluginType": "core",
|
|
8679
8740
|
"strict": true,
|
|
8680
|
-
"enableJsonFlag": false,
|
|
8681
8741
|
"isESM": true,
|
|
8682
8742
|
"relativePath": [
|
|
8683
8743
|
"dist",
|
|
8684
8744
|
"commands",
|
|
8685
|
-
"
|
|
8686
|
-
"
|
|
8745
|
+
"terminal",
|
|
8746
|
+
"title.js"
|
|
8687
8747
|
]
|
|
8688
8748
|
},
|
|
8689
8749
|
"theme:add-names": {
|
|
@@ -9742,265 +9802,39 @@
|
|
|
9742
9802
|
"type": "option"
|
|
9743
9803
|
},
|
|
9744
9804
|
"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
|
-
},
|
|
9790
|
-
"trello:configure": {
|
|
9791
|
-
"aliases": [],
|
|
9792
|
-
"args": {},
|
|
9793
|
-
"description": "Connect to Trello and configure authentication",
|
|
9794
|
-
"examples": [
|
|
9795
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9796
|
-
"<%= config.bin %> <%= command.id %> --check",
|
|
9797
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
9798
|
-
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
9799
|
-
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
9800
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
9801
|
-
],
|
|
9802
|
-
"flags": {
|
|
9803
|
-
"project": {
|
|
9804
|
-
"char": "P",
|
|
9805
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9806
|
-
"name": "project",
|
|
9807
|
-
"hasDynamicHelp": false,
|
|
9808
|
-
"multiple": false,
|
|
9809
|
-
"type": "option"
|
|
9810
|
-
},
|
|
9811
|
-
"json": {
|
|
9812
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9813
|
-
"name": "json",
|
|
9814
|
-
"allowNo": false,
|
|
9815
|
-
"type": "boolean"
|
|
9816
|
-
},
|
|
9817
|
-
"machine": {
|
|
9818
|
-
"char": "m",
|
|
9819
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9820
|
-
"name": "machine",
|
|
9821
|
-
"allowNo": false,
|
|
9822
|
-
"type": "boolean"
|
|
9823
|
-
},
|
|
9824
|
-
"check": {
|
|
9825
|
-
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
9826
|
-
"name": "check",
|
|
9827
|
-
"allowNo": false,
|
|
9828
|
-
"type": "boolean"
|
|
9829
|
-
},
|
|
9830
|
-
"force": {
|
|
9831
|
-
"description": "Force re-authentication even if credentials exist",
|
|
9832
|
-
"name": "force",
|
|
9833
|
-
"allowNo": false,
|
|
9834
|
-
"type": "boolean"
|
|
9835
|
-
},
|
|
9836
|
-
"disconnect": {
|
|
9837
|
-
"description": "Remove stored Trello credentials and configuration",
|
|
9838
|
-
"name": "disconnect",
|
|
9839
|
-
"allowNo": false,
|
|
9840
|
-
"type": "boolean"
|
|
9841
|
-
},
|
|
9842
|
-
"board": {
|
|
9843
|
-
"description": "Default board ID or name",
|
|
9844
|
-
"name": "board",
|
|
9845
|
-
"hasDynamicHelp": false,
|
|
9846
|
-
"multiple": false,
|
|
9847
|
-
"type": "option"
|
|
9848
|
-
}
|
|
9849
|
-
},
|
|
9850
|
-
"hasDynamicHelp": false,
|
|
9851
|
-
"hiddenAliases": [],
|
|
9852
|
-
"id": "trello:configure",
|
|
9853
|
-
"pluginAlias": "@proletariat/cli",
|
|
9854
|
-
"pluginName": "@proletariat/cli",
|
|
9855
|
-
"pluginType": "core",
|
|
9856
|
-
"strict": true,
|
|
9857
|
-
"isESM": true,
|
|
9858
|
-
"relativePath": [
|
|
9859
|
-
"dist",
|
|
9860
|
-
"commands",
|
|
9861
|
-
"trello",
|
|
9862
|
-
"configure.js"
|
|
9863
|
-
]
|
|
9864
|
-
},
|
|
9865
|
-
"trello:import": {
|
|
9866
|
-
"aliases": [],
|
|
9867
|
-
"args": {},
|
|
9868
|
-
"description": "Import Trello cards into PMO as tickets",
|
|
9869
|
-
"examples": [
|
|
9870
|
-
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
9871
|
-
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
9872
|
-
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
9873
|
-
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
9874
|
-
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
9875
|
-
],
|
|
9876
|
-
"flags": {
|
|
9877
|
-
"project": {
|
|
9878
|
-
"char": "P",
|
|
9879
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9880
|
-
"name": "project",
|
|
9881
|
-
"hasDynamicHelp": false,
|
|
9882
|
-
"multiple": false,
|
|
9883
|
-
"type": "option"
|
|
9884
|
-
},
|
|
9885
|
-
"json": {
|
|
9886
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9887
|
-
"name": "json",
|
|
9888
|
-
"allowNo": false,
|
|
9889
|
-
"type": "boolean"
|
|
9890
|
-
},
|
|
9891
|
-
"machine": {
|
|
9892
|
-
"char": "m",
|
|
9893
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9894
|
-
"name": "machine",
|
|
9895
|
-
"allowNo": false,
|
|
9896
|
-
"type": "boolean"
|
|
9897
|
-
},
|
|
9898
|
-
"limit": {
|
|
9899
|
-
"char": "n",
|
|
9900
|
-
"description": "Maximum number of cards to import",
|
|
9901
|
-
"name": "limit",
|
|
9902
|
-
"default": 50,
|
|
9903
|
-
"hasDynamicHelp": false,
|
|
9904
|
-
"multiple": false,
|
|
9905
|
-
"type": "option"
|
|
9906
|
-
},
|
|
9907
|
-
"all": {
|
|
9908
|
-
"char": "a",
|
|
9909
|
-
"description": "Import all matching cards without interactive selection",
|
|
9910
|
-
"name": "all",
|
|
9911
|
-
"allowNo": false,
|
|
9912
|
-
"type": "boolean"
|
|
9913
|
-
},
|
|
9914
|
-
"dry-run": {
|
|
9915
|
-
"description": "Preview cards that would be imported without creating tickets",
|
|
9916
|
-
"name": "dry-run",
|
|
9917
|
-
"allowNo": false,
|
|
9918
|
-
"type": "boolean"
|
|
9919
|
-
}
|
|
9920
|
-
},
|
|
9921
|
-
"hasDynamicHelp": false,
|
|
9922
|
-
"hiddenAliases": [],
|
|
9923
|
-
"id": "trello:import",
|
|
9924
|
-
"pluginAlias": "@proletariat/cli",
|
|
9925
|
-
"pluginName": "@proletariat/cli",
|
|
9926
|
-
"pluginType": "core",
|
|
9927
|
-
"strict": true,
|
|
9928
|
-
"isESM": true,
|
|
9929
|
-
"relativePath": [
|
|
9930
|
-
"dist",
|
|
9931
|
-
"commands",
|
|
9932
|
-
"trello",
|
|
9933
|
-
"import.js"
|
|
9934
|
-
]
|
|
9935
|
-
},
|
|
9936
|
-
"trello:sync": {
|
|
9937
|
-
"aliases": [],
|
|
9938
|
-
"args": {},
|
|
9939
|
-
"description": "Sync PMO tickets to Trello cards",
|
|
9940
|
-
"examples": [
|
|
9941
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
9942
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
9943
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
9944
|
-
],
|
|
9945
|
-
"flags": {
|
|
9946
|
-
"project": {
|
|
9947
|
-
"char": "P",
|
|
9948
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9949
|
-
"name": "project",
|
|
9950
|
-
"hasDynamicHelp": false,
|
|
9951
|
-
"multiple": false,
|
|
9952
|
-
"type": "option"
|
|
9953
|
-
},
|
|
9954
|
-
"json": {
|
|
9955
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9956
|
-
"name": "json",
|
|
9957
|
-
"allowNo": false,
|
|
9958
|
-
"type": "boolean"
|
|
9959
|
-
},
|
|
9960
|
-
"machine": {
|
|
9961
|
-
"char": "m",
|
|
9962
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9963
|
-
"name": "machine",
|
|
9964
|
-
"allowNo": false,
|
|
9965
|
-
"type": "boolean"
|
|
9966
|
-
},
|
|
9967
|
-
"ticket": {
|
|
9968
|
-
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
9969
|
-
"name": "ticket",
|
|
9970
|
-
"hasDynamicHelp": false,
|
|
9971
|
-
"multiple": false,
|
|
9972
|
-
"type": "option"
|
|
9973
|
-
},
|
|
9974
|
-
"card": {
|
|
9975
|
-
"description": "Trello card ID to map to --ticket",
|
|
9976
|
-
"name": "card",
|
|
9805
|
+
"char": "l",
|
|
9806
|
+
"description": "Set labels (comma-separated, replaces existing labels; use \"\" to clear)",
|
|
9807
|
+
"name": "labels",
|
|
9977
9808
|
"hasDynamicHelp": false,
|
|
9978
9809
|
"multiple": false,
|
|
9979
9810
|
"type": "option"
|
|
9980
9811
|
},
|
|
9981
|
-
"
|
|
9982
|
-
"
|
|
9983
|
-
"
|
|
9812
|
+
"status": {
|
|
9813
|
+
"char": "s",
|
|
9814
|
+
"description": "Set status/column (e.g., \"In Progress\", \"Done\")",
|
|
9815
|
+
"name": "status",
|
|
9984
9816
|
"hasDynamicHelp": false,
|
|
9985
9817
|
"multiple": false,
|
|
9986
9818
|
"type": "option"
|
|
9987
9819
|
},
|
|
9988
|
-
"
|
|
9989
|
-
"
|
|
9990
|
-
"
|
|
9820
|
+
"bulk": {
|
|
9821
|
+
"char": "b",
|
|
9822
|
+
"description": "Enable bulk mode to update multiple tickets",
|
|
9823
|
+
"name": "bulk",
|
|
9991
9824
|
"allowNo": false,
|
|
9992
9825
|
"type": "boolean"
|
|
9993
9826
|
},
|
|
9994
|
-
"
|
|
9995
|
-
"
|
|
9996
|
-
"
|
|
9827
|
+
"force": {
|
|
9828
|
+
"char": "f",
|
|
9829
|
+
"description": "Skip confirmation prompt",
|
|
9830
|
+
"name": "force",
|
|
9997
9831
|
"allowNo": false,
|
|
9998
9832
|
"type": "boolean"
|
|
9999
9833
|
}
|
|
10000
9834
|
},
|
|
10001
9835
|
"hasDynamicHelp": false,
|
|
10002
9836
|
"hiddenAliases": [],
|
|
10003
|
-
"id": "
|
|
9837
|
+
"id": "ticket:update",
|
|
10004
9838
|
"pluginAlias": "@proletariat/cli",
|
|
10005
9839
|
"pluginName": "@proletariat/cli",
|
|
10006
9840
|
"pluginType": "core",
|
|
@@ -10009,8 +9843,8 @@
|
|
|
10009
9843
|
"relativePath": [
|
|
10010
9844
|
"dist",
|
|
10011
9845
|
"commands",
|
|
10012
|
-
"
|
|
10013
|
-
"
|
|
9846
|
+
"ticket",
|
|
9847
|
+
"update.js"
|
|
10014
9848
|
]
|
|
10015
9849
|
},
|
|
10016
9850
|
"tools:add": {
|
|
@@ -10281,6 +10115,232 @@
|
|
|
10281
10115
|
"remove.js"
|
|
10282
10116
|
]
|
|
10283
10117
|
},
|
|
10118
|
+
"trello:configure": {
|
|
10119
|
+
"aliases": [],
|
|
10120
|
+
"args": {},
|
|
10121
|
+
"description": "Connect to Trello and configure authentication",
|
|
10122
|
+
"examples": [
|
|
10123
|
+
"<%= config.bin %> <%= command.id %>",
|
|
10124
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
10125
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
10126
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
10127
|
+
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
10128
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
10129
|
+
],
|
|
10130
|
+
"flags": {
|
|
10131
|
+
"project": {
|
|
10132
|
+
"char": "P",
|
|
10133
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
10134
|
+
"name": "project",
|
|
10135
|
+
"hasDynamicHelp": false,
|
|
10136
|
+
"multiple": false,
|
|
10137
|
+
"type": "option"
|
|
10138
|
+
},
|
|
10139
|
+
"json": {
|
|
10140
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10141
|
+
"name": "json",
|
|
10142
|
+
"allowNo": false,
|
|
10143
|
+
"type": "boolean"
|
|
10144
|
+
},
|
|
10145
|
+
"machine": {
|
|
10146
|
+
"char": "m",
|
|
10147
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10148
|
+
"name": "machine",
|
|
10149
|
+
"allowNo": false,
|
|
10150
|
+
"type": "boolean"
|
|
10151
|
+
},
|
|
10152
|
+
"check": {
|
|
10153
|
+
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
10154
|
+
"name": "check",
|
|
10155
|
+
"allowNo": false,
|
|
10156
|
+
"type": "boolean"
|
|
10157
|
+
},
|
|
10158
|
+
"force": {
|
|
10159
|
+
"description": "Force re-authentication even if credentials exist",
|
|
10160
|
+
"name": "force",
|
|
10161
|
+
"allowNo": false,
|
|
10162
|
+
"type": "boolean"
|
|
10163
|
+
},
|
|
10164
|
+
"disconnect": {
|
|
10165
|
+
"description": "Remove stored Trello credentials and configuration",
|
|
10166
|
+
"name": "disconnect",
|
|
10167
|
+
"allowNo": false,
|
|
10168
|
+
"type": "boolean"
|
|
10169
|
+
},
|
|
10170
|
+
"board": {
|
|
10171
|
+
"description": "Default board ID or name",
|
|
10172
|
+
"name": "board",
|
|
10173
|
+
"hasDynamicHelp": false,
|
|
10174
|
+
"multiple": false,
|
|
10175
|
+
"type": "option"
|
|
10176
|
+
}
|
|
10177
|
+
},
|
|
10178
|
+
"hasDynamicHelp": false,
|
|
10179
|
+
"hiddenAliases": [],
|
|
10180
|
+
"id": "trello:configure",
|
|
10181
|
+
"pluginAlias": "@proletariat/cli",
|
|
10182
|
+
"pluginName": "@proletariat/cli",
|
|
10183
|
+
"pluginType": "core",
|
|
10184
|
+
"strict": true,
|
|
10185
|
+
"isESM": true,
|
|
10186
|
+
"relativePath": [
|
|
10187
|
+
"dist",
|
|
10188
|
+
"commands",
|
|
10189
|
+
"trello",
|
|
10190
|
+
"configure.js"
|
|
10191
|
+
]
|
|
10192
|
+
},
|
|
10193
|
+
"trello:import": {
|
|
10194
|
+
"aliases": [],
|
|
10195
|
+
"args": {},
|
|
10196
|
+
"description": "Import Trello cards into PMO as tickets",
|
|
10197
|
+
"examples": [
|
|
10198
|
+
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
10199
|
+
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
10200
|
+
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
10201
|
+
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
10202
|
+
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
10203
|
+
],
|
|
10204
|
+
"flags": {
|
|
10205
|
+
"project": {
|
|
10206
|
+
"char": "P",
|
|
10207
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
10208
|
+
"name": "project",
|
|
10209
|
+
"hasDynamicHelp": false,
|
|
10210
|
+
"multiple": false,
|
|
10211
|
+
"type": "option"
|
|
10212
|
+
},
|
|
10213
|
+
"json": {
|
|
10214
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10215
|
+
"name": "json",
|
|
10216
|
+
"allowNo": false,
|
|
10217
|
+
"type": "boolean"
|
|
10218
|
+
},
|
|
10219
|
+
"machine": {
|
|
10220
|
+
"char": "m",
|
|
10221
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10222
|
+
"name": "machine",
|
|
10223
|
+
"allowNo": false,
|
|
10224
|
+
"type": "boolean"
|
|
10225
|
+
},
|
|
10226
|
+
"limit": {
|
|
10227
|
+
"char": "n",
|
|
10228
|
+
"description": "Maximum number of cards to import",
|
|
10229
|
+
"name": "limit",
|
|
10230
|
+
"default": 50,
|
|
10231
|
+
"hasDynamicHelp": false,
|
|
10232
|
+
"multiple": false,
|
|
10233
|
+
"type": "option"
|
|
10234
|
+
},
|
|
10235
|
+
"all": {
|
|
10236
|
+
"char": "a",
|
|
10237
|
+
"description": "Import all matching cards without interactive selection",
|
|
10238
|
+
"name": "all",
|
|
10239
|
+
"allowNo": false,
|
|
10240
|
+
"type": "boolean"
|
|
10241
|
+
},
|
|
10242
|
+
"dry-run": {
|
|
10243
|
+
"description": "Preview cards that would be imported without creating tickets",
|
|
10244
|
+
"name": "dry-run",
|
|
10245
|
+
"allowNo": false,
|
|
10246
|
+
"type": "boolean"
|
|
10247
|
+
}
|
|
10248
|
+
},
|
|
10249
|
+
"hasDynamicHelp": false,
|
|
10250
|
+
"hiddenAliases": [],
|
|
10251
|
+
"id": "trello:import",
|
|
10252
|
+
"pluginAlias": "@proletariat/cli",
|
|
10253
|
+
"pluginName": "@proletariat/cli",
|
|
10254
|
+
"pluginType": "core",
|
|
10255
|
+
"strict": true,
|
|
10256
|
+
"isESM": true,
|
|
10257
|
+
"relativePath": [
|
|
10258
|
+
"dist",
|
|
10259
|
+
"commands",
|
|
10260
|
+
"trello",
|
|
10261
|
+
"import.js"
|
|
10262
|
+
]
|
|
10263
|
+
},
|
|
10264
|
+
"trello:sync": {
|
|
10265
|
+
"aliases": [],
|
|
10266
|
+
"args": {},
|
|
10267
|
+
"description": "Sync PMO tickets to Trello cards",
|
|
10268
|
+
"examples": [
|
|
10269
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
10270
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
10271
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
10272
|
+
],
|
|
10273
|
+
"flags": {
|
|
10274
|
+
"project": {
|
|
10275
|
+
"char": "P",
|
|
10276
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
10277
|
+
"name": "project",
|
|
10278
|
+
"hasDynamicHelp": false,
|
|
10279
|
+
"multiple": false,
|
|
10280
|
+
"type": "option"
|
|
10281
|
+
},
|
|
10282
|
+
"json": {
|
|
10283
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10284
|
+
"name": "json",
|
|
10285
|
+
"allowNo": false,
|
|
10286
|
+
"type": "boolean"
|
|
10287
|
+
},
|
|
10288
|
+
"machine": {
|
|
10289
|
+
"char": "m",
|
|
10290
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10291
|
+
"name": "machine",
|
|
10292
|
+
"allowNo": false,
|
|
10293
|
+
"type": "boolean"
|
|
10294
|
+
},
|
|
10295
|
+
"ticket": {
|
|
10296
|
+
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
10297
|
+
"name": "ticket",
|
|
10298
|
+
"hasDynamicHelp": false,
|
|
10299
|
+
"multiple": false,
|
|
10300
|
+
"type": "option"
|
|
10301
|
+
},
|
|
10302
|
+
"card": {
|
|
10303
|
+
"description": "Trello card ID to map to --ticket",
|
|
10304
|
+
"name": "card",
|
|
10305
|
+
"hasDynamicHelp": false,
|
|
10306
|
+
"multiple": false,
|
|
10307
|
+
"type": "option"
|
|
10308
|
+
},
|
|
10309
|
+
"list": {
|
|
10310
|
+
"description": "Trello list ID used with --create-missing",
|
|
10311
|
+
"name": "list",
|
|
10312
|
+
"hasDynamicHelp": false,
|
|
10313
|
+
"multiple": false,
|
|
10314
|
+
"type": "option"
|
|
10315
|
+
},
|
|
10316
|
+
"create-missing": {
|
|
10317
|
+
"description": "Create Trello card when no mapping exists (requires list)",
|
|
10318
|
+
"name": "create-missing",
|
|
10319
|
+
"allowNo": false,
|
|
10320
|
+
"type": "boolean"
|
|
10321
|
+
},
|
|
10322
|
+
"dry-run": {
|
|
10323
|
+
"description": "Preview sync operations without making changes",
|
|
10324
|
+
"name": "dry-run",
|
|
10325
|
+
"allowNo": false,
|
|
10326
|
+
"type": "boolean"
|
|
10327
|
+
}
|
|
10328
|
+
},
|
|
10329
|
+
"hasDynamicHelp": false,
|
|
10330
|
+
"hiddenAliases": [],
|
|
10331
|
+
"id": "trello:sync",
|
|
10332
|
+
"pluginAlias": "@proletariat/cli",
|
|
10333
|
+
"pluginName": "@proletariat/cli",
|
|
10334
|
+
"pluginType": "core",
|
|
10335
|
+
"strict": true,
|
|
10336
|
+
"isESM": true,
|
|
10337
|
+
"relativePath": [
|
|
10338
|
+
"dist",
|
|
10339
|
+
"commands",
|
|
10340
|
+
"trello",
|
|
10341
|
+
"sync.js"
|
|
10342
|
+
]
|
|
10343
|
+
},
|
|
10284
10344
|
"version:bump": {
|
|
10285
10345
|
"aliases": [],
|
|
10286
10346
|
"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.
|
|
13980
|
+
"version": "0.3.104"
|
|
13917
13981
|
}
|