@proletariat/cli 0.3.109 → 0.3.111
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/orchestrator/attach.d.ts +2 -0
- package/dist/commands/orchestrator/attach.js +80 -118
- package/dist/commands/orchestrator/attach.js.map +1 -1
- package/dist/commands/orchestrator/start.js +21 -0
- package/dist/commands/orchestrator/start.js.map +1 -1
- package/dist/commands/orchestrator/status.d.ts +3 -0
- package/dist/commands/orchestrator/status.js +104 -130
- package/dist/commands/orchestrator/status.js.map +1 -1
- package/dist/commands/orchestrator/stop.d.ts +2 -0
- package/dist/commands/orchestrator/stop.js +105 -107
- package/dist/commands/orchestrator/stop.js.map +1 -1
- package/dist/commands/session/attach.d.ts +2 -6
- package/dist/commands/session/attach.js +68 -97
- package/dist/commands/session/attach.js.map +1 -1
- package/dist/commands/session/list.d.ts +4 -1
- package/dist/commands/session/list.js +160 -326
- package/dist/commands/session/list.js.map +1 -1
- package/dist/commands/work/start.js +104 -49
- package/dist/commands/work/start.js.map +1 -1
- package/dist/lib/execution/session-utils.d.ts +4 -1
- package/dist/lib/execution/session-utils.js +3 -0
- package/dist/lib/execution/session-utils.js.map +1 -1
- package/dist/lib/machine-db-mirror.d.ts +64 -0
- package/dist/lib/machine-db-mirror.js +82 -0
- package/dist/lib/machine-db-mirror.js.map +1 -0
- package/dist/lib/machine-db.d.ts +11 -0
- package/dist/lib/machine-db.js +17 -0
- package/dist/lib/machine-db.js.map +1 -1
- package/dist/lib/orchestrate/actions.d.ts +8 -0
- package/dist/lib/orchestrate/actions.js +166 -94
- package/dist/lib/orchestrate/actions.js.map +1 -1
- package/dist/lib/orchestrate/prompt-chain.d.ts +181 -0
- package/dist/lib/orchestrate/prompt-chain.js +323 -0
- package/dist/lib/orchestrate/prompt-chain.js.map +1 -0
- package/dist/lib/prompt-command.d.ts +61 -1
- package/dist/lib/prompt-command.js +167 -1
- package/dist/lib/prompt-command.js.map +1 -1
- package/dist/lib/prompt-json.d.ts +129 -2
- package/dist/lib/prompt-json.js +157 -0
- package/dist/lib/prompt-json.js.map +1 -1
- package/dist/lib/runtime-command.d.ts +3 -1
- package/dist/lib/runtime-command.js +4 -2
- package/dist/lib/runtime-command.js.map +1 -1
- package/dist/lib/session/renderer.d.ts +121 -0
- package/dist/lib/session/renderer.js +547 -0
- package/dist/lib/session/renderer.js.map +1 -0
- package/dist/lib/update-check.d.ts +64 -7
- package/dist/lib/update-check.js +164 -20
- package/dist/lib/update-check.js.map +1 -1
- package/oclif.manifest.json +1173 -1062
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1978,66 +1978,6 @@
|
|
|
1978
1978
|
"sync.js"
|
|
1979
1979
|
]
|
|
1980
1980
|
},
|
|
1981
|
-
"autocomplete:setup": {
|
|
1982
|
-
"aliases": [],
|
|
1983
|
-
"args": {},
|
|
1984
|
-
"description": "Auto-detect shell and set up autocomplete",
|
|
1985
|
-
"examples": [
|
|
1986
|
-
"<%= config.bin %> <%= command.id %>",
|
|
1987
|
-
"<%= config.bin %> <%= command.id %> --install",
|
|
1988
|
-
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
1989
|
-
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
1990
|
-
],
|
|
1991
|
-
"flags": {
|
|
1992
|
-
"json": {
|
|
1993
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
1994
|
-
"name": "json",
|
|
1995
|
-
"allowNo": false,
|
|
1996
|
-
"type": "boolean"
|
|
1997
|
-
},
|
|
1998
|
-
"machine": {
|
|
1999
|
-
"char": "m",
|
|
2000
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
2001
|
-
"name": "machine",
|
|
2002
|
-
"allowNo": false,
|
|
2003
|
-
"type": "boolean"
|
|
2004
|
-
},
|
|
2005
|
-
"install": {
|
|
2006
|
-
"char": "i",
|
|
2007
|
-
"description": "Automatically install to shell config file",
|
|
2008
|
-
"name": "install",
|
|
2009
|
-
"allowNo": false,
|
|
2010
|
-
"type": "boolean"
|
|
2011
|
-
},
|
|
2012
|
-
"shell": {
|
|
2013
|
-
"char": "s",
|
|
2014
|
-
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2015
|
-
"name": "shell",
|
|
2016
|
-
"hasDynamicHelp": false,
|
|
2017
|
-
"multiple": false,
|
|
2018
|
-
"options": [
|
|
2019
|
-
"zsh",
|
|
2020
|
-
"bash",
|
|
2021
|
-
"powershell"
|
|
2022
|
-
],
|
|
2023
|
-
"type": "option"
|
|
2024
|
-
}
|
|
2025
|
-
},
|
|
2026
|
-
"hasDynamicHelp": false,
|
|
2027
|
-
"hiddenAliases": [],
|
|
2028
|
-
"id": "autocomplete:setup",
|
|
2029
|
-
"pluginAlias": "@proletariat/cli",
|
|
2030
|
-
"pluginName": "@proletariat/cli",
|
|
2031
|
-
"pluginType": "core",
|
|
2032
|
-
"strict": true,
|
|
2033
|
-
"isESM": true,
|
|
2034
|
-
"relativePath": [
|
|
2035
|
-
"dist",
|
|
2036
|
-
"commands",
|
|
2037
|
-
"autocomplete",
|
|
2038
|
-
"setup.js"
|
|
2039
|
-
]
|
|
2040
|
-
},
|
|
2041
1981
|
"branch:create": {
|
|
2042
1982
|
"aliases": [],
|
|
2043
1983
|
"args": {
|
|
@@ -2394,6 +2334,66 @@
|
|
|
2394
2334
|
"where.js"
|
|
2395
2335
|
]
|
|
2396
2336
|
},
|
|
2337
|
+
"autocomplete:setup": {
|
|
2338
|
+
"aliases": [],
|
|
2339
|
+
"args": {},
|
|
2340
|
+
"description": "Auto-detect shell and set up autocomplete",
|
|
2341
|
+
"examples": [
|
|
2342
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2343
|
+
"<%= config.bin %> <%= command.id %> --install",
|
|
2344
|
+
"<%= config.bin %> <%= command.id %> --shell zsh",
|
|
2345
|
+
"<%= config.bin %> <%= command.id %> --shell zsh --install --machine"
|
|
2346
|
+
],
|
|
2347
|
+
"flags": {
|
|
2348
|
+
"json": {
|
|
2349
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2350
|
+
"name": "json",
|
|
2351
|
+
"allowNo": false,
|
|
2352
|
+
"type": "boolean"
|
|
2353
|
+
},
|
|
2354
|
+
"machine": {
|
|
2355
|
+
"char": "m",
|
|
2356
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
2357
|
+
"name": "machine",
|
|
2358
|
+
"allowNo": false,
|
|
2359
|
+
"type": "boolean"
|
|
2360
|
+
},
|
|
2361
|
+
"install": {
|
|
2362
|
+
"char": "i",
|
|
2363
|
+
"description": "Automatically install to shell config file",
|
|
2364
|
+
"name": "install",
|
|
2365
|
+
"allowNo": false,
|
|
2366
|
+
"type": "boolean"
|
|
2367
|
+
},
|
|
2368
|
+
"shell": {
|
|
2369
|
+
"char": "s",
|
|
2370
|
+
"description": "Override shell detection (zsh, bash, powershell)",
|
|
2371
|
+
"name": "shell",
|
|
2372
|
+
"hasDynamicHelp": false,
|
|
2373
|
+
"multiple": false,
|
|
2374
|
+
"options": [
|
|
2375
|
+
"zsh",
|
|
2376
|
+
"bash",
|
|
2377
|
+
"powershell"
|
|
2378
|
+
],
|
|
2379
|
+
"type": "option"
|
|
2380
|
+
}
|
|
2381
|
+
},
|
|
2382
|
+
"hasDynamicHelp": false,
|
|
2383
|
+
"hiddenAliases": [],
|
|
2384
|
+
"id": "autocomplete:setup",
|
|
2385
|
+
"pluginAlias": "@proletariat/cli",
|
|
2386
|
+
"pluginName": "@proletariat/cli",
|
|
2387
|
+
"pluginType": "core",
|
|
2388
|
+
"strict": true,
|
|
2389
|
+
"isESM": true,
|
|
2390
|
+
"relativePath": [
|
|
2391
|
+
"dist",
|
|
2392
|
+
"commands",
|
|
2393
|
+
"autocomplete",
|
|
2394
|
+
"setup.js"
|
|
2395
|
+
]
|
|
2396
|
+
},
|
|
2397
2397
|
"caffeinate": {
|
|
2398
2398
|
"aliases": [],
|
|
2399
2399
|
"args": {},
|
|
@@ -3015,20 +3015,41 @@
|
|
|
3015
3015
|
"repair.js"
|
|
3016
3016
|
]
|
|
3017
3017
|
},
|
|
3018
|
-
"
|
|
3018
|
+
"docker:clean": {
|
|
3019
3019
|
"aliases": [],
|
|
3020
3020
|
"args": {},
|
|
3021
|
-
"description": "
|
|
3021
|
+
"description": "Remove orphaned containers (containers without running agents)",
|
|
3022
3022
|
"examples": [
|
|
3023
|
-
"<%= config.bin %>
|
|
3024
|
-
"<%= config.bin %>
|
|
3025
|
-
"<%= config.bin %>
|
|
3026
|
-
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3027
|
-
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3028
|
-
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3029
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3023
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3024
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
3025
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3030
3026
|
],
|
|
3031
3027
|
"flags": {
|
|
3028
|
+
"force": {
|
|
3029
|
+
"aliases": [
|
|
3030
|
+
"yes",
|
|
3031
|
+
"y"
|
|
3032
|
+
],
|
|
3033
|
+
"char": "f",
|
|
3034
|
+
"description": "Skip confirmation prompt",
|
|
3035
|
+
"name": "force",
|
|
3036
|
+
"allowNo": false,
|
|
3037
|
+
"type": "boolean"
|
|
3038
|
+
},
|
|
3039
|
+
"dry-run": {
|
|
3040
|
+
"char": "d",
|
|
3041
|
+
"description": "Show what would be removed without removing",
|
|
3042
|
+
"name": "dry-run",
|
|
3043
|
+
"allowNo": false,
|
|
3044
|
+
"type": "boolean"
|
|
3045
|
+
},
|
|
3046
|
+
"all": {
|
|
3047
|
+
"char": "a",
|
|
3048
|
+
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3049
|
+
"name": "all",
|
|
3050
|
+
"allowNo": false,
|
|
3051
|
+
"type": "boolean"
|
|
3052
|
+
},
|
|
3032
3053
|
"json": {
|
|
3033
3054
|
"description": "Output as JSON for AI agents/scripts",
|
|
3034
3055
|
"name": "json",
|
|
@@ -3041,54 +3062,41 @@
|
|
|
3041
3062
|
"name": "machine",
|
|
3042
3063
|
"allowNo": false,
|
|
3043
3064
|
"type": "boolean"
|
|
3044
|
-
},
|
|
3045
|
-
"set": {
|
|
3046
|
-
"char": "s",
|
|
3047
|
-
"description": "Set a config value (format: key value)",
|
|
3048
|
-
"name": "set",
|
|
3049
|
-
"hasDynamicHelp": false,
|
|
3050
|
-
"multiple": true,
|
|
3051
|
-
"type": "option"
|
|
3052
|
-
},
|
|
3053
|
-
"list": {
|
|
3054
|
-
"char": "l",
|
|
3055
|
-
"description": "List all configuration values",
|
|
3056
|
-
"name": "list",
|
|
3057
|
-
"allowNo": false,
|
|
3058
|
-
"type": "boolean"
|
|
3059
|
-
},
|
|
3060
|
-
"setting": {
|
|
3061
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
3062
|
-
"name": "setting",
|
|
3063
|
-
"hasDynamicHelp": false,
|
|
3064
|
-
"multiple": false,
|
|
3065
|
-
"type": "option"
|
|
3066
3065
|
}
|
|
3067
3066
|
},
|
|
3068
3067
|
"hasDynamicHelp": false,
|
|
3069
3068
|
"hiddenAliases": [],
|
|
3070
|
-
"id": "
|
|
3069
|
+
"id": "docker:clean",
|
|
3071
3070
|
"pluginAlias": "@proletariat/cli",
|
|
3072
3071
|
"pluginName": "@proletariat/cli",
|
|
3073
3072
|
"pluginType": "core",
|
|
3074
3073
|
"strict": true,
|
|
3074
|
+
"enableJsonFlag": false,
|
|
3075
3075
|
"isESM": true,
|
|
3076
3076
|
"relativePath": [
|
|
3077
3077
|
"dist",
|
|
3078
3078
|
"commands",
|
|
3079
|
-
"
|
|
3080
|
-
"
|
|
3079
|
+
"docker",
|
|
3080
|
+
"clean.js"
|
|
3081
3081
|
]
|
|
3082
3082
|
},
|
|
3083
|
-
"
|
|
3083
|
+
"docker": {
|
|
3084
3084
|
"aliases": [],
|
|
3085
3085
|
"args": {},
|
|
3086
|
-
"description": "
|
|
3086
|
+
"description": "Manage Docker containers used by agents",
|
|
3087
3087
|
"examples": [
|
|
3088
3088
|
"<%= config.bin %> <%= command.id %>",
|
|
3089
|
-
"<%= config.bin %>
|
|
3090
|
-
"<%= config.bin %>
|
|
3091
|
-
"<%= config.bin %>
|
|
3089
|
+
"<%= config.bin %> docker status",
|
|
3090
|
+
"<%= config.bin %> docker list",
|
|
3091
|
+
"<%= config.bin %> docker logs WORK-001",
|
|
3092
|
+
"<%= config.bin %> docker start WORK-001",
|
|
3093
|
+
"<%= config.bin %> docker stop kalanick",
|
|
3094
|
+
"<%= config.bin %> docker shell WORK-001",
|
|
3095
|
+
"<%= config.bin %> docker restart abc123",
|
|
3096
|
+
"<%= config.bin %> docker sync",
|
|
3097
|
+
"<%= config.bin %> docker rebuild-cache",
|
|
3098
|
+
"<%= config.bin %> docker clean",
|
|
3099
|
+
"<%= config.bin %> docker prune"
|
|
3092
3100
|
],
|
|
3093
3101
|
"flags": {
|
|
3094
3102
|
"json": {
|
|
@@ -3107,7 +3115,7 @@
|
|
|
3107
3115
|
},
|
|
3108
3116
|
"hasDynamicHelp": false,
|
|
3109
3117
|
"hiddenAliases": [],
|
|
3110
|
-
"id": "
|
|
3118
|
+
"id": "docker",
|
|
3111
3119
|
"pluginAlias": "@proletariat/cli",
|
|
3112
3120
|
"pluginName": "@proletariat/cli",
|
|
3113
3121
|
"pluginType": "core",
|
|
@@ -3116,19 +3124,18 @@
|
|
|
3116
3124
|
"relativePath": [
|
|
3117
3125
|
"dist",
|
|
3118
3126
|
"commands",
|
|
3119
|
-
"
|
|
3127
|
+
"docker",
|
|
3120
3128
|
"index.js"
|
|
3121
3129
|
]
|
|
3122
3130
|
},
|
|
3123
|
-
"
|
|
3131
|
+
"docker:list": {
|
|
3124
3132
|
"aliases": [],
|
|
3125
3133
|
"args": {},
|
|
3126
|
-
"description": "
|
|
3134
|
+
"description": "Show Docker containers from agent_work table with status",
|
|
3127
3135
|
"examples": [
|
|
3128
3136
|
"<%= config.bin %> <%= command.id %>",
|
|
3129
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3130
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3131
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3137
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3138
|
+
"<%= config.bin %> <%= command.id %> --running"
|
|
3132
3139
|
],
|
|
3133
3140
|
"flags": {
|
|
3134
3141
|
"json": {
|
|
@@ -3144,69 +3151,52 @@
|
|
|
3144
3151
|
"allowNo": false,
|
|
3145
3152
|
"type": "boolean"
|
|
3146
3153
|
},
|
|
3147
|
-
"
|
|
3148
|
-
"char": "s",
|
|
3149
|
-
"description": "Filter by status",
|
|
3150
|
-
"name": "status",
|
|
3151
|
-
"hasDynamicHelp": false,
|
|
3152
|
-
"multiple": false,
|
|
3153
|
-
"options": [
|
|
3154
|
-
"starting",
|
|
3155
|
-
"running",
|
|
3156
|
-
"completed",
|
|
3157
|
-
"failed",
|
|
3158
|
-
"stopped"
|
|
3159
|
-
],
|
|
3160
|
-
"type": "option"
|
|
3161
|
-
},
|
|
3162
|
-
"agent": {
|
|
3154
|
+
"all": {
|
|
3163
3155
|
"char": "a",
|
|
3164
|
-
"description": "
|
|
3165
|
-
"name": "
|
|
3166
|
-
"
|
|
3167
|
-
"
|
|
3168
|
-
"type": "option"
|
|
3156
|
+
"description": "Show all containers (including non-devcontainer)",
|
|
3157
|
+
"name": "all",
|
|
3158
|
+
"allowNo": false,
|
|
3159
|
+
"type": "boolean"
|
|
3169
3160
|
},
|
|
3170
|
-
"
|
|
3171
|
-
"char": "
|
|
3172
|
-
"description": "
|
|
3173
|
-
"name": "
|
|
3174
|
-
"
|
|
3175
|
-
"
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
},
|
|
3180
|
-
"hasDynamicHelp": false,
|
|
3161
|
+
"running": {
|
|
3162
|
+
"char": "r",
|
|
3163
|
+
"description": "Only show running containers",
|
|
3164
|
+
"name": "running",
|
|
3165
|
+
"allowNo": false,
|
|
3166
|
+
"type": "boolean"
|
|
3167
|
+
}
|
|
3168
|
+
},
|
|
3169
|
+
"hasDynamicHelp": false,
|
|
3181
3170
|
"hiddenAliases": [],
|
|
3182
|
-
"id": "
|
|
3171
|
+
"id": "docker:list",
|
|
3183
3172
|
"pluginAlias": "@proletariat/cli",
|
|
3184
3173
|
"pluginName": "@proletariat/cli",
|
|
3185
3174
|
"pluginType": "core",
|
|
3186
3175
|
"strict": true,
|
|
3176
|
+
"enableJsonFlag": false,
|
|
3187
3177
|
"isESM": true,
|
|
3188
3178
|
"relativePath": [
|
|
3189
3179
|
"dist",
|
|
3190
3180
|
"commands",
|
|
3191
|
-
"
|
|
3181
|
+
"docker",
|
|
3192
3182
|
"list.js"
|
|
3193
3183
|
]
|
|
3194
3184
|
},
|
|
3195
|
-
"
|
|
3185
|
+
"docker:logs": {
|
|
3196
3186
|
"aliases": [],
|
|
3197
3187
|
"args": {
|
|
3198
|
-
"
|
|
3199
|
-
"description": "Execution ID -
|
|
3200
|
-
"name": "
|
|
3201
|
-
"required":
|
|
3188
|
+
"target": {
|
|
3189
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3190
|
+
"name": "target",
|
|
3191
|
+
"required": true
|
|
3202
3192
|
}
|
|
3203
3193
|
},
|
|
3204
|
-
"description": "View execution
|
|
3194
|
+
"description": "View logs from a container (by execution ID, agent name, or container ID)",
|
|
3205
3195
|
"examples": [
|
|
3206
3196
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3207
|
-
"<%= config.bin %> <%= command.id %>
|
|
3208
|
-
"<%= config.bin %> <%= command.id %>
|
|
3209
|
-
"<%= config.bin %> <%= command.id %>
|
|
3197
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3198
|
+
"<%= config.bin %> <%= command.id %> abc123 --follow",
|
|
3199
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 100"
|
|
3210
3200
|
],
|
|
3211
3201
|
"flags": {
|
|
3212
3202
|
"json": {
|
|
@@ -3224,155 +3214,52 @@
|
|
|
3224
3214
|
},
|
|
3225
3215
|
"follow": {
|
|
3226
3216
|
"char": "f",
|
|
3227
|
-
"description": "
|
|
3217
|
+
"description": "Follow log output",
|
|
3228
3218
|
"name": "follow",
|
|
3229
3219
|
"allowNo": false,
|
|
3230
3220
|
"type": "boolean"
|
|
3231
3221
|
},
|
|
3232
3222
|
"tail": {
|
|
3233
3223
|
"char": "n",
|
|
3234
|
-
"description": "
|
|
3224
|
+
"description": "Number of lines to show from the end",
|
|
3235
3225
|
"name": "tail",
|
|
3226
|
+
"default": 100,
|
|
3236
3227
|
"hasDynamicHelp": false,
|
|
3237
3228
|
"multiple": false,
|
|
3238
3229
|
"type": "option"
|
|
3239
|
-
}
|
|
3240
|
-
},
|
|
3241
|
-
"hasDynamicHelp": false,
|
|
3242
|
-
"hiddenAliases": [],
|
|
3243
|
-
"id": "execution:logs",
|
|
3244
|
-
"pluginAlias": "@proletariat/cli",
|
|
3245
|
-
"pluginName": "@proletariat/cli",
|
|
3246
|
-
"pluginType": "core",
|
|
3247
|
-
"strict": true,
|
|
3248
|
-
"isESM": true,
|
|
3249
|
-
"relativePath": [
|
|
3250
|
-
"dist",
|
|
3251
|
-
"commands",
|
|
3252
|
-
"execution",
|
|
3253
|
-
"logs.js"
|
|
3254
|
-
]
|
|
3255
|
-
},
|
|
3256
|
-
"execution:stop": {
|
|
3257
|
-
"aliases": [],
|
|
3258
|
-
"args": {
|
|
3259
|
-
"id": {
|
|
3260
|
-
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
3261
|
-
"name": "id",
|
|
3262
|
-
"required": false
|
|
3263
|
-
}
|
|
3264
|
-
},
|
|
3265
|
-
"description": "Stop running execution(s)",
|
|
3266
|
-
"examples": [
|
|
3267
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3268
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
3269
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
3270
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
3271
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
3272
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
3273
|
-
],
|
|
3274
|
-
"flags": {
|
|
3275
|
-
"json": {
|
|
3276
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3277
|
-
"name": "json",
|
|
3278
|
-
"allowNo": false,
|
|
3279
|
-
"type": "boolean"
|
|
3280
|
-
},
|
|
3281
|
-
"machine": {
|
|
3282
|
-
"char": "m",
|
|
3283
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3284
|
-
"name": "machine",
|
|
3285
|
-
"allowNo": false,
|
|
3286
|
-
"type": "boolean"
|
|
3287
|
-
},
|
|
3288
|
-
"force": {
|
|
3289
|
-
"char": "f",
|
|
3290
|
-
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
3291
|
-
"name": "force",
|
|
3292
|
-
"allowNo": false,
|
|
3293
|
-
"type": "boolean"
|
|
3294
|
-
},
|
|
3295
|
-
"all": {
|
|
3296
|
-
"description": "Stop all running executions",
|
|
3297
|
-
"name": "all",
|
|
3298
|
-
"allowNo": false,
|
|
3299
|
-
"type": "boolean"
|
|
3300
|
-
},
|
|
3301
|
-
"agent": {
|
|
3302
|
-
"char": "a",
|
|
3303
|
-
"description": "Stop all executions for a specific agent",
|
|
3304
|
-
"name": "agent",
|
|
3305
|
-
"hasDynamicHelp": false,
|
|
3306
|
-
"multiple": false,
|
|
3307
|
-
"type": "option"
|
|
3308
|
-
}
|
|
3309
|
-
},
|
|
3310
|
-
"hasDynamicHelp": false,
|
|
3311
|
-
"hiddenAliases": [],
|
|
3312
|
-
"id": "execution:stop",
|
|
3313
|
-
"pluginAlias": "@proletariat/cli",
|
|
3314
|
-
"pluginName": "@proletariat/cli",
|
|
3315
|
-
"pluginType": "core",
|
|
3316
|
-
"strict": true,
|
|
3317
|
-
"isESM": true,
|
|
3318
|
-
"relativePath": [
|
|
3319
|
-
"dist",
|
|
3320
|
-
"commands",
|
|
3321
|
-
"execution",
|
|
3322
|
-
"stop.js"
|
|
3323
|
-
]
|
|
3324
|
-
},
|
|
3325
|
-
"execution:view": {
|
|
3326
|
-
"aliases": [],
|
|
3327
|
-
"args": {
|
|
3328
|
-
"id": {
|
|
3329
|
-
"description": "Execution ID - prompts if not provided",
|
|
3330
|
-
"name": "id",
|
|
3331
|
-
"required": false
|
|
3332
|
-
}
|
|
3333
|
-
},
|
|
3334
|
-
"description": "View details of a specific execution",
|
|
3335
|
-
"examples": [
|
|
3336
|
-
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3337
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3338
|
-
],
|
|
3339
|
-
"flags": {
|
|
3340
|
-
"json": {
|
|
3341
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
3342
|
-
"name": "json",
|
|
3343
|
-
"allowNo": false,
|
|
3344
|
-
"type": "boolean"
|
|
3345
3230
|
},
|
|
3346
|
-
"
|
|
3347
|
-
"char": "
|
|
3348
|
-
"description": "
|
|
3349
|
-
"name": "
|
|
3231
|
+
"timestamps": {
|
|
3232
|
+
"char": "t",
|
|
3233
|
+
"description": "Show timestamps",
|
|
3234
|
+
"name": "timestamps",
|
|
3350
3235
|
"allowNo": false,
|
|
3351
3236
|
"type": "boolean"
|
|
3352
3237
|
}
|
|
3353
3238
|
},
|
|
3354
3239
|
"hasDynamicHelp": false,
|
|
3355
3240
|
"hiddenAliases": [],
|
|
3356
|
-
"id": "
|
|
3241
|
+
"id": "docker:logs",
|
|
3357
3242
|
"pluginAlias": "@proletariat/cli",
|
|
3358
3243
|
"pluginName": "@proletariat/cli",
|
|
3359
3244
|
"pluginType": "core",
|
|
3360
3245
|
"strict": true,
|
|
3246
|
+
"enableJsonFlag": false,
|
|
3361
3247
|
"isESM": true,
|
|
3362
3248
|
"relativePath": [
|
|
3363
3249
|
"dist",
|
|
3364
3250
|
"commands",
|
|
3365
|
-
"
|
|
3366
|
-
"
|
|
3251
|
+
"docker",
|
|
3252
|
+
"logs.js"
|
|
3367
3253
|
]
|
|
3368
3254
|
},
|
|
3369
|
-
"docker:
|
|
3255
|
+
"docker:prune": {
|
|
3370
3256
|
"aliases": [],
|
|
3371
3257
|
"args": {},
|
|
3372
|
-
"description": "Remove
|
|
3258
|
+
"description": "Remove unused Docker resources (containers, images, volumes, networks)",
|
|
3373
3259
|
"examples": [
|
|
3374
3260
|
"<%= config.bin %> <%= command.id %>",
|
|
3375
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3261
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3262
|
+
"<%= config.bin %> <%= command.id %> --volumes",
|
|
3376
3263
|
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3377
3264
|
],
|
|
3378
3265
|
"flags": {
|
|
@@ -3396,11 +3283,17 @@
|
|
|
3396
3283
|
},
|
|
3397
3284
|
"all": {
|
|
3398
3285
|
"char": "a",
|
|
3399
|
-
"description": "Remove all
|
|
3286
|
+
"description": "Remove all unused images, not just dangling ones",
|
|
3400
3287
|
"name": "all",
|
|
3401
3288
|
"allowNo": false,
|
|
3402
3289
|
"type": "boolean"
|
|
3403
3290
|
},
|
|
3291
|
+
"volumes": {
|
|
3292
|
+
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3293
|
+
"name": "volumes",
|
|
3294
|
+
"allowNo": false,
|
|
3295
|
+
"type": "boolean"
|
|
3296
|
+
},
|
|
3404
3297
|
"json": {
|
|
3405
3298
|
"description": "Output as JSON for AI agents/scripts",
|
|
3406
3299
|
"name": "json",
|
|
@@ -3417,7 +3310,7 @@
|
|
|
3417
3310
|
},
|
|
3418
3311
|
"hasDynamicHelp": false,
|
|
3419
3312
|
"hiddenAliases": [],
|
|
3420
|
-
"id": "docker:
|
|
3313
|
+
"id": "docker:prune",
|
|
3421
3314
|
"pluginAlias": "@proletariat/cli",
|
|
3422
3315
|
"pluginName": "@proletariat/cli",
|
|
3423
3316
|
"pluginType": "core",
|
|
@@ -3428,28 +3321,31 @@
|
|
|
3428
3321
|
"dist",
|
|
3429
3322
|
"commands",
|
|
3430
3323
|
"docker",
|
|
3431
|
-
"
|
|
3324
|
+
"prune.js"
|
|
3432
3325
|
]
|
|
3433
3326
|
},
|
|
3434
|
-
"docker": {
|
|
3327
|
+
"docker:rebuild-cache": {
|
|
3435
3328
|
"aliases": [],
|
|
3436
3329
|
"args": {},
|
|
3437
|
-
"description": "
|
|
3330
|
+
"description": "Rebuild the shared pnpm store cache volume for fast agent installs",
|
|
3438
3331
|
"examples": [
|
|
3439
3332
|
"<%= config.bin %> <%= command.id %>",
|
|
3440
|
-
"<%= config.bin %>
|
|
3441
|
-
"<%= config.bin %> docker list",
|
|
3442
|
-
"<%= config.bin %> docker logs WORK-001",
|
|
3443
|
-
"<%= config.bin %> docker start WORK-001",
|
|
3444
|
-
"<%= config.bin %> docker stop kalanick",
|
|
3445
|
-
"<%= config.bin %> docker shell WORK-001",
|
|
3446
|
-
"<%= config.bin %> docker restart abc123",
|
|
3447
|
-
"<%= config.bin %> docker sync",
|
|
3448
|
-
"<%= config.bin %> docker rebuild-cache",
|
|
3449
|
-
"<%= config.bin %> docker clean",
|
|
3450
|
-
"<%= config.bin %> docker prune"
|
|
3333
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
3451
3334
|
],
|
|
3452
3335
|
"flags": {
|
|
3336
|
+
"force": {
|
|
3337
|
+
"char": "f",
|
|
3338
|
+
"description": "Delete and rebuild the cache even if it already exists",
|
|
3339
|
+
"name": "force",
|
|
3340
|
+
"allowNo": false,
|
|
3341
|
+
"type": "boolean"
|
|
3342
|
+
},
|
|
3343
|
+
"delete-only": {
|
|
3344
|
+
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3345
|
+
"name": "delete-only",
|
|
3346
|
+
"allowNo": false,
|
|
3347
|
+
"type": "boolean"
|
|
3348
|
+
},
|
|
3453
3349
|
"json": {
|
|
3454
3350
|
"description": "Output as JSON for AI agents/scripts",
|
|
3455
3351
|
"name": "json",
|
|
@@ -3466,29 +3362,56 @@
|
|
|
3466
3362
|
},
|
|
3467
3363
|
"hasDynamicHelp": false,
|
|
3468
3364
|
"hiddenAliases": [],
|
|
3469
|
-
"id": "docker",
|
|
3365
|
+
"id": "docker:rebuild-cache",
|
|
3470
3366
|
"pluginAlias": "@proletariat/cli",
|
|
3471
3367
|
"pluginName": "@proletariat/cli",
|
|
3472
3368
|
"pluginType": "core",
|
|
3473
3369
|
"strict": true,
|
|
3370
|
+
"enableJsonFlag": false,
|
|
3474
3371
|
"isESM": true,
|
|
3475
3372
|
"relativePath": [
|
|
3476
3373
|
"dist",
|
|
3477
3374
|
"commands",
|
|
3478
3375
|
"docker",
|
|
3479
|
-
"
|
|
3376
|
+
"rebuild-cache.js"
|
|
3480
3377
|
]
|
|
3481
3378
|
},
|
|
3482
|
-
"docker:
|
|
3379
|
+
"docker:restart": {
|
|
3483
3380
|
"aliases": [],
|
|
3484
|
-
"args": {
|
|
3485
|
-
|
|
3381
|
+
"args": {
|
|
3382
|
+
"target": {
|
|
3383
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3384
|
+
"name": "target",
|
|
3385
|
+
"required": true
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3388
|
+
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3486
3389
|
"examples": [
|
|
3487
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3488
|
-
"<%= config.bin %> <%= command.id %>
|
|
3489
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3390
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3391
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3392
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3490
3393
|
],
|
|
3491
3394
|
"flags": {
|
|
3395
|
+
"force": {
|
|
3396
|
+
"aliases": [
|
|
3397
|
+
"yes",
|
|
3398
|
+
"y"
|
|
3399
|
+
],
|
|
3400
|
+
"char": "f",
|
|
3401
|
+
"description": "Skip confirmation prompt",
|
|
3402
|
+
"name": "force",
|
|
3403
|
+
"allowNo": false,
|
|
3404
|
+
"type": "boolean"
|
|
3405
|
+
},
|
|
3406
|
+
"time": {
|
|
3407
|
+
"char": "t",
|
|
3408
|
+
"description": "Seconds to wait before killing the container during stop",
|
|
3409
|
+
"name": "time",
|
|
3410
|
+
"default": 10,
|
|
3411
|
+
"hasDynamicHelp": false,
|
|
3412
|
+
"multiple": false,
|
|
3413
|
+
"type": "option"
|
|
3414
|
+
},
|
|
3492
3415
|
"json": {
|
|
3493
3416
|
"description": "Output as JSON for AI agents/scripts",
|
|
3494
3417
|
"name": "json",
|
|
@@ -3501,25 +3424,11 @@
|
|
|
3501
3424
|
"name": "machine",
|
|
3502
3425
|
"allowNo": false,
|
|
3503
3426
|
"type": "boolean"
|
|
3504
|
-
},
|
|
3505
|
-
"all": {
|
|
3506
|
-
"char": "a",
|
|
3507
|
-
"description": "Show all containers (including non-devcontainer)",
|
|
3508
|
-
"name": "all",
|
|
3509
|
-
"allowNo": false,
|
|
3510
|
-
"type": "boolean"
|
|
3511
|
-
},
|
|
3512
|
-
"running": {
|
|
3513
|
-
"char": "r",
|
|
3514
|
-
"description": "Only show running containers",
|
|
3515
|
-
"name": "running",
|
|
3516
|
-
"allowNo": false,
|
|
3517
|
-
"type": "boolean"
|
|
3518
3427
|
}
|
|
3519
3428
|
},
|
|
3520
3429
|
"hasDynamicHelp": false,
|
|
3521
3430
|
"hiddenAliases": [],
|
|
3522
|
-
"id": "docker:
|
|
3431
|
+
"id": "docker:restart",
|
|
3523
3432
|
"pluginAlias": "@proletariat/cli",
|
|
3524
3433
|
"pluginName": "@proletariat/cli",
|
|
3525
3434
|
"pluginType": "core",
|
|
@@ -3530,10 +3439,10 @@
|
|
|
3530
3439
|
"dist",
|
|
3531
3440
|
"commands",
|
|
3532
3441
|
"docker",
|
|
3533
|
-
"
|
|
3442
|
+
"restart.js"
|
|
3534
3443
|
]
|
|
3535
3444
|
},
|
|
3536
|
-
"docker:
|
|
3445
|
+
"docker:shell": {
|
|
3537
3446
|
"aliases": [],
|
|
3538
3447
|
"args": {
|
|
3539
3448
|
"target": {
|
|
@@ -3542,12 +3451,11 @@
|
|
|
3542
3451
|
"required": true
|
|
3543
3452
|
}
|
|
3544
3453
|
},
|
|
3545
|
-
"description": "
|
|
3454
|
+
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
3546
3455
|
"examples": [
|
|
3547
3456
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3548
3457
|
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3549
|
-
"<%= config.bin %> <%= command.id %> abc123 --
|
|
3550
|
-
"<%= config.bin %> <%= command.id %> WORK-001 --tail 100"
|
|
3458
|
+
"<%= config.bin %> <%= command.id %> abc123 --shell /bin/bash"
|
|
3551
3459
|
],
|
|
3552
3460
|
"flags": {
|
|
3553
3461
|
"json": {
|
|
@@ -3563,33 +3471,35 @@
|
|
|
3563
3471
|
"allowNo": false,
|
|
3564
3472
|
"type": "boolean"
|
|
3565
3473
|
},
|
|
3566
|
-
"
|
|
3567
|
-
"char": "
|
|
3568
|
-
"description": "
|
|
3569
|
-
"name": "
|
|
3570
|
-
"
|
|
3571
|
-
"
|
|
3474
|
+
"shell": {
|
|
3475
|
+
"char": "s",
|
|
3476
|
+
"description": "Shell to use",
|
|
3477
|
+
"name": "shell",
|
|
3478
|
+
"default": "/bin/sh",
|
|
3479
|
+
"hasDynamicHelp": false,
|
|
3480
|
+
"multiple": false,
|
|
3481
|
+
"type": "option"
|
|
3572
3482
|
},
|
|
3573
|
-
"
|
|
3574
|
-
"char": "
|
|
3575
|
-
"description": "
|
|
3576
|
-
"name": "
|
|
3577
|
-
"default": 100,
|
|
3483
|
+
"user": {
|
|
3484
|
+
"char": "u",
|
|
3485
|
+
"description": "User to run as",
|
|
3486
|
+
"name": "user",
|
|
3578
3487
|
"hasDynamicHelp": false,
|
|
3579
3488
|
"multiple": false,
|
|
3580
3489
|
"type": "option"
|
|
3581
3490
|
},
|
|
3582
|
-
"
|
|
3583
|
-
"char": "
|
|
3584
|
-
"description": "
|
|
3585
|
-
"name": "
|
|
3586
|
-
"
|
|
3587
|
-
"
|
|
3491
|
+
"workdir": {
|
|
3492
|
+
"char": "w",
|
|
3493
|
+
"description": "Working directory inside the container",
|
|
3494
|
+
"name": "workdir",
|
|
3495
|
+
"hasDynamicHelp": false,
|
|
3496
|
+
"multiple": false,
|
|
3497
|
+
"type": "option"
|
|
3588
3498
|
}
|
|
3589
3499
|
},
|
|
3590
3500
|
"hasDynamicHelp": false,
|
|
3591
3501
|
"hiddenAliases": [],
|
|
3592
|
-
"id": "docker:
|
|
3502
|
+
"id": "docker:shell",
|
|
3593
3503
|
"pluginAlias": "@proletariat/cli",
|
|
3594
3504
|
"pluginName": "@proletariat/cli",
|
|
3595
3505
|
"pluginType": "core",
|
|
@@ -3600,51 +3510,25 @@
|
|
|
3600
3510
|
"dist",
|
|
3601
3511
|
"commands",
|
|
3602
3512
|
"docker",
|
|
3603
|
-
"
|
|
3513
|
+
"shell.js"
|
|
3604
3514
|
]
|
|
3605
3515
|
},
|
|
3606
|
-
"docker:
|
|
3516
|
+
"docker:start": {
|
|
3607
3517
|
"aliases": [],
|
|
3608
|
-
"args": {
|
|
3609
|
-
|
|
3518
|
+
"args": {
|
|
3519
|
+
"target": {
|
|
3520
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3521
|
+
"name": "target",
|
|
3522
|
+
"required": true
|
|
3523
|
+
}
|
|
3524
|
+
},
|
|
3525
|
+
"description": "Start a stopped container (by execution ID, agent name, or container ID)",
|
|
3610
3526
|
"examples": [
|
|
3611
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3612
|
-
"<%= config.bin %> <%= command.id %>
|
|
3613
|
-
"<%= config.bin %> <%= command.id %>
|
|
3614
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3527
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3528
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3529
|
+
"<%= config.bin %> <%= command.id %> abc123"
|
|
3615
3530
|
],
|
|
3616
3531
|
"flags": {
|
|
3617
|
-
"force": {
|
|
3618
|
-
"aliases": [
|
|
3619
|
-
"yes",
|
|
3620
|
-
"y"
|
|
3621
|
-
],
|
|
3622
|
-
"char": "f",
|
|
3623
|
-
"description": "Skip confirmation prompt",
|
|
3624
|
-
"name": "force",
|
|
3625
|
-
"allowNo": false,
|
|
3626
|
-
"type": "boolean"
|
|
3627
|
-
},
|
|
3628
|
-
"dry-run": {
|
|
3629
|
-
"char": "d",
|
|
3630
|
-
"description": "Show what would be removed without removing",
|
|
3631
|
-
"name": "dry-run",
|
|
3632
|
-
"allowNo": false,
|
|
3633
|
-
"type": "boolean"
|
|
3634
|
-
},
|
|
3635
|
-
"all": {
|
|
3636
|
-
"char": "a",
|
|
3637
|
-
"description": "Remove all unused images, not just dangling ones",
|
|
3638
|
-
"name": "all",
|
|
3639
|
-
"allowNo": false,
|
|
3640
|
-
"type": "boolean"
|
|
3641
|
-
},
|
|
3642
|
-
"volumes": {
|
|
3643
|
-
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3644
|
-
"name": "volumes",
|
|
3645
|
-
"allowNo": false,
|
|
3646
|
-
"type": "boolean"
|
|
3647
|
-
},
|
|
3648
3532
|
"json": {
|
|
3649
3533
|
"description": "Output as JSON for AI agents/scripts",
|
|
3650
3534
|
"name": "json",
|
|
@@ -3657,11 +3541,18 @@
|
|
|
3657
3541
|
"name": "machine",
|
|
3658
3542
|
"allowNo": false,
|
|
3659
3543
|
"type": "boolean"
|
|
3544
|
+
},
|
|
3545
|
+
"attach": {
|
|
3546
|
+
"char": "a",
|
|
3547
|
+
"description": "Attach to container after starting",
|
|
3548
|
+
"name": "attach",
|
|
3549
|
+
"allowNo": false,
|
|
3550
|
+
"type": "boolean"
|
|
3660
3551
|
}
|
|
3661
3552
|
},
|
|
3662
3553
|
"hasDynamicHelp": false,
|
|
3663
3554
|
"hiddenAliases": [],
|
|
3664
|
-
"id": "docker:
|
|
3555
|
+
"id": "docker:start",
|
|
3665
3556
|
"pluginAlias": "@proletariat/cli",
|
|
3666
3557
|
"pluginName": "@proletariat/cli",
|
|
3667
3558
|
"pluginType": "core",
|
|
@@ -3672,31 +3563,17 @@
|
|
|
3672
3563
|
"dist",
|
|
3673
3564
|
"commands",
|
|
3674
3565
|
"docker",
|
|
3675
|
-
"
|
|
3566
|
+
"start.js"
|
|
3676
3567
|
]
|
|
3677
3568
|
},
|
|
3678
|
-
"docker:
|
|
3569
|
+
"docker:status": {
|
|
3679
3570
|
"aliases": [],
|
|
3680
3571
|
"args": {},
|
|
3681
|
-
"description": "
|
|
3572
|
+
"description": "Check if Docker daemon is running",
|
|
3682
3573
|
"examples": [
|
|
3683
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3684
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
3574
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3685
3575
|
],
|
|
3686
3576
|
"flags": {
|
|
3687
|
-
"force": {
|
|
3688
|
-
"char": "f",
|
|
3689
|
-
"description": "Delete and rebuild the cache even if it already exists",
|
|
3690
|
-
"name": "force",
|
|
3691
|
-
"allowNo": false,
|
|
3692
|
-
"type": "boolean"
|
|
3693
|
-
},
|
|
3694
|
-
"delete-only": {
|
|
3695
|
-
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3696
|
-
"name": "delete-only",
|
|
3697
|
-
"allowNo": false,
|
|
3698
|
-
"type": "boolean"
|
|
3699
|
-
},
|
|
3700
3577
|
"json": {
|
|
3701
3578
|
"description": "Output as JSON for AI agents/scripts",
|
|
3702
3579
|
"name": "json",
|
|
@@ -3713,7 +3590,7 @@
|
|
|
3713
3590
|
},
|
|
3714
3591
|
"hasDynamicHelp": false,
|
|
3715
3592
|
"hiddenAliases": [],
|
|
3716
|
-
"id": "docker:
|
|
3593
|
+
"id": "docker:status",
|
|
3717
3594
|
"pluginAlias": "@proletariat/cli",
|
|
3718
3595
|
"pluginName": "@proletariat/cli",
|
|
3719
3596
|
"pluginType": "core",
|
|
@@ -3724,10 +3601,10 @@
|
|
|
3724
3601
|
"dist",
|
|
3725
3602
|
"commands",
|
|
3726
3603
|
"docker",
|
|
3727
|
-
"
|
|
3604
|
+
"status.js"
|
|
3728
3605
|
]
|
|
3729
3606
|
},
|
|
3730
|
-
"docker:
|
|
3607
|
+
"docker:stop": {
|
|
3731
3608
|
"aliases": [],
|
|
3732
3609
|
"args": {
|
|
3733
3610
|
"target": {
|
|
@@ -3736,7 +3613,7 @@
|
|
|
3736
3613
|
"required": true
|
|
3737
3614
|
}
|
|
3738
3615
|
},
|
|
3739
|
-
"description": "
|
|
3616
|
+
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
3740
3617
|
"examples": [
|
|
3741
3618
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3742
3619
|
"<%= config.bin %> <%= command.id %> kalanick",
|
|
@@ -3756,7 +3633,7 @@
|
|
|
3756
3633
|
},
|
|
3757
3634
|
"time": {
|
|
3758
3635
|
"char": "t",
|
|
3759
|
-
"description": "Seconds to wait before killing the container
|
|
3636
|
+
"description": "Seconds to wait before killing the container",
|
|
3760
3637
|
"name": "time",
|
|
3761
3638
|
"default": 10,
|
|
3762
3639
|
"hasDynamicHelp": false,
|
|
@@ -3779,7 +3656,7 @@
|
|
|
3779
3656
|
},
|
|
3780
3657
|
"hasDynamicHelp": false,
|
|
3781
3658
|
"hiddenAliases": [],
|
|
3782
|
-
"id": "docker:
|
|
3659
|
+
"id": "docker:stop",
|
|
3783
3660
|
"pluginAlias": "@proletariat/cli",
|
|
3784
3661
|
"pluginName": "@proletariat/cli",
|
|
3785
3662
|
"pluginType": "core",
|
|
@@ -3790,23 +3667,59 @@
|
|
|
3790
3667
|
"dist",
|
|
3791
3668
|
"commands",
|
|
3792
3669
|
"docker",
|
|
3793
|
-
"
|
|
3670
|
+
"stop.js"
|
|
3794
3671
|
]
|
|
3795
3672
|
},
|
|
3796
|
-
"docker:
|
|
3673
|
+
"docker:sync": {
|
|
3797
3674
|
"aliases": [],
|
|
3798
|
-
"args": {
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3675
|
+
"args": {},
|
|
3676
|
+
"description": "Sync container status from Docker into the database",
|
|
3677
|
+
"examples": [
|
|
3678
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3679
|
+
],
|
|
3680
|
+
"flags": {
|
|
3681
|
+
"json": {
|
|
3682
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3683
|
+
"name": "json",
|
|
3684
|
+
"allowNo": false,
|
|
3685
|
+
"type": "boolean"
|
|
3686
|
+
},
|
|
3687
|
+
"machine": {
|
|
3688
|
+
"char": "m",
|
|
3689
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3690
|
+
"name": "machine",
|
|
3691
|
+
"allowNo": false,
|
|
3692
|
+
"type": "boolean"
|
|
3803
3693
|
}
|
|
3804
3694
|
},
|
|
3805
|
-
"
|
|
3695
|
+
"hasDynamicHelp": false,
|
|
3696
|
+
"hiddenAliases": [],
|
|
3697
|
+
"id": "docker:sync",
|
|
3698
|
+
"pluginAlias": "@proletariat/cli",
|
|
3699
|
+
"pluginName": "@proletariat/cli",
|
|
3700
|
+
"pluginType": "core",
|
|
3701
|
+
"strict": true,
|
|
3702
|
+
"enableJsonFlag": false,
|
|
3703
|
+
"isESM": true,
|
|
3704
|
+
"relativePath": [
|
|
3705
|
+
"dist",
|
|
3706
|
+
"commands",
|
|
3707
|
+
"docker",
|
|
3708
|
+
"sync.js"
|
|
3709
|
+
]
|
|
3710
|
+
},
|
|
3711
|
+
"execution:config": {
|
|
3712
|
+
"aliases": [],
|
|
3713
|
+
"args": {},
|
|
3714
|
+
"description": "View and update execution preferences",
|
|
3806
3715
|
"examples": [
|
|
3807
|
-
"<%= config.bin %>
|
|
3808
|
-
"<%= config.bin %>
|
|
3809
|
-
"<%= config.bin %>
|
|
3716
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
3717
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3718
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
3719
|
+
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3720
|
+
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3721
|
+
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3722
|
+
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3810
3723
|
],
|
|
3811
3724
|
"flags": {
|
|
3812
3725
|
"json": {
|
|
@@ -3822,27 +3735,24 @@
|
|
|
3822
3735
|
"allowNo": false,
|
|
3823
3736
|
"type": "boolean"
|
|
3824
3737
|
},
|
|
3825
|
-
"
|
|
3738
|
+
"set": {
|
|
3826
3739
|
"char": "s",
|
|
3827
|
-
"description": "
|
|
3828
|
-
"name": "
|
|
3829
|
-
"default": "/bin/sh",
|
|
3740
|
+
"description": "Set a config value (format: key value)",
|
|
3741
|
+
"name": "set",
|
|
3830
3742
|
"hasDynamicHelp": false,
|
|
3831
|
-
"multiple":
|
|
3743
|
+
"multiple": true,
|
|
3832
3744
|
"type": "option"
|
|
3833
3745
|
},
|
|
3834
|
-
"
|
|
3835
|
-
"char": "
|
|
3836
|
-
"description": "
|
|
3837
|
-
"name": "
|
|
3838
|
-
"
|
|
3839
|
-
"
|
|
3840
|
-
"type": "option"
|
|
3746
|
+
"list": {
|
|
3747
|
+
"char": "l",
|
|
3748
|
+
"description": "List all configuration values",
|
|
3749
|
+
"name": "list",
|
|
3750
|
+
"allowNo": false,
|
|
3751
|
+
"type": "boolean"
|
|
3841
3752
|
},
|
|
3842
|
-
"
|
|
3843
|
-
"
|
|
3844
|
-
"
|
|
3845
|
-
"name": "workdir",
|
|
3753
|
+
"setting": {
|
|
3754
|
+
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
3755
|
+
"name": "setting",
|
|
3846
3756
|
"hasDynamicHelp": false,
|
|
3847
3757
|
"multiple": false,
|
|
3848
3758
|
"type": "option"
|
|
@@ -3850,34 +3760,68 @@
|
|
|
3850
3760
|
},
|
|
3851
3761
|
"hasDynamicHelp": false,
|
|
3852
3762
|
"hiddenAliases": [],
|
|
3853
|
-
"id": "
|
|
3763
|
+
"id": "execution:config",
|
|
3854
3764
|
"pluginAlias": "@proletariat/cli",
|
|
3855
3765
|
"pluginName": "@proletariat/cli",
|
|
3856
3766
|
"pluginType": "core",
|
|
3857
3767
|
"strict": true,
|
|
3858
|
-
"enableJsonFlag": false,
|
|
3859
3768
|
"isESM": true,
|
|
3860
3769
|
"relativePath": [
|
|
3861
3770
|
"dist",
|
|
3862
3771
|
"commands",
|
|
3863
|
-
"
|
|
3864
|
-
"
|
|
3772
|
+
"execution",
|
|
3773
|
+
"config.js"
|
|
3865
3774
|
]
|
|
3866
3775
|
},
|
|
3867
|
-
"
|
|
3776
|
+
"execution": {
|
|
3868
3777
|
"aliases": [],
|
|
3869
|
-
"args": {
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3778
|
+
"args": {},
|
|
3779
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
3780
|
+
"examples": [
|
|
3781
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3782
|
+
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
3783
|
+
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
3784
|
+
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
3785
|
+
],
|
|
3786
|
+
"flags": {
|
|
3787
|
+
"json": {
|
|
3788
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3789
|
+
"name": "json",
|
|
3790
|
+
"allowNo": false,
|
|
3791
|
+
"type": "boolean"
|
|
3792
|
+
},
|
|
3793
|
+
"machine": {
|
|
3794
|
+
"char": "m",
|
|
3795
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3796
|
+
"name": "machine",
|
|
3797
|
+
"allowNo": false,
|
|
3798
|
+
"type": "boolean"
|
|
3874
3799
|
}
|
|
3875
3800
|
},
|
|
3876
|
-
"
|
|
3801
|
+
"hasDynamicHelp": false,
|
|
3802
|
+
"hiddenAliases": [],
|
|
3803
|
+
"id": "execution",
|
|
3804
|
+
"pluginAlias": "@proletariat/cli",
|
|
3805
|
+
"pluginName": "@proletariat/cli",
|
|
3806
|
+
"pluginType": "core",
|
|
3807
|
+
"strict": true,
|
|
3808
|
+
"isESM": true,
|
|
3809
|
+
"relativePath": [
|
|
3810
|
+
"dist",
|
|
3811
|
+
"commands",
|
|
3812
|
+
"execution",
|
|
3813
|
+
"index.js"
|
|
3814
|
+
]
|
|
3815
|
+
},
|
|
3816
|
+
"execution:list": {
|
|
3817
|
+
"aliases": [],
|
|
3818
|
+
"args": {},
|
|
3819
|
+
"description": "List running and recent executions",
|
|
3877
3820
|
"examples": [
|
|
3878
|
-
"<%= config.bin %> <%= command.id %>
|
|
3879
|
-
"<%= config.bin %> <%= command.id %>
|
|
3880
|
-
"<%= config.bin %> <%= command.id %>
|
|
3821
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3822
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
3823
|
+
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
3824
|
+
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3881
3825
|
],
|
|
3882
3826
|
"flags": {
|
|
3883
3827
|
"json": {
|
|
@@ -3893,36 +3837,69 @@
|
|
|
3893
3837
|
"allowNo": false,
|
|
3894
3838
|
"type": "boolean"
|
|
3895
3839
|
},
|
|
3896
|
-
"
|
|
3840
|
+
"status": {
|
|
3841
|
+
"char": "s",
|
|
3842
|
+
"description": "Filter by status",
|
|
3843
|
+
"name": "status",
|
|
3844
|
+
"hasDynamicHelp": false,
|
|
3845
|
+
"multiple": false,
|
|
3846
|
+
"options": [
|
|
3847
|
+
"starting",
|
|
3848
|
+
"running",
|
|
3849
|
+
"completed",
|
|
3850
|
+
"failed",
|
|
3851
|
+
"stopped"
|
|
3852
|
+
],
|
|
3853
|
+
"type": "option"
|
|
3854
|
+
},
|
|
3855
|
+
"agent": {
|
|
3897
3856
|
"char": "a",
|
|
3898
|
-
"description": "
|
|
3899
|
-
"name": "
|
|
3900
|
-
"
|
|
3901
|
-
"
|
|
3857
|
+
"description": "Filter by agent name",
|
|
3858
|
+
"name": "agent",
|
|
3859
|
+
"hasDynamicHelp": false,
|
|
3860
|
+
"multiple": false,
|
|
3861
|
+
"type": "option"
|
|
3862
|
+
},
|
|
3863
|
+
"limit": {
|
|
3864
|
+
"char": "l",
|
|
3865
|
+
"description": "Number of results",
|
|
3866
|
+
"name": "limit",
|
|
3867
|
+
"default": 20,
|
|
3868
|
+
"hasDynamicHelp": false,
|
|
3869
|
+
"multiple": false,
|
|
3870
|
+
"type": "option"
|
|
3902
3871
|
}
|
|
3903
3872
|
},
|
|
3904
3873
|
"hasDynamicHelp": false,
|
|
3905
3874
|
"hiddenAliases": [],
|
|
3906
|
-
"id": "
|
|
3875
|
+
"id": "execution:list",
|
|
3907
3876
|
"pluginAlias": "@proletariat/cli",
|
|
3908
3877
|
"pluginName": "@proletariat/cli",
|
|
3909
3878
|
"pluginType": "core",
|
|
3910
3879
|
"strict": true,
|
|
3911
|
-
"enableJsonFlag": false,
|
|
3912
3880
|
"isESM": true,
|
|
3913
3881
|
"relativePath": [
|
|
3914
3882
|
"dist",
|
|
3915
3883
|
"commands",
|
|
3916
|
-
"
|
|
3917
|
-
"
|
|
3884
|
+
"execution",
|
|
3885
|
+
"list.js"
|
|
3918
3886
|
]
|
|
3919
3887
|
},
|
|
3920
|
-
"
|
|
3888
|
+
"execution:logs": {
|
|
3921
3889
|
"aliases": [],
|
|
3922
|
-
"args": {
|
|
3923
|
-
|
|
3890
|
+
"args": {
|
|
3891
|
+
"id": {
|
|
3892
|
+
"description": "Execution ID - prompts if not provided",
|
|
3893
|
+
"name": "id",
|
|
3894
|
+
"required": false
|
|
3895
|
+
}
|
|
3896
|
+
},
|
|
3897
|
+
"description": "View execution logs",
|
|
3924
3898
|
"examples": [
|
|
3925
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3899
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3900
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
3901
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
3902
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3926
3903
|
],
|
|
3927
3904
|
"flags": {
|
|
3928
3905
|
"json": {
|
|
@@ -3937,60 +3914,57 @@
|
|
|
3937
3914
|
"name": "machine",
|
|
3938
3915
|
"allowNo": false,
|
|
3939
3916
|
"type": "boolean"
|
|
3917
|
+
},
|
|
3918
|
+
"follow": {
|
|
3919
|
+
"char": "f",
|
|
3920
|
+
"description": "Stream logs in real-time",
|
|
3921
|
+
"name": "follow",
|
|
3922
|
+
"allowNo": false,
|
|
3923
|
+
"type": "boolean"
|
|
3924
|
+
},
|
|
3925
|
+
"tail": {
|
|
3926
|
+
"char": "n",
|
|
3927
|
+
"description": "Show last n lines",
|
|
3928
|
+
"name": "tail",
|
|
3929
|
+
"hasDynamicHelp": false,
|
|
3930
|
+
"multiple": false,
|
|
3931
|
+
"type": "option"
|
|
3940
3932
|
}
|
|
3941
3933
|
},
|
|
3942
3934
|
"hasDynamicHelp": false,
|
|
3943
3935
|
"hiddenAliases": [],
|
|
3944
|
-
"id": "
|
|
3936
|
+
"id": "execution:logs",
|
|
3945
3937
|
"pluginAlias": "@proletariat/cli",
|
|
3946
3938
|
"pluginName": "@proletariat/cli",
|
|
3947
3939
|
"pluginType": "core",
|
|
3948
3940
|
"strict": true,
|
|
3949
|
-
"enableJsonFlag": false,
|
|
3950
3941
|
"isESM": true,
|
|
3951
3942
|
"relativePath": [
|
|
3952
3943
|
"dist",
|
|
3953
3944
|
"commands",
|
|
3954
|
-
"
|
|
3955
|
-
"
|
|
3945
|
+
"execution",
|
|
3946
|
+
"logs.js"
|
|
3956
3947
|
]
|
|
3957
3948
|
},
|
|
3958
|
-
"
|
|
3949
|
+
"execution:stop": {
|
|
3959
3950
|
"aliases": [],
|
|
3960
3951
|
"args": {
|
|
3961
|
-
"
|
|
3962
|
-
"description": "Execution ID
|
|
3963
|
-
"name": "
|
|
3964
|
-
"required":
|
|
3952
|
+
"id": {
|
|
3953
|
+
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
3954
|
+
"name": "id",
|
|
3955
|
+
"required": false
|
|
3965
3956
|
}
|
|
3966
3957
|
},
|
|
3967
|
-
"description": "Stop
|
|
3958
|
+
"description": "Stop running execution(s)",
|
|
3968
3959
|
"examples": [
|
|
3969
3960
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3970
|
-
"<%= config.bin %> <%= command.id %>
|
|
3971
|
-
"<%= config.bin %> <%= command.id %>
|
|
3961
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
3962
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
3963
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3964
|
+
"<%= config.bin %> <%= command.id %> --all --force",
|
|
3965
|
+
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
3972
3966
|
],
|
|
3973
3967
|
"flags": {
|
|
3974
|
-
"force": {
|
|
3975
|
-
"aliases": [
|
|
3976
|
-
"yes",
|
|
3977
|
-
"y"
|
|
3978
|
-
],
|
|
3979
|
-
"char": "f",
|
|
3980
|
-
"description": "Skip confirmation prompt",
|
|
3981
|
-
"name": "force",
|
|
3982
|
-
"allowNo": false,
|
|
3983
|
-
"type": "boolean"
|
|
3984
|
-
},
|
|
3985
|
-
"time": {
|
|
3986
|
-
"char": "t",
|
|
3987
|
-
"description": "Seconds to wait before killing the container",
|
|
3988
|
-
"name": "time",
|
|
3989
|
-
"default": 10,
|
|
3990
|
-
"hasDynamicHelp": false,
|
|
3991
|
-
"multiple": false,
|
|
3992
|
-
"type": "option"
|
|
3993
|
-
},
|
|
3994
3968
|
"json": {
|
|
3995
3969
|
"description": "Output as JSON for AI agents/scripts",
|
|
3996
3970
|
"name": "json",
|
|
@@ -4003,30 +3977,57 @@
|
|
|
4003
3977
|
"name": "machine",
|
|
4004
3978
|
"allowNo": false,
|
|
4005
3979
|
"type": "boolean"
|
|
3980
|
+
},
|
|
3981
|
+
"force": {
|
|
3982
|
+
"char": "f",
|
|
3983
|
+
"description": "Force kill (SIGKILL instead of SIGTERM)",
|
|
3984
|
+
"name": "force",
|
|
3985
|
+
"allowNo": false,
|
|
3986
|
+
"type": "boolean"
|
|
3987
|
+
},
|
|
3988
|
+
"all": {
|
|
3989
|
+
"description": "Stop all running executions",
|
|
3990
|
+
"name": "all",
|
|
3991
|
+
"allowNo": false,
|
|
3992
|
+
"type": "boolean"
|
|
3993
|
+
},
|
|
3994
|
+
"agent": {
|
|
3995
|
+
"char": "a",
|
|
3996
|
+
"description": "Stop all executions for a specific agent",
|
|
3997
|
+
"name": "agent",
|
|
3998
|
+
"hasDynamicHelp": false,
|
|
3999
|
+
"multiple": false,
|
|
4000
|
+
"type": "option"
|
|
4006
4001
|
}
|
|
4007
4002
|
},
|
|
4008
4003
|
"hasDynamicHelp": false,
|
|
4009
4004
|
"hiddenAliases": [],
|
|
4010
|
-
"id": "
|
|
4005
|
+
"id": "execution:stop",
|
|
4011
4006
|
"pluginAlias": "@proletariat/cli",
|
|
4012
4007
|
"pluginName": "@proletariat/cli",
|
|
4013
4008
|
"pluginType": "core",
|
|
4014
4009
|
"strict": true,
|
|
4015
|
-
"enableJsonFlag": false,
|
|
4016
4010
|
"isESM": true,
|
|
4017
4011
|
"relativePath": [
|
|
4018
4012
|
"dist",
|
|
4019
4013
|
"commands",
|
|
4020
|
-
"
|
|
4014
|
+
"execution",
|
|
4021
4015
|
"stop.js"
|
|
4022
4016
|
]
|
|
4023
4017
|
},
|
|
4024
|
-
"
|
|
4018
|
+
"execution:view": {
|
|
4025
4019
|
"aliases": [],
|
|
4026
|
-
"args": {
|
|
4027
|
-
|
|
4020
|
+
"args": {
|
|
4021
|
+
"id": {
|
|
4022
|
+
"description": "Execution ID - prompts if not provided",
|
|
4023
|
+
"name": "id",
|
|
4024
|
+
"required": false
|
|
4025
|
+
}
|
|
4026
|
+
},
|
|
4027
|
+
"description": "View details of a specific execution",
|
|
4028
4028
|
"examples": [
|
|
4029
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4029
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
4030
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
4030
4031
|
],
|
|
4031
4032
|
"flags": {
|
|
4032
4033
|
"json": {
|
|
@@ -4045,18 +4046,17 @@
|
|
|
4045
4046
|
},
|
|
4046
4047
|
"hasDynamicHelp": false,
|
|
4047
4048
|
"hiddenAliases": [],
|
|
4048
|
-
"id": "
|
|
4049
|
+
"id": "execution:view",
|
|
4049
4050
|
"pluginAlias": "@proletariat/cli",
|
|
4050
4051
|
"pluginName": "@proletariat/cli",
|
|
4051
4052
|
"pluginType": "core",
|
|
4052
4053
|
"strict": true,
|
|
4053
|
-
"enableJsonFlag": false,
|
|
4054
4054
|
"isESM": true,
|
|
4055
4055
|
"relativePath": [
|
|
4056
4056
|
"dist",
|
|
4057
4057
|
"commands",
|
|
4058
|
-
"
|
|
4059
|
-
"
|
|
4058
|
+
"execution",
|
|
4059
|
+
"view.js"
|
|
4060
4060
|
]
|
|
4061
4061
|
},
|
|
4062
4062
|
"feedback": {
|
|
@@ -5218,16 +5218,186 @@
|
|
|
5218
5218
|
"allowNo": false,
|
|
5219
5219
|
"type": "boolean"
|
|
5220
5220
|
},
|
|
5221
|
-
"disconnect": {
|
|
5222
|
-
"description": "Remove stored Monday credentials",
|
|
5223
|
-
"name": "disconnect",
|
|
5221
|
+
"disconnect": {
|
|
5222
|
+
"description": "Remove stored Monday credentials",
|
|
5223
|
+
"name": "disconnect",
|
|
5224
|
+
"allowNo": false,
|
|
5225
|
+
"type": "boolean"
|
|
5226
|
+
}
|
|
5227
|
+
},
|
|
5228
|
+
"hasDynamicHelp": false,
|
|
5229
|
+
"hiddenAliases": [],
|
|
5230
|
+
"id": "monday:connect",
|
|
5231
|
+
"pluginAlias": "@proletariat/cli",
|
|
5232
|
+
"pluginName": "@proletariat/cli",
|
|
5233
|
+
"pluginType": "core",
|
|
5234
|
+
"strict": true,
|
|
5235
|
+
"isESM": true,
|
|
5236
|
+
"relativePath": [
|
|
5237
|
+
"dist",
|
|
5238
|
+
"commands",
|
|
5239
|
+
"monday",
|
|
5240
|
+
"connect.js"
|
|
5241
|
+
]
|
|
5242
|
+
},
|
|
5243
|
+
"monday:sync": {
|
|
5244
|
+
"aliases": [],
|
|
5245
|
+
"args": {},
|
|
5246
|
+
"description": "Sync PMO tickets to Monday.com board items",
|
|
5247
|
+
"examples": [
|
|
5248
|
+
"<%= config.bin %> <%= command.id %> # Sync project tickets to Monday board",
|
|
5249
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 # Sync one ticket",
|
|
5250
|
+
"<%= config.bin %> <%= command.id %> --dry-run # Preview sync operations"
|
|
5251
|
+
],
|
|
5252
|
+
"flags": {
|
|
5253
|
+
"project": {
|
|
5254
|
+
"char": "P",
|
|
5255
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
5256
|
+
"name": "project",
|
|
5257
|
+
"hasDynamicHelp": false,
|
|
5258
|
+
"multiple": false,
|
|
5259
|
+
"type": "option"
|
|
5260
|
+
},
|
|
5261
|
+
"json": {
|
|
5262
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5263
|
+
"name": "json",
|
|
5264
|
+
"allowNo": false,
|
|
5265
|
+
"type": "boolean"
|
|
5266
|
+
},
|
|
5267
|
+
"machine": {
|
|
5268
|
+
"char": "m",
|
|
5269
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5270
|
+
"name": "machine",
|
|
5271
|
+
"allowNo": false,
|
|
5272
|
+
"type": "boolean"
|
|
5273
|
+
},
|
|
5274
|
+
"ticket": {
|
|
5275
|
+
"description": "PMO ticket ID to sync",
|
|
5276
|
+
"name": "ticket",
|
|
5277
|
+
"hasDynamicHelp": false,
|
|
5278
|
+
"multiple": false,
|
|
5279
|
+
"type": "option"
|
|
5280
|
+
},
|
|
5281
|
+
"dry-run": {
|
|
5282
|
+
"description": "Preview what would be synced without writing to Monday",
|
|
5283
|
+
"name": "dry-run",
|
|
5284
|
+
"allowNo": false,
|
|
5285
|
+
"type": "boolean"
|
|
5286
|
+
}
|
|
5287
|
+
},
|
|
5288
|
+
"hasDynamicHelp": false,
|
|
5289
|
+
"hiddenAliases": [],
|
|
5290
|
+
"id": "monday:sync",
|
|
5291
|
+
"pluginAlias": "@proletariat/cli",
|
|
5292
|
+
"pluginName": "@proletariat/cli",
|
|
5293
|
+
"pluginType": "core",
|
|
5294
|
+
"strict": true,
|
|
5295
|
+
"isESM": true,
|
|
5296
|
+
"relativePath": [
|
|
5297
|
+
"dist",
|
|
5298
|
+
"commands",
|
|
5299
|
+
"monday",
|
|
5300
|
+
"sync.js"
|
|
5301
|
+
]
|
|
5302
|
+
},
|
|
5303
|
+
"orchestrate": {
|
|
5304
|
+
"aliases": [],
|
|
5305
|
+
"args": {},
|
|
5306
|
+
"description": "Start the autonomous pipeline daemon with event-driven hooks",
|
|
5307
|
+
"examples": [
|
|
5308
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5309
|
+
"<%= config.bin %> <%= command.id %> --preset supervised",
|
|
5310
|
+
"<%= config.bin %> <%= command.id %> --load-yaml",
|
|
5311
|
+
"<%= config.bin %> <%= command.id %> --poll-interval 300",
|
|
5312
|
+
"<%= config.bin %> <%= command.id %> --once on_ci_green --pr 123"
|
|
5313
|
+
],
|
|
5314
|
+
"flags": {
|
|
5315
|
+
"json": {
|
|
5316
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5317
|
+
"name": "json",
|
|
5318
|
+
"allowNo": false,
|
|
5319
|
+
"type": "boolean"
|
|
5320
|
+
},
|
|
5321
|
+
"machine": {
|
|
5322
|
+
"char": "m",
|
|
5323
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5324
|
+
"name": "machine",
|
|
5325
|
+
"allowNo": false,
|
|
5326
|
+
"type": "boolean"
|
|
5327
|
+
},
|
|
5328
|
+
"preset": {
|
|
5329
|
+
"description": "Apply a preset before starting (aggressive, conservative, supervised)",
|
|
5330
|
+
"name": "preset",
|
|
5331
|
+
"hasDynamicHelp": false,
|
|
5332
|
+
"multiple": false,
|
|
5333
|
+
"options": [
|
|
5334
|
+
"aggressive",
|
|
5335
|
+
"conservative",
|
|
5336
|
+
"supervised"
|
|
5337
|
+
],
|
|
5338
|
+
"type": "option"
|
|
5339
|
+
},
|
|
5340
|
+
"load-yaml": {
|
|
5341
|
+
"description": "Load hooks from .proletariat/hooks.yml before starting",
|
|
5342
|
+
"name": "load-yaml",
|
|
5343
|
+
"allowNo": false,
|
|
5344
|
+
"type": "boolean"
|
|
5345
|
+
},
|
|
5346
|
+
"poll-interval": {
|
|
5347
|
+
"description": "Poll interval in seconds for external event sources (0 to disable)",
|
|
5348
|
+
"name": "poll-interval",
|
|
5349
|
+
"default": 0,
|
|
5350
|
+
"hasDynamicHelp": false,
|
|
5351
|
+
"multiple": false,
|
|
5352
|
+
"type": "option"
|
|
5353
|
+
},
|
|
5354
|
+
"once": {
|
|
5355
|
+
"description": "Fire a single event and exit (useful for CI/GitHub Actions)",
|
|
5356
|
+
"name": "once",
|
|
5357
|
+
"hasDynamicHelp": false,
|
|
5358
|
+
"multiple": false,
|
|
5359
|
+
"type": "option"
|
|
5360
|
+
},
|
|
5361
|
+
"ticket": {
|
|
5362
|
+
"char": "t",
|
|
5363
|
+
"description": "Ticket ID (for --once)",
|
|
5364
|
+
"name": "ticket",
|
|
5365
|
+
"hasDynamicHelp": false,
|
|
5366
|
+
"multiple": false,
|
|
5367
|
+
"type": "option"
|
|
5368
|
+
},
|
|
5369
|
+
"pr": {
|
|
5370
|
+
"description": "PR number (for --once)",
|
|
5371
|
+
"name": "pr",
|
|
5372
|
+
"hasDynamicHelp": false,
|
|
5373
|
+
"multiple": false,
|
|
5374
|
+
"type": "option"
|
|
5375
|
+
},
|
|
5376
|
+
"branch": {
|
|
5377
|
+
"description": "Branch name (for --once)",
|
|
5378
|
+
"name": "branch",
|
|
5379
|
+
"hasDynamicHelp": false,
|
|
5380
|
+
"multiple": false,
|
|
5381
|
+
"type": "option"
|
|
5382
|
+
},
|
|
5383
|
+
"agent": {
|
|
5384
|
+
"description": "Agent name (for --once)",
|
|
5385
|
+
"name": "agent",
|
|
5386
|
+
"hasDynamicHelp": false,
|
|
5387
|
+
"multiple": false,
|
|
5388
|
+
"type": "option"
|
|
5389
|
+
},
|
|
5390
|
+
"verbose": {
|
|
5391
|
+
"char": "v",
|
|
5392
|
+
"description": "Show detailed output",
|
|
5393
|
+
"name": "verbose",
|
|
5224
5394
|
"allowNo": false,
|
|
5225
5395
|
"type": "boolean"
|
|
5226
5396
|
}
|
|
5227
5397
|
},
|
|
5228
5398
|
"hasDynamicHelp": false,
|
|
5229
5399
|
"hiddenAliases": [],
|
|
5230
|
-
"id": "
|
|
5400
|
+
"id": "orchestrate",
|
|
5231
5401
|
"pluginAlias": "@proletariat/cli",
|
|
5232
5402
|
"pluginName": "@proletariat/cli",
|
|
5233
5403
|
"pluginType": "core",
|
|
@@ -5236,58 +5406,87 @@
|
|
|
5236
5406
|
"relativePath": [
|
|
5237
5407
|
"dist",
|
|
5238
5408
|
"commands",
|
|
5239
|
-
"
|
|
5240
|
-
"
|
|
5409
|
+
"orchestrate",
|
|
5410
|
+
"index.js"
|
|
5241
5411
|
]
|
|
5242
5412
|
},
|
|
5243
|
-
"
|
|
5413
|
+
"orchestrate:machine": {
|
|
5244
5414
|
"aliases": [],
|
|
5245
5415
|
"args": {},
|
|
5246
|
-
"description": "
|
|
5416
|
+
"description": "Start the machine-level orchestrator — root supervisor for all agents across all repos",
|
|
5247
5417
|
"examples": [
|
|
5248
|
-
"<%= config.bin %> <%= command.id %>
|
|
5249
|
-
"<%= config.bin %> <%= command.id %> --
|
|
5250
|
-
"<%= config.bin %> <%= command.id %> --
|
|
5418
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5419
|
+
"<%= config.bin %> <%= command.id %> --prompt \"restart died agents, then assess all repos\"",
|
|
5420
|
+
"<%= config.bin %> <%= command.id %> --name supervisor",
|
|
5421
|
+
"<%= config.bin %> <%= command.id %> --background"
|
|
5251
5422
|
],
|
|
5252
5423
|
"flags": {
|
|
5253
|
-
"
|
|
5254
|
-
"char": "
|
|
5255
|
-
"description": "
|
|
5256
|
-
"name": "
|
|
5424
|
+
"prompt": {
|
|
5425
|
+
"char": "p",
|
|
5426
|
+
"description": "Initial instructions for the orchestrator",
|
|
5427
|
+
"name": "prompt",
|
|
5257
5428
|
"hasDynamicHelp": false,
|
|
5258
5429
|
"multiple": false,
|
|
5259
5430
|
"type": "option"
|
|
5260
5431
|
},
|
|
5261
|
-
"
|
|
5262
|
-
"
|
|
5263
|
-
"
|
|
5432
|
+
"name": {
|
|
5433
|
+
"char": "n",
|
|
5434
|
+
"description": "Orchestrator name (default: machine-orchestrator)",
|
|
5435
|
+
"name": "name",
|
|
5436
|
+
"hasDynamicHelp": false,
|
|
5437
|
+
"multiple": false,
|
|
5438
|
+
"type": "option"
|
|
5439
|
+
},
|
|
5440
|
+
"background": {
|
|
5441
|
+
"char": "b",
|
|
5442
|
+
"description": "Start detached (reattach later with prlt session attach)",
|
|
5443
|
+
"exclusive": [
|
|
5444
|
+
"foreground"
|
|
5445
|
+
],
|
|
5446
|
+
"name": "background",
|
|
5264
5447
|
"allowNo": false,
|
|
5265
5448
|
"type": "boolean"
|
|
5266
5449
|
},
|
|
5267
|
-
"
|
|
5268
|
-
"char": "
|
|
5269
|
-
"description": "
|
|
5270
|
-
"
|
|
5450
|
+
"foreground": {
|
|
5451
|
+
"char": "f",
|
|
5452
|
+
"description": "Attach to the session in the current terminal (blocking)",
|
|
5453
|
+
"exclusive": [
|
|
5454
|
+
"background"
|
|
5455
|
+
],
|
|
5456
|
+
"name": "foreground",
|
|
5271
5457
|
"allowNo": false,
|
|
5272
5458
|
"type": "boolean"
|
|
5273
5459
|
},
|
|
5274
|
-
"
|
|
5275
|
-
"
|
|
5276
|
-
"
|
|
5460
|
+
"executor": {
|
|
5461
|
+
"char": "e",
|
|
5462
|
+
"description": "AI executor to use",
|
|
5463
|
+
"name": "executor",
|
|
5464
|
+
"default": "claude-code",
|
|
5277
5465
|
"hasDynamicHelp": false,
|
|
5278
5466
|
"multiple": false,
|
|
5467
|
+
"options": [
|
|
5468
|
+
"claude-code",
|
|
5469
|
+
"codex"
|
|
5470
|
+
],
|
|
5279
5471
|
"type": "option"
|
|
5280
5472
|
},
|
|
5281
|
-
"
|
|
5282
|
-
"description": "
|
|
5283
|
-
"name": "
|
|
5473
|
+
"json": {
|
|
5474
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5475
|
+
"name": "json",
|
|
5476
|
+
"allowNo": false,
|
|
5477
|
+
"type": "boolean"
|
|
5478
|
+
},
|
|
5479
|
+
"machine": {
|
|
5480
|
+
"char": "m",
|
|
5481
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5482
|
+
"name": "machine",
|
|
5284
5483
|
"allowNo": false,
|
|
5285
5484
|
"type": "boolean"
|
|
5286
5485
|
}
|
|
5287
5486
|
},
|
|
5288
5487
|
"hasDynamicHelp": false,
|
|
5289
5488
|
"hiddenAliases": [],
|
|
5290
|
-
"id": "
|
|
5489
|
+
"id": "orchestrate:machine",
|
|
5291
5490
|
"pluginAlias": "@proletariat/cli",
|
|
5292
5491
|
"pluginName": "@proletariat/cli",
|
|
5293
5492
|
"pluginType": "core",
|
|
@@ -5296,8 +5495,8 @@
|
|
|
5296
5495
|
"relativePath": [
|
|
5297
5496
|
"dist",
|
|
5298
5497
|
"commands",
|
|
5299
|
-
"
|
|
5300
|
-
"
|
|
5498
|
+
"orchestrate",
|
|
5499
|
+
"machine.js"
|
|
5301
5500
|
]
|
|
5302
5501
|
},
|
|
5303
5502
|
"notify:connect": {
|
|
@@ -5506,173 +5705,19 @@
|
|
|
5506
5705
|
"sms",
|
|
5507
5706
|
"terminal",
|
|
5508
5707
|
"browser_push"
|
|
5509
|
-
],
|
|
5510
|
-
"type": "option"
|
|
5511
|
-
},
|
|
5512
|
-
"rules": {
|
|
5513
|
-
"description": "Also show notification rules",
|
|
5514
|
-
"name": "rules",
|
|
5515
|
-
"allowNo": false,
|
|
5516
|
-
"type": "boolean"
|
|
5517
|
-
}
|
|
5518
|
-
},
|
|
5519
|
-
"hasDynamicHelp": false,
|
|
5520
|
-
"hiddenAliases": [],
|
|
5521
|
-
"id": "notify:list",
|
|
5522
|
-
"pluginAlias": "@proletariat/cli",
|
|
5523
|
-
"pluginName": "@proletariat/cli",
|
|
5524
|
-
"pluginType": "core",
|
|
5525
|
-
"strict": true,
|
|
5526
|
-
"isESM": true,
|
|
5527
|
-
"relativePath": [
|
|
5528
|
-
"dist",
|
|
5529
|
-
"commands",
|
|
5530
|
-
"notify",
|
|
5531
|
-
"list.js"
|
|
5532
|
-
]
|
|
5533
|
-
},
|
|
5534
|
-
"notify:test": {
|
|
5535
|
-
"aliases": [],
|
|
5536
|
-
"args": {
|
|
5537
|
-
"name": {
|
|
5538
|
-
"description": "Provider name to test",
|
|
5539
|
-
"name": "name",
|
|
5540
|
-
"required": true
|
|
5541
|
-
}
|
|
5542
|
-
},
|
|
5543
|
-
"description": "Send a test notification through a provider",
|
|
5544
|
-
"examples": [
|
|
5545
|
-
"<%= config.bin %> notify test slack",
|
|
5546
|
-
"<%= config.bin %> notify test my-email"
|
|
5547
|
-
],
|
|
5548
|
-
"flags": {
|
|
5549
|
-
"json": {
|
|
5550
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5551
|
-
"name": "json",
|
|
5552
|
-
"allowNo": false,
|
|
5553
|
-
"type": "boolean"
|
|
5554
|
-
},
|
|
5555
|
-
"machine": {
|
|
5556
|
-
"char": "m",
|
|
5557
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5558
|
-
"name": "machine",
|
|
5559
|
-
"allowNo": false,
|
|
5560
|
-
"type": "boolean"
|
|
5561
|
-
}
|
|
5562
|
-
},
|
|
5563
|
-
"hasDynamicHelp": false,
|
|
5564
|
-
"hiddenAliases": [],
|
|
5565
|
-
"id": "notify:test",
|
|
5566
|
-
"pluginAlias": "@proletariat/cli",
|
|
5567
|
-
"pluginName": "@proletariat/cli",
|
|
5568
|
-
"pluginType": "core",
|
|
5569
|
-
"strict": true,
|
|
5570
|
-
"isESM": true,
|
|
5571
|
-
"relativePath": [
|
|
5572
|
-
"dist",
|
|
5573
|
-
"commands",
|
|
5574
|
-
"notify",
|
|
5575
|
-
"test.js"
|
|
5576
|
-
]
|
|
5577
|
-
},
|
|
5578
|
-
"orchestrate": {
|
|
5579
|
-
"aliases": [],
|
|
5580
|
-
"args": {},
|
|
5581
|
-
"description": "Start the autonomous pipeline daemon with event-driven hooks",
|
|
5582
|
-
"examples": [
|
|
5583
|
-
"<%= config.bin %> <%= command.id %>",
|
|
5584
|
-
"<%= config.bin %> <%= command.id %> --preset supervised",
|
|
5585
|
-
"<%= config.bin %> <%= command.id %> --load-yaml",
|
|
5586
|
-
"<%= config.bin %> <%= command.id %> --poll-interval 300",
|
|
5587
|
-
"<%= config.bin %> <%= command.id %> --once on_ci_green --pr 123"
|
|
5588
|
-
],
|
|
5589
|
-
"flags": {
|
|
5590
|
-
"json": {
|
|
5591
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5592
|
-
"name": "json",
|
|
5593
|
-
"allowNo": false,
|
|
5594
|
-
"type": "boolean"
|
|
5595
|
-
},
|
|
5596
|
-
"machine": {
|
|
5597
|
-
"char": "m",
|
|
5598
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5599
|
-
"name": "machine",
|
|
5600
|
-
"allowNo": false,
|
|
5601
|
-
"type": "boolean"
|
|
5602
|
-
},
|
|
5603
|
-
"preset": {
|
|
5604
|
-
"description": "Apply a preset before starting (aggressive, conservative, supervised)",
|
|
5605
|
-
"name": "preset",
|
|
5606
|
-
"hasDynamicHelp": false,
|
|
5607
|
-
"multiple": false,
|
|
5608
|
-
"options": [
|
|
5609
|
-
"aggressive",
|
|
5610
|
-
"conservative",
|
|
5611
|
-
"supervised"
|
|
5612
|
-
],
|
|
5613
|
-
"type": "option"
|
|
5614
|
-
},
|
|
5615
|
-
"load-yaml": {
|
|
5616
|
-
"description": "Load hooks from .proletariat/hooks.yml before starting",
|
|
5617
|
-
"name": "load-yaml",
|
|
5618
|
-
"allowNo": false,
|
|
5619
|
-
"type": "boolean"
|
|
5620
|
-
},
|
|
5621
|
-
"poll-interval": {
|
|
5622
|
-
"description": "Poll interval in seconds for external event sources (0 to disable)",
|
|
5623
|
-
"name": "poll-interval",
|
|
5624
|
-
"default": 0,
|
|
5625
|
-
"hasDynamicHelp": false,
|
|
5626
|
-
"multiple": false,
|
|
5627
|
-
"type": "option"
|
|
5628
|
-
},
|
|
5629
|
-
"once": {
|
|
5630
|
-
"description": "Fire a single event and exit (useful for CI/GitHub Actions)",
|
|
5631
|
-
"name": "once",
|
|
5632
|
-
"hasDynamicHelp": false,
|
|
5633
|
-
"multiple": false,
|
|
5634
|
-
"type": "option"
|
|
5635
|
-
},
|
|
5636
|
-
"ticket": {
|
|
5637
|
-
"char": "t",
|
|
5638
|
-
"description": "Ticket ID (for --once)",
|
|
5639
|
-
"name": "ticket",
|
|
5640
|
-
"hasDynamicHelp": false,
|
|
5641
|
-
"multiple": false,
|
|
5642
|
-
"type": "option"
|
|
5643
|
-
},
|
|
5644
|
-
"pr": {
|
|
5645
|
-
"description": "PR number (for --once)",
|
|
5646
|
-
"name": "pr",
|
|
5647
|
-
"hasDynamicHelp": false,
|
|
5648
|
-
"multiple": false,
|
|
5649
|
-
"type": "option"
|
|
5650
|
-
},
|
|
5651
|
-
"branch": {
|
|
5652
|
-
"description": "Branch name (for --once)",
|
|
5653
|
-
"name": "branch",
|
|
5654
|
-
"hasDynamicHelp": false,
|
|
5655
|
-
"multiple": false,
|
|
5656
|
-
"type": "option"
|
|
5657
|
-
},
|
|
5658
|
-
"agent": {
|
|
5659
|
-
"description": "Agent name (for --once)",
|
|
5660
|
-
"name": "agent",
|
|
5661
|
-
"hasDynamicHelp": false,
|
|
5662
|
-
"multiple": false,
|
|
5708
|
+
],
|
|
5663
5709
|
"type": "option"
|
|
5664
5710
|
},
|
|
5665
|
-
"
|
|
5666
|
-
"
|
|
5667
|
-
"
|
|
5668
|
-
"name": "verbose",
|
|
5711
|
+
"rules": {
|
|
5712
|
+
"description": "Also show notification rules",
|
|
5713
|
+
"name": "rules",
|
|
5669
5714
|
"allowNo": false,
|
|
5670
5715
|
"type": "boolean"
|
|
5671
5716
|
}
|
|
5672
5717
|
},
|
|
5673
5718
|
"hasDynamicHelp": false,
|
|
5674
5719
|
"hiddenAliases": [],
|
|
5675
|
-
"id": "
|
|
5720
|
+
"id": "notify:list",
|
|
5676
5721
|
"pluginAlias": "@proletariat/cli",
|
|
5677
5722
|
"pluginName": "@proletariat/cli",
|
|
5678
5723
|
"pluginType": "core",
|
|
@@ -5681,70 +5726,25 @@
|
|
|
5681
5726
|
"relativePath": [
|
|
5682
5727
|
"dist",
|
|
5683
5728
|
"commands",
|
|
5684
|
-
"
|
|
5685
|
-
"
|
|
5729
|
+
"notify",
|
|
5730
|
+
"list.js"
|
|
5686
5731
|
]
|
|
5687
5732
|
},
|
|
5688
|
-
"
|
|
5733
|
+
"notify:test": {
|
|
5689
5734
|
"aliases": [],
|
|
5690
|
-
"args": {
|
|
5691
|
-
|
|
5735
|
+
"args": {
|
|
5736
|
+
"name": {
|
|
5737
|
+
"description": "Provider name to test",
|
|
5738
|
+
"name": "name",
|
|
5739
|
+
"required": true
|
|
5740
|
+
}
|
|
5741
|
+
},
|
|
5742
|
+
"description": "Send a test notification through a provider",
|
|
5692
5743
|
"examples": [
|
|
5693
|
-
"<%= config.bin %>
|
|
5694
|
-
"<%= config.bin %>
|
|
5695
|
-
"<%= config.bin %> <%= command.id %> --name supervisor",
|
|
5696
|
-
"<%= config.bin %> <%= command.id %> --background"
|
|
5744
|
+
"<%= config.bin %> notify test slack",
|
|
5745
|
+
"<%= config.bin %> notify test my-email"
|
|
5697
5746
|
],
|
|
5698
5747
|
"flags": {
|
|
5699
|
-
"prompt": {
|
|
5700
|
-
"char": "p",
|
|
5701
|
-
"description": "Initial instructions for the orchestrator",
|
|
5702
|
-
"name": "prompt",
|
|
5703
|
-
"hasDynamicHelp": false,
|
|
5704
|
-
"multiple": false,
|
|
5705
|
-
"type": "option"
|
|
5706
|
-
},
|
|
5707
|
-
"name": {
|
|
5708
|
-
"char": "n",
|
|
5709
|
-
"description": "Orchestrator name (default: machine-orchestrator)",
|
|
5710
|
-
"name": "name",
|
|
5711
|
-
"hasDynamicHelp": false,
|
|
5712
|
-
"multiple": false,
|
|
5713
|
-
"type": "option"
|
|
5714
|
-
},
|
|
5715
|
-
"background": {
|
|
5716
|
-
"char": "b",
|
|
5717
|
-
"description": "Start detached (reattach later with prlt session attach)",
|
|
5718
|
-
"exclusive": [
|
|
5719
|
-
"foreground"
|
|
5720
|
-
],
|
|
5721
|
-
"name": "background",
|
|
5722
|
-
"allowNo": false,
|
|
5723
|
-
"type": "boolean"
|
|
5724
|
-
},
|
|
5725
|
-
"foreground": {
|
|
5726
|
-
"char": "f",
|
|
5727
|
-
"description": "Attach to the session in the current terminal (blocking)",
|
|
5728
|
-
"exclusive": [
|
|
5729
|
-
"background"
|
|
5730
|
-
],
|
|
5731
|
-
"name": "foreground",
|
|
5732
|
-
"allowNo": false,
|
|
5733
|
-
"type": "boolean"
|
|
5734
|
-
},
|
|
5735
|
-
"executor": {
|
|
5736
|
-
"char": "e",
|
|
5737
|
-
"description": "AI executor to use",
|
|
5738
|
-
"name": "executor",
|
|
5739
|
-
"default": "claude-code",
|
|
5740
|
-
"hasDynamicHelp": false,
|
|
5741
|
-
"multiple": false,
|
|
5742
|
-
"options": [
|
|
5743
|
-
"claude-code",
|
|
5744
|
-
"codex"
|
|
5745
|
-
],
|
|
5746
|
-
"type": "option"
|
|
5747
|
-
},
|
|
5748
5748
|
"json": {
|
|
5749
5749
|
"description": "Output as JSON for AI agents/scripts",
|
|
5750
5750
|
"name": "json",
|
|
@@ -5761,7 +5761,7 @@
|
|
|
5761
5761
|
},
|
|
5762
5762
|
"hasDynamicHelp": false,
|
|
5763
5763
|
"hiddenAliases": [],
|
|
5764
|
-
"id": "
|
|
5764
|
+
"id": "notify:test",
|
|
5765
5765
|
"pluginAlias": "@proletariat/cli",
|
|
5766
5766
|
"pluginName": "@proletariat/cli",
|
|
5767
5767
|
"pluginType": "core",
|
|
@@ -5770,8 +5770,8 @@
|
|
|
5770
5770
|
"relativePath": [
|
|
5771
5771
|
"dist",
|
|
5772
5772
|
"commands",
|
|
5773
|
-
"
|
|
5774
|
-
"
|
|
5773
|
+
"notify",
|
|
5774
|
+
"test.js"
|
|
5775
5775
|
]
|
|
5776
5776
|
},
|
|
5777
5777
|
"orchestrator:attach": {
|
|
@@ -5799,12 +5799,31 @@
|
|
|
5799
5799
|
},
|
|
5800
5800
|
"name": {
|
|
5801
5801
|
"char": "n",
|
|
5802
|
-
"description": "Name of the orchestrator
|
|
5802
|
+
"description": "Name of the orchestrator to attach to (matches agentName)",
|
|
5803
5803
|
"name": "name",
|
|
5804
5804
|
"hasDynamicHelp": false,
|
|
5805
5805
|
"multiple": false,
|
|
5806
5806
|
"type": "option"
|
|
5807
5807
|
},
|
|
5808
|
+
"here": {
|
|
5809
|
+
"description": "Filter to orchestrators in the current HQ only",
|
|
5810
|
+
"exclusive": [
|
|
5811
|
+
"hq"
|
|
5812
|
+
],
|
|
5813
|
+
"name": "here",
|
|
5814
|
+
"allowNo": false,
|
|
5815
|
+
"type": "boolean"
|
|
5816
|
+
},
|
|
5817
|
+
"hq": {
|
|
5818
|
+
"description": "Filter to orchestrators in a specific HQ path",
|
|
5819
|
+
"exclusive": [
|
|
5820
|
+
"here"
|
|
5821
|
+
],
|
|
5822
|
+
"name": "hq",
|
|
5823
|
+
"hasDynamicHelp": false,
|
|
5824
|
+
"multiple": false,
|
|
5825
|
+
"type": "option"
|
|
5826
|
+
},
|
|
5808
5827
|
"new-tab": {
|
|
5809
5828
|
"description": "Open in a new terminal tab instead of attaching in the current terminal",
|
|
5810
5829
|
"name": "new-tab",
|
|
@@ -6026,9 +6045,11 @@
|
|
|
6026
6045
|
"orchestrator:status": {
|
|
6027
6046
|
"aliases": [],
|
|
6028
6047
|
"args": {},
|
|
6029
|
-
"description": "Check
|
|
6048
|
+
"description": "Check orchestrator sessions across the entire machine, grouped by HQ.",
|
|
6030
6049
|
"examples": [
|
|
6031
6050
|
"<%= config.bin %> <%= command.id %>",
|
|
6051
|
+
"<%= config.bin %> <%= command.id %> --here",
|
|
6052
|
+
"<%= config.bin %> <%= command.id %> --hq ~/Projects/backend-hq",
|
|
6032
6053
|
"<%= config.bin %> <%= command.id %> --peek",
|
|
6033
6054
|
"<%= config.bin %> <%= command.id %> --peek --lines 50"
|
|
6034
6055
|
],
|
|
@@ -6048,14 +6069,33 @@
|
|
|
6048
6069
|
},
|
|
6049
6070
|
"name": {
|
|
6050
6071
|
"char": "n",
|
|
6051
|
-
"description": "
|
|
6072
|
+
"description": "Filter to a single orchestrator by name (matches agentName)",
|
|
6052
6073
|
"name": "name",
|
|
6053
6074
|
"hasDynamicHelp": false,
|
|
6054
6075
|
"multiple": false,
|
|
6055
6076
|
"type": "option"
|
|
6056
6077
|
},
|
|
6078
|
+
"here": {
|
|
6079
|
+
"description": "Filter to orchestrators in the current HQ only",
|
|
6080
|
+
"exclusive": [
|
|
6081
|
+
"hq"
|
|
6082
|
+
],
|
|
6083
|
+
"name": "here",
|
|
6084
|
+
"allowNo": false,
|
|
6085
|
+
"type": "boolean"
|
|
6086
|
+
},
|
|
6087
|
+
"hq": {
|
|
6088
|
+
"description": "Filter to orchestrators in a specific HQ path",
|
|
6089
|
+
"exclusive": [
|
|
6090
|
+
"here"
|
|
6091
|
+
],
|
|
6092
|
+
"name": "hq",
|
|
6093
|
+
"hasDynamicHelp": false,
|
|
6094
|
+
"multiple": false,
|
|
6095
|
+
"type": "option"
|
|
6096
|
+
},
|
|
6057
6097
|
"peek": {
|
|
6058
|
-
"description": "Show recent output from
|
|
6098
|
+
"description": "Show recent output from each orchestrator",
|
|
6059
6099
|
"name": "peek",
|
|
6060
6100
|
"allowNo": false,
|
|
6061
6101
|
"type": "boolean"
|
|
@@ -6108,12 +6148,31 @@
|
|
|
6108
6148
|
},
|
|
6109
6149
|
"name": {
|
|
6110
6150
|
"char": "n",
|
|
6111
|
-
"description": "Name of the orchestrator
|
|
6151
|
+
"description": "Name of the orchestrator to stop (matches agentName)",
|
|
6112
6152
|
"name": "name",
|
|
6113
6153
|
"hasDynamicHelp": false,
|
|
6114
6154
|
"multiple": false,
|
|
6115
6155
|
"type": "option"
|
|
6116
6156
|
},
|
|
6157
|
+
"here": {
|
|
6158
|
+
"description": "Filter to orchestrators in the current HQ only",
|
|
6159
|
+
"exclusive": [
|
|
6160
|
+
"hq"
|
|
6161
|
+
],
|
|
6162
|
+
"name": "here",
|
|
6163
|
+
"allowNo": false,
|
|
6164
|
+
"type": "boolean"
|
|
6165
|
+
},
|
|
6166
|
+
"hq": {
|
|
6167
|
+
"description": "Filter to orchestrators in a specific HQ path",
|
|
6168
|
+
"exclusive": [
|
|
6169
|
+
"here"
|
|
6170
|
+
],
|
|
6171
|
+
"name": "hq",
|
|
6172
|
+
"hasDynamicHelp": false,
|
|
6173
|
+
"multiple": false,
|
|
6174
|
+
"type": "option"
|
|
6175
|
+
},
|
|
6117
6176
|
"force": {
|
|
6118
6177
|
"char": "f",
|
|
6119
6178
|
"description": "Skip confirmation",
|
|
@@ -6137,65 +6196,6 @@
|
|
|
6137
6196
|
"stop.js"
|
|
6138
6197
|
]
|
|
6139
6198
|
},
|
|
6140
|
-
"project:configure": {
|
|
6141
|
-
"aliases": [],
|
|
6142
|
-
"args": {},
|
|
6143
|
-
"description": "Configure workflow column mapping for a project",
|
|
6144
|
-
"examples": [
|
|
6145
|
-
"<%= config.bin %> <%= command.id %> --workflow",
|
|
6146
|
-
"<%= config.bin %> <%= command.id %> --workflow --show"
|
|
6147
|
-
],
|
|
6148
|
-
"flags": {
|
|
6149
|
-
"project": {
|
|
6150
|
-
"char": "P",
|
|
6151
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
6152
|
-
"name": "project",
|
|
6153
|
-
"hasDynamicHelp": false,
|
|
6154
|
-
"multiple": false,
|
|
6155
|
-
"type": "option"
|
|
6156
|
-
},
|
|
6157
|
-
"json": {
|
|
6158
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6159
|
-
"name": "json",
|
|
6160
|
-
"allowNo": false,
|
|
6161
|
-
"type": "boolean"
|
|
6162
|
-
},
|
|
6163
|
-
"machine": {
|
|
6164
|
-
"char": "m",
|
|
6165
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6166
|
-
"name": "machine",
|
|
6167
|
-
"allowNo": false,
|
|
6168
|
-
"type": "boolean"
|
|
6169
|
-
},
|
|
6170
|
-
"workflow": {
|
|
6171
|
-
"char": "w",
|
|
6172
|
-
"description": "Configure workflow column mapping",
|
|
6173
|
-
"name": "workflow",
|
|
6174
|
-
"allowNo": false,
|
|
6175
|
-
"type": "boolean"
|
|
6176
|
-
},
|
|
6177
|
-
"show": {
|
|
6178
|
-
"description": "Show current workflow mapping without prompting",
|
|
6179
|
-
"name": "show",
|
|
6180
|
-
"allowNo": false,
|
|
6181
|
-
"type": "boolean"
|
|
6182
|
-
}
|
|
6183
|
-
},
|
|
6184
|
-
"hasDynamicHelp": false,
|
|
6185
|
-
"hiddenAliases": [],
|
|
6186
|
-
"id": "project:configure",
|
|
6187
|
-
"pluginAlias": "@proletariat/cli",
|
|
6188
|
-
"pluginName": "@proletariat/cli",
|
|
6189
|
-
"pluginType": "core",
|
|
6190
|
-
"strict": true,
|
|
6191
|
-
"isESM": true,
|
|
6192
|
-
"relativePath": [
|
|
6193
|
-
"dist",
|
|
6194
|
-
"commands",
|
|
6195
|
-
"project",
|
|
6196
|
-
"configure.js"
|
|
6197
|
-
]
|
|
6198
|
-
},
|
|
6199
6199
|
"pr:checks": {
|
|
6200
6200
|
"aliases": [],
|
|
6201
6201
|
"args": {
|
|
@@ -6768,6 +6768,65 @@
|
|
|
6768
6768
|
"status.js"
|
|
6769
6769
|
]
|
|
6770
6770
|
},
|
|
6771
|
+
"project:configure": {
|
|
6772
|
+
"aliases": [],
|
|
6773
|
+
"args": {},
|
|
6774
|
+
"description": "Configure workflow column mapping for a project",
|
|
6775
|
+
"examples": [
|
|
6776
|
+
"<%= config.bin %> <%= command.id %> --workflow",
|
|
6777
|
+
"<%= config.bin %> <%= command.id %> --workflow --show"
|
|
6778
|
+
],
|
|
6779
|
+
"flags": {
|
|
6780
|
+
"project": {
|
|
6781
|
+
"char": "P",
|
|
6782
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
6783
|
+
"name": "project",
|
|
6784
|
+
"hasDynamicHelp": false,
|
|
6785
|
+
"multiple": false,
|
|
6786
|
+
"type": "option"
|
|
6787
|
+
},
|
|
6788
|
+
"json": {
|
|
6789
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6790
|
+
"name": "json",
|
|
6791
|
+
"allowNo": false,
|
|
6792
|
+
"type": "boolean"
|
|
6793
|
+
},
|
|
6794
|
+
"machine": {
|
|
6795
|
+
"char": "m",
|
|
6796
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
6797
|
+
"name": "machine",
|
|
6798
|
+
"allowNo": false,
|
|
6799
|
+
"type": "boolean"
|
|
6800
|
+
},
|
|
6801
|
+
"workflow": {
|
|
6802
|
+
"char": "w",
|
|
6803
|
+
"description": "Configure workflow column mapping",
|
|
6804
|
+
"name": "workflow",
|
|
6805
|
+
"allowNo": false,
|
|
6806
|
+
"type": "boolean"
|
|
6807
|
+
},
|
|
6808
|
+
"show": {
|
|
6809
|
+
"description": "Show current workflow mapping without prompting",
|
|
6810
|
+
"name": "show",
|
|
6811
|
+
"allowNo": false,
|
|
6812
|
+
"type": "boolean"
|
|
6813
|
+
}
|
|
6814
|
+
},
|
|
6815
|
+
"hasDynamicHelp": false,
|
|
6816
|
+
"hiddenAliases": [],
|
|
6817
|
+
"id": "project:configure",
|
|
6818
|
+
"pluginAlias": "@proletariat/cli",
|
|
6819
|
+
"pluginName": "@proletariat/cli",
|
|
6820
|
+
"pluginType": "core",
|
|
6821
|
+
"strict": true,
|
|
6822
|
+
"isESM": true,
|
|
6823
|
+
"relativePath": [
|
|
6824
|
+
"dist",
|
|
6825
|
+
"commands",
|
|
6826
|
+
"project",
|
|
6827
|
+
"configure.js"
|
|
6828
|
+
]
|
|
6829
|
+
},
|
|
6771
6830
|
"qa": {
|
|
6772
6831
|
"aliases": [
|
|
6773
6832
|
"explore"
|
|
@@ -7493,6 +7552,25 @@
|
|
|
7493
7552
|
"hasDynamicHelp": false,
|
|
7494
7553
|
"multiple": false,
|
|
7495
7554
|
"type": "option"
|
|
7555
|
+
},
|
|
7556
|
+
"here": {
|
|
7557
|
+
"description": "Filter picker to sessions in the current HQ only",
|
|
7558
|
+
"exclusive": [
|
|
7559
|
+
"hq"
|
|
7560
|
+
],
|
|
7561
|
+
"name": "here",
|
|
7562
|
+
"allowNo": false,
|
|
7563
|
+
"type": "boolean"
|
|
7564
|
+
},
|
|
7565
|
+
"hq": {
|
|
7566
|
+
"description": "Filter picker to sessions in a specific HQ path",
|
|
7567
|
+
"exclusive": [
|
|
7568
|
+
"here"
|
|
7569
|
+
],
|
|
7570
|
+
"name": "hq",
|
|
7571
|
+
"hasDynamicHelp": false,
|
|
7572
|
+
"multiple": false,
|
|
7573
|
+
"type": "option"
|
|
7496
7574
|
}
|
|
7497
7575
|
},
|
|
7498
7576
|
"hasDynamicHelp": false,
|
|
@@ -7869,11 +7947,13 @@
|
|
|
7869
7947
|
"session:list": {
|
|
7870
7948
|
"aliases": [],
|
|
7871
7949
|
"args": {},
|
|
7872
|
-
"description": "List active agent sessions
|
|
7950
|
+
"description": "List active agent sessions across the entire machine, grouped by current HQ vs other locations.",
|
|
7873
7951
|
"examples": [
|
|
7874
7952
|
"<%= config.bin %> <%= command.id %>",
|
|
7875
|
-
"<%= config.bin %> <%= command.id %> --
|
|
7876
|
-
"<%= config.bin %> <%= command.id %> --
|
|
7953
|
+
"<%= config.bin %> <%= command.id %> --here",
|
|
7954
|
+
"<%= config.bin %> <%= command.id %> --hq ~/Projects/backend-hq",
|
|
7955
|
+
"<%= config.bin %> <%= command.id %> --role orchestrator",
|
|
7956
|
+
"<%= config.bin %> <%= command.id %> --all"
|
|
7877
7957
|
],
|
|
7878
7958
|
"flags": {
|
|
7879
7959
|
"json": {
|
|
@@ -7889,16 +7969,47 @@
|
|
|
7889
7969
|
"allowNo": false,
|
|
7890
7970
|
"type": "boolean"
|
|
7891
7971
|
},
|
|
7972
|
+
"here": {
|
|
7973
|
+
"description": "Filter to sessions in the current HQ only",
|
|
7974
|
+
"exclusive": [
|
|
7975
|
+
"hq"
|
|
7976
|
+
],
|
|
7977
|
+
"name": "here",
|
|
7978
|
+
"allowNo": false,
|
|
7979
|
+
"type": "boolean"
|
|
7980
|
+
},
|
|
7981
|
+
"hq": {
|
|
7982
|
+
"description": "Filter to sessions in a specific HQ path",
|
|
7983
|
+
"exclusive": [
|
|
7984
|
+
"here"
|
|
7985
|
+
],
|
|
7986
|
+
"name": "hq",
|
|
7987
|
+
"hasDynamicHelp": false,
|
|
7988
|
+
"multiple": false,
|
|
7989
|
+
"type": "option"
|
|
7990
|
+
},
|
|
7991
|
+
"role": {
|
|
7992
|
+
"description": "Filter by session role",
|
|
7993
|
+
"name": "role",
|
|
7994
|
+
"hasDynamicHelp": false,
|
|
7995
|
+
"multiple": false,
|
|
7996
|
+
"options": [
|
|
7997
|
+
"orchestrator",
|
|
7998
|
+
"worker",
|
|
7999
|
+
"headless"
|
|
8000
|
+
],
|
|
8001
|
+
"type": "option"
|
|
8002
|
+
},
|
|
7892
8003
|
"all": {
|
|
7893
8004
|
"char": "a",
|
|
7894
|
-
"description": "
|
|
8005
|
+
"description": "Include stopped/completed sessions (default excludes them)",
|
|
7895
8006
|
"name": "all",
|
|
7896
8007
|
"allowNo": false,
|
|
7897
8008
|
"type": "boolean"
|
|
7898
8009
|
},
|
|
7899
|
-
"
|
|
7900
|
-
"description": "
|
|
7901
|
-
"name": "
|
|
8010
|
+
"grouped": {
|
|
8011
|
+
"description": "In --json mode, emit the grouped { sessions, grouped } object instead of the flat array",
|
|
8012
|
+
"name": "grouped",
|
|
7902
8013
|
"allowNo": false,
|
|
7903
8014
|
"type": "boolean"
|
|
7904
8015
|
}
|
|
@@ -9068,257 +9179,25 @@
|
|
|
9068
9179
|
"args": {
|
|
9069
9180
|
"title": {
|
|
9070
9181
|
"description": "Title to set for the terminal tab/window",
|
|
9071
|
-
"name": "title",
|
|
9072
|
-
"required": false
|
|
9073
|
-
}
|
|
9074
|
-
},
|
|
9075
|
-
"description": "Set the terminal tab/window title",
|
|
9076
|
-
"examples": [
|
|
9077
|
-
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
9078
|
-
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
9079
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
9080
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9081
|
-
],
|
|
9082
|
-
"flags": {
|
|
9083
|
-
"reset": {
|
|
9084
|
-
"char": "r",
|
|
9085
|
-
"description": "Reset terminal title to default",
|
|
9086
|
-
"name": "reset",
|
|
9087
|
-
"allowNo": false,
|
|
9088
|
-
"type": "boolean"
|
|
9089
|
-
},
|
|
9090
|
-
"json": {
|
|
9091
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9092
|
-
"name": "json",
|
|
9093
|
-
"allowNo": false,
|
|
9094
|
-
"type": "boolean"
|
|
9095
|
-
},
|
|
9096
|
-
"machine": {
|
|
9097
|
-
"char": "m",
|
|
9098
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9099
|
-
"name": "machine",
|
|
9100
|
-
"allowNo": false,
|
|
9101
|
-
"type": "boolean"
|
|
9102
|
-
}
|
|
9103
|
-
},
|
|
9104
|
-
"hasDynamicHelp": false,
|
|
9105
|
-
"hiddenAliases": [],
|
|
9106
|
-
"id": "terminal:title",
|
|
9107
|
-
"pluginAlias": "@proletariat/cli",
|
|
9108
|
-
"pluginName": "@proletariat/cli",
|
|
9109
|
-
"pluginType": "core",
|
|
9110
|
-
"strict": true,
|
|
9111
|
-
"isESM": true,
|
|
9112
|
-
"relativePath": [
|
|
9113
|
-
"dist",
|
|
9114
|
-
"commands",
|
|
9115
|
-
"terminal",
|
|
9116
|
-
"title.js"
|
|
9117
|
-
]
|
|
9118
|
-
},
|
|
9119
|
-
"theme:add-names": {
|
|
9120
|
-
"aliases": [],
|
|
9121
|
-
"args": {
|
|
9122
|
-
"theme": {
|
|
9123
|
-
"description": "Theme ID",
|
|
9124
|
-
"name": "theme",
|
|
9125
|
-
"required": true
|
|
9126
|
-
},
|
|
9127
|
-
"names": {
|
|
9128
|
-
"description": "Names to add to the theme (space-separated)",
|
|
9129
|
-
"name": "names",
|
|
9130
|
-
"required": false
|
|
9131
|
-
}
|
|
9132
|
-
},
|
|
9133
|
-
"description": "Add names to a theme",
|
|
9134
|
-
"examples": [
|
|
9135
|
-
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
9136
|
-
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
9137
|
-
],
|
|
9138
|
-
"flags": {
|
|
9139
|
-
"json": {
|
|
9140
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9141
|
-
"name": "json",
|
|
9142
|
-
"allowNo": false,
|
|
9143
|
-
"type": "boolean"
|
|
9144
|
-
},
|
|
9145
|
-
"machine": {
|
|
9146
|
-
"char": "m",
|
|
9147
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9148
|
-
"name": "machine",
|
|
9149
|
-
"allowNo": false,
|
|
9150
|
-
"type": "boolean"
|
|
9151
|
-
}
|
|
9152
|
-
},
|
|
9153
|
-
"hasDynamicHelp": false,
|
|
9154
|
-
"hiddenAliases": [],
|
|
9155
|
-
"id": "theme:add-names",
|
|
9156
|
-
"pluginAlias": "@proletariat/cli",
|
|
9157
|
-
"pluginName": "@proletariat/cli",
|
|
9158
|
-
"pluginType": "core",
|
|
9159
|
-
"strict": false,
|
|
9160
|
-
"enableJsonFlag": false,
|
|
9161
|
-
"isESM": true,
|
|
9162
|
-
"relativePath": [
|
|
9163
|
-
"dist",
|
|
9164
|
-
"commands",
|
|
9165
|
-
"theme",
|
|
9166
|
-
"add-names.js"
|
|
9167
|
-
]
|
|
9168
|
-
},
|
|
9169
|
-
"theme:create": {
|
|
9170
|
-
"aliases": [],
|
|
9171
|
-
"args": {
|
|
9172
|
-
"name": {
|
|
9173
|
-
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
9174
|
-
"name": "name",
|
|
9175
|
-
"required": true
|
|
9176
|
-
}
|
|
9177
|
-
},
|
|
9178
|
-
"description": "Create a custom agent theme",
|
|
9179
|
-
"examples": [
|
|
9180
|
-
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
9181
|
-
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
9182
|
-
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
9183
|
-
],
|
|
9184
|
-
"flags": {
|
|
9185
|
-
"json": {
|
|
9186
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9187
|
-
"name": "json",
|
|
9188
|
-
"allowNo": false,
|
|
9189
|
-
"type": "boolean"
|
|
9190
|
-
},
|
|
9191
|
-
"machine": {
|
|
9192
|
-
"char": "m",
|
|
9193
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9194
|
-
"name": "machine",
|
|
9195
|
-
"allowNo": false,
|
|
9196
|
-
"type": "boolean"
|
|
9197
|
-
},
|
|
9198
|
-
"description": {
|
|
9199
|
-
"char": "d",
|
|
9200
|
-
"description": "Theme description",
|
|
9201
|
-
"name": "description",
|
|
9202
|
-
"hasDynamicHelp": false,
|
|
9203
|
-
"multiple": false,
|
|
9204
|
-
"type": "option"
|
|
9205
|
-
},
|
|
9206
|
-
"display-name": {
|
|
9207
|
-
"description": "Display name (defaults to formatted name)",
|
|
9208
|
-
"name": "display-name",
|
|
9209
|
-
"hasDynamicHelp": false,
|
|
9210
|
-
"multiple": false,
|
|
9211
|
-
"type": "option"
|
|
9212
|
-
}
|
|
9213
|
-
},
|
|
9214
|
-
"hasDynamicHelp": false,
|
|
9215
|
-
"hiddenAliases": [],
|
|
9216
|
-
"id": "theme:create",
|
|
9217
|
-
"pluginAlias": "@proletariat/cli",
|
|
9218
|
-
"pluginName": "@proletariat/cli",
|
|
9219
|
-
"pluginType": "core",
|
|
9220
|
-
"strict": true,
|
|
9221
|
-
"enableJsonFlag": false,
|
|
9222
|
-
"isESM": true,
|
|
9223
|
-
"relativePath": [
|
|
9224
|
-
"dist",
|
|
9225
|
-
"commands",
|
|
9226
|
-
"theme",
|
|
9227
|
-
"create.js"
|
|
9228
|
-
]
|
|
9229
|
-
},
|
|
9230
|
-
"theme": {
|
|
9231
|
-
"aliases": [],
|
|
9232
|
-
"args": {},
|
|
9233
|
-
"description": "Manage agent naming themes",
|
|
9234
|
-
"examples": [
|
|
9235
|
-
"<%= config.bin %> <%= command.id %> list",
|
|
9236
|
-
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
9237
|
-
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
9238
|
-
],
|
|
9239
|
-
"flags": {
|
|
9240
|
-
"json": {
|
|
9241
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9242
|
-
"name": "json",
|
|
9243
|
-
"allowNo": false,
|
|
9244
|
-
"type": "boolean"
|
|
9245
|
-
},
|
|
9246
|
-
"machine": {
|
|
9247
|
-
"char": "m",
|
|
9248
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9249
|
-
"name": "machine",
|
|
9250
|
-
"allowNo": false,
|
|
9251
|
-
"type": "boolean"
|
|
9252
|
-
}
|
|
9253
|
-
},
|
|
9254
|
-
"hasDynamicHelp": false,
|
|
9255
|
-
"hiddenAliases": [],
|
|
9256
|
-
"id": "theme",
|
|
9257
|
-
"pluginAlias": "@proletariat/cli",
|
|
9258
|
-
"pluginName": "@proletariat/cli",
|
|
9259
|
-
"pluginType": "core",
|
|
9260
|
-
"strict": true,
|
|
9261
|
-
"isESM": true,
|
|
9262
|
-
"relativePath": [
|
|
9263
|
-
"dist",
|
|
9264
|
-
"commands",
|
|
9265
|
-
"theme",
|
|
9266
|
-
"index.js"
|
|
9267
|
-
]
|
|
9268
|
-
},
|
|
9269
|
-
"theme:list": {
|
|
9270
|
-
"aliases": [],
|
|
9271
|
-
"args": {},
|
|
9272
|
-
"description": "List available agent themes",
|
|
9273
|
-
"examples": [
|
|
9274
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9275
|
-
],
|
|
9276
|
-
"flags": {
|
|
9277
|
-
"json": {
|
|
9278
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9279
|
-
"name": "json",
|
|
9280
|
-
"allowNo": false,
|
|
9281
|
-
"type": "boolean"
|
|
9282
|
-
},
|
|
9283
|
-
"machine": {
|
|
9284
|
-
"char": "m",
|
|
9285
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9286
|
-
"name": "machine",
|
|
9287
|
-
"allowNo": false,
|
|
9288
|
-
"type": "boolean"
|
|
9289
|
-
}
|
|
9290
|
-
},
|
|
9291
|
-
"hasDynamicHelp": false,
|
|
9292
|
-
"hiddenAliases": [],
|
|
9293
|
-
"id": "theme:list",
|
|
9294
|
-
"pluginAlias": "@proletariat/cli",
|
|
9295
|
-
"pluginName": "@proletariat/cli",
|
|
9296
|
-
"pluginType": "core",
|
|
9297
|
-
"strict": true,
|
|
9298
|
-
"enableJsonFlag": false,
|
|
9299
|
-
"isESM": true,
|
|
9300
|
-
"relativePath": [
|
|
9301
|
-
"dist",
|
|
9302
|
-
"commands",
|
|
9303
|
-
"theme",
|
|
9304
|
-
"list.js"
|
|
9305
|
-
]
|
|
9306
|
-
},
|
|
9307
|
-
"theme:set": {
|
|
9308
|
-
"aliases": [],
|
|
9309
|
-
"args": {
|
|
9310
|
-
"theme": {
|
|
9311
|
-
"description": "Theme ID to set as active",
|
|
9312
|
-
"name": "theme",
|
|
9182
|
+
"name": "title",
|
|
9313
9183
|
"required": false
|
|
9314
9184
|
}
|
|
9315
9185
|
},
|
|
9316
|
-
"description": "Set the
|
|
9186
|
+
"description": "Set the terminal tab/window title",
|
|
9317
9187
|
"examples": [
|
|
9318
|
-
"<%= config.bin %> <%= command.id %>
|
|
9319
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9188
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
9189
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
9190
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
9191
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
9320
9192
|
],
|
|
9321
9193
|
"flags": {
|
|
9194
|
+
"reset": {
|
|
9195
|
+
"char": "r",
|
|
9196
|
+
"description": "Reset terminal title to default",
|
|
9197
|
+
"name": "reset",
|
|
9198
|
+
"allowNo": false,
|
|
9199
|
+
"type": "boolean"
|
|
9200
|
+
},
|
|
9322
9201
|
"json": {
|
|
9323
9202
|
"description": "Output as JSON for AI agents/scripts",
|
|
9324
9203
|
"name": "json",
|
|
@@ -9335,7 +9214,7 @@
|
|
|
9335
9214
|
},
|
|
9336
9215
|
"hasDynamicHelp": false,
|
|
9337
9216
|
"hiddenAliases": [],
|
|
9338
|
-
"id": "
|
|
9217
|
+
"id": "terminal:title",
|
|
9339
9218
|
"pluginAlias": "@proletariat/cli",
|
|
9340
9219
|
"pluginName": "@proletariat/cli",
|
|
9341
9220
|
"pluginType": "core",
|
|
@@ -9344,9 +9223,8 @@
|
|
|
9344
9223
|
"relativePath": [
|
|
9345
9224
|
"dist",
|
|
9346
9225
|
"commands",
|
|
9347
|
-
"
|
|
9348
|
-
"
|
|
9349
|
-
"set.js"
|
|
9226
|
+
"terminal",
|
|
9227
|
+
"title.js"
|
|
9350
9228
|
]
|
|
9351
9229
|
},
|
|
9352
9230
|
"ticket:create": {
|
|
@@ -10223,6 +10101,239 @@
|
|
|
10223
10101
|
"update.js"
|
|
10224
10102
|
]
|
|
10225
10103
|
},
|
|
10104
|
+
"theme:add-names": {
|
|
10105
|
+
"aliases": [],
|
|
10106
|
+
"args": {
|
|
10107
|
+
"theme": {
|
|
10108
|
+
"description": "Theme ID",
|
|
10109
|
+
"name": "theme",
|
|
10110
|
+
"required": true
|
|
10111
|
+
},
|
|
10112
|
+
"names": {
|
|
10113
|
+
"description": "Names to add to the theme (space-separated)",
|
|
10114
|
+
"name": "names",
|
|
10115
|
+
"required": false
|
|
10116
|
+
}
|
|
10117
|
+
},
|
|
10118
|
+
"description": "Add names to a theme",
|
|
10119
|
+
"examples": [
|
|
10120
|
+
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
10121
|
+
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
10122
|
+
],
|
|
10123
|
+
"flags": {
|
|
10124
|
+
"json": {
|
|
10125
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10126
|
+
"name": "json",
|
|
10127
|
+
"allowNo": false,
|
|
10128
|
+
"type": "boolean"
|
|
10129
|
+
},
|
|
10130
|
+
"machine": {
|
|
10131
|
+
"char": "m",
|
|
10132
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10133
|
+
"name": "machine",
|
|
10134
|
+
"allowNo": false,
|
|
10135
|
+
"type": "boolean"
|
|
10136
|
+
}
|
|
10137
|
+
},
|
|
10138
|
+
"hasDynamicHelp": false,
|
|
10139
|
+
"hiddenAliases": [],
|
|
10140
|
+
"id": "theme:add-names",
|
|
10141
|
+
"pluginAlias": "@proletariat/cli",
|
|
10142
|
+
"pluginName": "@proletariat/cli",
|
|
10143
|
+
"pluginType": "core",
|
|
10144
|
+
"strict": false,
|
|
10145
|
+
"enableJsonFlag": false,
|
|
10146
|
+
"isESM": true,
|
|
10147
|
+
"relativePath": [
|
|
10148
|
+
"dist",
|
|
10149
|
+
"commands",
|
|
10150
|
+
"theme",
|
|
10151
|
+
"add-names.js"
|
|
10152
|
+
]
|
|
10153
|
+
},
|
|
10154
|
+
"theme:create": {
|
|
10155
|
+
"aliases": [],
|
|
10156
|
+
"args": {
|
|
10157
|
+
"name": {
|
|
10158
|
+
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
10159
|
+
"name": "name",
|
|
10160
|
+
"required": true
|
|
10161
|
+
}
|
|
10162
|
+
},
|
|
10163
|
+
"description": "Create a custom agent theme",
|
|
10164
|
+
"examples": [
|
|
10165
|
+
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
10166
|
+
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
10167
|
+
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
10168
|
+
],
|
|
10169
|
+
"flags": {
|
|
10170
|
+
"json": {
|
|
10171
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10172
|
+
"name": "json",
|
|
10173
|
+
"allowNo": false,
|
|
10174
|
+
"type": "boolean"
|
|
10175
|
+
},
|
|
10176
|
+
"machine": {
|
|
10177
|
+
"char": "m",
|
|
10178
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10179
|
+
"name": "machine",
|
|
10180
|
+
"allowNo": false,
|
|
10181
|
+
"type": "boolean"
|
|
10182
|
+
},
|
|
10183
|
+
"description": {
|
|
10184
|
+
"char": "d",
|
|
10185
|
+
"description": "Theme description",
|
|
10186
|
+
"name": "description",
|
|
10187
|
+
"hasDynamicHelp": false,
|
|
10188
|
+
"multiple": false,
|
|
10189
|
+
"type": "option"
|
|
10190
|
+
},
|
|
10191
|
+
"display-name": {
|
|
10192
|
+
"description": "Display name (defaults to formatted name)",
|
|
10193
|
+
"name": "display-name",
|
|
10194
|
+
"hasDynamicHelp": false,
|
|
10195
|
+
"multiple": false,
|
|
10196
|
+
"type": "option"
|
|
10197
|
+
}
|
|
10198
|
+
},
|
|
10199
|
+
"hasDynamicHelp": false,
|
|
10200
|
+
"hiddenAliases": [],
|
|
10201
|
+
"id": "theme:create",
|
|
10202
|
+
"pluginAlias": "@proletariat/cli",
|
|
10203
|
+
"pluginName": "@proletariat/cli",
|
|
10204
|
+
"pluginType": "core",
|
|
10205
|
+
"strict": true,
|
|
10206
|
+
"enableJsonFlag": false,
|
|
10207
|
+
"isESM": true,
|
|
10208
|
+
"relativePath": [
|
|
10209
|
+
"dist",
|
|
10210
|
+
"commands",
|
|
10211
|
+
"theme",
|
|
10212
|
+
"create.js"
|
|
10213
|
+
]
|
|
10214
|
+
},
|
|
10215
|
+
"theme": {
|
|
10216
|
+
"aliases": [],
|
|
10217
|
+
"args": {},
|
|
10218
|
+
"description": "Manage agent naming themes",
|
|
10219
|
+
"examples": [
|
|
10220
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
10221
|
+
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
10222
|
+
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
10223
|
+
],
|
|
10224
|
+
"flags": {
|
|
10225
|
+
"json": {
|
|
10226
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10227
|
+
"name": "json",
|
|
10228
|
+
"allowNo": false,
|
|
10229
|
+
"type": "boolean"
|
|
10230
|
+
},
|
|
10231
|
+
"machine": {
|
|
10232
|
+
"char": "m",
|
|
10233
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10234
|
+
"name": "machine",
|
|
10235
|
+
"allowNo": false,
|
|
10236
|
+
"type": "boolean"
|
|
10237
|
+
}
|
|
10238
|
+
},
|
|
10239
|
+
"hasDynamicHelp": false,
|
|
10240
|
+
"hiddenAliases": [],
|
|
10241
|
+
"id": "theme",
|
|
10242
|
+
"pluginAlias": "@proletariat/cli",
|
|
10243
|
+
"pluginName": "@proletariat/cli",
|
|
10244
|
+
"pluginType": "core",
|
|
10245
|
+
"strict": true,
|
|
10246
|
+
"isESM": true,
|
|
10247
|
+
"relativePath": [
|
|
10248
|
+
"dist",
|
|
10249
|
+
"commands",
|
|
10250
|
+
"theme",
|
|
10251
|
+
"index.js"
|
|
10252
|
+
]
|
|
10253
|
+
},
|
|
10254
|
+
"theme:list": {
|
|
10255
|
+
"aliases": [],
|
|
10256
|
+
"args": {},
|
|
10257
|
+
"description": "List available agent themes",
|
|
10258
|
+
"examples": [
|
|
10259
|
+
"<%= config.bin %> <%= command.id %>"
|
|
10260
|
+
],
|
|
10261
|
+
"flags": {
|
|
10262
|
+
"json": {
|
|
10263
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10264
|
+
"name": "json",
|
|
10265
|
+
"allowNo": false,
|
|
10266
|
+
"type": "boolean"
|
|
10267
|
+
},
|
|
10268
|
+
"machine": {
|
|
10269
|
+
"char": "m",
|
|
10270
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10271
|
+
"name": "machine",
|
|
10272
|
+
"allowNo": false,
|
|
10273
|
+
"type": "boolean"
|
|
10274
|
+
}
|
|
10275
|
+
},
|
|
10276
|
+
"hasDynamicHelp": false,
|
|
10277
|
+
"hiddenAliases": [],
|
|
10278
|
+
"id": "theme:list",
|
|
10279
|
+
"pluginAlias": "@proletariat/cli",
|
|
10280
|
+
"pluginName": "@proletariat/cli",
|
|
10281
|
+
"pluginType": "core",
|
|
10282
|
+
"strict": true,
|
|
10283
|
+
"enableJsonFlag": false,
|
|
10284
|
+
"isESM": true,
|
|
10285
|
+
"relativePath": [
|
|
10286
|
+
"dist",
|
|
10287
|
+
"commands",
|
|
10288
|
+
"theme",
|
|
10289
|
+
"list.js"
|
|
10290
|
+
]
|
|
10291
|
+
},
|
|
10292
|
+
"theme:set": {
|
|
10293
|
+
"aliases": [],
|
|
10294
|
+
"args": {
|
|
10295
|
+
"theme": {
|
|
10296
|
+
"description": "Theme ID to set as active",
|
|
10297
|
+
"name": "theme",
|
|
10298
|
+
"required": false
|
|
10299
|
+
}
|
|
10300
|
+
},
|
|
10301
|
+
"description": "Set the active theme for this workspace",
|
|
10302
|
+
"examples": [
|
|
10303
|
+
"<%= config.bin %> <%= command.id %> billionaires",
|
|
10304
|
+
"<%= config.bin %> <%= command.id %>"
|
|
10305
|
+
],
|
|
10306
|
+
"flags": {
|
|
10307
|
+
"json": {
|
|
10308
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10309
|
+
"name": "json",
|
|
10310
|
+
"allowNo": false,
|
|
10311
|
+
"type": "boolean"
|
|
10312
|
+
},
|
|
10313
|
+
"machine": {
|
|
10314
|
+
"char": "m",
|
|
10315
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10316
|
+
"name": "machine",
|
|
10317
|
+
"allowNo": false,
|
|
10318
|
+
"type": "boolean"
|
|
10319
|
+
}
|
|
10320
|
+
},
|
|
10321
|
+
"hasDynamicHelp": false,
|
|
10322
|
+
"hiddenAliases": [],
|
|
10323
|
+
"id": "theme:set",
|
|
10324
|
+
"pluginAlias": "@proletariat/cli",
|
|
10325
|
+
"pluginName": "@proletariat/cli",
|
|
10326
|
+
"pluginType": "core",
|
|
10327
|
+
"strict": true,
|
|
10328
|
+
"isESM": true,
|
|
10329
|
+
"relativePath": [
|
|
10330
|
+
"dist",
|
|
10331
|
+
"commands",
|
|
10332
|
+
"agent",
|
|
10333
|
+
"themes",
|
|
10334
|
+
"set.js"
|
|
10335
|
+
]
|
|
10336
|
+
},
|
|
10226
10337
|
"tools:add": {
|
|
10227
10338
|
"aliases": [],
|
|
10228
10339
|
"args": {
|
|
@@ -14665,5 +14776,5 @@
|
|
|
14665
14776
|
]
|
|
14666
14777
|
}
|
|
14667
14778
|
},
|
|
14668
|
-
"version": "0.3.
|
|
14779
|
+
"version": "0.3.111"
|
|
14669
14780
|
}
|