@proletariat/cli 0.3.88 → 0.3.90
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/config/index.js +63 -0
- package/dist/commands/config/index.js.map +1 -1
- package/dist/commands/db/repair.d.ts +14 -0
- package/dist/commands/db/repair.js +186 -0
- package/dist/commands/db/repair.js.map +1 -0
- package/dist/commands/session/list.js +42 -0
- package/dist/commands/session/list.js.map +1 -1
- package/dist/commands/session/poke.d.ts +6 -0
- package/dist/commands/session/poke.js +40 -0
- package/dist/commands/session/poke.js.map +1 -1
- package/dist/commands/work/start.d.ts +1 -0
- package/dist/commands/work/start.js +43 -1
- package/dist/commands/work/start.js.map +1 -1
- package/dist/hooks/init.js +5 -0
- package/dist/hooks/init.js.map +1 -1
- package/dist/lib/agents/commands.js +18 -8
- package/dist/lib/agents/commands.js.map +1 -1
- package/dist/lib/agents/index.js +6 -0
- package/dist/lib/agents/index.js.map +1 -1
- package/dist/lib/container.d.ts +40 -0
- package/dist/lib/container.js +74 -0
- package/dist/lib/container.js.map +1 -0
- package/dist/lib/dashboard/data.js +2 -2
- package/dist/lib/dashboard/data.js.map +1 -1
- package/dist/lib/database/db-safety.d.ts +59 -0
- package/dist/lib/database/db-safety.js +295 -0
- package/dist/lib/database/db-safety.js.map +1 -0
- package/dist/lib/database/driver.d.ts +2 -1
- package/dist/lib/database/driver.js +6 -2
- package/dist/lib/database/driver.js.map +1 -1
- package/dist/lib/database/index.d.ts +1 -0
- package/dist/lib/database/index.js +2 -0
- package/dist/lib/database/index.js.map +1 -1
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.d.ts +9 -0
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.js +22 -0
- package/dist/lib/database/migrations/0012_add_action_network_allowlist.js.map +1 -0
- package/dist/lib/database/migrations/index.js +2 -0
- package/dist/lib/database/migrations/index.js.map +1 -1
- package/dist/lib/database/workspace.d.ts +10 -3
- package/dist/lib/database/workspace.js +54 -5
- package/dist/lib/database/workspace.js.map +1 -1
- package/dist/lib/execution/config.d.ts +13 -0
- package/dist/lib/execution/config.js +60 -0
- package/dist/lib/execution/config.js.map +1 -1
- package/dist/lib/execution/devcontainer.d.ts +4 -0
- package/dist/lib/execution/devcontainer.js +16 -3
- package/dist/lib/execution/devcontainer.js.map +1 -1
- package/dist/lib/execution/runners/docker-management.d.ts +6 -0
- package/dist/lib/execution/runners/docker-management.js +33 -12
- package/dist/lib/execution/runners/docker-management.js.map +1 -1
- package/dist/lib/execution/runners/sandbox.js +2 -1
- package/dist/lib/execution/runners/sandbox.js.map +1 -1
- package/dist/lib/execution/spawner.d.ts +2 -0
- package/dist/lib/execution/spawner.js +12 -0
- package/dist/lib/execution/spawner.js.map +1 -1
- package/dist/lib/execution/storage.d.ts +43 -9
- package/dist/lib/execution/storage.js +58 -43
- package/dist/lib/execution/storage.js.map +1 -1
- package/dist/lib/execution/types.d.ts +1 -0
- package/dist/lib/execution/types.js.map +1 -1
- package/dist/lib/init/index.js +6 -8
- package/dist/lib/init/index.js.map +1 -1
- package/dist/lib/pmo/find-pmo.js +11 -10
- package/dist/lib/pmo/find-pmo.js.map +1 -1
- package/dist/lib/pmo/index.js +3 -0
- package/dist/lib/pmo/index.js.map +1 -1
- package/dist/lib/pmo/schema.d.ts +1 -1
- package/dist/lib/pmo/schema.js +1 -0
- package/dist/lib/pmo/schema.js.map +1 -1
- package/dist/lib/pmo/storage/actions.js +9 -3
- package/dist/lib/pmo/storage/actions.js.map +1 -1
- package/dist/lib/pmo/storage/types.d.ts +1 -0
- package/dist/lib/pmo/sync-manager.js +12 -0
- package/dist/lib/pmo/sync-manager.js.map +1 -1
- package/dist/lib/pmo/types.d.ts +1 -0
- package/dist/lib/pmo/types.js.map +1 -1
- package/dist/lib/registry/index.d.ts +2 -2
- package/dist/lib/registry/index.js +5 -6
- package/dist/lib/registry/index.js.map +1 -1
- package/dist/lib/repos/index.js +3 -0
- package/dist/lib/repos/index.js.map +1 -1
- package/dist/lib/session-store.js +2 -2
- package/dist/lib/session-store.js.map +1 -1
- package/dist/lib/work-lifecycle/action-chaining.js +4 -0
- package/dist/lib/work-lifecycle/action-chaining.js.map +1 -1
- package/dist/lib/workspace-config.d.ts +19 -0
- package/dist/lib/workspace-config.js +32 -0
- package/dist/lib/workspace-config.js.map +1 -1
- package/oclif.manifest.json +1064 -1002
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -3559,6 +3559,7 @@
|
|
|
3559
3559
|
"<%= config.bin %> <%= command.id %> --set terminal.openInBackground true",
|
|
3560
3560
|
"<%= config.bin %> <%= command.id %> --set firewall.allowlistDomains \"api.staging.example.com\"",
|
|
3561
3561
|
"<%= config.bin %> <%= command.id %> --set review_gate auto # Set workspace review gate to auto",
|
|
3562
|
+
"<%= config.bin %> <%= command.id %> --set claude-code.version 2.1.80 # Pin Claude Code version",
|
|
3562
3563
|
"<%= config.bin %> <%= command.id %> --setting terminal.app --json # Show terminal app choices"
|
|
3563
3564
|
],
|
|
3564
3565
|
"flags": {
|
|
@@ -3613,6 +3614,60 @@
|
|
|
3613
3614
|
"index.js"
|
|
3614
3615
|
]
|
|
3615
3616
|
},
|
|
3617
|
+
"db:repair": {
|
|
3618
|
+
"aliases": [],
|
|
3619
|
+
"args": {},
|
|
3620
|
+
"description": "Check database integrity and repair corruption",
|
|
3621
|
+
"examples": [
|
|
3622
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3623
|
+
"<%= config.bin %> <%= command.id %> --check-only",
|
|
3624
|
+
"<%= config.bin %> <%= command.id %> --workspace /path/to/hq"
|
|
3625
|
+
],
|
|
3626
|
+
"flags": {
|
|
3627
|
+
"json": {
|
|
3628
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3629
|
+
"name": "json",
|
|
3630
|
+
"allowNo": false,
|
|
3631
|
+
"type": "boolean"
|
|
3632
|
+
},
|
|
3633
|
+
"machine": {
|
|
3634
|
+
"char": "m",
|
|
3635
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
3636
|
+
"name": "machine",
|
|
3637
|
+
"allowNo": false,
|
|
3638
|
+
"type": "boolean"
|
|
3639
|
+
},
|
|
3640
|
+
"check-only": {
|
|
3641
|
+
"description": "Only check integrity, do not attempt repair",
|
|
3642
|
+
"name": "check-only",
|
|
3643
|
+
"allowNo": false,
|
|
3644
|
+
"type": "boolean"
|
|
3645
|
+
},
|
|
3646
|
+
"workspace": {
|
|
3647
|
+
"char": "w",
|
|
3648
|
+
"description": "Path to workspace (defaults to active workspace)",
|
|
3649
|
+
"name": "workspace",
|
|
3650
|
+
"hasDynamicHelp": false,
|
|
3651
|
+
"multiple": false,
|
|
3652
|
+
"type": "option"
|
|
3653
|
+
}
|
|
3654
|
+
},
|
|
3655
|
+
"hasDynamicHelp": false,
|
|
3656
|
+
"hiddenAliases": [],
|
|
3657
|
+
"id": "db:repair",
|
|
3658
|
+
"pluginAlias": "@proletariat/cli",
|
|
3659
|
+
"pluginName": "@proletariat/cli",
|
|
3660
|
+
"pluginType": "core",
|
|
3661
|
+
"strict": true,
|
|
3662
|
+
"enableJsonFlag": false,
|
|
3663
|
+
"isESM": true,
|
|
3664
|
+
"relativePath": [
|
|
3665
|
+
"dist",
|
|
3666
|
+
"commands",
|
|
3667
|
+
"db",
|
|
3668
|
+
"repair.js"
|
|
3669
|
+
]
|
|
3670
|
+
},
|
|
3616
3671
|
"docker:clean": {
|
|
3617
3672
|
"aliases": [],
|
|
3618
3673
|
"args": {},
|
|
@@ -7889,30 +7944,15 @@
|
|
|
7889
7944
|
"connect.js"
|
|
7890
7945
|
]
|
|
7891
7946
|
},
|
|
7892
|
-
"
|
|
7947
|
+
"support:book": {
|
|
7893
7948
|
"aliases": [],
|
|
7894
|
-
"args": {
|
|
7895
|
-
|
|
7896
|
-
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
7897
|
-
"name": "session",
|
|
7898
|
-
"required": false
|
|
7899
|
-
}
|
|
7900
|
-
},
|
|
7901
|
-
"description": "Attach to an active tmux session",
|
|
7949
|
+
"args": {},
|
|
7950
|
+
"description": "Book a call for support",
|
|
7902
7951
|
"examples": [
|
|
7903
7952
|
"<%= config.bin %> <%= command.id %>",
|
|
7904
|
-
"<%= config.bin %> <%= command.id %>
|
|
7905
|
-
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
7953
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7906
7954
|
],
|
|
7907
7955
|
"flags": {
|
|
7908
|
-
"project": {
|
|
7909
|
-
"char": "P",
|
|
7910
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7911
|
-
"name": "project",
|
|
7912
|
-
"hasDynamicHelp": false,
|
|
7913
|
-
"multiple": false,
|
|
7914
|
-
"type": "option"
|
|
7915
|
-
},
|
|
7916
7956
|
"json": {
|
|
7917
7957
|
"description": "Output as JSON for AI agents/scripts",
|
|
7918
7958
|
"name": "json",
|
|
@@ -7925,65 +7965,33 @@
|
|
|
7925
7965
|
"name": "machine",
|
|
7926
7966
|
"allowNo": false,
|
|
7927
7967
|
"type": "boolean"
|
|
7928
|
-
},
|
|
7929
|
-
"new-tab": {
|
|
7930
|
-
"char": "n",
|
|
7931
|
-
"description": "Open in a new terminal tab (default: true)",
|
|
7932
|
-
"name": "new-tab",
|
|
7933
|
-
"allowNo": false,
|
|
7934
|
-
"type": "boolean"
|
|
7935
|
-
},
|
|
7936
|
-
"current-terminal": {
|
|
7937
|
-
"char": "c",
|
|
7938
|
-
"description": "Attach in current terminal instead of new tab",
|
|
7939
|
-
"name": "current-terminal",
|
|
7940
|
-
"allowNo": false,
|
|
7941
|
-
"type": "boolean"
|
|
7942
|
-
},
|
|
7943
|
-
"terminal": {
|
|
7944
|
-
"char": "t",
|
|
7945
|
-
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
7946
|
-
"name": "terminal",
|
|
7947
|
-
"default": "iTerm",
|
|
7948
|
-
"hasDynamicHelp": false,
|
|
7949
|
-
"multiple": false,
|
|
7950
|
-
"type": "option"
|
|
7951
7968
|
}
|
|
7952
7969
|
},
|
|
7953
7970
|
"hasDynamicHelp": false,
|
|
7954
7971
|
"hiddenAliases": [],
|
|
7955
|
-
"id": "
|
|
7972
|
+
"id": "support:book",
|
|
7956
7973
|
"pluginAlias": "@proletariat/cli",
|
|
7957
7974
|
"pluginName": "@proletariat/cli",
|
|
7958
7975
|
"pluginType": "core",
|
|
7959
7976
|
"strict": true,
|
|
7977
|
+
"enableJsonFlag": false,
|
|
7960
7978
|
"isESM": true,
|
|
7961
7979
|
"relativePath": [
|
|
7962
7980
|
"dist",
|
|
7963
7981
|
"commands",
|
|
7964
|
-
"
|
|
7965
|
-
"
|
|
7982
|
+
"support",
|
|
7983
|
+
"book.js"
|
|
7966
7984
|
]
|
|
7967
7985
|
},
|
|
7968
|
-
"
|
|
7986
|
+
"support:discord": {
|
|
7969
7987
|
"aliases": [],
|
|
7970
7988
|
"args": {},
|
|
7971
|
-
"description": "
|
|
7989
|
+
"description": "Join the Discord community",
|
|
7972
7990
|
"examples": [
|
|
7973
|
-
"<%= config.bin %>
|
|
7974
|
-
"<%= config.bin %>
|
|
7975
|
-
"<%= config.bin %> session cleanup --force",
|
|
7976
|
-
"<%= config.bin %> session cleanup --force --yes"
|
|
7991
|
+
"<%= config.bin %> <%= command.id %>",
|
|
7992
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
7977
7993
|
],
|
|
7978
7994
|
"flags": {
|
|
7979
|
-
"project": {
|
|
7980
|
-
"char": "P",
|
|
7981
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
7982
|
-
"name": "project",
|
|
7983
|
-
"hasDynamicHelp": false,
|
|
7984
|
-
"multiple": false,
|
|
7985
|
-
"type": "option"
|
|
7986
|
-
},
|
|
7987
7995
|
"json": {
|
|
7988
7996
|
"description": "Output as JSON for AI agents/scripts",
|
|
7989
7997
|
"name": "json",
|
|
@@ -7996,68 +8004,33 @@
|
|
|
7996
8004
|
"name": "machine",
|
|
7997
8005
|
"allowNo": false,
|
|
7998
8006
|
"type": "boolean"
|
|
7999
|
-
},
|
|
8000
|
-
"dry-run": {
|
|
8001
|
-
"char": "d",
|
|
8002
|
-
"description": "Show what would be cleaned up without actually doing it",
|
|
8003
|
-
"name": "dry-run",
|
|
8004
|
-
"allowNo": false,
|
|
8005
|
-
"type": "boolean"
|
|
8006
|
-
},
|
|
8007
|
-
"force": {
|
|
8008
|
-
"char": "f",
|
|
8009
|
-
"description": "Remove all agent containers, including those with active executions",
|
|
8010
|
-
"name": "force",
|
|
8011
|
-
"allowNo": false,
|
|
8012
|
-
"type": "boolean"
|
|
8013
|
-
},
|
|
8014
|
-
"yes": {
|
|
8015
|
-
"char": "y",
|
|
8016
|
-
"description": "Skip confirmation prompt when using --force",
|
|
8017
|
-
"name": "yes",
|
|
8018
|
-
"allowNo": false,
|
|
8019
|
-
"type": "boolean"
|
|
8020
8007
|
}
|
|
8021
8008
|
},
|
|
8022
8009
|
"hasDynamicHelp": false,
|
|
8023
8010
|
"hiddenAliases": [],
|
|
8024
|
-
"id": "
|
|
8011
|
+
"id": "support:discord",
|
|
8025
8012
|
"pluginAlias": "@proletariat/cli",
|
|
8026
8013
|
"pluginName": "@proletariat/cli",
|
|
8027
8014
|
"pluginType": "core",
|
|
8028
8015
|
"strict": true,
|
|
8016
|
+
"enableJsonFlag": false,
|
|
8029
8017
|
"isESM": true,
|
|
8030
8018
|
"relativePath": [
|
|
8031
8019
|
"dist",
|
|
8032
8020
|
"commands",
|
|
8033
|
-
"
|
|
8034
|
-
"
|
|
8021
|
+
"support",
|
|
8022
|
+
"discord.js"
|
|
8035
8023
|
]
|
|
8036
8024
|
},
|
|
8037
|
-
"
|
|
8025
|
+
"support:docs": {
|
|
8038
8026
|
"aliases": [],
|
|
8039
|
-
"args": {
|
|
8040
|
-
|
|
8041
|
-
"description": "Name for the new tmux session",
|
|
8042
|
-
"name": "name",
|
|
8043
|
-
"required": true
|
|
8044
|
-
}
|
|
8045
|
-
},
|
|
8046
|
-
"description": "Create a new tmux session",
|
|
8027
|
+
"args": {},
|
|
8028
|
+
"description": "Open documentation in browser",
|
|
8047
8029
|
"examples": [
|
|
8048
|
-
"<%= config.bin %> <%= command.id %>
|
|
8049
|
-
"<%= config.bin %> <%= command.id %>
|
|
8050
|
-
"<%= config.bin %> <%= command.id %> my-session --detach"
|
|
8030
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8031
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8051
8032
|
],
|
|
8052
8033
|
"flags": {
|
|
8053
|
-
"project": {
|
|
8054
|
-
"char": "P",
|
|
8055
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8056
|
-
"name": "project",
|
|
8057
|
-
"hasDynamicHelp": false,
|
|
8058
|
-
"multiple": false,
|
|
8059
|
-
"type": "option"
|
|
8060
|
-
},
|
|
8061
8034
|
"json": {
|
|
8062
8035
|
"description": "Output as JSON for AI agents/scripts",
|
|
8063
8036
|
"name": "json",
|
|
@@ -8070,63 +8043,37 @@
|
|
|
8070
8043
|
"name": "machine",
|
|
8071
8044
|
"allowNo": false,
|
|
8072
8045
|
"type": "boolean"
|
|
8073
|
-
},
|
|
8074
|
-
"command": {
|
|
8075
|
-
"char": "c",
|
|
8076
|
-
"description": "Initial command to run in the session",
|
|
8077
|
-
"name": "command",
|
|
8078
|
-
"hasDynamicHelp": false,
|
|
8079
|
-
"multiple": false,
|
|
8080
|
-
"type": "option"
|
|
8081
|
-
},
|
|
8082
|
-
"detach": {
|
|
8083
|
-
"char": "d",
|
|
8084
|
-
"description": "Create session in detached mode (do not attach)",
|
|
8085
|
-
"name": "detach",
|
|
8086
|
-
"allowNo": false,
|
|
8087
|
-
"type": "boolean"
|
|
8088
8046
|
}
|
|
8089
8047
|
},
|
|
8090
8048
|
"hasDynamicHelp": false,
|
|
8091
8049
|
"hiddenAliases": [],
|
|
8092
|
-
"id": "
|
|
8050
|
+
"id": "support:docs",
|
|
8093
8051
|
"pluginAlias": "@proletariat/cli",
|
|
8094
8052
|
"pluginName": "@proletariat/cli",
|
|
8095
8053
|
"pluginType": "core",
|
|
8096
8054
|
"strict": true,
|
|
8055
|
+
"enableJsonFlag": false,
|
|
8097
8056
|
"isESM": true,
|
|
8098
8057
|
"relativePath": [
|
|
8099
8058
|
"dist",
|
|
8100
8059
|
"commands",
|
|
8101
|
-
"
|
|
8102
|
-
"
|
|
8060
|
+
"support",
|
|
8061
|
+
"docs.js"
|
|
8103
8062
|
]
|
|
8104
8063
|
},
|
|
8105
|
-
"
|
|
8064
|
+
"support": {
|
|
8106
8065
|
"aliases": [],
|
|
8107
|
-
"args": {
|
|
8108
|
-
|
|
8109
|
-
"description": "Agent name or ticket ID",
|
|
8110
|
-
"name": "target",
|
|
8111
|
-
"required": true
|
|
8112
|
-
}
|
|
8113
|
-
},
|
|
8114
|
-
"description": "Run a command in an agent's worktree/container context",
|
|
8066
|
+
"args": {},
|
|
8067
|
+
"description": "Get help, troubleshoot, and connect with the community",
|
|
8115
8068
|
"examples": [
|
|
8116
|
-
"<%= config.bin %>
|
|
8117
|
-
"<%= config.bin %>
|
|
8118
|
-
"<%= config.bin %>
|
|
8119
|
-
"<%= config.bin %>
|
|
8069
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8070
|
+
"<%= config.bin %> <%= command.id %> book",
|
|
8071
|
+
"<%= config.bin %> <%= command.id %> docs",
|
|
8072
|
+
"<%= config.bin %> <%= command.id %> discord",
|
|
8073
|
+
"<%= config.bin %> <%= command.id %> issues",
|
|
8074
|
+
"<%= config.bin %> <%= command.id %> logs"
|
|
8120
8075
|
],
|
|
8121
8076
|
"flags": {
|
|
8122
|
-
"project": {
|
|
8123
|
-
"char": "P",
|
|
8124
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8125
|
-
"name": "project",
|
|
8126
|
-
"hasDynamicHelp": false,
|
|
8127
|
-
"multiple": false,
|
|
8128
|
-
"type": "option"
|
|
8129
|
-
},
|
|
8130
8077
|
"json": {
|
|
8131
8078
|
"description": "Output as JSON for AI agents/scripts",
|
|
8132
8079
|
"name": "json",
|
|
@@ -8139,54 +8086,34 @@
|
|
|
8139
8086
|
"name": "machine",
|
|
8140
8087
|
"allowNo": false,
|
|
8141
8088
|
"type": "boolean"
|
|
8142
|
-
},
|
|
8143
|
-
"timeout": {
|
|
8144
|
-
"char": "t",
|
|
8145
|
-
"description": "Command timeout in seconds",
|
|
8146
|
-
"name": "timeout",
|
|
8147
|
-
"default": 30,
|
|
8148
|
-
"hasDynamicHelp": false,
|
|
8149
|
-
"multiple": false,
|
|
8150
|
-
"type": "option"
|
|
8151
8089
|
}
|
|
8152
8090
|
},
|
|
8153
8091
|
"hasDynamicHelp": false,
|
|
8154
8092
|
"hiddenAliases": [],
|
|
8155
|
-
"id": "
|
|
8093
|
+
"id": "support",
|
|
8156
8094
|
"pluginAlias": "@proletariat/cli",
|
|
8157
8095
|
"pluginName": "@proletariat/cli",
|
|
8158
8096
|
"pluginType": "core",
|
|
8159
|
-
"strict":
|
|
8097
|
+
"strict": true,
|
|
8098
|
+
"enableJsonFlag": false,
|
|
8160
8099
|
"isESM": true,
|
|
8161
8100
|
"relativePath": [
|
|
8162
8101
|
"dist",
|
|
8163
8102
|
"commands",
|
|
8164
|
-
"
|
|
8165
|
-
"
|
|
8103
|
+
"support",
|
|
8104
|
+
"index.js"
|
|
8166
8105
|
]
|
|
8167
8106
|
},
|
|
8168
|
-
"
|
|
8107
|
+
"support:issues": {
|
|
8169
8108
|
"aliases": [],
|
|
8170
8109
|
"args": {},
|
|
8171
|
-
"description": "
|
|
8110
|
+
"description": "Browse GitHub Issues",
|
|
8172
8111
|
"examples": [
|
|
8173
|
-
"<%= config.bin %>
|
|
8174
|
-
"<%= config.bin %>
|
|
8175
|
-
"<%= config.bin %>
|
|
8176
|
-
"<%= config.bin %> session health --fix --poke-idle",
|
|
8177
|
-
"<%= config.bin %> session health --watch",
|
|
8178
|
-
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
8179
|
-
"<%= config.bin %> session health --watch --poke-idle"
|
|
8112
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8113
|
+
"<%= config.bin %> <%= command.id %> --browser",
|
|
8114
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8180
8115
|
],
|
|
8181
8116
|
"flags": {
|
|
8182
|
-
"project": {
|
|
8183
|
-
"char": "P",
|
|
8184
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8185
|
-
"name": "project",
|
|
8186
|
-
"hasDynamicHelp": false,
|
|
8187
|
-
"multiple": false,
|
|
8188
|
-
"type": "option"
|
|
8189
|
-
},
|
|
8190
8117
|
"json": {
|
|
8191
8118
|
"description": "Output as JSON for AI agents/scripts",
|
|
8192
8119
|
"name": "json",
|
|
@@ -8200,65 +8127,37 @@
|
|
|
8200
8127
|
"allowNo": false,
|
|
8201
8128
|
"type": "boolean"
|
|
8202
8129
|
},
|
|
8203
|
-
"
|
|
8204
|
-
"description": "
|
|
8205
|
-
"name": "
|
|
8206
|
-
"allowNo":
|
|
8207
|
-
"type": "boolean"
|
|
8208
|
-
},
|
|
8209
|
-
"poke-idle": {
|
|
8210
|
-
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
8211
|
-
"name": "poke-idle",
|
|
8212
|
-
"allowNo": false,
|
|
8213
|
-
"type": "boolean"
|
|
8214
|
-
},
|
|
8215
|
-
"watch": {
|
|
8216
|
-
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
8217
|
-
"name": "watch",
|
|
8218
|
-
"allowNo": false,
|
|
8130
|
+
"browser": {
|
|
8131
|
+
"description": "Open issues in browser (default behavior)",
|
|
8132
|
+
"name": "browser",
|
|
8133
|
+
"allowNo": true,
|
|
8219
8134
|
"type": "boolean"
|
|
8220
|
-
},
|
|
8221
|
-
"interval": {
|
|
8222
|
-
"description": "Watch polling interval in minutes",
|
|
8223
|
-
"name": "interval",
|
|
8224
|
-
"default": 5,
|
|
8225
|
-
"hasDynamicHelp": false,
|
|
8226
|
-
"multiple": false,
|
|
8227
|
-
"type": "option"
|
|
8228
|
-
},
|
|
8229
|
-
"threshold": {
|
|
8230
|
-
"description": "Minutes an agent must be hung/idle before auto-recovery in watch mode",
|
|
8231
|
-
"name": "threshold",
|
|
8232
|
-
"default": 10,
|
|
8233
|
-
"hasDynamicHelp": false,
|
|
8234
|
-
"multiple": false,
|
|
8235
|
-
"type": "option"
|
|
8236
8135
|
}
|
|
8237
8136
|
},
|
|
8238
8137
|
"hasDynamicHelp": false,
|
|
8239
8138
|
"hiddenAliases": [],
|
|
8240
|
-
"id": "
|
|
8139
|
+
"id": "support:issues",
|
|
8241
8140
|
"pluginAlias": "@proletariat/cli",
|
|
8242
8141
|
"pluginName": "@proletariat/cli",
|
|
8243
8142
|
"pluginType": "core",
|
|
8244
8143
|
"strict": true,
|
|
8144
|
+
"enableJsonFlag": false,
|
|
8245
8145
|
"isESM": true,
|
|
8246
8146
|
"relativePath": [
|
|
8247
8147
|
"dist",
|
|
8248
8148
|
"commands",
|
|
8249
|
-
"
|
|
8250
|
-
"
|
|
8149
|
+
"support",
|
|
8150
|
+
"issues.js"
|
|
8251
8151
|
]
|
|
8252
8152
|
},
|
|
8253
|
-
"
|
|
8153
|
+
"support:logs": {
|
|
8254
8154
|
"aliases": [],
|
|
8255
8155
|
"args": {},
|
|
8256
|
-
"description": "
|
|
8156
|
+
"description": "Collect diagnostic info for troubleshooting",
|
|
8257
8157
|
"examples": [
|
|
8258
8158
|
"<%= config.bin %> <%= command.id %>",
|
|
8259
|
-
"<%= config.bin %> <%= command.id %>
|
|
8260
|
-
"<%= config.bin %> <%= command.id %>
|
|
8261
|
-
"<%= config.bin %> <%= command.id %> create my-session"
|
|
8159
|
+
"<%= config.bin %> <%= command.id %> --clipboard",
|
|
8160
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8262
8161
|
],
|
|
8263
8162
|
"flags": {
|
|
8264
8163
|
"project": {
|
|
@@ -8281,11 +8180,17 @@
|
|
|
8281
8180
|
"name": "machine",
|
|
8282
8181
|
"allowNo": false,
|
|
8283
8182
|
"type": "boolean"
|
|
8183
|
+
},
|
|
8184
|
+
"clipboard": {
|
|
8185
|
+
"description": "Copy diagnostics to clipboard",
|
|
8186
|
+
"name": "clipboard",
|
|
8187
|
+
"allowNo": false,
|
|
8188
|
+
"type": "boolean"
|
|
8284
8189
|
}
|
|
8285
8190
|
},
|
|
8286
8191
|
"hasDynamicHelp": false,
|
|
8287
8192
|
"hiddenAliases": [],
|
|
8288
|
-
"id": "
|
|
8193
|
+
"id": "support:logs",
|
|
8289
8194
|
"pluginAlias": "@proletariat/cli",
|
|
8290
8195
|
"pluginName": "@proletariat/cli",
|
|
8291
8196
|
"pluginType": "core",
|
|
@@ -8294,25 +8199,24 @@
|
|
|
8294
8199
|
"relativePath": [
|
|
8295
8200
|
"dist",
|
|
8296
8201
|
"commands",
|
|
8297
|
-
"
|
|
8298
|
-
"
|
|
8202
|
+
"support",
|
|
8203
|
+
"logs.js"
|
|
8299
8204
|
]
|
|
8300
8205
|
},
|
|
8301
|
-
"session:
|
|
8206
|
+
"session:attach": {
|
|
8302
8207
|
"aliases": [],
|
|
8303
8208
|
"args": {
|
|
8304
|
-
"
|
|
8305
|
-
"description": "
|
|
8306
|
-
"name": "
|
|
8307
|
-
"required":
|
|
8209
|
+
"session": {
|
|
8210
|
+
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
8211
|
+
"name": "session",
|
|
8212
|
+
"required": false
|
|
8308
8213
|
}
|
|
8309
8214
|
},
|
|
8310
|
-
"description": "
|
|
8215
|
+
"description": "Attach to an active tmux session",
|
|
8311
8216
|
"examples": [
|
|
8312
|
-
"<%= config.bin %>
|
|
8313
|
-
"<%= config.bin %>
|
|
8314
|
-
"<%= config.bin %>
|
|
8315
|
-
"<%= config.bin %> session inspect altman --json"
|
|
8217
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8218
|
+
"<%= config.bin %> <%= command.id %> TKT-347-implement-altman",
|
|
8219
|
+
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
8316
8220
|
],
|
|
8317
8221
|
"flags": {
|
|
8318
8222
|
"project": {
|
|
@@ -8336,11 +8240,25 @@
|
|
|
8336
8240
|
"allowNo": false,
|
|
8337
8241
|
"type": "boolean"
|
|
8338
8242
|
},
|
|
8339
|
-
"
|
|
8340
|
-
"char": "
|
|
8341
|
-
"description": "
|
|
8342
|
-
"name": "
|
|
8343
|
-
"
|
|
8243
|
+
"new-tab": {
|
|
8244
|
+
"char": "n",
|
|
8245
|
+
"description": "Open in a new terminal tab (default: true)",
|
|
8246
|
+
"name": "new-tab",
|
|
8247
|
+
"allowNo": false,
|
|
8248
|
+
"type": "boolean"
|
|
8249
|
+
},
|
|
8250
|
+
"current-terminal": {
|
|
8251
|
+
"char": "c",
|
|
8252
|
+
"description": "Attach in current terminal instead of new tab",
|
|
8253
|
+
"name": "current-terminal",
|
|
8254
|
+
"allowNo": false,
|
|
8255
|
+
"type": "boolean"
|
|
8256
|
+
},
|
|
8257
|
+
"terminal": {
|
|
8258
|
+
"char": "t",
|
|
8259
|
+
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
8260
|
+
"name": "terminal",
|
|
8261
|
+
"default": "iTerm",
|
|
8344
8262
|
"hasDynamicHelp": false,
|
|
8345
8263
|
"multiple": false,
|
|
8346
8264
|
"type": "option"
|
|
@@ -8348,7 +8266,7 @@
|
|
|
8348
8266
|
},
|
|
8349
8267
|
"hasDynamicHelp": false,
|
|
8350
8268
|
"hiddenAliases": [],
|
|
8351
|
-
"id": "session:
|
|
8269
|
+
"id": "session:attach",
|
|
8352
8270
|
"pluginAlias": "@proletariat/cli",
|
|
8353
8271
|
"pluginName": "@proletariat/cli",
|
|
8354
8272
|
"pluginType": "core",
|
|
@@ -8358,16 +8276,18 @@
|
|
|
8358
8276
|
"dist",
|
|
8359
8277
|
"commands",
|
|
8360
8278
|
"session",
|
|
8361
|
-
"
|
|
8279
|
+
"attach.js"
|
|
8362
8280
|
]
|
|
8363
8281
|
},
|
|
8364
|
-
"session:
|
|
8282
|
+
"session:cleanup": {
|
|
8365
8283
|
"aliases": [],
|
|
8366
8284
|
"args": {},
|
|
8367
|
-
"description": "
|
|
8285
|
+
"description": "Stop and remove Docker containers for completed agents",
|
|
8368
8286
|
"examples": [
|
|
8369
|
-
"<%= config.bin %>
|
|
8370
|
-
"<%= config.bin %>
|
|
8287
|
+
"<%= config.bin %> session cleanup",
|
|
8288
|
+
"<%= config.bin %> session cleanup --dry-run",
|
|
8289
|
+
"<%= config.bin %> session cleanup --force",
|
|
8290
|
+
"<%= config.bin %> session cleanup --force --yes"
|
|
8371
8291
|
],
|
|
8372
8292
|
"flags": {
|
|
8373
8293
|
"project": {
|
|
@@ -8391,17 +8311,31 @@
|
|
|
8391
8311
|
"allowNo": false,
|
|
8392
8312
|
"type": "boolean"
|
|
8393
8313
|
},
|
|
8394
|
-
"
|
|
8395
|
-
"char": "
|
|
8396
|
-
"description": "Show
|
|
8397
|
-
"name": "
|
|
8314
|
+
"dry-run": {
|
|
8315
|
+
"char": "d",
|
|
8316
|
+
"description": "Show what would be cleaned up without actually doing it",
|
|
8317
|
+
"name": "dry-run",
|
|
8318
|
+
"allowNo": false,
|
|
8319
|
+
"type": "boolean"
|
|
8320
|
+
},
|
|
8321
|
+
"force": {
|
|
8322
|
+
"char": "f",
|
|
8323
|
+
"description": "Remove all agent containers, including those with active executions",
|
|
8324
|
+
"name": "force",
|
|
8325
|
+
"allowNo": false,
|
|
8326
|
+
"type": "boolean"
|
|
8327
|
+
},
|
|
8328
|
+
"yes": {
|
|
8329
|
+
"char": "y",
|
|
8330
|
+
"description": "Skip confirmation prompt when using --force",
|
|
8331
|
+
"name": "yes",
|
|
8398
8332
|
"allowNo": false,
|
|
8399
8333
|
"type": "boolean"
|
|
8400
8334
|
}
|
|
8401
8335
|
},
|
|
8402
8336
|
"hasDynamicHelp": false,
|
|
8403
8337
|
"hiddenAliases": [],
|
|
8404
|
-
"id": "session:
|
|
8338
|
+
"id": "session:cleanup",
|
|
8405
8339
|
"pluginAlias": "@proletariat/cli",
|
|
8406
8340
|
"pluginName": "@proletariat/cli",
|
|
8407
8341
|
"pluginType": "core",
|
|
@@ -8411,29 +8345,23 @@
|
|
|
8411
8345
|
"dist",
|
|
8412
8346
|
"commands",
|
|
8413
8347
|
"session",
|
|
8414
|
-
"
|
|
8348
|
+
"cleanup.js"
|
|
8415
8349
|
]
|
|
8416
8350
|
},
|
|
8417
|
-
"session:
|
|
8351
|
+
"session:create": {
|
|
8418
8352
|
"aliases": [],
|
|
8419
8353
|
"args": {
|
|
8420
|
-
"
|
|
8421
|
-
"description": "
|
|
8422
|
-
"name": "
|
|
8423
|
-
"required":
|
|
8354
|
+
"name": {
|
|
8355
|
+
"description": "Name for the new tmux session",
|
|
8356
|
+
"name": "name",
|
|
8357
|
+
"required": true
|
|
8424
8358
|
}
|
|
8425
8359
|
},
|
|
8426
|
-
"description": "
|
|
8360
|
+
"description": "Create a new tmux session",
|
|
8427
8361
|
"examples": [
|
|
8428
|
-
"<%= config.bin %>
|
|
8429
|
-
"<%= config.bin %> session
|
|
8430
|
-
"<%= config.bin %>
|
|
8431
|
-
"<%= config.bin %> session peek altman --lines 100",
|
|
8432
|
-
"<%= config.bin %> session peek altman --full",
|
|
8433
|
-
"<%= config.bin %> session peek altman --follow",
|
|
8434
|
-
"<%= config.bin %> session peek altman --since 2025-01-01T12:00:00Z",
|
|
8435
|
-
"<%= config.bin %> session peek TKT-123 --json",
|
|
8436
|
-
"<%= config.bin %> session peek altman | grep error"
|
|
8362
|
+
"<%= config.bin %> <%= command.id %> my-session",
|
|
8363
|
+
"<%= config.bin %> <%= command.id %> my-session --command \"npm run dev\"",
|
|
8364
|
+
"<%= config.bin %> <%= command.id %> my-session --detach"
|
|
8437
8365
|
],
|
|
8438
8366
|
"flags": {
|
|
8439
8367
|
"project": {
|
|
@@ -8457,47 +8385,25 @@
|
|
|
8457
8385
|
"allowNo": false,
|
|
8458
8386
|
"type": "boolean"
|
|
8459
8387
|
},
|
|
8460
|
-
"
|
|
8461
|
-
"char": "
|
|
8462
|
-
"description": "
|
|
8463
|
-
"name": "
|
|
8464
|
-
"default": 200,
|
|
8465
|
-
"hasDynamicHelp": false,
|
|
8466
|
-
"multiple": false,
|
|
8467
|
-
"type": "option"
|
|
8468
|
-
},
|
|
8469
|
-
"full": {
|
|
8470
|
-
"description": "Capture entire scrollback buffer (up to 32768 lines)",
|
|
8471
|
-
"name": "full",
|
|
8472
|
-
"allowNo": false,
|
|
8473
|
-
"type": "boolean"
|
|
8474
|
-
},
|
|
8475
|
-
"since": {
|
|
8476
|
-
"description": "Filter output to lines after this timestamp (ISO 8601)",
|
|
8477
|
-
"name": "since",
|
|
8388
|
+
"command": {
|
|
8389
|
+
"char": "c",
|
|
8390
|
+
"description": "Initial command to run in the session",
|
|
8391
|
+
"name": "command",
|
|
8478
8392
|
"hasDynamicHelp": false,
|
|
8479
8393
|
"multiple": false,
|
|
8480
8394
|
"type": "option"
|
|
8481
8395
|
},
|
|
8482
|
-
"
|
|
8483
|
-
"char": "
|
|
8484
|
-
"description": "
|
|
8485
|
-
"name": "
|
|
8396
|
+
"detach": {
|
|
8397
|
+
"char": "d",
|
|
8398
|
+
"description": "Create session in detached mode (do not attach)",
|
|
8399
|
+
"name": "detach",
|
|
8486
8400
|
"allowNo": false,
|
|
8487
8401
|
"type": "boolean"
|
|
8488
|
-
},
|
|
8489
|
-
"interval": {
|
|
8490
|
-
"description": "Polling interval in seconds for --follow mode",
|
|
8491
|
-
"name": "interval",
|
|
8492
|
-
"default": 2,
|
|
8493
|
-
"hasDynamicHelp": false,
|
|
8494
|
-
"multiple": false,
|
|
8495
|
-
"type": "option"
|
|
8496
8402
|
}
|
|
8497
8403
|
},
|
|
8498
8404
|
"hasDynamicHelp": false,
|
|
8499
8405
|
"hiddenAliases": [],
|
|
8500
|
-
"id": "session:
|
|
8406
|
+
"id": "session:create",
|
|
8501
8407
|
"pluginAlias": "@proletariat/cli",
|
|
8502
8408
|
"pluginName": "@proletariat/cli",
|
|
8503
8409
|
"pluginType": "core",
|
|
@@ -8507,32 +8413,34 @@
|
|
|
8507
8413
|
"dist",
|
|
8508
8414
|
"commands",
|
|
8509
8415
|
"session",
|
|
8510
|
-
"
|
|
8416
|
+
"create.js"
|
|
8511
8417
|
]
|
|
8512
8418
|
},
|
|
8513
|
-
"session:
|
|
8419
|
+
"session:exec": {
|
|
8514
8420
|
"aliases": [],
|
|
8515
8421
|
"args": {
|
|
8516
|
-
"
|
|
8517
|
-
"description": "Agent name or ticket ID
|
|
8518
|
-
"name": "
|
|
8422
|
+
"target": {
|
|
8423
|
+
"description": "Agent name or ticket ID",
|
|
8424
|
+
"name": "target",
|
|
8519
8425
|
"required": true
|
|
8520
|
-
},
|
|
8521
|
-
"message": {
|
|
8522
|
-
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
8523
|
-
"name": "message",
|
|
8524
|
-
"required": false
|
|
8525
8426
|
}
|
|
8526
8427
|
},
|
|
8527
|
-
"description": "
|
|
8428
|
+
"description": "Run a command in an agent's worktree/container context",
|
|
8528
8429
|
"examples": [
|
|
8529
|
-
"<%= config.bin %> session
|
|
8530
|
-
"<%= config.bin %> session
|
|
8531
|
-
"<%= config.bin %> session
|
|
8532
|
-
"<%= config.bin %> session
|
|
8533
|
-
"echo \"multi-line message\" | <%= config.bin %> session poke altman -"
|
|
8430
|
+
"<%= config.bin %> session exec altman -- git status",
|
|
8431
|
+
"<%= config.bin %> session exec TKT-123 -- gh pr view --json number,state",
|
|
8432
|
+
"<%= config.bin %> session exec altman -- ls -la",
|
|
8433
|
+
"<%= config.bin %> session exec altman --json -- git log --oneline -5"
|
|
8534
8434
|
],
|
|
8535
8435
|
"flags": {
|
|
8436
|
+
"project": {
|
|
8437
|
+
"char": "P",
|
|
8438
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8439
|
+
"name": "project",
|
|
8440
|
+
"hasDynamicHelp": false,
|
|
8441
|
+
"multiple": false,
|
|
8442
|
+
"type": "option"
|
|
8443
|
+
},
|
|
8536
8444
|
"json": {
|
|
8537
8445
|
"description": "Output as JSON for AI agents/scripts",
|
|
8538
8446
|
"name": "json",
|
|
@@ -8546,25 +8454,11 @@
|
|
|
8546
8454
|
"allowNo": false,
|
|
8547
8455
|
"type": "boolean"
|
|
8548
8456
|
},
|
|
8549
|
-
"file": {
|
|
8550
|
-
"char": "F",
|
|
8551
|
-
"description": "Read message from a file (supports multi-line)",
|
|
8552
|
-
"name": "file",
|
|
8553
|
-
"hasDynamicHelp": false,
|
|
8554
|
-
"multiple": false,
|
|
8555
|
-
"type": "option"
|
|
8556
|
-
},
|
|
8557
|
-
"wait": {
|
|
8558
|
-
"char": "w",
|
|
8559
|
-
"description": "Wait for response after sending (capture output after message is sent)",
|
|
8560
|
-
"name": "wait",
|
|
8561
|
-
"allowNo": false,
|
|
8562
|
-
"type": "boolean"
|
|
8563
|
-
},
|
|
8564
8457
|
"timeout": {
|
|
8565
|
-
"
|
|
8458
|
+
"char": "t",
|
|
8459
|
+
"description": "Command timeout in seconds",
|
|
8566
8460
|
"name": "timeout",
|
|
8567
|
-
"default":
|
|
8461
|
+
"default": 30,
|
|
8568
8462
|
"hasDynamicHelp": false,
|
|
8569
8463
|
"multiple": false,
|
|
8570
8464
|
"type": "option"
|
|
@@ -8572,28 +8466,31 @@
|
|
|
8572
8466
|
},
|
|
8573
8467
|
"hasDynamicHelp": false,
|
|
8574
8468
|
"hiddenAliases": [],
|
|
8575
|
-
"id": "session:
|
|
8469
|
+
"id": "session:exec",
|
|
8576
8470
|
"pluginAlias": "@proletariat/cli",
|
|
8577
8471
|
"pluginName": "@proletariat/cli",
|
|
8578
8472
|
"pluginType": "core",
|
|
8579
|
-
"strict":
|
|
8473
|
+
"strict": false,
|
|
8580
8474
|
"isESM": true,
|
|
8581
8475
|
"relativePath": [
|
|
8582
8476
|
"dist",
|
|
8583
8477
|
"commands",
|
|
8584
8478
|
"session",
|
|
8585
|
-
"
|
|
8479
|
+
"exec.js"
|
|
8586
8480
|
]
|
|
8587
8481
|
},
|
|
8588
|
-
"session:
|
|
8482
|
+
"session:health": {
|
|
8589
8483
|
"aliases": [],
|
|
8590
8484
|
"args": {},
|
|
8591
|
-
"description": "
|
|
8485
|
+
"description": "Check health of running agent sessions, detect/recover hung agents, and auto-poke idle agents",
|
|
8592
8486
|
"examples": [
|
|
8593
|
-
"<%= config.bin %> session
|
|
8594
|
-
"<%= config.bin %> session
|
|
8595
|
-
"<%= config.bin %> session
|
|
8596
|
-
"<%= config.bin %> session
|
|
8487
|
+
"<%= config.bin %> session health",
|
|
8488
|
+
"<%= config.bin %> session health --fix",
|
|
8489
|
+
"<%= config.bin %> session health --poke-idle",
|
|
8490
|
+
"<%= config.bin %> session health --fix --poke-idle",
|
|
8491
|
+
"<%= config.bin %> session health --watch",
|
|
8492
|
+
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
8493
|
+
"<%= config.bin %> session health --watch --poke-idle"
|
|
8597
8494
|
],
|
|
8598
8495
|
"flags": {
|
|
8599
8496
|
"project": {
|
|
@@ -8617,31 +8514,36 @@
|
|
|
8617
8514
|
"allowNo": false,
|
|
8618
8515
|
"type": "boolean"
|
|
8619
8516
|
},
|
|
8620
|
-
"
|
|
8621
|
-
"
|
|
8622
|
-
"
|
|
8623
|
-
"name": "dry-run",
|
|
8517
|
+
"fix": {
|
|
8518
|
+
"description": "Send Escape to hung agents to unstick them",
|
|
8519
|
+
"name": "fix",
|
|
8624
8520
|
"allowNo": false,
|
|
8625
8521
|
"type": "boolean"
|
|
8626
8522
|
},
|
|
8627
|
-
"
|
|
8628
|
-
"
|
|
8629
|
-
"
|
|
8630
|
-
"name": "force",
|
|
8523
|
+
"poke-idle": {
|
|
8524
|
+
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
8525
|
+
"name": "poke-idle",
|
|
8631
8526
|
"allowNo": false,
|
|
8632
8527
|
"type": "boolean"
|
|
8633
8528
|
},
|
|
8634
|
-
"
|
|
8635
|
-
"
|
|
8636
|
-
"
|
|
8637
|
-
"name": "yes",
|
|
8529
|
+
"watch": {
|
|
8530
|
+
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
8531
|
+
"name": "watch",
|
|
8638
8532
|
"allowNo": false,
|
|
8639
8533
|
"type": "boolean"
|
|
8640
8534
|
},
|
|
8641
|
-
"
|
|
8642
|
-
"description": "
|
|
8643
|
-
"name": "
|
|
8644
|
-
"default":
|
|
8535
|
+
"interval": {
|
|
8536
|
+
"description": "Watch polling interval in minutes",
|
|
8537
|
+
"name": "interval",
|
|
8538
|
+
"default": 5,
|
|
8539
|
+
"hasDynamicHelp": false,
|
|
8540
|
+
"multiple": false,
|
|
8541
|
+
"type": "option"
|
|
8542
|
+
},
|
|
8543
|
+
"threshold": {
|
|
8544
|
+
"description": "Minutes an agent must be hung/idle before auto-recovery in watch mode",
|
|
8545
|
+
"name": "threshold",
|
|
8546
|
+
"default": 10,
|
|
8645
8547
|
"hasDynamicHelp": false,
|
|
8646
8548
|
"multiple": false,
|
|
8647
8549
|
"type": "option"
|
|
@@ -8649,7 +8551,7 @@
|
|
|
8649
8551
|
},
|
|
8650
8552
|
"hasDynamicHelp": false,
|
|
8651
8553
|
"hiddenAliases": [],
|
|
8652
|
-
"id": "session:
|
|
8554
|
+
"id": "session:health",
|
|
8653
8555
|
"pluginAlias": "@proletariat/cli",
|
|
8654
8556
|
"pluginName": "@proletariat/cli",
|
|
8655
8557
|
"pluginType": "core",
|
|
@@ -8659,17 +8561,18 @@
|
|
|
8659
8561
|
"dist",
|
|
8660
8562
|
"commands",
|
|
8661
8563
|
"session",
|
|
8662
|
-
"
|
|
8564
|
+
"health.js"
|
|
8663
8565
|
]
|
|
8664
8566
|
},
|
|
8665
|
-
"session
|
|
8567
|
+
"session": {
|
|
8666
8568
|
"aliases": [],
|
|
8667
8569
|
"args": {},
|
|
8668
|
-
"description": "
|
|
8570
|
+
"description": "Manage agent tmux sessions (list, attach, create, detach)",
|
|
8669
8571
|
"examples": [
|
|
8670
|
-
"<%= config.bin %>
|
|
8671
|
-
"<%= config.bin %>
|
|
8672
|
-
"<%= config.bin %>
|
|
8572
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8573
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
8574
|
+
"<%= config.bin %> <%= command.id %> attach TKT-347-implement",
|
|
8575
|
+
"<%= config.bin %> <%= command.id %> create my-session"
|
|
8673
8576
|
],
|
|
8674
8577
|
"flags": {
|
|
8675
8578
|
"project": {
|
|
@@ -8692,33 +8595,11 @@
|
|
|
8692
8595
|
"name": "machine",
|
|
8693
8596
|
"allowNo": false,
|
|
8694
8597
|
"type": "boolean"
|
|
8695
|
-
},
|
|
8696
|
-
"agent": {
|
|
8697
|
-
"description": "Agent name",
|
|
8698
|
-
"name": "agent",
|
|
8699
|
-
"required": true,
|
|
8700
|
-
"hasDynamicHelp": false,
|
|
8701
|
-
"multiple": false,
|
|
8702
|
-
"type": "option"
|
|
8703
|
-
},
|
|
8704
|
-
"status": {
|
|
8705
|
-
"description": "Session status (started, completed, errored, exited)",
|
|
8706
|
-
"name": "status",
|
|
8707
|
-
"required": true,
|
|
8708
|
-
"hasDynamicHelp": false,
|
|
8709
|
-
"multiple": false,
|
|
8710
|
-
"options": [
|
|
8711
|
-
"started",
|
|
8712
|
-
"completed",
|
|
8713
|
-
"errored",
|
|
8714
|
-
"exited"
|
|
8715
|
-
],
|
|
8716
|
-
"type": "option"
|
|
8717
8598
|
}
|
|
8718
8599
|
},
|
|
8719
8600
|
"hasDynamicHelp": false,
|
|
8720
8601
|
"hiddenAliases": [],
|
|
8721
|
-
"id": "session
|
|
8602
|
+
"id": "session",
|
|
8722
8603
|
"pluginAlias": "@proletariat/cli",
|
|
8723
8604
|
"pluginName": "@proletariat/cli",
|
|
8724
8605
|
"pluginType": "core",
|
|
@@ -8728,10 +8609,10 @@
|
|
|
8728
8609
|
"dist",
|
|
8729
8610
|
"commands",
|
|
8730
8611
|
"session",
|
|
8731
|
-
"
|
|
8612
|
+
"index.js"
|
|
8732
8613
|
]
|
|
8733
8614
|
},
|
|
8734
|
-
"session:
|
|
8615
|
+
"session:inspect": {
|
|
8735
8616
|
"aliases": [],
|
|
8736
8617
|
"args": {
|
|
8737
8618
|
"target": {
|
|
@@ -8740,13 +8621,12 @@
|
|
|
8740
8621
|
"required": true
|
|
8741
8622
|
}
|
|
8742
8623
|
},
|
|
8743
|
-
"description": "
|
|
8624
|
+
"description": "Comprehensive agent status inspection (git, PR, process, output) in one call",
|
|
8744
8625
|
"examples": [
|
|
8745
|
-
"<%= config.bin %> session
|
|
8746
|
-
"<%= config.bin %> session
|
|
8747
|
-
"<%= config.bin %> session
|
|
8748
|
-
"<%= config.bin %> session
|
|
8749
|
-
"<%= config.bin %> session restart altman --timeout 30"
|
|
8626
|
+
"<%= config.bin %> session inspect altman",
|
|
8627
|
+
"<%= config.bin %> session inspect TKT-123",
|
|
8628
|
+
"<%= config.bin %> session inspect altman --lines 50",
|
|
8629
|
+
"<%= config.bin %> session inspect altman --json"
|
|
8750
8630
|
],
|
|
8751
8631
|
"flags": {
|
|
8752
8632
|
"project": {
|
|
@@ -8770,28 +8650,11 @@
|
|
|
8770
8650
|
"allowNo": false,
|
|
8771
8651
|
"type": "boolean"
|
|
8772
8652
|
},
|
|
8773
|
-
"
|
|
8774
|
-
"
|
|
8775
|
-
"
|
|
8776
|
-
|
|
8777
|
-
|
|
8778
|
-
"name": "fresh",
|
|
8779
|
-
"allowNo": false,
|
|
8780
|
-
"type": "boolean"
|
|
8781
|
-
},
|
|
8782
|
-
"resume": {
|
|
8783
|
-
"description": "Continue from where the agent left off (pass --resume flag to Claude Code)",
|
|
8784
|
-
"exclusive": [
|
|
8785
|
-
"fresh"
|
|
8786
|
-
],
|
|
8787
|
-
"name": "resume",
|
|
8788
|
-
"allowNo": false,
|
|
8789
|
-
"type": "boolean"
|
|
8790
|
-
},
|
|
8791
|
-
"timeout": {
|
|
8792
|
-
"description": "Seconds to wait for clean exit before force restart",
|
|
8793
|
-
"name": "timeout",
|
|
8794
|
-
"default": 15,
|
|
8653
|
+
"lines": {
|
|
8654
|
+
"char": "l",
|
|
8655
|
+
"description": "Number of output lines to include",
|
|
8656
|
+
"name": "lines",
|
|
8657
|
+
"default": 100,
|
|
8795
8658
|
"hasDynamicHelp": false,
|
|
8796
8659
|
"multiple": false,
|
|
8797
8660
|
"type": "option"
|
|
@@ -8799,7 +8662,7 @@
|
|
|
8799
8662
|
},
|
|
8800
8663
|
"hasDynamicHelp": false,
|
|
8801
8664
|
"hiddenAliases": [],
|
|
8802
|
-
"id": "session:
|
|
8665
|
+
"id": "session:inspect",
|
|
8803
8666
|
"pluginAlias": "@proletariat/cli",
|
|
8804
8667
|
"pluginName": "@proletariat/cli",
|
|
8805
8668
|
"pluginType": "core",
|
|
@@ -8809,18 +8672,26 @@
|
|
|
8809
8672
|
"dist",
|
|
8810
8673
|
"commands",
|
|
8811
8674
|
"session",
|
|
8812
|
-
"
|
|
8675
|
+
"inspect.js"
|
|
8813
8676
|
]
|
|
8814
8677
|
},
|
|
8815
|
-
"
|
|
8678
|
+
"session:list": {
|
|
8816
8679
|
"aliases": [],
|
|
8817
8680
|
"args": {},
|
|
8818
|
-
"description": "
|
|
8681
|
+
"description": "List active tmux sessions (host and container)",
|
|
8819
8682
|
"examples": [
|
|
8820
8683
|
"<%= config.bin %> <%= command.id %>",
|
|
8821
|
-
"<%= config.bin %> <%= command.id %> --
|
|
8684
|
+
"<%= config.bin %> <%= command.id %> --all"
|
|
8822
8685
|
],
|
|
8823
8686
|
"flags": {
|
|
8687
|
+
"project": {
|
|
8688
|
+
"char": "P",
|
|
8689
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8690
|
+
"name": "project",
|
|
8691
|
+
"hasDynamicHelp": false,
|
|
8692
|
+
"multiple": false,
|
|
8693
|
+
"type": "option"
|
|
8694
|
+
},
|
|
8824
8695
|
"json": {
|
|
8825
8696
|
"description": "Output as JSON for AI agents/scripts",
|
|
8826
8697
|
"name": "json",
|
|
@@ -8833,33 +8704,60 @@
|
|
|
8833
8704
|
"name": "machine",
|
|
8834
8705
|
"allowNo": false,
|
|
8835
8706
|
"type": "boolean"
|
|
8707
|
+
},
|
|
8708
|
+
"all": {
|
|
8709
|
+
"char": "a",
|
|
8710
|
+
"description": "Show all sessions including stale DB records",
|
|
8711
|
+
"name": "all",
|
|
8712
|
+
"allowNo": false,
|
|
8713
|
+
"type": "boolean"
|
|
8836
8714
|
}
|
|
8837
8715
|
},
|
|
8838
8716
|
"hasDynamicHelp": false,
|
|
8839
8717
|
"hiddenAliases": [],
|
|
8840
|
-
"id": "
|
|
8718
|
+
"id": "session:list",
|
|
8841
8719
|
"pluginAlias": "@proletariat/cli",
|
|
8842
8720
|
"pluginName": "@proletariat/cli",
|
|
8843
8721
|
"pluginType": "core",
|
|
8844
8722
|
"strict": true,
|
|
8845
|
-
"enableJsonFlag": false,
|
|
8846
8723
|
"isESM": true,
|
|
8847
8724
|
"relativePath": [
|
|
8848
8725
|
"dist",
|
|
8849
8726
|
"commands",
|
|
8850
|
-
"
|
|
8851
|
-
"
|
|
8727
|
+
"session",
|
|
8728
|
+
"list.js"
|
|
8852
8729
|
]
|
|
8853
8730
|
},
|
|
8854
|
-
"
|
|
8731
|
+
"session:peek": {
|
|
8855
8732
|
"aliases": [],
|
|
8856
|
-
"args": {
|
|
8857
|
-
|
|
8733
|
+
"args": {
|
|
8734
|
+
"target": {
|
|
8735
|
+
"description": "Agent name, ticket ID (e.g. TKT-123), or execution ID (e.g. WORK-XXXXXXXX)",
|
|
8736
|
+
"name": "target",
|
|
8737
|
+
"required": false
|
|
8738
|
+
}
|
|
8739
|
+
},
|
|
8740
|
+
"description": "View agent tmux pane content without attaching (non-interactive)",
|
|
8858
8741
|
"examples": [
|
|
8859
|
-
"<%= config.bin %>
|
|
8860
|
-
"<%= config.bin %>
|
|
8742
|
+
"<%= config.bin %> session peek altman",
|
|
8743
|
+
"<%= config.bin %> session peek TKT-123",
|
|
8744
|
+
"<%= config.bin %> session peek WORK-ABCD1234",
|
|
8745
|
+
"<%= config.bin %> session peek altman --lines 100",
|
|
8746
|
+
"<%= config.bin %> session peek altman --full",
|
|
8747
|
+
"<%= config.bin %> session peek altman --follow",
|
|
8748
|
+
"<%= config.bin %> session peek altman --since 2025-01-01T12:00:00Z",
|
|
8749
|
+
"<%= config.bin %> session peek TKT-123 --json",
|
|
8750
|
+
"<%= config.bin %> session peek altman | grep error"
|
|
8861
8751
|
],
|
|
8862
8752
|
"flags": {
|
|
8753
|
+
"project": {
|
|
8754
|
+
"char": "P",
|
|
8755
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8756
|
+
"name": "project",
|
|
8757
|
+
"hasDynamicHelp": false,
|
|
8758
|
+
"multiple": false,
|
|
8759
|
+
"type": "option"
|
|
8760
|
+
},
|
|
8863
8761
|
"json": {
|
|
8864
8762
|
"description": "Output as JSON for AI agents/scripts",
|
|
8865
8763
|
"name": "json",
|
|
@@ -8872,31 +8770,81 @@
|
|
|
8872
8770
|
"name": "machine",
|
|
8873
8771
|
"allowNo": false,
|
|
8874
8772
|
"type": "boolean"
|
|
8773
|
+
},
|
|
8774
|
+
"lines": {
|
|
8775
|
+
"char": "l",
|
|
8776
|
+
"description": "Number of scrollback lines to capture",
|
|
8777
|
+
"name": "lines",
|
|
8778
|
+
"default": 200,
|
|
8779
|
+
"hasDynamicHelp": false,
|
|
8780
|
+
"multiple": false,
|
|
8781
|
+
"type": "option"
|
|
8782
|
+
},
|
|
8783
|
+
"full": {
|
|
8784
|
+
"description": "Capture entire scrollback buffer (up to 32768 lines)",
|
|
8785
|
+
"name": "full",
|
|
8786
|
+
"allowNo": false,
|
|
8787
|
+
"type": "boolean"
|
|
8788
|
+
},
|
|
8789
|
+
"since": {
|
|
8790
|
+
"description": "Filter output to lines after this timestamp (ISO 8601)",
|
|
8791
|
+
"name": "since",
|
|
8792
|
+
"hasDynamicHelp": false,
|
|
8793
|
+
"multiple": false,
|
|
8794
|
+
"type": "option"
|
|
8795
|
+
},
|
|
8796
|
+
"follow": {
|
|
8797
|
+
"char": "f",
|
|
8798
|
+
"description": "Stream output continuously (like tail -f)",
|
|
8799
|
+
"name": "follow",
|
|
8800
|
+
"allowNo": false,
|
|
8801
|
+
"type": "boolean"
|
|
8802
|
+
},
|
|
8803
|
+
"interval": {
|
|
8804
|
+
"description": "Polling interval in seconds for --follow mode",
|
|
8805
|
+
"name": "interval",
|
|
8806
|
+
"default": 2,
|
|
8807
|
+
"hasDynamicHelp": false,
|
|
8808
|
+
"multiple": false,
|
|
8809
|
+
"type": "option"
|
|
8875
8810
|
}
|
|
8876
8811
|
},
|
|
8877
8812
|
"hasDynamicHelp": false,
|
|
8878
8813
|
"hiddenAliases": [],
|
|
8879
|
-
"id": "
|
|
8814
|
+
"id": "session:peek",
|
|
8880
8815
|
"pluginAlias": "@proletariat/cli",
|
|
8881
8816
|
"pluginName": "@proletariat/cli",
|
|
8882
8817
|
"pluginType": "core",
|
|
8883
8818
|
"strict": true,
|
|
8884
|
-
"enableJsonFlag": false,
|
|
8885
8819
|
"isESM": true,
|
|
8886
8820
|
"relativePath": [
|
|
8887
8821
|
"dist",
|
|
8888
8822
|
"commands",
|
|
8889
|
-
"
|
|
8890
|
-
"
|
|
8823
|
+
"session",
|
|
8824
|
+
"peek.js"
|
|
8891
8825
|
]
|
|
8892
8826
|
},
|
|
8893
|
-
"
|
|
8827
|
+
"session:poke": {
|
|
8894
8828
|
"aliases": [],
|
|
8895
|
-
"args": {
|
|
8896
|
-
|
|
8829
|
+
"args": {
|
|
8830
|
+
"agent": {
|
|
8831
|
+
"description": "Agent name or ticket ID of the running agent",
|
|
8832
|
+
"name": "agent",
|
|
8833
|
+
"required": true
|
|
8834
|
+
},
|
|
8835
|
+
"message": {
|
|
8836
|
+
"description": "Message to send (use \"-\" to read from stdin, or omit with --file)",
|
|
8837
|
+
"name": "message",
|
|
8838
|
+
"required": false
|
|
8839
|
+
}
|
|
8840
|
+
},
|
|
8841
|
+
"description": "Send a message to a running agent's Claude Code session",
|
|
8897
8842
|
"examples": [
|
|
8898
|
-
"<%= config.bin %>
|
|
8899
|
-
"<%= config.bin %>
|
|
8843
|
+
"<%= config.bin %> session poke altman \"Please focus on the tests first\"",
|
|
8844
|
+
"<%= config.bin %> session poke TKT-123 \"Add error handling for edge cases\"",
|
|
8845
|
+
"<%= config.bin %> session poke altman --file prompt.md",
|
|
8846
|
+
"<%= config.bin %> session poke altman \"Run the tests\" --wait --timeout 60",
|
|
8847
|
+
"echo \"multi-line message\" | <%= config.bin %> session poke altman -"
|
|
8900
8848
|
],
|
|
8901
8849
|
"flags": {
|
|
8902
8850
|
"json": {
|
|
@@ -8911,37 +8859,65 @@
|
|
|
8911
8859
|
"name": "machine",
|
|
8912
8860
|
"allowNo": false,
|
|
8913
8861
|
"type": "boolean"
|
|
8862
|
+
},
|
|
8863
|
+
"file": {
|
|
8864
|
+
"char": "F",
|
|
8865
|
+
"description": "Read message from a file (supports multi-line)",
|
|
8866
|
+
"name": "file",
|
|
8867
|
+
"hasDynamicHelp": false,
|
|
8868
|
+
"multiple": false,
|
|
8869
|
+
"type": "option"
|
|
8870
|
+
},
|
|
8871
|
+
"wait": {
|
|
8872
|
+
"char": "w",
|
|
8873
|
+
"description": "Wait for response after sending (capture output after message is sent)",
|
|
8874
|
+
"name": "wait",
|
|
8875
|
+
"allowNo": false,
|
|
8876
|
+
"type": "boolean"
|
|
8877
|
+
},
|
|
8878
|
+
"timeout": {
|
|
8879
|
+
"description": "Timeout in seconds for --wait mode",
|
|
8880
|
+
"name": "timeout",
|
|
8881
|
+
"default": 120,
|
|
8882
|
+
"hasDynamicHelp": false,
|
|
8883
|
+
"multiple": false,
|
|
8884
|
+
"type": "option"
|
|
8914
8885
|
}
|
|
8915
8886
|
},
|
|
8916
8887
|
"hasDynamicHelp": false,
|
|
8917
8888
|
"hiddenAliases": [],
|
|
8918
|
-
"id": "
|
|
8889
|
+
"id": "session:poke",
|
|
8919
8890
|
"pluginAlias": "@proletariat/cli",
|
|
8920
8891
|
"pluginName": "@proletariat/cli",
|
|
8921
8892
|
"pluginType": "core",
|
|
8922
8893
|
"strict": true,
|
|
8923
|
-
"enableJsonFlag": false,
|
|
8924
8894
|
"isESM": true,
|
|
8925
8895
|
"relativePath": [
|
|
8926
8896
|
"dist",
|
|
8927
8897
|
"commands",
|
|
8928
|
-
"
|
|
8929
|
-
"
|
|
8898
|
+
"session",
|
|
8899
|
+
"poke.js"
|
|
8930
8900
|
]
|
|
8931
8901
|
},
|
|
8932
|
-
"
|
|
8902
|
+
"session:prune": {
|
|
8933
8903
|
"aliases": [],
|
|
8934
8904
|
"args": {},
|
|
8935
|
-
"description": "
|
|
8905
|
+
"description": "Clean up stale sessions, orphan tmux sessions, and idle ephemeral agents",
|
|
8936
8906
|
"examples": [
|
|
8937
|
-
"<%= config.bin %>
|
|
8938
|
-
"<%= config.bin %>
|
|
8939
|
-
"<%= config.bin %>
|
|
8940
|
-
"<%= config.bin %>
|
|
8941
|
-
"<%= config.bin %> <%= command.id %> issues",
|
|
8942
|
-
"<%= config.bin %> <%= command.id %> logs"
|
|
8907
|
+
"<%= config.bin %> session prune",
|
|
8908
|
+
"<%= config.bin %> session prune --dry-run",
|
|
8909
|
+
"<%= config.bin %> session prune --force",
|
|
8910
|
+
"<%= config.bin %> session prune --age 24"
|
|
8943
8911
|
],
|
|
8944
8912
|
"flags": {
|
|
8913
|
+
"project": {
|
|
8914
|
+
"char": "P",
|
|
8915
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8916
|
+
"name": "project",
|
|
8917
|
+
"hasDynamicHelp": false,
|
|
8918
|
+
"multiple": false,
|
|
8919
|
+
"type": "option"
|
|
8920
|
+
},
|
|
8945
8921
|
"json": {
|
|
8946
8922
|
"description": "Output as JSON for AI agents/scripts",
|
|
8947
8923
|
"name": "json",
|
|
@@ -8954,34 +8930,70 @@
|
|
|
8954
8930
|
"name": "machine",
|
|
8955
8931
|
"allowNo": false,
|
|
8956
8932
|
"type": "boolean"
|
|
8933
|
+
},
|
|
8934
|
+
"dry-run": {
|
|
8935
|
+
"char": "d",
|
|
8936
|
+
"description": "Show what would be pruned without actually doing it",
|
|
8937
|
+
"name": "dry-run",
|
|
8938
|
+
"allowNo": false,
|
|
8939
|
+
"type": "boolean"
|
|
8940
|
+
},
|
|
8941
|
+
"force": {
|
|
8942
|
+
"char": "f",
|
|
8943
|
+
"description": "Force cleanup even if agents have uncommitted/unpushed work",
|
|
8944
|
+
"name": "force",
|
|
8945
|
+
"allowNo": false,
|
|
8946
|
+
"type": "boolean"
|
|
8947
|
+
},
|
|
8948
|
+
"yes": {
|
|
8949
|
+
"char": "y",
|
|
8950
|
+
"description": "Skip confirmation prompt",
|
|
8951
|
+
"name": "yes",
|
|
8952
|
+
"allowNo": false,
|
|
8953
|
+
"type": "boolean"
|
|
8954
|
+
},
|
|
8955
|
+
"age": {
|
|
8956
|
+
"description": "Only prune sessions/agents idle for more than N hours (default: 0 = all idle)",
|
|
8957
|
+
"name": "age",
|
|
8958
|
+
"default": 0,
|
|
8959
|
+
"hasDynamicHelp": false,
|
|
8960
|
+
"multiple": false,
|
|
8961
|
+
"type": "option"
|
|
8957
8962
|
}
|
|
8958
8963
|
},
|
|
8959
8964
|
"hasDynamicHelp": false,
|
|
8960
8965
|
"hiddenAliases": [],
|
|
8961
|
-
"id": "
|
|
8966
|
+
"id": "session:prune",
|
|
8962
8967
|
"pluginAlias": "@proletariat/cli",
|
|
8963
8968
|
"pluginName": "@proletariat/cli",
|
|
8964
8969
|
"pluginType": "core",
|
|
8965
8970
|
"strict": true,
|
|
8966
|
-
"enableJsonFlag": false,
|
|
8967
8971
|
"isESM": true,
|
|
8968
8972
|
"relativePath": [
|
|
8969
8973
|
"dist",
|
|
8970
8974
|
"commands",
|
|
8971
|
-
"
|
|
8972
|
-
"
|
|
8975
|
+
"session",
|
|
8976
|
+
"prune.js"
|
|
8973
8977
|
]
|
|
8974
8978
|
},
|
|
8975
|
-
"
|
|
8979
|
+
"session:report": {
|
|
8976
8980
|
"aliases": [],
|
|
8977
8981
|
"args": {},
|
|
8978
|
-
"description": "
|
|
8982
|
+
"description": "Report agent session lifecycle events and trigger cleanup",
|
|
8979
8983
|
"examples": [
|
|
8980
|
-
"<%= config.bin %>
|
|
8981
|
-
"<%= config.bin %>
|
|
8982
|
-
"<%= config.bin %>
|
|
8984
|
+
"<%= config.bin %> session report --agent bold-turing --status exited",
|
|
8985
|
+
"<%= config.bin %> session report --agent bold-turing --status completed",
|
|
8986
|
+
"<%= config.bin %> session report --agent bold-turing --status errored"
|
|
8983
8987
|
],
|
|
8984
8988
|
"flags": {
|
|
8989
|
+
"project": {
|
|
8990
|
+
"char": "P",
|
|
8991
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8992
|
+
"name": "project",
|
|
8993
|
+
"hasDynamicHelp": false,
|
|
8994
|
+
"multiple": false,
|
|
8995
|
+
"type": "option"
|
|
8996
|
+
},
|
|
8985
8997
|
"json": {
|
|
8986
8998
|
"description": "Output as JSON for AI agents/scripts",
|
|
8987
8999
|
"name": "json",
|
|
@@ -8995,37 +9007,60 @@
|
|
|
8995
9007
|
"allowNo": false,
|
|
8996
9008
|
"type": "boolean"
|
|
8997
9009
|
},
|
|
8998
|
-
"
|
|
8999
|
-
"description": "
|
|
9000
|
-
"name": "
|
|
9001
|
-
"
|
|
9002
|
-
"
|
|
9010
|
+
"agent": {
|
|
9011
|
+
"description": "Agent name",
|
|
9012
|
+
"name": "agent",
|
|
9013
|
+
"required": true,
|
|
9014
|
+
"hasDynamicHelp": false,
|
|
9015
|
+
"multiple": false,
|
|
9016
|
+
"type": "option"
|
|
9017
|
+
},
|
|
9018
|
+
"status": {
|
|
9019
|
+
"description": "Session status (started, completed, errored, exited)",
|
|
9020
|
+
"name": "status",
|
|
9021
|
+
"required": true,
|
|
9022
|
+
"hasDynamicHelp": false,
|
|
9023
|
+
"multiple": false,
|
|
9024
|
+
"options": [
|
|
9025
|
+
"started",
|
|
9026
|
+
"completed",
|
|
9027
|
+
"errored",
|
|
9028
|
+
"exited"
|
|
9029
|
+
],
|
|
9030
|
+
"type": "option"
|
|
9003
9031
|
}
|
|
9004
9032
|
},
|
|
9005
9033
|
"hasDynamicHelp": false,
|
|
9006
9034
|
"hiddenAliases": [],
|
|
9007
|
-
"id": "
|
|
9035
|
+
"id": "session:report",
|
|
9008
9036
|
"pluginAlias": "@proletariat/cli",
|
|
9009
9037
|
"pluginName": "@proletariat/cli",
|
|
9010
9038
|
"pluginType": "core",
|
|
9011
9039
|
"strict": true,
|
|
9012
|
-
"enableJsonFlag": false,
|
|
9013
9040
|
"isESM": true,
|
|
9014
9041
|
"relativePath": [
|
|
9015
9042
|
"dist",
|
|
9016
9043
|
"commands",
|
|
9017
|
-
"
|
|
9018
|
-
"
|
|
9044
|
+
"session",
|
|
9045
|
+
"report.js"
|
|
9019
9046
|
]
|
|
9020
9047
|
},
|
|
9021
|
-
"
|
|
9048
|
+
"session:restart": {
|
|
9022
9049
|
"aliases": [],
|
|
9023
|
-
"args": {
|
|
9024
|
-
|
|
9050
|
+
"args": {
|
|
9051
|
+
"target": {
|
|
9052
|
+
"description": "Agent name or ticket ID",
|
|
9053
|
+
"name": "target",
|
|
9054
|
+
"required": true
|
|
9055
|
+
}
|
|
9056
|
+
},
|
|
9057
|
+
"description": "Gracefully restart a stuck or completed agent session",
|
|
9025
9058
|
"examples": [
|
|
9026
|
-
"<%= config.bin %>
|
|
9027
|
-
"<%= config.bin %>
|
|
9028
|
-
"<%= config.bin %>
|
|
9059
|
+
"<%= config.bin %> session restart altman",
|
|
9060
|
+
"<%= config.bin %> session restart TKT-123",
|
|
9061
|
+
"<%= config.bin %> session restart altman --fresh",
|
|
9062
|
+
"<%= config.bin %> session restart altman --resume",
|
|
9063
|
+
"<%= config.bin %> session restart altman --timeout 30"
|
|
9029
9064
|
],
|
|
9030
9065
|
"flags": {
|
|
9031
9066
|
"project": {
|
|
@@ -9049,16 +9084,36 @@
|
|
|
9049
9084
|
"allowNo": false,
|
|
9050
9085
|
"type": "boolean"
|
|
9051
9086
|
},
|
|
9052
|
-
"
|
|
9053
|
-
"description": "
|
|
9054
|
-
"
|
|
9087
|
+
"fresh": {
|
|
9088
|
+
"description": "Reset worktree to branch HEAD before restarting",
|
|
9089
|
+
"exclusive": [
|
|
9090
|
+
"resume"
|
|
9091
|
+
],
|
|
9092
|
+
"name": "fresh",
|
|
9093
|
+
"allowNo": false,
|
|
9094
|
+
"type": "boolean"
|
|
9095
|
+
},
|
|
9096
|
+
"resume": {
|
|
9097
|
+
"description": "Continue from where the agent left off (pass --resume flag to Claude Code)",
|
|
9098
|
+
"exclusive": [
|
|
9099
|
+
"fresh"
|
|
9100
|
+
],
|
|
9101
|
+
"name": "resume",
|
|
9055
9102
|
"allowNo": false,
|
|
9056
9103
|
"type": "boolean"
|
|
9104
|
+
},
|
|
9105
|
+
"timeout": {
|
|
9106
|
+
"description": "Seconds to wait for clean exit before force restart",
|
|
9107
|
+
"name": "timeout",
|
|
9108
|
+
"default": 15,
|
|
9109
|
+
"hasDynamicHelp": false,
|
|
9110
|
+
"multiple": false,
|
|
9111
|
+
"type": "option"
|
|
9057
9112
|
}
|
|
9058
9113
|
},
|
|
9059
9114
|
"hasDynamicHelp": false,
|
|
9060
9115
|
"hiddenAliases": [],
|
|
9061
|
-
"id": "
|
|
9116
|
+
"id": "session:restart",
|
|
9062
9117
|
"pluginAlias": "@proletariat/cli",
|
|
9063
9118
|
"pluginName": "@proletariat/cli",
|
|
9064
9119
|
"pluginType": "core",
|
|
@@ -9067,8 +9122,8 @@
|
|
|
9067
9122
|
"relativePath": [
|
|
9068
9123
|
"dist",
|
|
9069
9124
|
"commands",
|
|
9070
|
-
"
|
|
9071
|
-
"
|
|
9125
|
+
"session",
|
|
9126
|
+
"restart.js"
|
|
9072
9127
|
]
|
|
9073
9128
|
},
|
|
9074
9129
|
"telemetry:disable": {
|
|
@@ -9778,12 +9833,17 @@
|
|
|
9778
9833
|
"remove.js"
|
|
9779
9834
|
]
|
|
9780
9835
|
},
|
|
9781
|
-
"
|
|
9836
|
+
"trello:configure": {
|
|
9782
9837
|
"aliases": [],
|
|
9783
9838
|
"args": {},
|
|
9784
|
-
"description": "
|
|
9839
|
+
"description": "Connect to Trello and configure authentication",
|
|
9785
9840
|
"examples": [
|
|
9786
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9841
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9842
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
9843
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
9844
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
9845
|
+
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
9846
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9787
9847
|
],
|
|
9788
9848
|
"flags": {
|
|
9789
9849
|
"project": {
|
|
@@ -9806,11 +9866,36 @@
|
|
|
9806
9866
|
"name": "machine",
|
|
9807
9867
|
"allowNo": false,
|
|
9808
9868
|
"type": "boolean"
|
|
9869
|
+
},
|
|
9870
|
+
"check": {
|
|
9871
|
+
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
9872
|
+
"name": "check",
|
|
9873
|
+
"allowNo": false,
|
|
9874
|
+
"type": "boolean"
|
|
9875
|
+
},
|
|
9876
|
+
"force": {
|
|
9877
|
+
"description": "Force re-authentication even if credentials exist",
|
|
9878
|
+
"name": "force",
|
|
9879
|
+
"allowNo": false,
|
|
9880
|
+
"type": "boolean"
|
|
9881
|
+
},
|
|
9882
|
+
"disconnect": {
|
|
9883
|
+
"description": "Remove stored Trello credentials and configuration",
|
|
9884
|
+
"name": "disconnect",
|
|
9885
|
+
"allowNo": false,
|
|
9886
|
+
"type": "boolean"
|
|
9887
|
+
},
|
|
9888
|
+
"board": {
|
|
9889
|
+
"description": "Default board ID or name",
|
|
9890
|
+
"name": "board",
|
|
9891
|
+
"hasDynamicHelp": false,
|
|
9892
|
+
"multiple": false,
|
|
9893
|
+
"type": "option"
|
|
9809
9894
|
}
|
|
9810
9895
|
},
|
|
9811
9896
|
"hasDynamicHelp": false,
|
|
9812
9897
|
"hiddenAliases": [],
|
|
9813
|
-
"id": "
|
|
9898
|
+
"id": "trello:configure",
|
|
9814
9899
|
"pluginAlias": "@proletariat/cli",
|
|
9815
9900
|
"pluginName": "@proletariat/cli",
|
|
9816
9901
|
"pluginType": "core",
|
|
@@ -9819,7 +9904,255 @@
|
|
|
9819
9904
|
"relativePath": [
|
|
9820
9905
|
"dist",
|
|
9821
9906
|
"commands",
|
|
9822
|
-
"
|
|
9907
|
+
"trello",
|
|
9908
|
+
"configure.js"
|
|
9909
|
+
]
|
|
9910
|
+
},
|
|
9911
|
+
"trello:import": {
|
|
9912
|
+
"aliases": [],
|
|
9913
|
+
"args": {},
|
|
9914
|
+
"description": "Import Trello cards into PMO as tickets",
|
|
9915
|
+
"examples": [
|
|
9916
|
+
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
9917
|
+
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
9918
|
+
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
9919
|
+
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
9920
|
+
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
9921
|
+
],
|
|
9922
|
+
"flags": {
|
|
9923
|
+
"project": {
|
|
9924
|
+
"char": "P",
|
|
9925
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9926
|
+
"name": "project",
|
|
9927
|
+
"hasDynamicHelp": false,
|
|
9928
|
+
"multiple": false,
|
|
9929
|
+
"type": "option"
|
|
9930
|
+
},
|
|
9931
|
+
"json": {
|
|
9932
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9933
|
+
"name": "json",
|
|
9934
|
+
"allowNo": false,
|
|
9935
|
+
"type": "boolean"
|
|
9936
|
+
},
|
|
9937
|
+
"machine": {
|
|
9938
|
+
"char": "m",
|
|
9939
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
9940
|
+
"name": "machine",
|
|
9941
|
+
"allowNo": false,
|
|
9942
|
+
"type": "boolean"
|
|
9943
|
+
},
|
|
9944
|
+
"limit": {
|
|
9945
|
+
"char": "n",
|
|
9946
|
+
"description": "Maximum number of cards to import",
|
|
9947
|
+
"name": "limit",
|
|
9948
|
+
"default": 50,
|
|
9949
|
+
"hasDynamicHelp": false,
|
|
9950
|
+
"multiple": false,
|
|
9951
|
+
"type": "option"
|
|
9952
|
+
},
|
|
9953
|
+
"all": {
|
|
9954
|
+
"char": "a",
|
|
9955
|
+
"description": "Import all matching cards without interactive selection",
|
|
9956
|
+
"name": "all",
|
|
9957
|
+
"allowNo": false,
|
|
9958
|
+
"type": "boolean"
|
|
9959
|
+
},
|
|
9960
|
+
"dry-run": {
|
|
9961
|
+
"description": "Preview cards that would be imported without creating tickets",
|
|
9962
|
+
"name": "dry-run",
|
|
9963
|
+
"allowNo": false,
|
|
9964
|
+
"type": "boolean"
|
|
9965
|
+
}
|
|
9966
|
+
},
|
|
9967
|
+
"hasDynamicHelp": false,
|
|
9968
|
+
"hiddenAliases": [],
|
|
9969
|
+
"id": "trello:import",
|
|
9970
|
+
"pluginAlias": "@proletariat/cli",
|
|
9971
|
+
"pluginName": "@proletariat/cli",
|
|
9972
|
+
"pluginType": "core",
|
|
9973
|
+
"strict": true,
|
|
9974
|
+
"isESM": true,
|
|
9975
|
+
"relativePath": [
|
|
9976
|
+
"dist",
|
|
9977
|
+
"commands",
|
|
9978
|
+
"trello",
|
|
9979
|
+
"import.js"
|
|
9980
|
+
]
|
|
9981
|
+
},
|
|
9982
|
+
"trello:sync": {
|
|
9983
|
+
"aliases": [],
|
|
9984
|
+
"args": {},
|
|
9985
|
+
"description": "Sync PMO tickets to Trello cards",
|
|
9986
|
+
"examples": [
|
|
9987
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
9988
|
+
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
9989
|
+
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
9990
|
+
],
|
|
9991
|
+
"flags": {
|
|
9992
|
+
"project": {
|
|
9993
|
+
"char": "P",
|
|
9994
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
9995
|
+
"name": "project",
|
|
9996
|
+
"hasDynamicHelp": false,
|
|
9997
|
+
"multiple": false,
|
|
9998
|
+
"type": "option"
|
|
9999
|
+
},
|
|
10000
|
+
"json": {
|
|
10001
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10002
|
+
"name": "json",
|
|
10003
|
+
"allowNo": false,
|
|
10004
|
+
"type": "boolean"
|
|
10005
|
+
},
|
|
10006
|
+
"machine": {
|
|
10007
|
+
"char": "m",
|
|
10008
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10009
|
+
"name": "machine",
|
|
10010
|
+
"allowNo": false,
|
|
10011
|
+
"type": "boolean"
|
|
10012
|
+
},
|
|
10013
|
+
"ticket": {
|
|
10014
|
+
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
10015
|
+
"name": "ticket",
|
|
10016
|
+
"hasDynamicHelp": false,
|
|
10017
|
+
"multiple": false,
|
|
10018
|
+
"type": "option"
|
|
10019
|
+
},
|
|
10020
|
+
"card": {
|
|
10021
|
+
"description": "Trello card ID to map to --ticket",
|
|
10022
|
+
"name": "card",
|
|
10023
|
+
"hasDynamicHelp": false,
|
|
10024
|
+
"multiple": false,
|
|
10025
|
+
"type": "option"
|
|
10026
|
+
},
|
|
10027
|
+
"list": {
|
|
10028
|
+
"description": "Trello list ID used with --create-missing",
|
|
10029
|
+
"name": "list",
|
|
10030
|
+
"hasDynamicHelp": false,
|
|
10031
|
+
"multiple": false,
|
|
10032
|
+
"type": "option"
|
|
10033
|
+
},
|
|
10034
|
+
"create-missing": {
|
|
10035
|
+
"description": "Create Trello card when no mapping exists (requires list)",
|
|
10036
|
+
"name": "create-missing",
|
|
10037
|
+
"allowNo": false,
|
|
10038
|
+
"type": "boolean"
|
|
10039
|
+
},
|
|
10040
|
+
"dry-run": {
|
|
10041
|
+
"description": "Preview sync operations without making changes",
|
|
10042
|
+
"name": "dry-run",
|
|
10043
|
+
"allowNo": false,
|
|
10044
|
+
"type": "boolean"
|
|
10045
|
+
}
|
|
10046
|
+
},
|
|
10047
|
+
"hasDynamicHelp": false,
|
|
10048
|
+
"hiddenAliases": [],
|
|
10049
|
+
"id": "trello:sync",
|
|
10050
|
+
"pluginAlias": "@proletariat/cli",
|
|
10051
|
+
"pluginName": "@proletariat/cli",
|
|
10052
|
+
"pluginType": "core",
|
|
10053
|
+
"strict": true,
|
|
10054
|
+
"isESM": true,
|
|
10055
|
+
"relativePath": [
|
|
10056
|
+
"dist",
|
|
10057
|
+
"commands",
|
|
10058
|
+
"trello",
|
|
10059
|
+
"sync.js"
|
|
10060
|
+
]
|
|
10061
|
+
},
|
|
10062
|
+
"version:bump": {
|
|
10063
|
+
"aliases": [],
|
|
10064
|
+
"args": {
|
|
10065
|
+
"type": {
|
|
10066
|
+
"description": "Version bump type",
|
|
10067
|
+
"name": "type",
|
|
10068
|
+
"options": [
|
|
10069
|
+
"major",
|
|
10070
|
+
"minor",
|
|
10071
|
+
"patch"
|
|
10072
|
+
],
|
|
10073
|
+
"required": true
|
|
10074
|
+
}
|
|
10075
|
+
},
|
|
10076
|
+
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
10077
|
+
"examples": [
|
|
10078
|
+
"<%= config.bin %> version bump patch",
|
|
10079
|
+
"<%= config.bin %> version bump minor",
|
|
10080
|
+
"<%= config.bin %> version bump major",
|
|
10081
|
+
"<%= config.bin %> version bump patch --json"
|
|
10082
|
+
],
|
|
10083
|
+
"flags": {
|
|
10084
|
+
"json": {
|
|
10085
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10086
|
+
"name": "json",
|
|
10087
|
+
"allowNo": false,
|
|
10088
|
+
"type": "boolean"
|
|
10089
|
+
},
|
|
10090
|
+
"machine": {
|
|
10091
|
+
"char": "m",
|
|
10092
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10093
|
+
"name": "machine",
|
|
10094
|
+
"allowNo": false,
|
|
10095
|
+
"type": "boolean"
|
|
10096
|
+
}
|
|
10097
|
+
},
|
|
10098
|
+
"hasDynamicHelp": false,
|
|
10099
|
+
"hiddenAliases": [],
|
|
10100
|
+
"id": "version:bump",
|
|
10101
|
+
"pluginAlias": "@proletariat/cli",
|
|
10102
|
+
"pluginName": "@proletariat/cli",
|
|
10103
|
+
"pluginType": "core",
|
|
10104
|
+
"strict": true,
|
|
10105
|
+
"enableJsonFlag": false,
|
|
10106
|
+
"isESM": true,
|
|
10107
|
+
"relativePath": [
|
|
10108
|
+
"dist",
|
|
10109
|
+
"commands",
|
|
10110
|
+
"version",
|
|
10111
|
+
"bump.js"
|
|
10112
|
+
]
|
|
10113
|
+
},
|
|
10114
|
+
"ticket:bulk": {
|
|
10115
|
+
"aliases": [],
|
|
10116
|
+
"args": {},
|
|
10117
|
+
"description": "Manage tickets in bulk (interactive menu)",
|
|
10118
|
+
"examples": [
|
|
10119
|
+
"<%= config.bin %> <%= command.id %>"
|
|
10120
|
+
],
|
|
10121
|
+
"flags": {
|
|
10122
|
+
"project": {
|
|
10123
|
+
"char": "P",
|
|
10124
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
10125
|
+
"name": "project",
|
|
10126
|
+
"hasDynamicHelp": false,
|
|
10127
|
+
"multiple": false,
|
|
10128
|
+
"type": "option"
|
|
10129
|
+
},
|
|
10130
|
+
"json": {
|
|
10131
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10132
|
+
"name": "json",
|
|
10133
|
+
"allowNo": false,
|
|
10134
|
+
"type": "boolean"
|
|
10135
|
+
},
|
|
10136
|
+
"machine": {
|
|
10137
|
+
"char": "m",
|
|
10138
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10139
|
+
"name": "machine",
|
|
10140
|
+
"allowNo": false,
|
|
10141
|
+
"type": "boolean"
|
|
10142
|
+
}
|
|
10143
|
+
},
|
|
10144
|
+
"hasDynamicHelp": false,
|
|
10145
|
+
"hiddenAliases": [],
|
|
10146
|
+
"id": "ticket:bulk",
|
|
10147
|
+
"pluginAlias": "@proletariat/cli",
|
|
10148
|
+
"pluginName": "@proletariat/cli",
|
|
10149
|
+
"pluginType": "core",
|
|
10150
|
+
"strict": true,
|
|
10151
|
+
"isESM": true,
|
|
10152
|
+
"relativePath": [
|
|
10153
|
+
"dist",
|
|
10154
|
+
"commands",
|
|
10155
|
+
"ticket",
|
|
9823
10156
|
"bulk.js"
|
|
9824
10157
|
]
|
|
9825
10158
|
},
|
|
@@ -11348,530 +11681,18 @@
|
|
|
11348
11681
|
},
|
|
11349
11682
|
"description": "View detailed ticket information",
|
|
11350
11683
|
"examples": [
|
|
11351
|
-
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
11352
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
11353
|
-
],
|
|
11354
|
-
"flags": {
|
|
11355
|
-
"project": {
|
|
11356
|
-
"char": "P",
|
|
11357
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11358
|
-
"name": "project",
|
|
11359
|
-
"hasDynamicHelp": false,
|
|
11360
|
-
"multiple": false,
|
|
11361
|
-
"type": "option"
|
|
11362
|
-
},
|
|
11363
|
-
"json": {
|
|
11364
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11365
|
-
"name": "json",
|
|
11366
|
-
"allowNo": false,
|
|
11367
|
-
"type": "boolean"
|
|
11368
|
-
},
|
|
11369
|
-
"machine": {
|
|
11370
|
-
"char": "m",
|
|
11371
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11372
|
-
"name": "machine",
|
|
11373
|
-
"allowNo": false,
|
|
11374
|
-
"type": "boolean"
|
|
11375
|
-
}
|
|
11376
|
-
},
|
|
11377
|
-
"hasDynamicHelp": false,
|
|
11378
|
-
"hiddenAliases": [],
|
|
11379
|
-
"id": "ticket:view",
|
|
11380
|
-
"pluginAlias": "@proletariat/cli",
|
|
11381
|
-
"pluginName": "@proletariat/cli",
|
|
11382
|
-
"pluginType": "core",
|
|
11383
|
-
"strict": true,
|
|
11384
|
-
"isESM": true,
|
|
11385
|
-
"relativePath": [
|
|
11386
|
-
"dist",
|
|
11387
|
-
"commands",
|
|
11388
|
-
"ticket",
|
|
11389
|
-
"view.js"
|
|
11390
|
-
]
|
|
11391
|
-
},
|
|
11392
|
-
"trello:configure": {
|
|
11393
|
-
"aliases": [],
|
|
11394
|
-
"args": {},
|
|
11395
|
-
"description": "Connect to Trello and configure authentication",
|
|
11396
|
-
"examples": [
|
|
11397
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11398
|
-
"<%= config.bin %> <%= command.id %> --check",
|
|
11399
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
11400
|
-
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
11401
|
-
"TRELLO_API_KEY=... TRELLO_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
11402
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
11403
|
-
],
|
|
11404
|
-
"flags": {
|
|
11405
|
-
"project": {
|
|
11406
|
-
"char": "P",
|
|
11407
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11408
|
-
"name": "project",
|
|
11409
|
-
"hasDynamicHelp": false,
|
|
11410
|
-
"multiple": false,
|
|
11411
|
-
"type": "option"
|
|
11412
|
-
},
|
|
11413
|
-
"json": {
|
|
11414
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11415
|
-
"name": "json",
|
|
11416
|
-
"allowNo": false,
|
|
11417
|
-
"type": "boolean"
|
|
11418
|
-
},
|
|
11419
|
-
"machine": {
|
|
11420
|
-
"char": "m",
|
|
11421
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11422
|
-
"name": "machine",
|
|
11423
|
-
"allowNo": false,
|
|
11424
|
-
"type": "boolean"
|
|
11425
|
-
},
|
|
11426
|
-
"check": {
|
|
11427
|
-
"description": "Only check if Trello credentials are valid (do not prompt)",
|
|
11428
|
-
"name": "check",
|
|
11429
|
-
"allowNo": false,
|
|
11430
|
-
"type": "boolean"
|
|
11431
|
-
},
|
|
11432
|
-
"force": {
|
|
11433
|
-
"description": "Force re-authentication even if credentials exist",
|
|
11434
|
-
"name": "force",
|
|
11435
|
-
"allowNo": false,
|
|
11436
|
-
"type": "boolean"
|
|
11437
|
-
},
|
|
11438
|
-
"disconnect": {
|
|
11439
|
-
"description": "Remove stored Trello credentials and configuration",
|
|
11440
|
-
"name": "disconnect",
|
|
11441
|
-
"allowNo": false,
|
|
11442
|
-
"type": "boolean"
|
|
11443
|
-
},
|
|
11444
|
-
"board": {
|
|
11445
|
-
"description": "Default board ID or name",
|
|
11446
|
-
"name": "board",
|
|
11447
|
-
"hasDynamicHelp": false,
|
|
11448
|
-
"multiple": false,
|
|
11449
|
-
"type": "option"
|
|
11450
|
-
}
|
|
11451
|
-
},
|
|
11452
|
-
"hasDynamicHelp": false,
|
|
11453
|
-
"hiddenAliases": [],
|
|
11454
|
-
"id": "trello:configure",
|
|
11455
|
-
"pluginAlias": "@proletariat/cli",
|
|
11456
|
-
"pluginName": "@proletariat/cli",
|
|
11457
|
-
"pluginType": "core",
|
|
11458
|
-
"strict": true,
|
|
11459
|
-
"isESM": true,
|
|
11460
|
-
"relativePath": [
|
|
11461
|
-
"dist",
|
|
11462
|
-
"commands",
|
|
11463
|
-
"trello",
|
|
11464
|
-
"configure.js"
|
|
11465
|
-
]
|
|
11466
|
-
},
|
|
11467
|
-
"trello:import": {
|
|
11468
|
-
"aliases": [],
|
|
11469
|
-
"args": {},
|
|
11470
|
-
"description": "Import Trello cards into PMO as tickets",
|
|
11471
|
-
"examples": [
|
|
11472
|
-
"<%= config.bin %> <%= command.id %> # Interactive: select cards from board",
|
|
11473
|
-
"<%= config.bin %> <%= command.id %> --limit 50 # Import up to 50 cards",
|
|
11474
|
-
"<%= config.bin %> <%= command.id %> --all # Import all matching cards",
|
|
11475
|
-
"<%= config.bin %> <%= command.id %> --dry-run # Preview what would be imported",
|
|
11476
|
-
"<%= config.bin %> <%= command.id %> --json # JSON output for scripting"
|
|
11477
|
-
],
|
|
11478
|
-
"flags": {
|
|
11479
|
-
"project": {
|
|
11480
|
-
"char": "P",
|
|
11481
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11482
|
-
"name": "project",
|
|
11483
|
-
"hasDynamicHelp": false,
|
|
11484
|
-
"multiple": false,
|
|
11485
|
-
"type": "option"
|
|
11486
|
-
},
|
|
11487
|
-
"json": {
|
|
11488
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11489
|
-
"name": "json",
|
|
11490
|
-
"allowNo": false,
|
|
11491
|
-
"type": "boolean"
|
|
11492
|
-
},
|
|
11493
|
-
"machine": {
|
|
11494
|
-
"char": "m",
|
|
11495
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11496
|
-
"name": "machine",
|
|
11497
|
-
"allowNo": false,
|
|
11498
|
-
"type": "boolean"
|
|
11499
|
-
},
|
|
11500
|
-
"limit": {
|
|
11501
|
-
"char": "n",
|
|
11502
|
-
"description": "Maximum number of cards to import",
|
|
11503
|
-
"name": "limit",
|
|
11504
|
-
"default": 50,
|
|
11505
|
-
"hasDynamicHelp": false,
|
|
11506
|
-
"multiple": false,
|
|
11507
|
-
"type": "option"
|
|
11508
|
-
},
|
|
11509
|
-
"all": {
|
|
11510
|
-
"char": "a",
|
|
11511
|
-
"description": "Import all matching cards without interactive selection",
|
|
11512
|
-
"name": "all",
|
|
11513
|
-
"allowNo": false,
|
|
11514
|
-
"type": "boolean"
|
|
11515
|
-
},
|
|
11516
|
-
"dry-run": {
|
|
11517
|
-
"description": "Preview cards that would be imported without creating tickets",
|
|
11518
|
-
"name": "dry-run",
|
|
11519
|
-
"allowNo": false,
|
|
11520
|
-
"type": "boolean"
|
|
11521
|
-
}
|
|
11522
|
-
},
|
|
11523
|
-
"hasDynamicHelp": false,
|
|
11524
|
-
"hiddenAliases": [],
|
|
11525
|
-
"id": "trello:import",
|
|
11526
|
-
"pluginAlias": "@proletariat/cli",
|
|
11527
|
-
"pluginName": "@proletariat/cli",
|
|
11528
|
-
"pluginType": "core",
|
|
11529
|
-
"strict": true,
|
|
11530
|
-
"isESM": true,
|
|
11531
|
-
"relativePath": [
|
|
11532
|
-
"dist",
|
|
11533
|
-
"commands",
|
|
11534
|
-
"trello",
|
|
11535
|
-
"import.js"
|
|
11536
|
-
]
|
|
11537
|
-
},
|
|
11538
|
-
"trello:sync": {
|
|
11539
|
-
"aliases": [],
|
|
11540
|
-
"args": {},
|
|
11541
|
-
"description": "Sync PMO tickets to Trello cards",
|
|
11542
|
-
"examples": [
|
|
11543
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --card abc123",
|
|
11544
|
-
"<%= config.bin %> <%= command.id %> --ticket TKT-001 --create-missing",
|
|
11545
|
-
"<%= config.bin %> <%= command.id %> --dry-run"
|
|
11546
|
-
],
|
|
11547
|
-
"flags": {
|
|
11548
|
-
"project": {
|
|
11549
|
-
"char": "P",
|
|
11550
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11551
|
-
"name": "project",
|
|
11552
|
-
"hasDynamicHelp": false,
|
|
11553
|
-
"multiple": false,
|
|
11554
|
-
"type": "option"
|
|
11555
|
-
},
|
|
11556
|
-
"json": {
|
|
11557
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11558
|
-
"name": "json",
|
|
11559
|
-
"allowNo": false,
|
|
11560
|
-
"type": "boolean"
|
|
11561
|
-
},
|
|
11562
|
-
"machine": {
|
|
11563
|
-
"char": "m",
|
|
11564
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11565
|
-
"name": "machine",
|
|
11566
|
-
"allowNo": false,
|
|
11567
|
-
"type": "boolean"
|
|
11568
|
-
},
|
|
11569
|
-
"ticket": {
|
|
11570
|
-
"description": "PMO ticket ID to sync (syncs all mapped tickets if omitted)",
|
|
11571
|
-
"name": "ticket",
|
|
11572
|
-
"hasDynamicHelp": false,
|
|
11573
|
-
"multiple": false,
|
|
11574
|
-
"type": "option"
|
|
11575
|
-
},
|
|
11576
|
-
"card": {
|
|
11577
|
-
"description": "Trello card ID to map to --ticket",
|
|
11578
|
-
"name": "card",
|
|
11579
|
-
"hasDynamicHelp": false,
|
|
11580
|
-
"multiple": false,
|
|
11581
|
-
"type": "option"
|
|
11582
|
-
},
|
|
11583
|
-
"list": {
|
|
11584
|
-
"description": "Trello list ID used with --create-missing",
|
|
11585
|
-
"name": "list",
|
|
11586
|
-
"hasDynamicHelp": false,
|
|
11587
|
-
"multiple": false,
|
|
11588
|
-
"type": "option"
|
|
11589
|
-
},
|
|
11590
|
-
"create-missing": {
|
|
11591
|
-
"description": "Create Trello card when no mapping exists (requires list)",
|
|
11592
|
-
"name": "create-missing",
|
|
11593
|
-
"allowNo": false,
|
|
11594
|
-
"type": "boolean"
|
|
11595
|
-
},
|
|
11596
|
-
"dry-run": {
|
|
11597
|
-
"description": "Preview sync operations without making changes",
|
|
11598
|
-
"name": "dry-run",
|
|
11599
|
-
"allowNo": false,
|
|
11600
|
-
"type": "boolean"
|
|
11601
|
-
}
|
|
11602
|
-
},
|
|
11603
|
-
"hasDynamicHelp": false,
|
|
11604
|
-
"hiddenAliases": [],
|
|
11605
|
-
"id": "trello:sync",
|
|
11606
|
-
"pluginAlias": "@proletariat/cli",
|
|
11607
|
-
"pluginName": "@proletariat/cli",
|
|
11608
|
-
"pluginType": "core",
|
|
11609
|
-
"strict": true,
|
|
11610
|
-
"isESM": true,
|
|
11611
|
-
"relativePath": [
|
|
11612
|
-
"dist",
|
|
11613
|
-
"commands",
|
|
11614
|
-
"trello",
|
|
11615
|
-
"sync.js"
|
|
11616
|
-
]
|
|
11617
|
-
},
|
|
11618
|
-
"version:bump": {
|
|
11619
|
-
"aliases": [],
|
|
11620
|
-
"args": {
|
|
11621
|
-
"type": {
|
|
11622
|
-
"description": "Version bump type",
|
|
11623
|
-
"name": "type",
|
|
11624
|
-
"options": [
|
|
11625
|
-
"major",
|
|
11626
|
-
"minor",
|
|
11627
|
-
"patch"
|
|
11628
|
-
],
|
|
11629
|
-
"required": true
|
|
11630
|
-
}
|
|
11631
|
-
},
|
|
11632
|
-
"description": "Bump the CLI version (major, minor, or patch), commit, push, and create a PR",
|
|
11633
|
-
"examples": [
|
|
11634
|
-
"<%= config.bin %> version bump patch",
|
|
11635
|
-
"<%= config.bin %> version bump minor",
|
|
11636
|
-
"<%= config.bin %> version bump major",
|
|
11637
|
-
"<%= config.bin %> version bump patch --json"
|
|
11638
|
-
],
|
|
11639
|
-
"flags": {
|
|
11640
|
-
"json": {
|
|
11641
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11642
|
-
"name": "json",
|
|
11643
|
-
"allowNo": false,
|
|
11644
|
-
"type": "boolean"
|
|
11645
|
-
},
|
|
11646
|
-
"machine": {
|
|
11647
|
-
"char": "m",
|
|
11648
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11649
|
-
"name": "machine",
|
|
11650
|
-
"allowNo": false,
|
|
11651
|
-
"type": "boolean"
|
|
11652
|
-
}
|
|
11653
|
-
},
|
|
11654
|
-
"hasDynamicHelp": false,
|
|
11655
|
-
"hiddenAliases": [],
|
|
11656
|
-
"id": "version:bump",
|
|
11657
|
-
"pluginAlias": "@proletariat/cli",
|
|
11658
|
-
"pluginName": "@proletariat/cli",
|
|
11659
|
-
"pluginType": "core",
|
|
11660
|
-
"strict": true,
|
|
11661
|
-
"enableJsonFlag": false,
|
|
11662
|
-
"isESM": true,
|
|
11663
|
-
"relativePath": [
|
|
11664
|
-
"dist",
|
|
11665
|
-
"commands",
|
|
11666
|
-
"version",
|
|
11667
|
-
"bump.js"
|
|
11668
|
-
]
|
|
11669
|
-
},
|
|
11670
|
-
"workspace:add": {
|
|
11671
|
-
"aliases": [],
|
|
11672
|
-
"args": {
|
|
11673
|
-
"path": {
|
|
11674
|
-
"description": "Path to the workspace to register",
|
|
11675
|
-
"name": "path",
|
|
11676
|
-
"required": true
|
|
11677
|
-
}
|
|
11678
|
-
},
|
|
11679
|
-
"description": "Register an existing workspace in the machine config",
|
|
11680
|
-
"examples": [
|
|
11681
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
11682
|
-
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
11683
|
-
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
11684
|
-
],
|
|
11685
|
-
"flags": {
|
|
11686
|
-
"json": {
|
|
11687
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11688
|
-
"name": "json",
|
|
11689
|
-
"allowNo": false,
|
|
11690
|
-
"type": "boolean"
|
|
11691
|
-
},
|
|
11692
|
-
"machine": {
|
|
11693
|
-
"char": "m",
|
|
11694
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11695
|
-
"name": "machine",
|
|
11696
|
-
"allowNo": false,
|
|
11697
|
-
"type": "boolean"
|
|
11698
|
-
},
|
|
11699
|
-
"name": {
|
|
11700
|
-
"char": "n",
|
|
11701
|
-
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
11702
|
-
"name": "name",
|
|
11703
|
-
"hasDynamicHelp": false,
|
|
11704
|
-
"multiple": false,
|
|
11705
|
-
"type": "option"
|
|
11706
|
-
}
|
|
11707
|
-
},
|
|
11708
|
-
"hasDynamicHelp": false,
|
|
11709
|
-
"hiddenAliases": [],
|
|
11710
|
-
"id": "workspace:add",
|
|
11711
|
-
"pluginAlias": "@proletariat/cli",
|
|
11712
|
-
"pluginName": "@proletariat/cli",
|
|
11713
|
-
"pluginType": "core",
|
|
11714
|
-
"strict": true,
|
|
11715
|
-
"enableJsonFlag": false,
|
|
11716
|
-
"isESM": true,
|
|
11717
|
-
"relativePath": [
|
|
11718
|
-
"dist",
|
|
11719
|
-
"commands",
|
|
11720
|
-
"workspace",
|
|
11721
|
-
"add.js"
|
|
11722
|
-
]
|
|
11723
|
-
},
|
|
11724
|
-
"workspace:list": {
|
|
11725
|
-
"aliases": [],
|
|
11726
|
-
"args": {},
|
|
11727
|
-
"description": "List all registered and discovered HQ workspaces",
|
|
11728
|
-
"examples": [
|
|
11729
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11730
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
11731
|
-
],
|
|
11732
|
-
"flags": {
|
|
11733
|
-
"json": {
|
|
11734
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11735
|
-
"name": "json",
|
|
11736
|
-
"allowNo": false,
|
|
11737
|
-
"type": "boolean"
|
|
11738
|
-
},
|
|
11739
|
-
"machine": {
|
|
11740
|
-
"char": "m",
|
|
11741
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11742
|
-
"name": "machine",
|
|
11743
|
-
"allowNo": false,
|
|
11744
|
-
"type": "boolean"
|
|
11745
|
-
}
|
|
11746
|
-
},
|
|
11747
|
-
"hasDynamicHelp": false,
|
|
11748
|
-
"hiddenAliases": [],
|
|
11749
|
-
"id": "workspace:list",
|
|
11750
|
-
"pluginAlias": "@proletariat/cli",
|
|
11751
|
-
"pluginName": "@proletariat/cli",
|
|
11752
|
-
"pluginType": "core",
|
|
11753
|
-
"strict": true,
|
|
11754
|
-
"enableJsonFlag": false,
|
|
11755
|
-
"isESM": true,
|
|
11756
|
-
"relativePath": [
|
|
11757
|
-
"dist",
|
|
11758
|
-
"commands",
|
|
11759
|
-
"workspace",
|
|
11760
|
-
"list.js"
|
|
11761
|
-
]
|
|
11762
|
-
},
|
|
11763
|
-
"workspace:prune": {
|
|
11764
|
-
"aliases": [],
|
|
11765
|
-
"args": {},
|
|
11766
|
-
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
11767
|
-
"examples": [
|
|
11768
|
-
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
11769
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11770
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
11771
|
-
],
|
|
11772
|
-
"flags": {
|
|
11773
|
-
"json": {
|
|
11774
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11775
|
-
"name": "json",
|
|
11776
|
-
"allowNo": false,
|
|
11777
|
-
"type": "boolean"
|
|
11778
|
-
},
|
|
11779
|
-
"machine": {
|
|
11780
|
-
"char": "m",
|
|
11781
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11782
|
-
"name": "machine",
|
|
11783
|
-
"allowNo": false,
|
|
11784
|
-
"type": "boolean"
|
|
11785
|
-
},
|
|
11786
|
-
"dry-run": {
|
|
11787
|
-
"char": "d",
|
|
11788
|
-
"description": "Show what would be removed without removing",
|
|
11789
|
-
"name": "dry-run",
|
|
11790
|
-
"allowNo": false,
|
|
11791
|
-
"type": "boolean"
|
|
11792
|
-
},
|
|
11793
|
-
"force": {
|
|
11794
|
-
"char": "f",
|
|
11795
|
-
"description": "Skip confirmation prompt and prune immediately",
|
|
11796
|
-
"name": "force",
|
|
11797
|
-
"allowNo": false,
|
|
11798
|
-
"type": "boolean"
|
|
11799
|
-
}
|
|
11800
|
-
},
|
|
11801
|
-
"hasDynamicHelp": false,
|
|
11802
|
-
"hiddenAliases": [],
|
|
11803
|
-
"id": "workspace:prune",
|
|
11804
|
-
"pluginAlias": "@proletariat/cli",
|
|
11805
|
-
"pluginName": "@proletariat/cli",
|
|
11806
|
-
"pluginType": "core",
|
|
11807
|
-
"strict": true,
|
|
11808
|
-
"isESM": true,
|
|
11809
|
-
"relativePath": [
|
|
11810
|
-
"dist",
|
|
11811
|
-
"commands",
|
|
11812
|
-
"workspace",
|
|
11813
|
-
"prune.js"
|
|
11814
|
-
]
|
|
11815
|
-
},
|
|
11816
|
-
"workspace:remove": {
|
|
11817
|
-
"aliases": [],
|
|
11818
|
-
"args": {
|
|
11819
|
-
"nameOrPath": {
|
|
11820
|
-
"description": "Workspace name or path to unregister",
|
|
11821
|
-
"name": "nameOrPath",
|
|
11822
|
-
"required": true
|
|
11823
|
-
}
|
|
11824
|
-
},
|
|
11825
|
-
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
11826
|
-
"examples": [
|
|
11827
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
11828
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
11829
|
-
],
|
|
11830
|
-
"flags": {
|
|
11831
|
-
"json": {
|
|
11832
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11833
|
-
"name": "json",
|
|
11834
|
-
"allowNo": false,
|
|
11835
|
-
"type": "boolean"
|
|
11836
|
-
},
|
|
11837
|
-
"machine": {
|
|
11838
|
-
"char": "m",
|
|
11839
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11840
|
-
"name": "machine",
|
|
11841
|
-
"allowNo": false,
|
|
11842
|
-
"type": "boolean"
|
|
11843
|
-
}
|
|
11844
|
-
},
|
|
11845
|
-
"hasDynamicHelp": false,
|
|
11846
|
-
"hiddenAliases": [],
|
|
11847
|
-
"id": "workspace:remove",
|
|
11848
|
-
"pluginAlias": "@proletariat/cli",
|
|
11849
|
-
"pluginName": "@proletariat/cli",
|
|
11850
|
-
"pluginType": "core",
|
|
11851
|
-
"strict": true,
|
|
11852
|
-
"isESM": true,
|
|
11853
|
-
"relativePath": [
|
|
11854
|
-
"dist",
|
|
11855
|
-
"commands",
|
|
11856
|
-
"workspace",
|
|
11857
|
-
"remove.js"
|
|
11858
|
-
]
|
|
11859
|
-
},
|
|
11860
|
-
"workspace:use": {
|
|
11861
|
-
"aliases": [],
|
|
11862
|
-
"args": {
|
|
11863
|
-
"nameOrPath": {
|
|
11864
|
-
"description": "Workspace name or path",
|
|
11865
|
-
"name": "nameOrPath",
|
|
11866
|
-
"required": true
|
|
11867
|
-
}
|
|
11868
|
-
},
|
|
11869
|
-
"description": "Set the active workspace",
|
|
11870
|
-
"examples": [
|
|
11871
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
11872
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
11684
|
+
"<%= config.bin %> <%= command.id %> TICK-001",
|
|
11685
|
+
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
11873
11686
|
],
|
|
11874
11687
|
"flags": {
|
|
11688
|
+
"project": {
|
|
11689
|
+
"char": "P",
|
|
11690
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11691
|
+
"name": "project",
|
|
11692
|
+
"hasDynamicHelp": false,
|
|
11693
|
+
"multiple": false,
|
|
11694
|
+
"type": "option"
|
|
11695
|
+
},
|
|
11875
11696
|
"json": {
|
|
11876
11697
|
"description": "Output as JSON for AI agents/scripts",
|
|
11877
11698
|
"name": "json",
|
|
@@ -11888,7 +11709,7 @@
|
|
|
11888
11709
|
},
|
|
11889
11710
|
"hasDynamicHelp": false,
|
|
11890
11711
|
"hiddenAliases": [],
|
|
11891
|
-
"id": "
|
|
11712
|
+
"id": "ticket:view",
|
|
11892
11713
|
"pluginAlias": "@proletariat/cli",
|
|
11893
11714
|
"pluginName": "@proletariat/cli",
|
|
11894
11715
|
"pluginType": "core",
|
|
@@ -11897,8 +11718,8 @@
|
|
|
11897
11718
|
"relativePath": [
|
|
11898
11719
|
"dist",
|
|
11899
11720
|
"commands",
|
|
11900
|
-
"
|
|
11901
|
-
"
|
|
11721
|
+
"ticket",
|
|
11722
|
+
"view.js"
|
|
11902
11723
|
]
|
|
11903
11724
|
},
|
|
11904
11725
|
"work:asana": {
|
|
@@ -13760,6 +13581,13 @@
|
|
|
13760
13581
|
"on-error-keep"
|
|
13761
13582
|
],
|
|
13762
13583
|
"type": "option"
|
|
13584
|
+
},
|
|
13585
|
+
"allow-network": {
|
|
13586
|
+
"description": "Extra domains to allow in container firewall (comma-separated, e.g., api.linear.app,api.slack.com)",
|
|
13587
|
+
"name": "allow-network",
|
|
13588
|
+
"hasDynamicHelp": false,
|
|
13589
|
+
"multiple": false,
|
|
13590
|
+
"type": "option"
|
|
13763
13591
|
}
|
|
13764
13592
|
},
|
|
13765
13593
|
"hasDynamicHelp": false,
|
|
@@ -14005,6 +13833,240 @@
|
|
|
14005
13833
|
"watch.js"
|
|
14006
13834
|
]
|
|
14007
13835
|
},
|
|
13836
|
+
"workspace:add": {
|
|
13837
|
+
"aliases": [],
|
|
13838
|
+
"args": {
|
|
13839
|
+
"path": {
|
|
13840
|
+
"description": "Path to the workspace to register",
|
|
13841
|
+
"name": "path",
|
|
13842
|
+
"required": true
|
|
13843
|
+
}
|
|
13844
|
+
},
|
|
13845
|
+
"description": "Register an existing workspace in the machine config",
|
|
13846
|
+
"examples": [
|
|
13847
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
13848
|
+
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
13849
|
+
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
13850
|
+
],
|
|
13851
|
+
"flags": {
|
|
13852
|
+
"json": {
|
|
13853
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13854
|
+
"name": "json",
|
|
13855
|
+
"allowNo": false,
|
|
13856
|
+
"type": "boolean"
|
|
13857
|
+
},
|
|
13858
|
+
"machine": {
|
|
13859
|
+
"char": "m",
|
|
13860
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13861
|
+
"name": "machine",
|
|
13862
|
+
"allowNo": false,
|
|
13863
|
+
"type": "boolean"
|
|
13864
|
+
},
|
|
13865
|
+
"name": {
|
|
13866
|
+
"char": "n",
|
|
13867
|
+
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
13868
|
+
"name": "name",
|
|
13869
|
+
"hasDynamicHelp": false,
|
|
13870
|
+
"multiple": false,
|
|
13871
|
+
"type": "option"
|
|
13872
|
+
}
|
|
13873
|
+
},
|
|
13874
|
+
"hasDynamicHelp": false,
|
|
13875
|
+
"hiddenAliases": [],
|
|
13876
|
+
"id": "workspace:add",
|
|
13877
|
+
"pluginAlias": "@proletariat/cli",
|
|
13878
|
+
"pluginName": "@proletariat/cli",
|
|
13879
|
+
"pluginType": "core",
|
|
13880
|
+
"strict": true,
|
|
13881
|
+
"enableJsonFlag": false,
|
|
13882
|
+
"isESM": true,
|
|
13883
|
+
"relativePath": [
|
|
13884
|
+
"dist",
|
|
13885
|
+
"commands",
|
|
13886
|
+
"workspace",
|
|
13887
|
+
"add.js"
|
|
13888
|
+
]
|
|
13889
|
+
},
|
|
13890
|
+
"workspace:list": {
|
|
13891
|
+
"aliases": [],
|
|
13892
|
+
"args": {},
|
|
13893
|
+
"description": "List all registered and discovered HQ workspaces",
|
|
13894
|
+
"examples": [
|
|
13895
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13896
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
13897
|
+
],
|
|
13898
|
+
"flags": {
|
|
13899
|
+
"json": {
|
|
13900
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13901
|
+
"name": "json",
|
|
13902
|
+
"allowNo": false,
|
|
13903
|
+
"type": "boolean"
|
|
13904
|
+
},
|
|
13905
|
+
"machine": {
|
|
13906
|
+
"char": "m",
|
|
13907
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13908
|
+
"name": "machine",
|
|
13909
|
+
"allowNo": false,
|
|
13910
|
+
"type": "boolean"
|
|
13911
|
+
}
|
|
13912
|
+
},
|
|
13913
|
+
"hasDynamicHelp": false,
|
|
13914
|
+
"hiddenAliases": [],
|
|
13915
|
+
"id": "workspace:list",
|
|
13916
|
+
"pluginAlias": "@proletariat/cli",
|
|
13917
|
+
"pluginName": "@proletariat/cli",
|
|
13918
|
+
"pluginType": "core",
|
|
13919
|
+
"strict": true,
|
|
13920
|
+
"enableJsonFlag": false,
|
|
13921
|
+
"isESM": true,
|
|
13922
|
+
"relativePath": [
|
|
13923
|
+
"dist",
|
|
13924
|
+
"commands",
|
|
13925
|
+
"workspace",
|
|
13926
|
+
"list.js"
|
|
13927
|
+
]
|
|
13928
|
+
},
|
|
13929
|
+
"workspace:prune": {
|
|
13930
|
+
"aliases": [],
|
|
13931
|
+
"args": {},
|
|
13932
|
+
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
13933
|
+
"examples": [
|
|
13934
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
13935
|
+
"<%= config.bin %> <%= command.id %>",
|
|
13936
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
13937
|
+
],
|
|
13938
|
+
"flags": {
|
|
13939
|
+
"json": {
|
|
13940
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13941
|
+
"name": "json",
|
|
13942
|
+
"allowNo": false,
|
|
13943
|
+
"type": "boolean"
|
|
13944
|
+
},
|
|
13945
|
+
"machine": {
|
|
13946
|
+
"char": "m",
|
|
13947
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13948
|
+
"name": "machine",
|
|
13949
|
+
"allowNo": false,
|
|
13950
|
+
"type": "boolean"
|
|
13951
|
+
},
|
|
13952
|
+
"dry-run": {
|
|
13953
|
+
"char": "d",
|
|
13954
|
+
"description": "Show what would be removed without removing",
|
|
13955
|
+
"name": "dry-run",
|
|
13956
|
+
"allowNo": false,
|
|
13957
|
+
"type": "boolean"
|
|
13958
|
+
},
|
|
13959
|
+
"force": {
|
|
13960
|
+
"char": "f",
|
|
13961
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
13962
|
+
"name": "force",
|
|
13963
|
+
"allowNo": false,
|
|
13964
|
+
"type": "boolean"
|
|
13965
|
+
}
|
|
13966
|
+
},
|
|
13967
|
+
"hasDynamicHelp": false,
|
|
13968
|
+
"hiddenAliases": [],
|
|
13969
|
+
"id": "workspace:prune",
|
|
13970
|
+
"pluginAlias": "@proletariat/cli",
|
|
13971
|
+
"pluginName": "@proletariat/cli",
|
|
13972
|
+
"pluginType": "core",
|
|
13973
|
+
"strict": true,
|
|
13974
|
+
"isESM": true,
|
|
13975
|
+
"relativePath": [
|
|
13976
|
+
"dist",
|
|
13977
|
+
"commands",
|
|
13978
|
+
"workspace",
|
|
13979
|
+
"prune.js"
|
|
13980
|
+
]
|
|
13981
|
+
},
|
|
13982
|
+
"workspace:remove": {
|
|
13983
|
+
"aliases": [],
|
|
13984
|
+
"args": {
|
|
13985
|
+
"nameOrPath": {
|
|
13986
|
+
"description": "Workspace name or path to unregister",
|
|
13987
|
+
"name": "nameOrPath",
|
|
13988
|
+
"required": true
|
|
13989
|
+
}
|
|
13990
|
+
},
|
|
13991
|
+
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
13992
|
+
"examples": [
|
|
13993
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
13994
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
13995
|
+
],
|
|
13996
|
+
"flags": {
|
|
13997
|
+
"json": {
|
|
13998
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13999
|
+
"name": "json",
|
|
14000
|
+
"allowNo": false,
|
|
14001
|
+
"type": "boolean"
|
|
14002
|
+
},
|
|
14003
|
+
"machine": {
|
|
14004
|
+
"char": "m",
|
|
14005
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14006
|
+
"name": "machine",
|
|
14007
|
+
"allowNo": false,
|
|
14008
|
+
"type": "boolean"
|
|
14009
|
+
}
|
|
14010
|
+
},
|
|
14011
|
+
"hasDynamicHelp": false,
|
|
14012
|
+
"hiddenAliases": [],
|
|
14013
|
+
"id": "workspace:remove",
|
|
14014
|
+
"pluginAlias": "@proletariat/cli",
|
|
14015
|
+
"pluginName": "@proletariat/cli",
|
|
14016
|
+
"pluginType": "core",
|
|
14017
|
+
"strict": true,
|
|
14018
|
+
"isESM": true,
|
|
14019
|
+
"relativePath": [
|
|
14020
|
+
"dist",
|
|
14021
|
+
"commands",
|
|
14022
|
+
"workspace",
|
|
14023
|
+
"remove.js"
|
|
14024
|
+
]
|
|
14025
|
+
},
|
|
14026
|
+
"workspace:use": {
|
|
14027
|
+
"aliases": [],
|
|
14028
|
+
"args": {
|
|
14029
|
+
"nameOrPath": {
|
|
14030
|
+
"description": "Workspace name or path",
|
|
14031
|
+
"name": "nameOrPath",
|
|
14032
|
+
"required": true
|
|
14033
|
+
}
|
|
14034
|
+
},
|
|
14035
|
+
"description": "Set the active workspace",
|
|
14036
|
+
"examples": [
|
|
14037
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
14038
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
14039
|
+
],
|
|
14040
|
+
"flags": {
|
|
14041
|
+
"json": {
|
|
14042
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14043
|
+
"name": "json",
|
|
14044
|
+
"allowNo": false,
|
|
14045
|
+
"type": "boolean"
|
|
14046
|
+
},
|
|
14047
|
+
"machine": {
|
|
14048
|
+
"char": "m",
|
|
14049
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14050
|
+
"name": "machine",
|
|
14051
|
+
"allowNo": false,
|
|
14052
|
+
"type": "boolean"
|
|
14053
|
+
}
|
|
14054
|
+
},
|
|
14055
|
+
"hasDynamicHelp": false,
|
|
14056
|
+
"hiddenAliases": [],
|
|
14057
|
+
"id": "workspace:use",
|
|
14058
|
+
"pluginAlias": "@proletariat/cli",
|
|
14059
|
+
"pluginName": "@proletariat/cli",
|
|
14060
|
+
"pluginType": "core",
|
|
14061
|
+
"strict": true,
|
|
14062
|
+
"isESM": true,
|
|
14063
|
+
"relativePath": [
|
|
14064
|
+
"dist",
|
|
14065
|
+
"commands",
|
|
14066
|
+
"workspace",
|
|
14067
|
+
"use.js"
|
|
14068
|
+
]
|
|
14069
|
+
},
|
|
14008
14070
|
"agent:staff:add": {
|
|
14009
14071
|
"aliases": [],
|
|
14010
14072
|
"args": {
|
|
@@ -15070,5 +15132,5 @@
|
|
|
15070
15132
|
]
|
|
15071
15133
|
}
|
|
15072
15134
|
},
|
|
15073
|
-
"version": "0.3.
|
|
15135
|
+
"version": "0.3.90"
|
|
15074
15136
|
}
|