@proletariat/cli 0.3.104 → 0.3.109
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/agent/cleanup.js +13 -1
- package/dist/commands/agent/cleanup.js.map +1 -1
- package/dist/commands/claude/index.js +2 -2
- package/dist/commands/claude/index.js.map +1 -1
- package/dist/commands/feedback/list.js +4 -9
- package/dist/commands/feedback/list.js.map +1 -1
- package/dist/commands/feedback/submit.js +4 -9
- package/dist/commands/feedback/submit.js.map +1 -1
- package/dist/commands/feedback/view.js +4 -9
- package/dist/commands/feedback/view.js.map +1 -1
- package/dist/commands/gc.d.ts +1 -0
- package/dist/commands/gc.js +34 -1
- package/dist/commands/gc.js.map +1 -1
- package/dist/commands/notify/connect.d.ts +34 -0
- package/dist/commands/notify/connect.js +166 -0
- package/dist/commands/notify/connect.js.map +1 -0
- package/dist/commands/notify/disconnect.d.ts +16 -0
- package/dist/commands/notify/disconnect.js +45 -0
- package/dist/commands/notify/disconnect.js.map +1 -0
- package/dist/commands/notify/list.d.ts +15 -0
- package/dist/commands/notify/list.js +101 -0
- package/dist/commands/notify/list.js.map +1 -0
- package/dist/commands/notify/rules/add.d.ts +26 -0
- package/dist/commands/notify/rules/add.js +95 -0
- package/dist/commands/notify/rules/add.js.map +1 -0
- package/dist/commands/notify/rules/list.d.ts +14 -0
- package/dist/commands/notify/rules/list.js +82 -0
- package/dist/commands/notify/rules/list.js.map +1 -0
- package/dist/commands/notify/rules/remove.d.ts +16 -0
- package/dist/commands/notify/rules/remove.js +44 -0
- package/dist/commands/notify/rules/remove.js.map +1 -0
- package/dist/commands/notify/test.d.ts +16 -0
- package/dist/commands/notify/test.js +63 -0
- package/dist/commands/notify/test.js.map +1 -0
- package/dist/commands/orchestrate/index.js +11 -6
- package/dist/commands/orchestrate/index.js.map +1 -1
- package/dist/commands/orchestrate/machine.d.ts +29 -0
- package/dist/commands/orchestrate/machine.js +230 -0
- package/dist/commands/orchestrate/machine.js.map +1 -0
- package/dist/commands/pr/checks.js +4 -8
- package/dist/commands/pr/checks.js.map +1 -1
- package/dist/commands/pr/close.js +4 -8
- package/dist/commands/pr/close.js.map +1 -1
- package/dist/commands/pr/create.js +4 -8
- package/dist/commands/pr/create.js.map +1 -1
- package/dist/commands/pr/index.js +1 -1
- package/dist/commands/pr/index.js.map +1 -1
- package/dist/commands/pr/link.js +4 -8
- package/dist/commands/pr/link.js.map +1 -1
- package/dist/commands/pr/list.js +5 -9
- package/dist/commands/pr/list.js.map +1 -1
- package/dist/commands/pr/merge.d.ts +5 -0
- package/dist/commands/pr/merge.js +35 -11
- package/dist/commands/pr/merge.js.map +1 -1
- package/dist/commands/pr/status.js +5 -4
- package/dist/commands/pr/status.js.map +1 -1
- package/dist/commands/qa/index.js +2 -2
- package/dist/commands/qa/index.js.map +1 -1
- package/dist/commands/repo/create.js +4 -8
- package/dist/commands/repo/create.js.map +1 -1
- package/dist/commands/session/list.js +81 -41
- package/dist/commands/session/list.js.map +1 -1
- package/dist/commands/session/poke.d.ts +1 -11
- package/dist/commands/session/poke.js +20 -78
- package/dist/commands/session/poke.js.map +1 -1
- package/dist/commands/session/prune.js +3 -0
- package/dist/commands/session/prune.js.map +1 -1
- package/dist/commands/ticket/move.d.ts +12 -0
- package/dist/commands/ticket/move.js +75 -2
- package/dist/commands/ticket/move.js.map +1 -1
- package/dist/commands/work/drop.js +2 -2
- package/dist/commands/work/drop.js.map +1 -1
- package/dist/commands/work/ready.js +3 -3
- package/dist/commands/work/ready.js.map +1 -1
- package/dist/commands/work/rebase.js +4 -8
- package/dist/commands/work/rebase.js.map +1 -1
- package/dist/commands/work/run.d.ts +58 -0
- package/dist/commands/work/run.js +411 -0
- package/dist/commands/work/run.js.map +1 -0
- package/dist/commands/work/ship.d.ts +6 -0
- package/dist/commands/work/ship.js +93 -51
- package/dist/commands/work/ship.js.map +1 -1
- package/dist/commands/work/start.d.ts +1 -0
- package/dist/commands/work/start.js +127 -13
- package/dist/commands/work/start.js.map +1 -1
- package/dist/lib/agents/commands.d.ts +6 -0
- package/dist/lib/agents/commands.js +55 -2
- package/dist/lib/agents/commands.js.map +1 -1
- package/dist/lib/database/credential-store.js +2 -3
- package/dist/lib/database/credential-store.js.map +1 -1
- package/dist/lib/database/db-safety.d.ts +25 -0
- package/dist/lib/database/db-safety.js +35 -0
- package/dist/lib/database/db-safety.js.map +1 -1
- package/dist/lib/database/driver.js +6 -12
- package/dist/lib/database/driver.js.map +1 -1
- package/dist/lib/database/drizzle-schema.d.ts +3 -3
- package/dist/lib/database/drizzle.js +3 -3
- package/dist/lib/database/drizzle.js.map +1 -1
- package/dist/lib/database/index.d.ts +1 -1
- package/dist/lib/database/index.js +1 -1
- package/dist/lib/database/index.js.map +1 -1
- package/dist/lib/database/migrations/0021_notification_system.d.ts +2 -0
- package/dist/lib/database/migrations/0021_notification_system.js +39 -0
- package/dist/lib/database/migrations/0021_notification_system.js.map +1 -0
- package/dist/lib/database/migrations/0022_hook_mode_tiers.d.ts +11 -0
- package/dist/lib/database/migrations/0022_hook_mode_tiers.js +53 -0
- package/dist/lib/database/migrations/0022_hook_mode_tiers.js.map +1 -0
- package/dist/lib/database/migrations/index.js +4 -0
- package/dist/lib/database/migrations/index.js.map +1 -1
- package/dist/lib/database/pmo-bootstrap.js +6 -2
- package/dist/lib/database/pmo-bootstrap.js.map +1 -1
- package/dist/lib/database/workspace.js +5 -13
- package/dist/lib/database/workspace.js.map +1 -1
- package/dist/lib/events/emitting-runner.js +10 -0
- package/dist/lib/events/emitting-runner.js.map +1 -1
- package/dist/lib/execution/cc-version.d.ts +62 -0
- package/dist/lib/execution/cc-version.js +103 -0
- package/dist/lib/execution/cc-version.js.map +1 -0
- package/dist/lib/execution/devcontainer.js +2 -1
- package/dist/lib/execution/devcontainer.js.map +1 -1
- package/dist/lib/execution/runners/devcontainer.js +4 -1
- package/dist/lib/execution/runners/devcontainer.js.map +1 -1
- package/dist/lib/execution/runners/docker-management.js +10 -46
- package/dist/lib/execution/runners/docker-management.js.map +1 -1
- package/dist/lib/execution/runners/orchestrator.js +13 -39
- package/dist/lib/execution/runners/orchestrator.js.map +1 -1
- package/dist/lib/execution/session-utils.d.ts +88 -1
- package/dist/lib/execution/session-utils.js +120 -46
- package/dist/lib/execution/session-utils.js.map +1 -1
- package/dist/lib/execution/storage.js +20 -2
- package/dist/lib/execution/storage.js.map +1 -1
- package/dist/lib/flags/resolver.d.ts +8 -1
- package/dist/lib/flags/resolver.js +35 -2
- package/dist/lib/flags/resolver.js.map +1 -1
- package/dist/lib/gc/cascade.d.ts +99 -0
- package/dist/lib/gc/cascade.js +357 -0
- package/dist/lib/gc/cascade.js.map +1 -0
- package/dist/lib/gc/config.d.ts +69 -0
- package/dist/lib/gc/config.js +134 -0
- package/dist/lib/gc/config.js.map +1 -0
- package/dist/lib/gc/index.d.ts +36 -0
- package/dist/lib/gc/index.js +209 -1
- package/dist/lib/gc/index.js.map +1 -1
- package/dist/lib/init/index.js +10 -1
- package/dist/lib/init/index.js.map +1 -1
- package/dist/lib/machine-db.d.ts +144 -0
- package/dist/lib/machine-db.js +338 -0
- package/dist/lib/machine-db.js.map +1 -0
- package/dist/lib/machine-orchestrator.d.ts +35 -0
- package/dist/lib/machine-orchestrator.js +139 -0
- package/dist/lib/machine-orchestrator.js.map +1 -0
- package/dist/lib/notifications/dispatcher.d.ts +29 -0
- package/dist/lib/notifications/dispatcher.js +281 -0
- package/dist/lib/notifications/dispatcher.js.map +1 -0
- package/dist/lib/notifications/index.d.ts +13 -0
- package/dist/lib/notifications/index.js +18 -0
- package/dist/lib/notifications/index.js.map +1 -0
- package/dist/lib/notifications/manager.d.ts +46 -0
- package/dist/lib/notifications/manager.js +200 -0
- package/dist/lib/notifications/manager.js.map +1 -0
- package/dist/lib/notifications/storage.d.ts +60 -0
- package/dist/lib/notifications/storage.js +182 -0
- package/dist/lib/notifications/storage.js.map +1 -0
- package/dist/lib/notifications/types.d.ts +126 -0
- package/dist/lib/notifications/types.js +16 -0
- package/dist/lib/notifications/types.js.map +1 -0
- package/dist/lib/orchestrate/actions.js +182 -3
- package/dist/lib/orchestrate/actions.js.map +1 -1
- package/dist/lib/orchestrate/config-loader.js +9 -35
- package/dist/lib/orchestrate/config-loader.js.map +1 -1
- package/dist/lib/orchestrate/engine.d.ts +53 -1
- package/dist/lib/orchestrate/engine.js +74 -3
- package/dist/lib/orchestrate/engine.js.map +1 -1
- package/dist/lib/orchestrate/escalation.d.ts +87 -0
- package/dist/lib/orchestrate/escalation.js +63 -0
- package/dist/lib/orchestrate/escalation.js.map +1 -0
- package/dist/lib/orchestrate/index.d.ts +2 -0
- package/dist/lib/orchestrate/index.js +1 -0
- package/dist/lib/orchestrate/index.js.map +1 -1
- package/dist/lib/orchestrate/llm-agent.d.ts +101 -0
- package/dist/lib/orchestrate/llm-agent.js +295 -0
- package/dist/lib/orchestrate/llm-agent.js.map +1 -0
- package/dist/lib/orchestrate/presets.d.ts +4 -3
- package/dist/lib/orchestrate/presets.js +13 -8
- package/dist/lib/orchestrate/presets.js.map +1 -1
- package/dist/lib/orchestrate/types.d.ts +7 -1
- package/dist/lib/orchestrate/types.js +1 -0
- package/dist/lib/orchestrate/types.js.map +1 -1
- package/dist/lib/pmo/base-command.js +1 -1
- package/dist/lib/pmo/base-command.js.map +1 -1
- package/dist/lib/pmo/find-pmo.d.ts +8 -0
- package/dist/lib/pmo/find-pmo.js +63 -2
- package/dist/lib/pmo/find-pmo.js.map +1 -1
- package/dist/lib/pmo/index.d.ts +1 -1
- package/dist/lib/pmo/index.js +1 -1
- package/dist/lib/pmo/index.js.map +1 -1
- package/dist/lib/pmo/pmo-context.js +1 -1
- package/dist/lib/pmo/pmo-context.js.map +1 -1
- package/dist/lib/pmo/storage/index.js +2 -1
- package/dist/lib/pmo/storage/index.js.map +1 -1
- package/dist/lib/pr/index.d.ts +32 -0
- package/dist/lib/pr/index.js +45 -0
- package/dist/lib/pr/index.js.map +1 -1
- package/dist/lib/registry/index.js +0 -1
- package/dist/lib/registry/index.js.map +1 -1
- package/dist/lib/signal-handler.d.ts +8 -0
- package/dist/lib/signal-handler.js +33 -0
- package/dist/lib/signal-handler.js.map +1 -1
- package/dist/lib/themes.js +8 -1
- package/dist/lib/themes.js.map +1 -1
- package/dist/lib/work-lifecycle/container-cleanup-hook.d.ts +17 -7
- package/dist/lib/work-lifecycle/container-cleanup-hook.js +64 -11
- package/dist/lib/work-lifecycle/container-cleanup-hook.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/executor.d.ts +22 -2
- package/dist/lib/work-lifecycle/hooks/executor.js +46 -8
- package/dist/lib/work-lifecycle/hooks/executor.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/manager.d.ts +62 -3
- package/dist/lib/work-lifecycle/hooks/manager.js +285 -4
- package/dist/lib/work-lifecycle/hooks/manager.js.map +1 -1
- package/dist/lib/work-lifecycle/hooks/types.d.ts +36 -5
- package/dist/lib/work-lifecycle/hooks/types.js +1 -1
- package/dist/lib/work-lifecycle/hooks/types.js.map +1 -1
- package/dist/lib/workspace-resolution.d.ts +73 -0
- package/dist/lib/workspace-resolution.js +188 -0
- package/dist/lib/workspace-resolution.js.map +1 -0
- package/oclif.manifest.json +1309 -621
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -313,6 +313,12 @@
|
|
|
313
313
|
"name": "purge-db",
|
|
314
314
|
"allowNo": false,
|
|
315
315
|
"type": "boolean"
|
|
316
|
+
},
|
|
317
|
+
"orphans": {
|
|
318
|
+
"description": "Also find and clean orphaned worktrees (agents with no running session)",
|
|
319
|
+
"name": "orphans",
|
|
320
|
+
"allowNo": false,
|
|
321
|
+
"type": "boolean"
|
|
316
322
|
}
|
|
317
323
|
},
|
|
318
324
|
"hasDynamicHelp": false,
|
|
@@ -3009,41 +3015,20 @@
|
|
|
3009
3015
|
"repair.js"
|
|
3010
3016
|
]
|
|
3011
3017
|
},
|
|
3012
|
-
"
|
|
3018
|
+
"execution:config": {
|
|
3013
3019
|
"aliases": [],
|
|
3014
3020
|
"args": {},
|
|
3015
|
-
"description": "
|
|
3021
|
+
"description": "View and update execution preferences",
|
|
3016
3022
|
"examples": [
|
|
3017
|
-
"<%= config.bin %>
|
|
3018
|
-
"<%= config.bin %>
|
|
3019
|
-
"<%= config.bin %>
|
|
3023
|
+
"<%= config.bin %> execution config # Interactive menu",
|
|
3024
|
+
"<%= config.bin %> execution config --json # Output current config as JSON",
|
|
3025
|
+
"<%= config.bin %> execution config --list # Show all settings",
|
|
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"
|
|
3020
3030
|
],
|
|
3021
3031
|
"flags": {
|
|
3022
|
-
"force": {
|
|
3023
|
-
"aliases": [
|
|
3024
|
-
"yes",
|
|
3025
|
-
"y"
|
|
3026
|
-
],
|
|
3027
|
-
"char": "f",
|
|
3028
|
-
"description": "Skip confirmation prompt",
|
|
3029
|
-
"name": "force",
|
|
3030
|
-
"allowNo": false,
|
|
3031
|
-
"type": "boolean"
|
|
3032
|
-
},
|
|
3033
|
-
"dry-run": {
|
|
3034
|
-
"char": "d",
|
|
3035
|
-
"description": "Show what would be removed without removing",
|
|
3036
|
-
"name": "dry-run",
|
|
3037
|
-
"allowNo": false,
|
|
3038
|
-
"type": "boolean"
|
|
3039
|
-
},
|
|
3040
|
-
"all": {
|
|
3041
|
-
"char": "a",
|
|
3042
|
-
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3043
|
-
"name": "all",
|
|
3044
|
-
"allowNo": false,
|
|
3045
|
-
"type": "boolean"
|
|
3046
|
-
},
|
|
3047
3032
|
"json": {
|
|
3048
3033
|
"description": "Output as JSON for AI agents/scripts",
|
|
3049
3034
|
"name": "json",
|
|
@@ -3056,41 +3041,54 @@
|
|
|
3056
3041
|
"name": "machine",
|
|
3057
3042
|
"allowNo": false,
|
|
3058
3043
|
"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"
|
|
3059
3066
|
}
|
|
3060
3067
|
},
|
|
3061
3068
|
"hasDynamicHelp": false,
|
|
3062
3069
|
"hiddenAliases": [],
|
|
3063
|
-
"id": "
|
|
3070
|
+
"id": "execution:config",
|
|
3064
3071
|
"pluginAlias": "@proletariat/cli",
|
|
3065
3072
|
"pluginName": "@proletariat/cli",
|
|
3066
3073
|
"pluginType": "core",
|
|
3067
3074
|
"strict": true,
|
|
3068
|
-
"enableJsonFlag": false,
|
|
3069
3075
|
"isESM": true,
|
|
3070
3076
|
"relativePath": [
|
|
3071
3077
|
"dist",
|
|
3072
3078
|
"commands",
|
|
3073
|
-
"
|
|
3074
|
-
"
|
|
3079
|
+
"execution",
|
|
3080
|
+
"config.js"
|
|
3075
3081
|
]
|
|
3076
3082
|
},
|
|
3077
|
-
"
|
|
3083
|
+
"execution": {
|
|
3078
3084
|
"aliases": [],
|
|
3079
3085
|
"args": {},
|
|
3080
|
-
"description": "
|
|
3086
|
+
"description": "Single execution operations (view, logs, stop)",
|
|
3081
3087
|
"examples": [
|
|
3082
3088
|
"<%= config.bin %> <%= command.id %>",
|
|
3083
|
-
"<%= config.bin %>
|
|
3084
|
-
"<%= config.bin %>
|
|
3085
|
-
"<%= config.bin %>
|
|
3086
|
-
"<%= config.bin %> docker start WORK-001",
|
|
3087
|
-
"<%= config.bin %> docker stop kalanick",
|
|
3088
|
-
"<%= config.bin %> docker shell WORK-001",
|
|
3089
|
-
"<%= config.bin %> docker restart abc123",
|
|
3090
|
-
"<%= config.bin %> docker sync",
|
|
3091
|
-
"<%= config.bin %> docker rebuild-cache",
|
|
3092
|
-
"<%= config.bin %> docker clean",
|
|
3093
|
-
"<%= config.bin %> docker prune"
|
|
3089
|
+
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
3090
|
+
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
3091
|
+
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
3094
3092
|
],
|
|
3095
3093
|
"flags": {
|
|
3096
3094
|
"json": {
|
|
@@ -3109,7 +3107,7 @@
|
|
|
3109
3107
|
},
|
|
3110
3108
|
"hasDynamicHelp": false,
|
|
3111
3109
|
"hiddenAliases": [],
|
|
3112
|
-
"id": "
|
|
3110
|
+
"id": "execution",
|
|
3113
3111
|
"pluginAlias": "@proletariat/cli",
|
|
3114
3112
|
"pluginName": "@proletariat/cli",
|
|
3115
3113
|
"pluginType": "core",
|
|
@@ -3118,18 +3116,19 @@
|
|
|
3118
3116
|
"relativePath": [
|
|
3119
3117
|
"dist",
|
|
3120
3118
|
"commands",
|
|
3121
|
-
"
|
|
3119
|
+
"execution",
|
|
3122
3120
|
"index.js"
|
|
3123
3121
|
]
|
|
3124
3122
|
},
|
|
3125
|
-
"
|
|
3123
|
+
"execution:list": {
|
|
3126
3124
|
"aliases": [],
|
|
3127
3125
|
"args": {},
|
|
3128
|
-
"description": "
|
|
3126
|
+
"description": "List running and recent executions",
|
|
3129
3127
|
"examples": [
|
|
3130
3128
|
"<%= config.bin %> <%= command.id %>",
|
|
3131
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3132
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3129
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
3130
|
+
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
3131
|
+
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
3133
3132
|
],
|
|
3134
3133
|
"flags": {
|
|
3135
3134
|
"json": {
|
|
@@ -3145,52 +3144,69 @@
|
|
|
3145
3144
|
"allowNo": false,
|
|
3146
3145
|
"type": "boolean"
|
|
3147
3146
|
},
|
|
3148
|
-
"
|
|
3147
|
+
"status": {
|
|
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": {
|
|
3149
3163
|
"char": "a",
|
|
3150
|
-
"description": "
|
|
3151
|
-
"name": "
|
|
3152
|
-
"
|
|
3153
|
-
"
|
|
3164
|
+
"description": "Filter by agent name",
|
|
3165
|
+
"name": "agent",
|
|
3166
|
+
"hasDynamicHelp": false,
|
|
3167
|
+
"multiple": false,
|
|
3168
|
+
"type": "option"
|
|
3154
3169
|
},
|
|
3155
|
-
"
|
|
3156
|
-
"char": "
|
|
3157
|
-
"description": "
|
|
3158
|
-
"name": "
|
|
3159
|
-
"
|
|
3160
|
-
"
|
|
3170
|
+
"limit": {
|
|
3171
|
+
"char": "l",
|
|
3172
|
+
"description": "Number of results",
|
|
3173
|
+
"name": "limit",
|
|
3174
|
+
"default": 20,
|
|
3175
|
+
"hasDynamicHelp": false,
|
|
3176
|
+
"multiple": false,
|
|
3177
|
+
"type": "option"
|
|
3161
3178
|
}
|
|
3162
3179
|
},
|
|
3163
3180
|
"hasDynamicHelp": false,
|
|
3164
3181
|
"hiddenAliases": [],
|
|
3165
|
-
"id": "
|
|
3182
|
+
"id": "execution:list",
|
|
3166
3183
|
"pluginAlias": "@proletariat/cli",
|
|
3167
3184
|
"pluginName": "@proletariat/cli",
|
|
3168
3185
|
"pluginType": "core",
|
|
3169
3186
|
"strict": true,
|
|
3170
|
-
"enableJsonFlag": false,
|
|
3171
3187
|
"isESM": true,
|
|
3172
3188
|
"relativePath": [
|
|
3173
3189
|
"dist",
|
|
3174
3190
|
"commands",
|
|
3175
|
-
"
|
|
3191
|
+
"execution",
|
|
3176
3192
|
"list.js"
|
|
3177
3193
|
]
|
|
3178
3194
|
},
|
|
3179
|
-
"
|
|
3195
|
+
"execution:logs": {
|
|
3180
3196
|
"aliases": [],
|
|
3181
3197
|
"args": {
|
|
3182
|
-
"
|
|
3183
|
-
"description": "Execution ID
|
|
3184
|
-
"name": "
|
|
3185
|
-
"required":
|
|
3198
|
+
"id": {
|
|
3199
|
+
"description": "Execution ID - prompts if not provided",
|
|
3200
|
+
"name": "id",
|
|
3201
|
+
"required": false
|
|
3186
3202
|
}
|
|
3187
3203
|
},
|
|
3188
|
-
"description": "View
|
|
3204
|
+
"description": "View execution logs",
|
|
3189
3205
|
"examples": [
|
|
3190
3206
|
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3191
|
-
"<%= config.bin %> <%= command.id %>
|
|
3192
|
-
"<%= config.bin %> <%= command.id %>
|
|
3193
|
-
"<%= config.bin %> <%= command.id %>
|
|
3207
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --follow",
|
|
3208
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 50",
|
|
3209
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3194
3210
|
],
|
|
3195
3211
|
"flags": {
|
|
3196
3212
|
"json": {
|
|
@@ -3208,86 +3224,54 @@
|
|
|
3208
3224
|
},
|
|
3209
3225
|
"follow": {
|
|
3210
3226
|
"char": "f",
|
|
3211
|
-
"description": "
|
|
3227
|
+
"description": "Stream logs in real-time",
|
|
3212
3228
|
"name": "follow",
|
|
3213
3229
|
"allowNo": false,
|
|
3214
3230
|
"type": "boolean"
|
|
3215
3231
|
},
|
|
3216
3232
|
"tail": {
|
|
3217
3233
|
"char": "n",
|
|
3218
|
-
"description": "
|
|
3234
|
+
"description": "Show last n lines",
|
|
3219
3235
|
"name": "tail",
|
|
3220
|
-
"default": 100,
|
|
3221
3236
|
"hasDynamicHelp": false,
|
|
3222
3237
|
"multiple": false,
|
|
3223
3238
|
"type": "option"
|
|
3224
|
-
},
|
|
3225
|
-
"timestamps": {
|
|
3226
|
-
"char": "t",
|
|
3227
|
-
"description": "Show timestamps",
|
|
3228
|
-
"name": "timestamps",
|
|
3229
|
-
"allowNo": false,
|
|
3230
|
-
"type": "boolean"
|
|
3231
3239
|
}
|
|
3232
3240
|
},
|
|
3233
3241
|
"hasDynamicHelp": false,
|
|
3234
3242
|
"hiddenAliases": [],
|
|
3235
|
-
"id": "
|
|
3243
|
+
"id": "execution:logs",
|
|
3236
3244
|
"pluginAlias": "@proletariat/cli",
|
|
3237
3245
|
"pluginName": "@proletariat/cli",
|
|
3238
3246
|
"pluginType": "core",
|
|
3239
3247
|
"strict": true,
|
|
3240
|
-
"enableJsonFlag": false,
|
|
3241
3248
|
"isESM": true,
|
|
3242
3249
|
"relativePath": [
|
|
3243
3250
|
"dist",
|
|
3244
3251
|
"commands",
|
|
3245
|
-
"
|
|
3252
|
+
"execution",
|
|
3246
3253
|
"logs.js"
|
|
3247
3254
|
]
|
|
3248
3255
|
},
|
|
3249
|
-
"
|
|
3256
|
+
"execution:stop": {
|
|
3250
3257
|
"aliases": [],
|
|
3251
|
-
"args": {
|
|
3252
|
-
|
|
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)",
|
|
3253
3266
|
"examples": [
|
|
3254
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3267
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3268
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --force",
|
|
3269
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode",
|
|
3255
3270
|
"<%= config.bin %> <%= command.id %> --all",
|
|
3256
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3257
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3271
|
+
"<%= config.bin %> <%= command.id %> --all --force",
|
|
3272
|
+
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
3258
3273
|
],
|
|
3259
3274
|
"flags": {
|
|
3260
|
-
"force": {
|
|
3261
|
-
"aliases": [
|
|
3262
|
-
"yes",
|
|
3263
|
-
"y"
|
|
3264
|
-
],
|
|
3265
|
-
"char": "f",
|
|
3266
|
-
"description": "Skip confirmation prompt",
|
|
3267
|
-
"name": "force",
|
|
3268
|
-
"allowNo": false,
|
|
3269
|
-
"type": "boolean"
|
|
3270
|
-
},
|
|
3271
|
-
"dry-run": {
|
|
3272
|
-
"char": "d",
|
|
3273
|
-
"description": "Show what would be removed without removing",
|
|
3274
|
-
"name": "dry-run",
|
|
3275
|
-
"allowNo": false,
|
|
3276
|
-
"type": "boolean"
|
|
3277
|
-
},
|
|
3278
|
-
"all": {
|
|
3279
|
-
"char": "a",
|
|
3280
|
-
"description": "Remove all unused images, not just dangling ones",
|
|
3281
|
-
"name": "all",
|
|
3282
|
-
"allowNo": false,
|
|
3283
|
-
"type": "boolean"
|
|
3284
|
-
},
|
|
3285
|
-
"volumes": {
|
|
3286
|
-
"description": "Also prune volumes (dangerous - data loss possible)",
|
|
3287
|
-
"name": "volumes",
|
|
3288
|
-
"allowNo": false,
|
|
3289
|
-
"type": "boolean"
|
|
3290
|
-
},
|
|
3291
3275
|
"json": {
|
|
3292
3276
|
"description": "Output as JSON for AI agents/scripts",
|
|
3293
3277
|
"name": "json",
|
|
@@ -3300,46 +3284,59 @@
|
|
|
3300
3284
|
"name": "machine",
|
|
3301
3285
|
"allowNo": false,
|
|
3302
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"
|
|
3303
3308
|
}
|
|
3304
3309
|
},
|
|
3305
3310
|
"hasDynamicHelp": false,
|
|
3306
3311
|
"hiddenAliases": [],
|
|
3307
|
-
"id": "
|
|
3312
|
+
"id": "execution:stop",
|
|
3308
3313
|
"pluginAlias": "@proletariat/cli",
|
|
3309
3314
|
"pluginName": "@proletariat/cli",
|
|
3310
3315
|
"pluginType": "core",
|
|
3311
3316
|
"strict": true,
|
|
3312
|
-
"enableJsonFlag": false,
|
|
3313
3317
|
"isESM": true,
|
|
3314
3318
|
"relativePath": [
|
|
3315
3319
|
"dist",
|
|
3316
3320
|
"commands",
|
|
3317
|
-
"
|
|
3318
|
-
"
|
|
3321
|
+
"execution",
|
|
3322
|
+
"stop.js"
|
|
3319
3323
|
]
|
|
3320
3324
|
},
|
|
3321
|
-
"
|
|
3325
|
+
"execution:view": {
|
|
3322
3326
|
"aliases": [],
|
|
3323
|
-
"args": {
|
|
3324
|
-
|
|
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",
|
|
3325
3335
|
"examples": [
|
|
3326
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3327
|
-
"<%= config.bin %> <%= command.id %>
|
|
3336
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3337
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
3328
3338
|
],
|
|
3329
3339
|
"flags": {
|
|
3330
|
-
"force": {
|
|
3331
|
-
"char": "f",
|
|
3332
|
-
"description": "Delete and rebuild the cache even if it already exists",
|
|
3333
|
-
"name": "force",
|
|
3334
|
-
"allowNo": false,
|
|
3335
|
-
"type": "boolean"
|
|
3336
|
-
},
|
|
3337
|
-
"delete-only": {
|
|
3338
|
-
"description": "Only delete the cache volume (next agent spawn rebuilds it)",
|
|
3339
|
-
"name": "delete-only",
|
|
3340
|
-
"allowNo": false,
|
|
3341
|
-
"type": "boolean"
|
|
3342
|
-
},
|
|
3343
3340
|
"json": {
|
|
3344
3341
|
"description": "Output as JSON for AI agents/scripts",
|
|
3345
3342
|
"name": "json",
|
|
@@ -3356,34 +3353,27 @@
|
|
|
3356
3353
|
},
|
|
3357
3354
|
"hasDynamicHelp": false,
|
|
3358
3355
|
"hiddenAliases": [],
|
|
3359
|
-
"id": "
|
|
3356
|
+
"id": "execution:view",
|
|
3360
3357
|
"pluginAlias": "@proletariat/cli",
|
|
3361
3358
|
"pluginName": "@proletariat/cli",
|
|
3362
3359
|
"pluginType": "core",
|
|
3363
3360
|
"strict": true,
|
|
3364
|
-
"enableJsonFlag": false,
|
|
3365
3361
|
"isESM": true,
|
|
3366
3362
|
"relativePath": [
|
|
3367
3363
|
"dist",
|
|
3368
3364
|
"commands",
|
|
3369
|
-
"
|
|
3370
|
-
"
|
|
3365
|
+
"execution",
|
|
3366
|
+
"view.js"
|
|
3371
3367
|
]
|
|
3372
3368
|
},
|
|
3373
|
-
"docker:
|
|
3369
|
+
"docker:clean": {
|
|
3374
3370
|
"aliases": [],
|
|
3375
|
-
"args": {
|
|
3376
|
-
|
|
3377
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3378
|
-
"name": "target",
|
|
3379
|
-
"required": true
|
|
3380
|
-
}
|
|
3381
|
-
},
|
|
3382
|
-
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3371
|
+
"args": {},
|
|
3372
|
+
"description": "Remove orphaned containers (containers without running agents)",
|
|
3383
3373
|
"examples": [
|
|
3384
|
-
"<%= config.bin %> <%= command.id %>
|
|
3385
|
-
"<%= config.bin %> <%= command.id %>
|
|
3386
|
-
"<%= config.bin %> <%= command.id %>
|
|
3374
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3375
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
3376
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3387
3377
|
],
|
|
3388
3378
|
"flags": {
|
|
3389
3379
|
"force": {
|
|
@@ -3397,14 +3387,19 @@
|
|
|
3397
3387
|
"allowNo": false,
|
|
3398
3388
|
"type": "boolean"
|
|
3399
3389
|
},
|
|
3400
|
-
"
|
|
3401
|
-
"char": "
|
|
3402
|
-
"description": "
|
|
3403
|
-
"name": "
|
|
3404
|
-
"
|
|
3405
|
-
"
|
|
3406
|
-
|
|
3407
|
-
|
|
3390
|
+
"dry-run": {
|
|
3391
|
+
"char": "d",
|
|
3392
|
+
"description": "Show what would be removed without removing",
|
|
3393
|
+
"name": "dry-run",
|
|
3394
|
+
"allowNo": false,
|
|
3395
|
+
"type": "boolean"
|
|
3396
|
+
},
|
|
3397
|
+
"all": {
|
|
3398
|
+
"char": "a",
|
|
3399
|
+
"description": "Remove all stopped devcontainers (not just orphaned)",
|
|
3400
|
+
"name": "all",
|
|
3401
|
+
"allowNo": false,
|
|
3402
|
+
"type": "boolean"
|
|
3408
3403
|
},
|
|
3409
3404
|
"json": {
|
|
3410
3405
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -3422,7 +3417,7 @@
|
|
|
3422
3417
|
},
|
|
3423
3418
|
"hasDynamicHelp": false,
|
|
3424
3419
|
"hiddenAliases": [],
|
|
3425
|
-
"id": "docker:
|
|
3420
|
+
"id": "docker:clean",
|
|
3426
3421
|
"pluginAlias": "@proletariat/cli",
|
|
3427
3422
|
"pluginName": "@proletariat/cli",
|
|
3428
3423
|
"pluginType": "core",
|
|
@@ -3433,23 +3428,26 @@
|
|
|
3433
3428
|
"dist",
|
|
3434
3429
|
"commands",
|
|
3435
3430
|
"docker",
|
|
3436
|
-
"
|
|
3431
|
+
"clean.js"
|
|
3437
3432
|
]
|
|
3438
3433
|
},
|
|
3439
|
-
"docker
|
|
3434
|
+
"docker": {
|
|
3440
3435
|
"aliases": [],
|
|
3441
|
-
"args": {
|
|
3442
|
-
|
|
3443
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3444
|
-
"name": "target",
|
|
3445
|
-
"required": true
|
|
3446
|
-
}
|
|
3447
|
-
},
|
|
3448
|
-
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
3436
|
+
"args": {},
|
|
3437
|
+
"description": "Manage Docker containers used by agents",
|
|
3449
3438
|
"examples": [
|
|
3450
|
-
"<%= config.bin %> <%= command.id %>
|
|
3451
|
-
"<%= config.bin %>
|
|
3452
|
-
"<%= config.bin %>
|
|
3439
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3440
|
+
"<%= config.bin %> docker status",
|
|
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"
|
|
3453
3451
|
],
|
|
3454
3452
|
"flags": {
|
|
3455
3453
|
"json": {
|
|
@@ -3464,63 +3462,31 @@
|
|
|
3464
3462
|
"name": "machine",
|
|
3465
3463
|
"allowNo": false,
|
|
3466
3464
|
"type": "boolean"
|
|
3467
|
-
},
|
|
3468
|
-
"shell": {
|
|
3469
|
-
"char": "s",
|
|
3470
|
-
"description": "Shell to use",
|
|
3471
|
-
"name": "shell",
|
|
3472
|
-
"default": "/bin/sh",
|
|
3473
|
-
"hasDynamicHelp": false,
|
|
3474
|
-
"multiple": false,
|
|
3475
|
-
"type": "option"
|
|
3476
|
-
},
|
|
3477
|
-
"user": {
|
|
3478
|
-
"char": "u",
|
|
3479
|
-
"description": "User to run as",
|
|
3480
|
-
"name": "user",
|
|
3481
|
-
"hasDynamicHelp": false,
|
|
3482
|
-
"multiple": false,
|
|
3483
|
-
"type": "option"
|
|
3484
|
-
},
|
|
3485
|
-
"workdir": {
|
|
3486
|
-
"char": "w",
|
|
3487
|
-
"description": "Working directory inside the container",
|
|
3488
|
-
"name": "workdir",
|
|
3489
|
-
"hasDynamicHelp": false,
|
|
3490
|
-
"multiple": false,
|
|
3491
|
-
"type": "option"
|
|
3492
3465
|
}
|
|
3493
3466
|
},
|
|
3494
3467
|
"hasDynamicHelp": false,
|
|
3495
3468
|
"hiddenAliases": [],
|
|
3496
|
-
"id": "docker
|
|
3469
|
+
"id": "docker",
|
|
3497
3470
|
"pluginAlias": "@proletariat/cli",
|
|
3498
3471
|
"pluginName": "@proletariat/cli",
|
|
3499
3472
|
"pluginType": "core",
|
|
3500
3473
|
"strict": true,
|
|
3501
|
-
"enableJsonFlag": false,
|
|
3502
3474
|
"isESM": true,
|
|
3503
3475
|
"relativePath": [
|
|
3504
3476
|
"dist",
|
|
3505
3477
|
"commands",
|
|
3506
3478
|
"docker",
|
|
3507
|
-
"
|
|
3479
|
+
"index.js"
|
|
3508
3480
|
]
|
|
3509
3481
|
},
|
|
3510
|
-
"docker:
|
|
3482
|
+
"docker:list": {
|
|
3511
3483
|
"aliases": [],
|
|
3512
|
-
"args": {
|
|
3513
|
-
|
|
3514
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3515
|
-
"name": "target",
|
|
3516
|
-
"required": true
|
|
3517
|
-
}
|
|
3518
|
-
},
|
|
3519
|
-
"description": "Start a stopped container (by execution ID, agent name, or container ID)",
|
|
3484
|
+
"args": {},
|
|
3485
|
+
"description": "Show Docker containers from agent_work table with status",
|
|
3520
3486
|
"examples": [
|
|
3521
|
-
"<%= config.bin %> <%= command.id %>
|
|
3522
|
-
"<%= config.bin %> <%= command.id %>
|
|
3523
|
-
"<%= config.bin %> <%= command.id %>
|
|
3487
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3488
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3489
|
+
"<%= config.bin %> <%= command.id %> --running"
|
|
3524
3490
|
],
|
|
3525
3491
|
"flags": {
|
|
3526
3492
|
"json": {
|
|
@@ -3536,17 +3502,24 @@
|
|
|
3536
3502
|
"allowNo": false,
|
|
3537
3503
|
"type": "boolean"
|
|
3538
3504
|
},
|
|
3539
|
-
"
|
|
3505
|
+
"all": {
|
|
3540
3506
|
"char": "a",
|
|
3541
|
-
"description": "
|
|
3542
|
-
"name": "
|
|
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",
|
|
3543
3516
|
"allowNo": false,
|
|
3544
3517
|
"type": "boolean"
|
|
3545
3518
|
}
|
|
3546
3519
|
},
|
|
3547
3520
|
"hasDynamicHelp": false,
|
|
3548
3521
|
"hiddenAliases": [],
|
|
3549
|
-
"id": "docker:
|
|
3522
|
+
"id": "docker:list",
|
|
3550
3523
|
"pluginAlias": "@proletariat/cli",
|
|
3551
3524
|
"pluginName": "@proletariat/cli",
|
|
3552
3525
|
"pluginType": "core",
|
|
@@ -3557,15 +3530,24 @@
|
|
|
3557
3530
|
"dist",
|
|
3558
3531
|
"commands",
|
|
3559
3532
|
"docker",
|
|
3560
|
-
"
|
|
3533
|
+
"list.js"
|
|
3561
3534
|
]
|
|
3562
3535
|
},
|
|
3563
|
-
"docker:
|
|
3536
|
+
"docker:logs": {
|
|
3564
3537
|
"aliases": [],
|
|
3565
|
-
"args": {
|
|
3566
|
-
|
|
3538
|
+
"args": {
|
|
3539
|
+
"target": {
|
|
3540
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3541
|
+
"name": "target",
|
|
3542
|
+
"required": true
|
|
3543
|
+
}
|
|
3544
|
+
},
|
|
3545
|
+
"description": "View logs from a container (by execution ID, agent name, or container ID)",
|
|
3567
3546
|
"examples": [
|
|
3568
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3547
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3548
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3549
|
+
"<%= config.bin %> <%= command.id %> abc123 --follow",
|
|
3550
|
+
"<%= config.bin %> <%= command.id %> WORK-001 --tail 100"
|
|
3569
3551
|
],
|
|
3570
3552
|
"flags": {
|
|
3571
3553
|
"json": {
|
|
@@ -3580,11 +3562,34 @@
|
|
|
3580
3562
|
"name": "machine",
|
|
3581
3563
|
"allowNo": false,
|
|
3582
3564
|
"type": "boolean"
|
|
3565
|
+
},
|
|
3566
|
+
"follow": {
|
|
3567
|
+
"char": "f",
|
|
3568
|
+
"description": "Follow log output",
|
|
3569
|
+
"name": "follow",
|
|
3570
|
+
"allowNo": false,
|
|
3571
|
+
"type": "boolean"
|
|
3572
|
+
},
|
|
3573
|
+
"tail": {
|
|
3574
|
+
"char": "n",
|
|
3575
|
+
"description": "Number of lines to show from the end",
|
|
3576
|
+
"name": "tail",
|
|
3577
|
+
"default": 100,
|
|
3578
|
+
"hasDynamicHelp": false,
|
|
3579
|
+
"multiple": false,
|
|
3580
|
+
"type": "option"
|
|
3581
|
+
},
|
|
3582
|
+
"timestamps": {
|
|
3583
|
+
"char": "t",
|
|
3584
|
+
"description": "Show timestamps",
|
|
3585
|
+
"name": "timestamps",
|
|
3586
|
+
"allowNo": false,
|
|
3587
|
+
"type": "boolean"
|
|
3583
3588
|
}
|
|
3584
3589
|
},
|
|
3585
3590
|
"hasDynamicHelp": false,
|
|
3586
3591
|
"hiddenAliases": [],
|
|
3587
|
-
"id": "docker:
|
|
3592
|
+
"id": "docker:logs",
|
|
3588
3593
|
"pluginAlias": "@proletariat/cli",
|
|
3589
3594
|
"pluginName": "@proletariat/cli",
|
|
3590
3595
|
"pluginType": "core",
|
|
@@ -3595,23 +3600,18 @@
|
|
|
3595
3600
|
"dist",
|
|
3596
3601
|
"commands",
|
|
3597
3602
|
"docker",
|
|
3598
|
-
"
|
|
3603
|
+
"logs.js"
|
|
3599
3604
|
]
|
|
3600
3605
|
},
|
|
3601
|
-
"docker:
|
|
3606
|
+
"docker:prune": {
|
|
3602
3607
|
"aliases": [],
|
|
3603
|
-
"args": {
|
|
3604
|
-
|
|
3605
|
-
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3606
|
-
"name": "target",
|
|
3607
|
-
"required": true
|
|
3608
|
-
}
|
|
3609
|
-
},
|
|
3610
|
-
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
3608
|
+
"args": {},
|
|
3609
|
+
"description": "Remove unused Docker resources (containers, images, volumes, networks)",
|
|
3611
3610
|
"examples": [
|
|
3612
|
-
"<%= config.bin %> <%= command.id %>
|
|
3613
|
-
"<%= config.bin %> <%= command.id %>
|
|
3614
|
-
"<%= config.bin %> <%= command.id %>
|
|
3611
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3612
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
3613
|
+
"<%= config.bin %> <%= command.id %> --volumes",
|
|
3614
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
3615
3615
|
],
|
|
3616
3616
|
"flags": {
|
|
3617
3617
|
"force": {
|
|
@@ -3625,16 +3625,27 @@
|
|
|
3625
3625
|
"allowNo": false,
|
|
3626
3626
|
"type": "boolean"
|
|
3627
3627
|
},
|
|
3628
|
-
"
|
|
3629
|
-
"char": "
|
|
3630
|
-
"description": "
|
|
3631
|
-
"name": "
|
|
3632
|
-
"
|
|
3633
|
-
"
|
|
3634
|
-
"multiple": false,
|
|
3635
|
-
"type": "option"
|
|
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"
|
|
3636
3634
|
},
|
|
3637
|
-
"
|
|
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
|
+
"json": {
|
|
3638
3649
|
"description": "Output as JSON for AI agents/scripts",
|
|
3639
3650
|
"name": "json",
|
|
3640
3651
|
"allowNo": false,
|
|
@@ -3650,7 +3661,7 @@
|
|
|
3650
3661
|
},
|
|
3651
3662
|
"hasDynamicHelp": false,
|
|
3652
3663
|
"hiddenAliases": [],
|
|
3653
|
-
"id": "docker:
|
|
3664
|
+
"id": "docker:prune",
|
|
3654
3665
|
"pluginAlias": "@proletariat/cli",
|
|
3655
3666
|
"pluginName": "@proletariat/cli",
|
|
3656
3667
|
"pluginType": "core",
|
|
@@ -3661,17 +3672,31 @@
|
|
|
3661
3672
|
"dist",
|
|
3662
3673
|
"commands",
|
|
3663
3674
|
"docker",
|
|
3664
|
-
"
|
|
3675
|
+
"prune.js"
|
|
3665
3676
|
]
|
|
3666
3677
|
},
|
|
3667
|
-
"docker:
|
|
3678
|
+
"docker:rebuild-cache": {
|
|
3668
3679
|
"aliases": [],
|
|
3669
3680
|
"args": {},
|
|
3670
|
-
"description": "
|
|
3681
|
+
"description": "Rebuild the shared pnpm store cache volume for fast agent installs",
|
|
3671
3682
|
"examples": [
|
|
3672
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3683
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3684
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
3673
3685
|
],
|
|
3674
3686
|
"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
|
+
},
|
|
3675
3700
|
"json": {
|
|
3676
3701
|
"description": "Output as JSON for AI agents/scripts",
|
|
3677
3702
|
"name": "json",
|
|
@@ -3688,7 +3713,7 @@
|
|
|
3688
3713
|
},
|
|
3689
3714
|
"hasDynamicHelp": false,
|
|
3690
3715
|
"hiddenAliases": [],
|
|
3691
|
-
"id": "docker:
|
|
3716
|
+
"id": "docker:rebuild-cache",
|
|
3692
3717
|
"pluginAlias": "@proletariat/cli",
|
|
3693
3718
|
"pluginName": "@proletariat/cli",
|
|
3694
3719
|
"pluginType": "core",
|
|
@@ -3699,18 +3724,45 @@
|
|
|
3699
3724
|
"dist",
|
|
3700
3725
|
"commands",
|
|
3701
3726
|
"docker",
|
|
3702
|
-
"
|
|
3727
|
+
"rebuild-cache.js"
|
|
3703
3728
|
]
|
|
3704
3729
|
},
|
|
3705
|
-
"
|
|
3730
|
+
"docker:restart": {
|
|
3706
3731
|
"aliases": [],
|
|
3707
|
-
"args": {
|
|
3708
|
-
|
|
3732
|
+
"args": {
|
|
3733
|
+
"target": {
|
|
3734
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3735
|
+
"name": "target",
|
|
3736
|
+
"required": true
|
|
3737
|
+
}
|
|
3738
|
+
},
|
|
3739
|
+
"description": "Restart a container (by execution ID, agent name, or container ID)",
|
|
3709
3740
|
"examples": [
|
|
3710
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3711
|
-
"<%= config.bin %> <%= command.id %>
|
|
3741
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3742
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3743
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3712
3744
|
],
|
|
3713
3745
|
"flags": {
|
|
3746
|
+
"force": {
|
|
3747
|
+
"aliases": [
|
|
3748
|
+
"yes",
|
|
3749
|
+
"y"
|
|
3750
|
+
],
|
|
3751
|
+
"char": "f",
|
|
3752
|
+
"description": "Skip confirmation prompt",
|
|
3753
|
+
"name": "force",
|
|
3754
|
+
"allowNo": false,
|
|
3755
|
+
"type": "boolean"
|
|
3756
|
+
},
|
|
3757
|
+
"time": {
|
|
3758
|
+
"char": "t",
|
|
3759
|
+
"description": "Seconds to wait before killing the container during stop",
|
|
3760
|
+
"name": "time",
|
|
3761
|
+
"default": 10,
|
|
3762
|
+
"hasDynamicHelp": false,
|
|
3763
|
+
"multiple": false,
|
|
3764
|
+
"type": "option"
|
|
3765
|
+
},
|
|
3714
3766
|
"json": {
|
|
3715
3767
|
"description": "Output as JSON for AI agents/scripts",
|
|
3716
3768
|
"name": "json",
|
|
@@ -3723,24 +3775,11 @@
|
|
|
3723
3775
|
"name": "machine",
|
|
3724
3776
|
"allowNo": false,
|
|
3725
3777
|
"type": "boolean"
|
|
3726
|
-
},
|
|
3727
|
-
"action": {
|
|
3728
|
-
"char": "a",
|
|
3729
|
-
"description": "Action to perform (submit, list, view)",
|
|
3730
|
-
"name": "action",
|
|
3731
|
-
"hasDynamicHelp": false,
|
|
3732
|
-
"multiple": false,
|
|
3733
|
-
"options": [
|
|
3734
|
-
"submit",
|
|
3735
|
-
"list",
|
|
3736
|
-
"view"
|
|
3737
|
-
],
|
|
3738
|
-
"type": "option"
|
|
3739
3778
|
}
|
|
3740
3779
|
},
|
|
3741
3780
|
"hasDynamicHelp": false,
|
|
3742
3781
|
"hiddenAliases": [],
|
|
3743
|
-
"id": "
|
|
3782
|
+
"id": "docker:restart",
|
|
3744
3783
|
"pluginAlias": "@proletariat/cli",
|
|
3745
3784
|
"pluginName": "@proletariat/cli",
|
|
3746
3785
|
"pluginType": "core",
|
|
@@ -3750,19 +3789,24 @@
|
|
|
3750
3789
|
"relativePath": [
|
|
3751
3790
|
"dist",
|
|
3752
3791
|
"commands",
|
|
3753
|
-
"
|
|
3754
|
-
"
|
|
3792
|
+
"docker",
|
|
3793
|
+
"restart.js"
|
|
3755
3794
|
]
|
|
3756
3795
|
},
|
|
3757
|
-
"
|
|
3796
|
+
"docker:shell": {
|
|
3758
3797
|
"aliases": [],
|
|
3759
|
-
"args": {
|
|
3760
|
-
|
|
3798
|
+
"args": {
|
|
3799
|
+
"target": {
|
|
3800
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3801
|
+
"name": "target",
|
|
3802
|
+
"required": true
|
|
3803
|
+
}
|
|
3804
|
+
},
|
|
3805
|
+
"description": "Open a shell in a running container (by execution ID, agent name, or container ID)",
|
|
3761
3806
|
"examples": [
|
|
3762
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3763
|
-
"<%= config.bin %> <%= command.id %>
|
|
3764
|
-
"<%= config.bin %> <%= command.id %>
|
|
3765
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
3807
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3808
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3809
|
+
"<%= config.bin %> <%= command.id %> abc123 --shell /bin/bash"
|
|
3766
3810
|
],
|
|
3767
3811
|
"flags": {
|
|
3768
3812
|
"json": {
|
|
@@ -3778,38 +3822,27 @@
|
|
|
3778
3822
|
"allowNo": false,
|
|
3779
3823
|
"type": "boolean"
|
|
3780
3824
|
},
|
|
3781
|
-
"
|
|
3782
|
-
"char": "
|
|
3783
|
-
"description": "
|
|
3784
|
-
"name": "
|
|
3825
|
+
"shell": {
|
|
3826
|
+
"char": "s",
|
|
3827
|
+
"description": "Shell to use",
|
|
3828
|
+
"name": "shell",
|
|
3829
|
+
"default": "/bin/sh",
|
|
3785
3830
|
"hasDynamicHelp": false,
|
|
3786
3831
|
"multiple": false,
|
|
3787
|
-
"options": [
|
|
3788
|
-
"bug",
|
|
3789
|
-
"feature",
|
|
3790
|
-
"general"
|
|
3791
|
-
],
|
|
3792
3832
|
"type": "option"
|
|
3793
3833
|
},
|
|
3794
|
-
"
|
|
3795
|
-
"char": "
|
|
3796
|
-
"description": "
|
|
3797
|
-
"name": "
|
|
3798
|
-
"default": "open",
|
|
3834
|
+
"user": {
|
|
3835
|
+
"char": "u",
|
|
3836
|
+
"description": "User to run as",
|
|
3837
|
+
"name": "user",
|
|
3799
3838
|
"hasDynamicHelp": false,
|
|
3800
3839
|
"multiple": false,
|
|
3801
|
-
"options": [
|
|
3802
|
-
"open",
|
|
3803
|
-
"closed",
|
|
3804
|
-
"all"
|
|
3805
|
-
],
|
|
3806
3840
|
"type": "option"
|
|
3807
3841
|
},
|
|
3808
|
-
"
|
|
3809
|
-
"char": "
|
|
3810
|
-
"description": "
|
|
3811
|
-
"name": "
|
|
3812
|
-
"default": 20,
|
|
3842
|
+
"workdir": {
|
|
3843
|
+
"char": "w",
|
|
3844
|
+
"description": "Working directory inside the container",
|
|
3845
|
+
"name": "workdir",
|
|
3813
3846
|
"hasDynamicHelp": false,
|
|
3814
3847
|
"multiple": false,
|
|
3815
3848
|
"type": "option"
|
|
@@ -3817,7 +3850,7 @@
|
|
|
3817
3850
|
},
|
|
3818
3851
|
"hasDynamicHelp": false,
|
|
3819
3852
|
"hiddenAliases": [],
|
|
3820
|
-
"id": "
|
|
3853
|
+
"id": "docker:shell",
|
|
3821
3854
|
"pluginAlias": "@proletariat/cli",
|
|
3822
3855
|
"pluginName": "@proletariat/cli",
|
|
3823
3856
|
"pluginType": "core",
|
|
@@ -3827,18 +3860,24 @@
|
|
|
3827
3860
|
"relativePath": [
|
|
3828
3861
|
"dist",
|
|
3829
3862
|
"commands",
|
|
3830
|
-
"
|
|
3831
|
-
"
|
|
3863
|
+
"docker",
|
|
3864
|
+
"shell.js"
|
|
3832
3865
|
]
|
|
3833
3866
|
},
|
|
3834
|
-
"
|
|
3867
|
+
"docker:start": {
|
|
3835
3868
|
"aliases": [],
|
|
3836
|
-
"args": {
|
|
3837
|
-
|
|
3869
|
+
"args": {
|
|
3870
|
+
"target": {
|
|
3871
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3872
|
+
"name": "target",
|
|
3873
|
+
"required": true
|
|
3874
|
+
}
|
|
3875
|
+
},
|
|
3876
|
+
"description": "Start a stopped container (by execution ID, agent name, or container ID)",
|
|
3838
3877
|
"examples": [
|
|
3839
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3840
|
-
"<%= config.bin %> <%= command.id %>
|
|
3841
|
-
"<%= config.bin %> <%= command.id %>
|
|
3878
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3879
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3880
|
+
"<%= config.bin %> <%= command.id %> abc123"
|
|
3842
3881
|
],
|
|
3843
3882
|
"flags": {
|
|
3844
3883
|
"json": {
|
|
@@ -3854,64 +3893,36 @@
|
|
|
3854
3893
|
"allowNo": false,
|
|
3855
3894
|
"type": "boolean"
|
|
3856
3895
|
},
|
|
3857
|
-
"
|
|
3858
|
-
"char": "
|
|
3859
|
-
"description": "
|
|
3860
|
-
"name": "
|
|
3861
|
-
"
|
|
3862
|
-
"
|
|
3863
|
-
"type": "option"
|
|
3864
|
-
},
|
|
3865
|
-
"body": {
|
|
3866
|
-
"char": "b",
|
|
3867
|
-
"description": "Issue description [required for non-interactive]",
|
|
3868
|
-
"name": "body",
|
|
3869
|
-
"hasDynamicHelp": false,
|
|
3870
|
-
"multiple": false,
|
|
3871
|
-
"type": "option"
|
|
3872
|
-
},
|
|
3873
|
-
"category": {
|
|
3874
|
-
"char": "c",
|
|
3875
|
-
"description": "Feedback category",
|
|
3876
|
-
"name": "category",
|
|
3877
|
-
"hasDynamicHelp": false,
|
|
3878
|
-
"multiple": false,
|
|
3879
|
-
"options": [
|
|
3880
|
-
"bug",
|
|
3881
|
-
"feature",
|
|
3882
|
-
"general"
|
|
3883
|
-
],
|
|
3884
|
-
"type": "option"
|
|
3896
|
+
"attach": {
|
|
3897
|
+
"char": "a",
|
|
3898
|
+
"description": "Attach to container after starting",
|
|
3899
|
+
"name": "attach",
|
|
3900
|
+
"allowNo": false,
|
|
3901
|
+
"type": "boolean"
|
|
3885
3902
|
}
|
|
3886
3903
|
},
|
|
3887
3904
|
"hasDynamicHelp": false,
|
|
3888
3905
|
"hiddenAliases": [],
|
|
3889
|
-
"id": "
|
|
3906
|
+
"id": "docker:start",
|
|
3890
3907
|
"pluginAlias": "@proletariat/cli",
|
|
3891
3908
|
"pluginName": "@proletariat/cli",
|
|
3892
3909
|
"pluginType": "core",
|
|
3893
3910
|
"strict": true,
|
|
3911
|
+
"enableJsonFlag": false,
|
|
3894
3912
|
"isESM": true,
|
|
3895
3913
|
"relativePath": [
|
|
3896
3914
|
"dist",
|
|
3897
3915
|
"commands",
|
|
3898
|
-
"
|
|
3899
|
-
"
|
|
3916
|
+
"docker",
|
|
3917
|
+
"start.js"
|
|
3900
3918
|
]
|
|
3901
3919
|
},
|
|
3902
|
-
"
|
|
3920
|
+
"docker:status": {
|
|
3903
3921
|
"aliases": [],
|
|
3904
|
-
"args": {
|
|
3905
|
-
|
|
3906
|
-
"description": "Issue number to view",
|
|
3907
|
-
"name": "number",
|
|
3908
|
-
"required": true
|
|
3909
|
-
}
|
|
3910
|
-
},
|
|
3911
|
-
"description": "View details of a specific feedback issue",
|
|
3922
|
+
"args": {},
|
|
3923
|
+
"description": "Check if Docker daemon is running",
|
|
3912
3924
|
"examples": [
|
|
3913
|
-
"<%= config.bin %> <%= command.id %>
|
|
3914
|
-
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
3925
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3915
3926
|
],
|
|
3916
3927
|
"flags": {
|
|
3917
3928
|
"json": {
|
|
@@ -3930,7 +3941,7 @@
|
|
|
3930
3941
|
},
|
|
3931
3942
|
"hasDynamicHelp": false,
|
|
3932
3943
|
"hiddenAliases": [],
|
|
3933
|
-
"id": "
|
|
3944
|
+
"id": "docker:status",
|
|
3934
3945
|
"pluginAlias": "@proletariat/cli",
|
|
3935
3946
|
"pluginName": "@proletariat/cli",
|
|
3936
3947
|
"pluginType": "core",
|
|
@@ -3940,24 +3951,46 @@
|
|
|
3940
3951
|
"relativePath": [
|
|
3941
3952
|
"dist",
|
|
3942
3953
|
"commands",
|
|
3943
|
-
"
|
|
3944
|
-
"
|
|
3954
|
+
"docker",
|
|
3955
|
+
"status.js"
|
|
3945
3956
|
]
|
|
3946
3957
|
},
|
|
3947
|
-
"
|
|
3958
|
+
"docker:stop": {
|
|
3948
3959
|
"aliases": [],
|
|
3949
|
-
"args": {
|
|
3950
|
-
|
|
3960
|
+
"args": {
|
|
3961
|
+
"target": {
|
|
3962
|
+
"description": "Execution ID (WORK-XXX), agent name, or container ID",
|
|
3963
|
+
"name": "target",
|
|
3964
|
+
"required": true
|
|
3965
|
+
}
|
|
3966
|
+
},
|
|
3967
|
+
"description": "Stop a running container (by execution ID, agent name, or container ID)",
|
|
3951
3968
|
"examples": [
|
|
3952
|
-
"<%= config.bin %>
|
|
3953
|
-
"<%= config.bin %>
|
|
3954
|
-
"<%= config.bin %>
|
|
3955
|
-
"<%= config.bin %> execution config --set defaultEnvironment host",
|
|
3956
|
-
"<%= config.bin %> execution config --set outputMode interactive",
|
|
3957
|
-
"<%= config.bin %> execution config --set permissionMode safe",
|
|
3958
|
-
"<%= config.bin %> execution config --setting outputMode --json # Show output mode choices"
|
|
3969
|
+
"<%= config.bin %> <%= command.id %> WORK-001",
|
|
3970
|
+
"<%= config.bin %> <%= command.id %> kalanick",
|
|
3971
|
+
"<%= config.bin %> <%= command.id %> abc123 --force"
|
|
3959
3972
|
],
|
|
3960
3973
|
"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
|
+
},
|
|
3961
3994
|
"json": {
|
|
3962
3995
|
"description": "Output as JSON for AI agents/scripts",
|
|
3963
3996
|
"name": "json",
|
|
@@ -3970,54 +4003,30 @@
|
|
|
3970
4003
|
"name": "machine",
|
|
3971
4004
|
"allowNo": false,
|
|
3972
4005
|
"type": "boolean"
|
|
3973
|
-
},
|
|
3974
|
-
"set": {
|
|
3975
|
-
"char": "s",
|
|
3976
|
-
"description": "Set a config value (format: key value)",
|
|
3977
|
-
"name": "set",
|
|
3978
|
-
"hasDynamicHelp": false,
|
|
3979
|
-
"multiple": true,
|
|
3980
|
-
"type": "option"
|
|
3981
|
-
},
|
|
3982
|
-
"list": {
|
|
3983
|
-
"char": "l",
|
|
3984
|
-
"description": "List all configuration values",
|
|
3985
|
-
"name": "list",
|
|
3986
|
-
"allowNo": false,
|
|
3987
|
-
"type": "boolean"
|
|
3988
|
-
},
|
|
3989
|
-
"setting": {
|
|
3990
|
-
"description": "Navigate to a specific setting prompt (for agent navigation)",
|
|
3991
|
-
"name": "setting",
|
|
3992
|
-
"hasDynamicHelp": false,
|
|
3993
|
-
"multiple": false,
|
|
3994
|
-
"type": "option"
|
|
3995
4006
|
}
|
|
3996
4007
|
},
|
|
3997
4008
|
"hasDynamicHelp": false,
|
|
3998
4009
|
"hiddenAliases": [],
|
|
3999
|
-
"id": "
|
|
4010
|
+
"id": "docker:stop",
|
|
4000
4011
|
"pluginAlias": "@proletariat/cli",
|
|
4001
4012
|
"pluginName": "@proletariat/cli",
|
|
4002
4013
|
"pluginType": "core",
|
|
4003
4014
|
"strict": true,
|
|
4015
|
+
"enableJsonFlag": false,
|
|
4004
4016
|
"isESM": true,
|
|
4005
4017
|
"relativePath": [
|
|
4006
4018
|
"dist",
|
|
4007
4019
|
"commands",
|
|
4008
|
-
"
|
|
4009
|
-
"
|
|
4020
|
+
"docker",
|
|
4021
|
+
"stop.js"
|
|
4010
4022
|
]
|
|
4011
4023
|
},
|
|
4012
|
-
"
|
|
4024
|
+
"docker:sync": {
|
|
4013
4025
|
"aliases": [],
|
|
4014
4026
|
"args": {},
|
|
4015
|
-
"description": "
|
|
4027
|
+
"description": "Sync container status from Docker into the database",
|
|
4016
4028
|
"examples": [
|
|
4017
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4018
|
-
"<%= config.bin %> <%= command.id %> view WORK-001",
|
|
4019
|
-
"<%= config.bin %> <%= command.id %> logs WORK-001",
|
|
4020
|
-
"<%= config.bin %> <%= command.id %> stop WORK-001"
|
|
4029
|
+
"<%= config.bin %> <%= command.id %>"
|
|
4021
4030
|
],
|
|
4022
4031
|
"flags": {
|
|
4023
4032
|
"json": {
|
|
@@ -4036,28 +4045,27 @@
|
|
|
4036
4045
|
},
|
|
4037
4046
|
"hasDynamicHelp": false,
|
|
4038
4047
|
"hiddenAliases": [],
|
|
4039
|
-
"id": "
|
|
4048
|
+
"id": "docker:sync",
|
|
4040
4049
|
"pluginAlias": "@proletariat/cli",
|
|
4041
4050
|
"pluginName": "@proletariat/cli",
|
|
4042
4051
|
"pluginType": "core",
|
|
4043
4052
|
"strict": true,
|
|
4053
|
+
"enableJsonFlag": false,
|
|
4044
4054
|
"isESM": true,
|
|
4045
4055
|
"relativePath": [
|
|
4046
4056
|
"dist",
|
|
4047
4057
|
"commands",
|
|
4048
|
-
"
|
|
4049
|
-
"
|
|
4058
|
+
"docker",
|
|
4059
|
+
"sync.js"
|
|
4050
4060
|
]
|
|
4051
4061
|
},
|
|
4052
|
-
"
|
|
4062
|
+
"feedback": {
|
|
4053
4063
|
"aliases": [],
|
|
4054
4064
|
"args": {},
|
|
4055
|
-
"description": "
|
|
4065
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
4056
4066
|
"examples": [
|
|
4057
4067
|
"<%= config.bin %> <%= command.id %>",
|
|
4058
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4059
|
-
"<%= config.bin %> <%= command.id %> --agent alice",
|
|
4060
|
-
"<%= config.bin %> <%= command.id %> --limit 50"
|
|
4068
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
4061
4069
|
],
|
|
4062
4070
|
"flags": {
|
|
4063
4071
|
"json": {
|
|
@@ -4073,69 +4081,45 @@
|
|
|
4073
4081
|
"allowNo": false,
|
|
4074
4082
|
"type": "boolean"
|
|
4075
4083
|
},
|
|
4076
|
-
"
|
|
4077
|
-
"char": "
|
|
4078
|
-
"description": "
|
|
4079
|
-
"name": "
|
|
4084
|
+
"action": {
|
|
4085
|
+
"char": "a",
|
|
4086
|
+
"description": "Action to perform (submit, list, view)",
|
|
4087
|
+
"name": "action",
|
|
4080
4088
|
"hasDynamicHelp": false,
|
|
4081
4089
|
"multiple": false,
|
|
4082
4090
|
"options": [
|
|
4083
|
-
"
|
|
4084
|
-
"
|
|
4085
|
-
"
|
|
4086
|
-
"failed",
|
|
4087
|
-
"stopped"
|
|
4091
|
+
"submit",
|
|
4092
|
+
"list",
|
|
4093
|
+
"view"
|
|
4088
4094
|
],
|
|
4089
4095
|
"type": "option"
|
|
4090
|
-
},
|
|
4091
|
-
"agent": {
|
|
4092
|
-
"char": "a",
|
|
4093
|
-
"description": "Filter by agent name",
|
|
4094
|
-
"name": "agent",
|
|
4095
|
-
"hasDynamicHelp": false,
|
|
4096
|
-
"multiple": false,
|
|
4097
|
-
"type": "option"
|
|
4098
|
-
},
|
|
4099
|
-
"limit": {
|
|
4100
|
-
"char": "l",
|
|
4101
|
-
"description": "Number of results",
|
|
4102
|
-
"name": "limit",
|
|
4103
|
-
"default": 20,
|
|
4104
|
-
"hasDynamicHelp": false,
|
|
4105
|
-
"multiple": false,
|
|
4106
|
-
"type": "option"
|
|
4107
4096
|
}
|
|
4108
4097
|
},
|
|
4109
4098
|
"hasDynamicHelp": false,
|
|
4110
4099
|
"hiddenAliases": [],
|
|
4111
|
-
"id": "
|
|
4100
|
+
"id": "feedback",
|
|
4112
4101
|
"pluginAlias": "@proletariat/cli",
|
|
4113
4102
|
"pluginName": "@proletariat/cli",
|
|
4114
4103
|
"pluginType": "core",
|
|
4115
4104
|
"strict": true,
|
|
4105
|
+
"enableJsonFlag": false,
|
|
4116
4106
|
"isESM": true,
|
|
4117
4107
|
"relativePath": [
|
|
4118
4108
|
"dist",
|
|
4119
4109
|
"commands",
|
|
4120
|
-
"
|
|
4121
|
-
"
|
|
4110
|
+
"feedback",
|
|
4111
|
+
"index.js"
|
|
4122
4112
|
]
|
|
4123
4113
|
},
|
|
4124
|
-
"
|
|
4114
|
+
"feedback:list": {
|
|
4125
4115
|
"aliases": [],
|
|
4126
|
-
"args": {
|
|
4127
|
-
|
|
4128
|
-
"description": "Execution ID - prompts if not provided",
|
|
4129
|
-
"name": "id",
|
|
4130
|
-
"required": false
|
|
4131
|
-
}
|
|
4132
|
-
},
|
|
4133
|
-
"description": "View execution logs",
|
|
4116
|
+
"args": {},
|
|
4117
|
+
"description": "List recent feedback issues from the repository",
|
|
4134
4118
|
"examples": [
|
|
4135
|
-
"<%= config.bin %> <%= command.id %>
|
|
4136
|
-
"<%= config.bin %> <%= command.id %>
|
|
4137
|
-
"<%= config.bin %> <%= command.id %>
|
|
4138
|
-
"<%= config.bin %> <%= command.id %>
|
|
4119
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4120
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
4121
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
4122
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4139
4123
|
],
|
|
4140
4124
|
"flags": {
|
|
4141
4125
|
"json": {
|
|
@@ -4151,17 +4135,38 @@
|
|
|
4151
4135
|
"allowNo": false,
|
|
4152
4136
|
"type": "boolean"
|
|
4153
4137
|
},
|
|
4154
|
-
"
|
|
4155
|
-
"char": "
|
|
4156
|
-
"description": "
|
|
4157
|
-
"name": "
|
|
4158
|
-
"
|
|
4159
|
-
"
|
|
4138
|
+
"category": {
|
|
4139
|
+
"char": "c",
|
|
4140
|
+
"description": "Filter by category (bug, feature, general)",
|
|
4141
|
+
"name": "category",
|
|
4142
|
+
"hasDynamicHelp": false,
|
|
4143
|
+
"multiple": false,
|
|
4144
|
+
"options": [
|
|
4145
|
+
"bug",
|
|
4146
|
+
"feature",
|
|
4147
|
+
"general"
|
|
4148
|
+
],
|
|
4149
|
+
"type": "option"
|
|
4160
4150
|
},
|
|
4161
|
-
"
|
|
4162
|
-
"char": "
|
|
4163
|
-
"description": "
|
|
4164
|
-
"name": "
|
|
4151
|
+
"state": {
|
|
4152
|
+
"char": "s",
|
|
4153
|
+
"description": "Filter by state",
|
|
4154
|
+
"name": "state",
|
|
4155
|
+
"default": "open",
|
|
4156
|
+
"hasDynamicHelp": false,
|
|
4157
|
+
"multiple": false,
|
|
4158
|
+
"options": [
|
|
4159
|
+
"open",
|
|
4160
|
+
"closed",
|
|
4161
|
+
"all"
|
|
4162
|
+
],
|
|
4163
|
+
"type": "option"
|
|
4164
|
+
},
|
|
4165
|
+
"limit": {
|
|
4166
|
+
"char": "l",
|
|
4167
|
+
"description": "Maximum number of issues to show",
|
|
4168
|
+
"name": "limit",
|
|
4169
|
+
"default": 20,
|
|
4165
4170
|
"hasDynamicHelp": false,
|
|
4166
4171
|
"multiple": false,
|
|
4167
4172
|
"type": "option"
|
|
@@ -4169,36 +4174,28 @@
|
|
|
4169
4174
|
},
|
|
4170
4175
|
"hasDynamicHelp": false,
|
|
4171
4176
|
"hiddenAliases": [],
|
|
4172
|
-
"id": "
|
|
4177
|
+
"id": "feedback:list",
|
|
4173
4178
|
"pluginAlias": "@proletariat/cli",
|
|
4174
4179
|
"pluginName": "@proletariat/cli",
|
|
4175
4180
|
"pluginType": "core",
|
|
4176
4181
|
"strict": true,
|
|
4182
|
+
"enableJsonFlag": false,
|
|
4177
4183
|
"isESM": true,
|
|
4178
4184
|
"relativePath": [
|
|
4179
4185
|
"dist",
|
|
4180
4186
|
"commands",
|
|
4181
|
-
"
|
|
4182
|
-
"
|
|
4187
|
+
"feedback",
|
|
4188
|
+
"list.js"
|
|
4183
4189
|
]
|
|
4184
4190
|
},
|
|
4185
|
-
"
|
|
4191
|
+
"feedback:submit": {
|
|
4186
4192
|
"aliases": [],
|
|
4187
|
-
"args": {
|
|
4188
|
-
|
|
4189
|
-
"description": "Execution ID - prompts if not provided (ignored if --all or --agent used)",
|
|
4190
|
-
"name": "id",
|
|
4191
|
-
"required": false
|
|
4192
|
-
}
|
|
4193
|
-
},
|
|
4194
|
-
"description": "Stop running execution(s)",
|
|
4193
|
+
"args": {},
|
|
4194
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
4195
4195
|
"examples": [
|
|
4196
|
-
"<%= config.bin %> <%= command.id %>
|
|
4197
|
-
"<%= config.bin %> <%= command.id %>
|
|
4198
|
-
"<%= config.bin %> <%= command.id %>
|
|
4199
|
-
"<%= config.bin %> <%= command.id %> --all",
|
|
4200
|
-
"<%= config.bin %> <%= command.id %> --all --force",
|
|
4201
|
-
"<%= config.bin %> <%= command.id %> --agent altman"
|
|
4196
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4197
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
4198
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4202
4199
|
],
|
|
4203
4200
|
"flags": {
|
|
4204
4201
|
"json": {
|
|
@@ -4214,31 +4211,39 @@
|
|
|
4214
4211
|
"allowNo": false,
|
|
4215
4212
|
"type": "boolean"
|
|
4216
4213
|
},
|
|
4217
|
-
"
|
|
4218
|
-
"char": "
|
|
4219
|
-
"description": "
|
|
4220
|
-
"name": "
|
|
4221
|
-
"
|
|
4222
|
-
"
|
|
4214
|
+
"title": {
|
|
4215
|
+
"char": "t",
|
|
4216
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
4217
|
+
"name": "title",
|
|
4218
|
+
"hasDynamicHelp": false,
|
|
4219
|
+
"multiple": false,
|
|
4220
|
+
"type": "option"
|
|
4223
4221
|
},
|
|
4224
|
-
"
|
|
4225
|
-
"
|
|
4226
|
-
"
|
|
4227
|
-
"
|
|
4228
|
-
"
|
|
4222
|
+
"body": {
|
|
4223
|
+
"char": "b",
|
|
4224
|
+
"description": "Issue description [required for non-interactive]",
|
|
4225
|
+
"name": "body",
|
|
4226
|
+
"hasDynamicHelp": false,
|
|
4227
|
+
"multiple": false,
|
|
4228
|
+
"type": "option"
|
|
4229
4229
|
},
|
|
4230
|
-
"
|
|
4231
|
-
"char": "
|
|
4232
|
-
"description": "
|
|
4233
|
-
"name": "
|
|
4230
|
+
"category": {
|
|
4231
|
+
"char": "c",
|
|
4232
|
+
"description": "Feedback category",
|
|
4233
|
+
"name": "category",
|
|
4234
4234
|
"hasDynamicHelp": false,
|
|
4235
4235
|
"multiple": false,
|
|
4236
|
+
"options": [
|
|
4237
|
+
"bug",
|
|
4238
|
+
"feature",
|
|
4239
|
+
"general"
|
|
4240
|
+
],
|
|
4236
4241
|
"type": "option"
|
|
4237
4242
|
}
|
|
4238
4243
|
},
|
|
4239
4244
|
"hasDynamicHelp": false,
|
|
4240
4245
|
"hiddenAliases": [],
|
|
4241
|
-
"id": "
|
|
4246
|
+
"id": "feedback:submit",
|
|
4242
4247
|
"pluginAlias": "@proletariat/cli",
|
|
4243
4248
|
"pluginName": "@proletariat/cli",
|
|
4244
4249
|
"pluginType": "core",
|
|
@@ -4247,23 +4252,23 @@
|
|
|
4247
4252
|
"relativePath": [
|
|
4248
4253
|
"dist",
|
|
4249
4254
|
"commands",
|
|
4250
|
-
"
|
|
4251
|
-
"
|
|
4255
|
+
"feedback",
|
|
4256
|
+
"submit.js"
|
|
4252
4257
|
]
|
|
4253
4258
|
},
|
|
4254
|
-
"
|
|
4259
|
+
"feedback:view": {
|
|
4255
4260
|
"aliases": [],
|
|
4256
4261
|
"args": {
|
|
4257
|
-
"
|
|
4258
|
-
"description": "
|
|
4259
|
-
"name": "
|
|
4260
|
-
"required":
|
|
4262
|
+
"number": {
|
|
4263
|
+
"description": "Issue number to view",
|
|
4264
|
+
"name": "number",
|
|
4265
|
+
"required": true
|
|
4261
4266
|
}
|
|
4262
4267
|
},
|
|
4263
|
-
"description": "View details of a specific
|
|
4268
|
+
"description": "View details of a specific feedback issue",
|
|
4264
4269
|
"examples": [
|
|
4265
|
-
"<%= config.bin %> <%= command.id %>
|
|
4266
|
-
"<%= config.bin %> <%= command.id %>
|
|
4270
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
4271
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
4267
4272
|
],
|
|
4268
4273
|
"flags": {
|
|
4269
4274
|
"json": {
|
|
@@ -4282,16 +4287,17 @@
|
|
|
4282
4287
|
},
|
|
4283
4288
|
"hasDynamicHelp": false,
|
|
4284
4289
|
"hiddenAliases": [],
|
|
4285
|
-
"id": "
|
|
4290
|
+
"id": "feedback:view",
|
|
4286
4291
|
"pluginAlias": "@proletariat/cli",
|
|
4287
4292
|
"pluginName": "@proletariat/cli",
|
|
4288
4293
|
"pluginType": "core",
|
|
4289
4294
|
"strict": true,
|
|
4295
|
+
"enableJsonFlag": false,
|
|
4290
4296
|
"isESM": true,
|
|
4291
4297
|
"relativePath": [
|
|
4292
4298
|
"dist",
|
|
4293
4299
|
"commands",
|
|
4294
|
-
"
|
|
4300
|
+
"feedback",
|
|
4295
4301
|
"view.js"
|
|
4296
4302
|
]
|
|
4297
4303
|
},
|
|
@@ -5206,22 +5212,313 @@
|
|
|
5206
5212
|
"allowNo": false,
|
|
5207
5213
|
"type": "boolean"
|
|
5208
5214
|
},
|
|
5209
|
-
"force": {
|
|
5210
|
-
"description": "Force re-authentication even if already configured",
|
|
5211
|
-
"name": "force",
|
|
5215
|
+
"force": {
|
|
5216
|
+
"description": "Force re-authentication even if already configured",
|
|
5217
|
+
"name": "force",
|
|
5218
|
+
"allowNo": false,
|
|
5219
|
+
"type": "boolean"
|
|
5220
|
+
},
|
|
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
|
+
"notify:connect": {
|
|
5304
|
+
"aliases": [],
|
|
5305
|
+
"args": {
|
|
5306
|
+
"type": {
|
|
5307
|
+
"description": "Provider type",
|
|
5308
|
+
"name": "type",
|
|
5309
|
+
"options": [
|
|
5310
|
+
"slack",
|
|
5311
|
+
"email",
|
|
5312
|
+
"sms",
|
|
5313
|
+
"terminal",
|
|
5314
|
+
"browser_push"
|
|
5315
|
+
],
|
|
5316
|
+
"required": true
|
|
5317
|
+
}
|
|
5318
|
+
},
|
|
5319
|
+
"description": "Connect a notification provider (Slack, Email, SMS, etc.)",
|
|
5320
|
+
"examples": [
|
|
5321
|
+
"<%= config.bin %> notify connect slack --webhook-url https://hooks.slack.com/...",
|
|
5322
|
+
"<%= config.bin %> notify connect email --provider sendgrid --api-key sk-... --from alerts@co.com --to team@co.com",
|
|
5323
|
+
"<%= config.bin %> notify connect sms --account-sid AC... --auth-token ... --from +1234567890 --to +0987654321",
|
|
5324
|
+
"<%= config.bin %> notify connect terminal",
|
|
5325
|
+
"<%= config.bin %> notify connect slack --name my-slack --webhook-url https://..."
|
|
5326
|
+
],
|
|
5327
|
+
"flags": {
|
|
5328
|
+
"json": {
|
|
5329
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5330
|
+
"name": "json",
|
|
5331
|
+
"allowNo": false,
|
|
5332
|
+
"type": "boolean"
|
|
5333
|
+
},
|
|
5334
|
+
"machine": {
|
|
5335
|
+
"char": "m",
|
|
5336
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5337
|
+
"name": "machine",
|
|
5338
|
+
"allowNo": false,
|
|
5339
|
+
"type": "boolean"
|
|
5340
|
+
},
|
|
5341
|
+
"name": {
|
|
5342
|
+
"description": "Provider name (defaults to type)",
|
|
5343
|
+
"name": "name",
|
|
5344
|
+
"hasDynamicHelp": false,
|
|
5345
|
+
"multiple": false,
|
|
5346
|
+
"type": "option"
|
|
5347
|
+
},
|
|
5348
|
+
"webhook-url": {
|
|
5349
|
+
"description": "Slack webhook URL",
|
|
5350
|
+
"name": "webhook-url",
|
|
5351
|
+
"hasDynamicHelp": false,
|
|
5352
|
+
"multiple": false,
|
|
5353
|
+
"type": "option"
|
|
5354
|
+
},
|
|
5355
|
+
"channel": {
|
|
5356
|
+
"description": "Slack channel override",
|
|
5357
|
+
"name": "channel",
|
|
5358
|
+
"hasDynamicHelp": false,
|
|
5359
|
+
"multiple": false,
|
|
5360
|
+
"type": "option"
|
|
5361
|
+
},
|
|
5362
|
+
"username": {
|
|
5363
|
+
"description": "Slack username override",
|
|
5364
|
+
"name": "username",
|
|
5365
|
+
"hasDynamicHelp": false,
|
|
5366
|
+
"multiple": false,
|
|
5367
|
+
"type": "option"
|
|
5368
|
+
},
|
|
5369
|
+
"provider": {
|
|
5370
|
+
"description": "Email provider (sendgrid or ses)",
|
|
5371
|
+
"name": "provider",
|
|
5372
|
+
"hasDynamicHelp": false,
|
|
5373
|
+
"multiple": false,
|
|
5374
|
+
"options": [
|
|
5375
|
+
"sendgrid",
|
|
5376
|
+
"ses"
|
|
5377
|
+
],
|
|
5378
|
+
"type": "option"
|
|
5379
|
+
},
|
|
5380
|
+
"api-key": {
|
|
5381
|
+
"description": "API key for email/SMS provider",
|
|
5382
|
+
"name": "api-key",
|
|
5383
|
+
"hasDynamicHelp": false,
|
|
5384
|
+
"multiple": false,
|
|
5385
|
+
"type": "option"
|
|
5386
|
+
},
|
|
5387
|
+
"from": {
|
|
5388
|
+
"description": "Sender address (email or phone)",
|
|
5389
|
+
"name": "from",
|
|
5390
|
+
"hasDynamicHelp": false,
|
|
5391
|
+
"multiple": false,
|
|
5392
|
+
"type": "option"
|
|
5393
|
+
},
|
|
5394
|
+
"to": {
|
|
5395
|
+
"description": "Recipient(s), comma-separated",
|
|
5396
|
+
"name": "to",
|
|
5397
|
+
"hasDynamicHelp": false,
|
|
5398
|
+
"multiple": true,
|
|
5399
|
+
"type": "option"
|
|
5400
|
+
},
|
|
5401
|
+
"account-sid": {
|
|
5402
|
+
"description": "Twilio account SID",
|
|
5403
|
+
"name": "account-sid",
|
|
5404
|
+
"hasDynamicHelp": false,
|
|
5405
|
+
"multiple": false,
|
|
5406
|
+
"type": "option"
|
|
5407
|
+
},
|
|
5408
|
+
"auth-token": {
|
|
5409
|
+
"description": "Twilio auth token",
|
|
5410
|
+
"name": "auth-token",
|
|
5411
|
+
"hasDynamicHelp": false,
|
|
5412
|
+
"multiple": false,
|
|
5413
|
+
"type": "option"
|
|
5414
|
+
}
|
|
5415
|
+
},
|
|
5416
|
+
"hasDynamicHelp": false,
|
|
5417
|
+
"hiddenAliases": [],
|
|
5418
|
+
"id": "notify:connect",
|
|
5419
|
+
"pluginAlias": "@proletariat/cli",
|
|
5420
|
+
"pluginName": "@proletariat/cli",
|
|
5421
|
+
"pluginType": "core",
|
|
5422
|
+
"strict": true,
|
|
5423
|
+
"isESM": true,
|
|
5424
|
+
"relativePath": [
|
|
5425
|
+
"dist",
|
|
5426
|
+
"commands",
|
|
5427
|
+
"notify",
|
|
5428
|
+
"connect.js"
|
|
5429
|
+
]
|
|
5430
|
+
},
|
|
5431
|
+
"notify:disconnect": {
|
|
5432
|
+
"aliases": [],
|
|
5433
|
+
"args": {
|
|
5434
|
+
"name": {
|
|
5435
|
+
"description": "Provider name to disconnect",
|
|
5436
|
+
"name": "name",
|
|
5437
|
+
"required": true
|
|
5438
|
+
}
|
|
5439
|
+
},
|
|
5440
|
+
"description": "Remove a notification provider",
|
|
5441
|
+
"examples": [
|
|
5442
|
+
"<%= config.bin %> notify disconnect slack",
|
|
5443
|
+
"<%= config.bin %> notify disconnect my-slack"
|
|
5444
|
+
],
|
|
5445
|
+
"flags": {
|
|
5446
|
+
"json": {
|
|
5447
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5448
|
+
"name": "json",
|
|
5449
|
+
"allowNo": false,
|
|
5450
|
+
"type": "boolean"
|
|
5451
|
+
},
|
|
5452
|
+
"machine": {
|
|
5453
|
+
"char": "m",
|
|
5454
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5455
|
+
"name": "machine",
|
|
5456
|
+
"allowNo": false,
|
|
5457
|
+
"type": "boolean"
|
|
5458
|
+
}
|
|
5459
|
+
},
|
|
5460
|
+
"hasDynamicHelp": false,
|
|
5461
|
+
"hiddenAliases": [],
|
|
5462
|
+
"id": "notify:disconnect",
|
|
5463
|
+
"pluginAlias": "@proletariat/cli",
|
|
5464
|
+
"pluginName": "@proletariat/cli",
|
|
5465
|
+
"pluginType": "core",
|
|
5466
|
+
"strict": true,
|
|
5467
|
+
"isESM": true,
|
|
5468
|
+
"relativePath": [
|
|
5469
|
+
"dist",
|
|
5470
|
+
"commands",
|
|
5471
|
+
"notify",
|
|
5472
|
+
"disconnect.js"
|
|
5473
|
+
]
|
|
5474
|
+
},
|
|
5475
|
+
"notify:list": {
|
|
5476
|
+
"aliases": [],
|
|
5477
|
+
"args": {},
|
|
5478
|
+
"description": "List configured notification providers and rules",
|
|
5479
|
+
"examples": [
|
|
5480
|
+
"<%= config.bin %> notify list",
|
|
5481
|
+
"<%= config.bin %> notify list --rules",
|
|
5482
|
+
"<%= config.bin %> notify list --type slack"
|
|
5483
|
+
],
|
|
5484
|
+
"flags": {
|
|
5485
|
+
"json": {
|
|
5486
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5487
|
+
"name": "json",
|
|
5488
|
+
"allowNo": false,
|
|
5489
|
+
"type": "boolean"
|
|
5490
|
+
},
|
|
5491
|
+
"machine": {
|
|
5492
|
+
"char": "m",
|
|
5493
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5494
|
+
"name": "machine",
|
|
5212
5495
|
"allowNo": false,
|
|
5213
5496
|
"type": "boolean"
|
|
5214
5497
|
},
|
|
5215
|
-
"
|
|
5216
|
-
"description": "
|
|
5217
|
-
"name": "
|
|
5498
|
+
"type": {
|
|
5499
|
+
"description": "Filter providers by type",
|
|
5500
|
+
"name": "type",
|
|
5501
|
+
"hasDynamicHelp": false,
|
|
5502
|
+
"multiple": false,
|
|
5503
|
+
"options": [
|
|
5504
|
+
"slack",
|
|
5505
|
+
"email",
|
|
5506
|
+
"sms",
|
|
5507
|
+
"terminal",
|
|
5508
|
+
"browser_push"
|
|
5509
|
+
],
|
|
5510
|
+
"type": "option"
|
|
5511
|
+
},
|
|
5512
|
+
"rules": {
|
|
5513
|
+
"description": "Also show notification rules",
|
|
5514
|
+
"name": "rules",
|
|
5218
5515
|
"allowNo": false,
|
|
5219
5516
|
"type": "boolean"
|
|
5220
5517
|
}
|
|
5221
5518
|
},
|
|
5222
5519
|
"hasDynamicHelp": false,
|
|
5223
5520
|
"hiddenAliases": [],
|
|
5224
|
-
"id": "
|
|
5521
|
+
"id": "notify:list",
|
|
5225
5522
|
"pluginAlias": "@proletariat/cli",
|
|
5226
5523
|
"pluginName": "@proletariat/cli",
|
|
5227
5524
|
"pluginType": "core",
|
|
@@ -5230,28 +5527,25 @@
|
|
|
5230
5527
|
"relativePath": [
|
|
5231
5528
|
"dist",
|
|
5232
5529
|
"commands",
|
|
5233
|
-
"
|
|
5234
|
-
"
|
|
5530
|
+
"notify",
|
|
5531
|
+
"list.js"
|
|
5235
5532
|
]
|
|
5236
5533
|
},
|
|
5237
|
-
"
|
|
5534
|
+
"notify:test": {
|
|
5238
5535
|
"aliases": [],
|
|
5239
|
-
"args": {
|
|
5240
|
-
|
|
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",
|
|
5241
5544
|
"examples": [
|
|
5242
|
-
"<%= config.bin %>
|
|
5243
|
-
"<%= config.bin %>
|
|
5244
|
-
"<%= config.bin %> <%= command.id %> --dry-run # Preview sync operations"
|
|
5545
|
+
"<%= config.bin %> notify test slack",
|
|
5546
|
+
"<%= config.bin %> notify test my-email"
|
|
5245
5547
|
],
|
|
5246
5548
|
"flags": {
|
|
5247
|
-
"project": {
|
|
5248
|
-
"char": "P",
|
|
5249
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5250
|
-
"name": "project",
|
|
5251
|
-
"hasDynamicHelp": false,
|
|
5252
|
-
"multiple": false,
|
|
5253
|
-
"type": "option"
|
|
5254
|
-
},
|
|
5255
5549
|
"json": {
|
|
5256
5550
|
"description": "Output as JSON for AI agents/scripts",
|
|
5257
5551
|
"name": "json",
|
|
@@ -5264,24 +5558,11 @@
|
|
|
5264
5558
|
"name": "machine",
|
|
5265
5559
|
"allowNo": false,
|
|
5266
5560
|
"type": "boolean"
|
|
5267
|
-
},
|
|
5268
|
-
"ticket": {
|
|
5269
|
-
"description": "PMO ticket ID to sync",
|
|
5270
|
-
"name": "ticket",
|
|
5271
|
-
"hasDynamicHelp": false,
|
|
5272
|
-
"multiple": false,
|
|
5273
|
-
"type": "option"
|
|
5274
|
-
},
|
|
5275
|
-
"dry-run": {
|
|
5276
|
-
"description": "Preview what would be synced without writing to Monday",
|
|
5277
|
-
"name": "dry-run",
|
|
5278
|
-
"allowNo": false,
|
|
5279
|
-
"type": "boolean"
|
|
5280
5561
|
}
|
|
5281
5562
|
},
|
|
5282
5563
|
"hasDynamicHelp": false,
|
|
5283
5564
|
"hiddenAliases": [],
|
|
5284
|
-
"id": "
|
|
5565
|
+
"id": "notify:test",
|
|
5285
5566
|
"pluginAlias": "@proletariat/cli",
|
|
5286
5567
|
"pluginName": "@proletariat/cli",
|
|
5287
5568
|
"pluginType": "core",
|
|
@@ -5290,8 +5571,8 @@
|
|
|
5290
5571
|
"relativePath": [
|
|
5291
5572
|
"dist",
|
|
5292
5573
|
"commands",
|
|
5293
|
-
"
|
|
5294
|
-
"
|
|
5574
|
+
"notify",
|
|
5575
|
+
"test.js"
|
|
5295
5576
|
]
|
|
5296
5577
|
},
|
|
5297
5578
|
"orchestrate": {
|
|
@@ -5404,6 +5685,95 @@
|
|
|
5404
5685
|
"index.js"
|
|
5405
5686
|
]
|
|
5406
5687
|
},
|
|
5688
|
+
"orchestrate:machine": {
|
|
5689
|
+
"aliases": [],
|
|
5690
|
+
"args": {},
|
|
5691
|
+
"description": "Start the machine-level orchestrator — root supervisor for all agents across all repos",
|
|
5692
|
+
"examples": [
|
|
5693
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5694
|
+
"<%= config.bin %> <%= command.id %> --prompt \"restart died agents, then assess all repos\"",
|
|
5695
|
+
"<%= config.bin %> <%= command.id %> --name supervisor",
|
|
5696
|
+
"<%= config.bin %> <%= command.id %> --background"
|
|
5697
|
+
],
|
|
5698
|
+
"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
|
+
"json": {
|
|
5749
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5750
|
+
"name": "json",
|
|
5751
|
+
"allowNo": false,
|
|
5752
|
+
"type": "boolean"
|
|
5753
|
+
},
|
|
5754
|
+
"machine": {
|
|
5755
|
+
"char": "m",
|
|
5756
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5757
|
+
"name": "machine",
|
|
5758
|
+
"allowNo": false,
|
|
5759
|
+
"type": "boolean"
|
|
5760
|
+
}
|
|
5761
|
+
},
|
|
5762
|
+
"hasDynamicHelp": false,
|
|
5763
|
+
"hiddenAliases": [],
|
|
5764
|
+
"id": "orchestrate:machine",
|
|
5765
|
+
"pluginAlias": "@proletariat/cli",
|
|
5766
|
+
"pluginName": "@proletariat/cli",
|
|
5767
|
+
"pluginType": "core",
|
|
5768
|
+
"strict": true,
|
|
5769
|
+
"isESM": true,
|
|
5770
|
+
"relativePath": [
|
|
5771
|
+
"dist",
|
|
5772
|
+
"commands",
|
|
5773
|
+
"orchestrate",
|
|
5774
|
+
"machine.js"
|
|
5775
|
+
]
|
|
5776
|
+
},
|
|
5407
5777
|
"orchestrator:attach": {
|
|
5408
5778
|
"aliases": [],
|
|
5409
5779
|
"args": {},
|
|
@@ -5767,6 +6137,65 @@
|
|
|
5767
6137
|
"stop.js"
|
|
5768
6138
|
]
|
|
5769
6139
|
},
|
|
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
|
+
},
|
|
5770
6199
|
"pr:checks": {
|
|
5771
6200
|
"aliases": [],
|
|
5772
6201
|
"args": {
|
|
@@ -6321,71 +6750,12 @@
|
|
|
6321
6750
|
"name": "ticket",
|
|
6322
6751
|
"hasDynamicHelp": false,
|
|
6323
6752
|
"multiple": false,
|
|
6324
|
-
"type": "option"
|
|
6325
|
-
}
|
|
6326
|
-
},
|
|
6327
|
-
"hasDynamicHelp": false,
|
|
6328
|
-
"hiddenAliases": [],
|
|
6329
|
-
"id": "pr:status",
|
|
6330
|
-
"pluginAlias": "@proletariat/cli",
|
|
6331
|
-
"pluginName": "@proletariat/cli",
|
|
6332
|
-
"pluginType": "core",
|
|
6333
|
-
"strict": true,
|
|
6334
|
-
"isESM": true,
|
|
6335
|
-
"relativePath": [
|
|
6336
|
-
"dist",
|
|
6337
|
-
"commands",
|
|
6338
|
-
"pr",
|
|
6339
|
-
"status.js"
|
|
6340
|
-
]
|
|
6341
|
-
},
|
|
6342
|
-
"project:configure": {
|
|
6343
|
-
"aliases": [],
|
|
6344
|
-
"args": {},
|
|
6345
|
-
"description": "Configure workflow column mapping for a project",
|
|
6346
|
-
"examples": [
|
|
6347
|
-
"<%= config.bin %> <%= command.id %> --workflow",
|
|
6348
|
-
"<%= config.bin %> <%= command.id %> --workflow --show"
|
|
6349
|
-
],
|
|
6350
|
-
"flags": {
|
|
6351
|
-
"project": {
|
|
6352
|
-
"char": "P",
|
|
6353
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
6354
|
-
"name": "project",
|
|
6355
|
-
"hasDynamicHelp": false,
|
|
6356
|
-
"multiple": false,
|
|
6357
|
-
"type": "option"
|
|
6358
|
-
},
|
|
6359
|
-
"json": {
|
|
6360
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6361
|
-
"name": "json",
|
|
6362
|
-
"allowNo": false,
|
|
6363
|
-
"type": "boolean"
|
|
6364
|
-
},
|
|
6365
|
-
"machine": {
|
|
6366
|
-
"char": "m",
|
|
6367
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6368
|
-
"name": "machine",
|
|
6369
|
-
"allowNo": false,
|
|
6370
|
-
"type": "boolean"
|
|
6371
|
-
},
|
|
6372
|
-
"workflow": {
|
|
6373
|
-
"char": "w",
|
|
6374
|
-
"description": "Configure workflow column mapping",
|
|
6375
|
-
"name": "workflow",
|
|
6376
|
-
"allowNo": false,
|
|
6377
|
-
"type": "boolean"
|
|
6378
|
-
},
|
|
6379
|
-
"show": {
|
|
6380
|
-
"description": "Show current workflow mapping without prompting",
|
|
6381
|
-
"name": "show",
|
|
6382
|
-
"allowNo": false,
|
|
6383
|
-
"type": "boolean"
|
|
6753
|
+
"type": "option"
|
|
6384
6754
|
}
|
|
6385
6755
|
},
|
|
6386
6756
|
"hasDynamicHelp": false,
|
|
6387
6757
|
"hiddenAliases": [],
|
|
6388
|
-
"id": "
|
|
6758
|
+
"id": "pr:status",
|
|
6389
6759
|
"pluginAlias": "@proletariat/cli",
|
|
6390
6760
|
"pluginName": "@proletariat/cli",
|
|
6391
6761
|
"pluginType": "core",
|
|
@@ -6394,8 +6764,8 @@
|
|
|
6394
6764
|
"relativePath": [
|
|
6395
6765
|
"dist",
|
|
6396
6766
|
"commands",
|
|
6397
|
-
"
|
|
6398
|
-
"
|
|
6767
|
+
"pr",
|
|
6768
|
+
"status.js"
|
|
6399
6769
|
]
|
|
6400
6770
|
},
|
|
6401
6771
|
"qa": {
|
|
@@ -9650,6 +10020,12 @@
|
|
|
9650
10020
|
"name": "force",
|
|
9651
10021
|
"allowNo": false,
|
|
9652
10022
|
"type": "boolean"
|
|
10023
|
+
},
|
|
10024
|
+
"no-cleanup": {
|
|
10025
|
+
"description": "Skip automatic worktree cleanup when moving to Done",
|
|
10026
|
+
"name": "no-cleanup",
|
|
10027
|
+
"allowNo": false,
|
|
10028
|
+
"type": "boolean"
|
|
9653
10029
|
}
|
|
9654
10030
|
},
|
|
9655
10031
|
"hasDynamicHelp": false,
|
|
@@ -11887,6 +12263,141 @@
|
|
|
11887
12263
|
"review.js"
|
|
11888
12264
|
]
|
|
11889
12265
|
},
|
|
12266
|
+
"work:run": {
|
|
12267
|
+
"aliases": [],
|
|
12268
|
+
"args": {},
|
|
12269
|
+
"description": "Run an agent without a ticket — ticketless work mode",
|
|
12270
|
+
"examples": [
|
|
12271
|
+
"<%= config.bin %> <%= command.id %> --prompt \"refactor auth module\"",
|
|
12272
|
+
"<%= config.bin %> <%= command.id %> --dir ~/Projects/other-repo --prompt \"fix the auth bug\"",
|
|
12273
|
+
"<%= config.bin %> <%= command.id %> --repo https://github.com/org/repo --prompt \"add tests\"",
|
|
12274
|
+
"<%= config.bin %> <%= command.id %> --prompt \"add unit tests\" --create-pr",
|
|
12275
|
+
"<%= config.bin %> <%= command.id %> --prompt \"fix flaky test\" --environment host",
|
|
12276
|
+
"<%= config.bin %> <%= command.id %> --name reviewer --keep-alive --prompt \"you are the backend reviewer\"",
|
|
12277
|
+
"<%= config.bin %> <%= command.id %> --prompt \"analyze this CSV data\" --dir ~/data/exports",
|
|
12278
|
+
"<%= config.bin %> <%= command.id %> --prompt \"research best practices for auth\"",
|
|
12279
|
+
"<%= config.bin %> <%= command.id %> --dir ~/Projects/myapp --no-worktree --prompt \"fix tests\""
|
|
12280
|
+
],
|
|
12281
|
+
"flags": {
|
|
12282
|
+
"prompt": {
|
|
12283
|
+
"char": "p",
|
|
12284
|
+
"description": "Work prompt — what the agent should do",
|
|
12285
|
+
"name": "prompt",
|
|
12286
|
+
"required": true,
|
|
12287
|
+
"hasDynamicHelp": false,
|
|
12288
|
+
"multiple": false,
|
|
12289
|
+
"type": "option"
|
|
12290
|
+
},
|
|
12291
|
+
"dir": {
|
|
12292
|
+
"char": "d",
|
|
12293
|
+
"description": "Working directory (auto-detects git vs non-git)",
|
|
12294
|
+
"name": "dir",
|
|
12295
|
+
"hasDynamicHelp": false,
|
|
12296
|
+
"multiple": false,
|
|
12297
|
+
"type": "option"
|
|
12298
|
+
},
|
|
12299
|
+
"repo": {
|
|
12300
|
+
"char": "r",
|
|
12301
|
+
"description": "Git repo URL to clone and work in",
|
|
12302
|
+
"name": "repo",
|
|
12303
|
+
"hasDynamicHelp": false,
|
|
12304
|
+
"multiple": false,
|
|
12305
|
+
"type": "option"
|
|
12306
|
+
},
|
|
12307
|
+
"no-worktree": {
|
|
12308
|
+
"description": "Work in-place instead of creating a git worktree (for git repos)",
|
|
12309
|
+
"name": "no-worktree",
|
|
12310
|
+
"allowNo": false,
|
|
12311
|
+
"type": "boolean"
|
|
12312
|
+
},
|
|
12313
|
+
"create-pr": {
|
|
12314
|
+
"description": "Create a PR when work is ready (no ticket linking)",
|
|
12315
|
+
"name": "create-pr",
|
|
12316
|
+
"allowNo": false,
|
|
12317
|
+
"type": "boolean"
|
|
12318
|
+
},
|
|
12319
|
+
"keep-alive": {
|
|
12320
|
+
"char": "k",
|
|
12321
|
+
"description": "Persistent agent — survives restarts, accumulates context, responds to pokes",
|
|
12322
|
+
"name": "keep-alive",
|
|
12323
|
+
"allowNo": false,
|
|
12324
|
+
"type": "boolean"
|
|
12325
|
+
},
|
|
12326
|
+
"environment": {
|
|
12327
|
+
"char": "e",
|
|
12328
|
+
"description": "Execution environment",
|
|
12329
|
+
"name": "environment",
|
|
12330
|
+
"default": "host",
|
|
12331
|
+
"hasDynamicHelp": false,
|
|
12332
|
+
"multiple": false,
|
|
12333
|
+
"options": [
|
|
12334
|
+
"host",
|
|
12335
|
+
"sandbox",
|
|
12336
|
+
"docker",
|
|
12337
|
+
"devcontainer"
|
|
12338
|
+
],
|
|
12339
|
+
"type": "option"
|
|
12340
|
+
},
|
|
12341
|
+
"executor": {
|
|
12342
|
+
"description": "AI executor to use",
|
|
12343
|
+
"name": "executor",
|
|
12344
|
+
"default": "claude-code",
|
|
12345
|
+
"hasDynamicHelp": false,
|
|
12346
|
+
"multiple": false,
|
|
12347
|
+
"options": [
|
|
12348
|
+
"claude-code",
|
|
12349
|
+
"codex"
|
|
12350
|
+
],
|
|
12351
|
+
"type": "option"
|
|
12352
|
+
},
|
|
12353
|
+
"mode": {
|
|
12354
|
+
"description": "Display mode for agent output",
|
|
12355
|
+
"name": "mode",
|
|
12356
|
+
"hasDynamicHelp": false,
|
|
12357
|
+
"multiple": false,
|
|
12358
|
+
"options": [
|
|
12359
|
+
"terminal",
|
|
12360
|
+
"background",
|
|
12361
|
+
"foreground"
|
|
12362
|
+
],
|
|
12363
|
+
"type": "option"
|
|
12364
|
+
},
|
|
12365
|
+
"name": {
|
|
12366
|
+
"description": "Agent name (required for --keep-alive, auto-generated otherwise)",
|
|
12367
|
+
"name": "name",
|
|
12368
|
+
"hasDynamicHelp": false,
|
|
12369
|
+
"multiple": false,
|
|
12370
|
+
"type": "option"
|
|
12371
|
+
},
|
|
12372
|
+
"json": {
|
|
12373
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12374
|
+
"name": "json",
|
|
12375
|
+
"allowNo": false,
|
|
12376
|
+
"type": "boolean"
|
|
12377
|
+
},
|
|
12378
|
+
"machine": {
|
|
12379
|
+
"char": "m",
|
|
12380
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12381
|
+
"name": "machine",
|
|
12382
|
+
"allowNo": false,
|
|
12383
|
+
"type": "boolean"
|
|
12384
|
+
}
|
|
12385
|
+
},
|
|
12386
|
+
"hasDynamicHelp": false,
|
|
12387
|
+
"hiddenAliases": [],
|
|
12388
|
+
"id": "work:run",
|
|
12389
|
+
"pluginAlias": "@proletariat/cli",
|
|
12390
|
+
"pluginName": "@proletariat/cli",
|
|
12391
|
+
"pluginType": "core",
|
|
12392
|
+
"strict": true,
|
|
12393
|
+
"isESM": true,
|
|
12394
|
+
"relativePath": [
|
|
12395
|
+
"dist",
|
|
12396
|
+
"commands",
|
|
12397
|
+
"work",
|
|
12398
|
+
"run.js"
|
|
12399
|
+
]
|
|
12400
|
+
},
|
|
11890
12401
|
"work:ship": {
|
|
11891
12402
|
"aliases": [],
|
|
11892
12403
|
"args": {
|
|
@@ -12912,6 +13423,17 @@
|
|
|
12912
13423
|
"name": "dry-run",
|
|
12913
13424
|
"allowNo": false,
|
|
12914
13425
|
"type": "boolean"
|
|
13426
|
+
},
|
|
13427
|
+
"environment": {
|
|
13428
|
+
"description": "Execution environment (devcontainer or host). Use to bypass the environment selection prompt.",
|
|
13429
|
+
"name": "environment",
|
|
13430
|
+
"hasDynamicHelp": false,
|
|
13431
|
+
"multiple": false,
|
|
13432
|
+
"options": [
|
|
13433
|
+
"devcontainer",
|
|
13434
|
+
"host"
|
|
13435
|
+
],
|
|
13436
|
+
"type": "option"
|
|
12915
13437
|
}
|
|
12916
13438
|
},
|
|
12917
13439
|
"hasDynamicHelp": false,
|
|
@@ -13596,6 +14118,172 @@
|
|
|
13596
14118
|
"set.js"
|
|
13597
14119
|
]
|
|
13598
14120
|
},
|
|
14121
|
+
"notify:rules:add": {
|
|
14122
|
+
"aliases": [],
|
|
14123
|
+
"args": {
|
|
14124
|
+
"event": {
|
|
14125
|
+
"description": "Event to trigger notification",
|
|
14126
|
+
"name": "event",
|
|
14127
|
+
"required": true
|
|
14128
|
+
}
|
|
14129
|
+
},
|
|
14130
|
+
"description": "Add a notification rule for an event",
|
|
14131
|
+
"examples": [
|
|
14132
|
+
"<%= config.bin %> notify rules add on_agent_died --provider slack",
|
|
14133
|
+
"<%= config.bin %> notify rules add on_ci_failed --provider email --priority 1",
|
|
14134
|
+
"<%= config.bin %> notify rules add on_agent_died --provider sms --escalation-group agent-down --delay 600"
|
|
14135
|
+
],
|
|
14136
|
+
"flags": {
|
|
14137
|
+
"json": {
|
|
14138
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14139
|
+
"name": "json",
|
|
14140
|
+
"allowNo": false,
|
|
14141
|
+
"type": "boolean"
|
|
14142
|
+
},
|
|
14143
|
+
"machine": {
|
|
14144
|
+
"char": "m",
|
|
14145
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14146
|
+
"name": "machine",
|
|
14147
|
+
"allowNo": false,
|
|
14148
|
+
"type": "boolean"
|
|
14149
|
+
},
|
|
14150
|
+
"provider": {
|
|
14151
|
+
"description": "Provider name to notify",
|
|
14152
|
+
"name": "provider",
|
|
14153
|
+
"required": true,
|
|
14154
|
+
"hasDynamicHelp": false,
|
|
14155
|
+
"multiple": false,
|
|
14156
|
+
"type": "option"
|
|
14157
|
+
},
|
|
14158
|
+
"priority": {
|
|
14159
|
+
"description": "Priority (lower = higher priority)",
|
|
14160
|
+
"name": "priority",
|
|
14161
|
+
"default": 0,
|
|
14162
|
+
"hasDynamicHelp": false,
|
|
14163
|
+
"multiple": false,
|
|
14164
|
+
"type": "option"
|
|
14165
|
+
},
|
|
14166
|
+
"delay": {
|
|
14167
|
+
"description": "Escalation delay in seconds (0 = immediate)",
|
|
14168
|
+
"name": "delay",
|
|
14169
|
+
"hasDynamicHelp": false,
|
|
14170
|
+
"multiple": false,
|
|
14171
|
+
"type": "option"
|
|
14172
|
+
},
|
|
14173
|
+
"escalation-group": {
|
|
14174
|
+
"description": "Escalation group name (rules in same group escalate sequentially)",
|
|
14175
|
+
"name": "escalation-group",
|
|
14176
|
+
"hasDynamicHelp": false,
|
|
14177
|
+
"multiple": false,
|
|
14178
|
+
"type": "option"
|
|
14179
|
+
}
|
|
14180
|
+
},
|
|
14181
|
+
"hasDynamicHelp": false,
|
|
14182
|
+
"hiddenAliases": [],
|
|
14183
|
+
"id": "notify:rules:add",
|
|
14184
|
+
"pluginAlias": "@proletariat/cli",
|
|
14185
|
+
"pluginName": "@proletariat/cli",
|
|
14186
|
+
"pluginType": "core",
|
|
14187
|
+
"strict": true,
|
|
14188
|
+
"isESM": true,
|
|
14189
|
+
"relativePath": [
|
|
14190
|
+
"dist",
|
|
14191
|
+
"commands",
|
|
14192
|
+
"notify",
|
|
14193
|
+
"rules",
|
|
14194
|
+
"add.js"
|
|
14195
|
+
]
|
|
14196
|
+
},
|
|
14197
|
+
"notify:rules:list": {
|
|
14198
|
+
"aliases": [],
|
|
14199
|
+
"args": {},
|
|
14200
|
+
"description": "List notification rules",
|
|
14201
|
+
"examples": [
|
|
14202
|
+
"<%= config.bin %> notify rules list",
|
|
14203
|
+
"<%= config.bin %> notify rules list --event on_agent_died"
|
|
14204
|
+
],
|
|
14205
|
+
"flags": {
|
|
14206
|
+
"json": {
|
|
14207
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14208
|
+
"name": "json",
|
|
14209
|
+
"allowNo": false,
|
|
14210
|
+
"type": "boolean"
|
|
14211
|
+
},
|
|
14212
|
+
"machine": {
|
|
14213
|
+
"char": "m",
|
|
14214
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14215
|
+
"name": "machine",
|
|
14216
|
+
"allowNo": false,
|
|
14217
|
+
"type": "boolean"
|
|
14218
|
+
},
|
|
14219
|
+
"event": {
|
|
14220
|
+
"description": "Filter by event name",
|
|
14221
|
+
"name": "event",
|
|
14222
|
+
"hasDynamicHelp": false,
|
|
14223
|
+
"multiple": false,
|
|
14224
|
+
"type": "option"
|
|
14225
|
+
}
|
|
14226
|
+
},
|
|
14227
|
+
"hasDynamicHelp": false,
|
|
14228
|
+
"hiddenAliases": [],
|
|
14229
|
+
"id": "notify:rules:list",
|
|
14230
|
+
"pluginAlias": "@proletariat/cli",
|
|
14231
|
+
"pluginName": "@proletariat/cli",
|
|
14232
|
+
"pluginType": "core",
|
|
14233
|
+
"strict": true,
|
|
14234
|
+
"isESM": true,
|
|
14235
|
+
"relativePath": [
|
|
14236
|
+
"dist",
|
|
14237
|
+
"commands",
|
|
14238
|
+
"notify",
|
|
14239
|
+
"rules",
|
|
14240
|
+
"list.js"
|
|
14241
|
+
]
|
|
14242
|
+
},
|
|
14243
|
+
"notify:rules:remove": {
|
|
14244
|
+
"aliases": [],
|
|
14245
|
+
"args": {
|
|
14246
|
+
"id": {
|
|
14247
|
+
"description": "Rule ID to remove",
|
|
14248
|
+
"name": "id",
|
|
14249
|
+
"required": true
|
|
14250
|
+
}
|
|
14251
|
+
},
|
|
14252
|
+
"description": "Remove a notification rule",
|
|
14253
|
+
"examples": [
|
|
14254
|
+
"<%= config.bin %> notify rules remove <rule-id>"
|
|
14255
|
+
],
|
|
14256
|
+
"flags": {
|
|
14257
|
+
"json": {
|
|
14258
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14259
|
+
"name": "json",
|
|
14260
|
+
"allowNo": false,
|
|
14261
|
+
"type": "boolean"
|
|
14262
|
+
},
|
|
14263
|
+
"machine": {
|
|
14264
|
+
"char": "m",
|
|
14265
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14266
|
+
"name": "machine",
|
|
14267
|
+
"allowNo": false,
|
|
14268
|
+
"type": "boolean"
|
|
14269
|
+
}
|
|
14270
|
+
},
|
|
14271
|
+
"hasDynamicHelp": false,
|
|
14272
|
+
"hiddenAliases": [],
|
|
14273
|
+
"id": "notify:rules:remove",
|
|
14274
|
+
"pluginAlias": "@proletariat/cli",
|
|
14275
|
+
"pluginName": "@proletariat/cli",
|
|
14276
|
+
"pluginType": "core",
|
|
14277
|
+
"strict": true,
|
|
14278
|
+
"isESM": true,
|
|
14279
|
+
"relativePath": [
|
|
14280
|
+
"dist",
|
|
14281
|
+
"commands",
|
|
14282
|
+
"notify",
|
|
14283
|
+
"rules",
|
|
14284
|
+
"remove.js"
|
|
14285
|
+
]
|
|
14286
|
+
},
|
|
13599
14287
|
"work:hooks:add": {
|
|
13600
14288
|
"aliases": [],
|
|
13601
14289
|
"args": {},
|
|
@@ -13977,5 +14665,5 @@
|
|
|
13977
14665
|
]
|
|
13978
14666
|
}
|
|
13979
14667
|
},
|
|
13980
|
-
"version": "0.3.
|
|
14668
|
+
"version": "0.3.109"
|
|
13981
14669
|
}
|