@proletariat/cli 0.3.67 → 0.3.69
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/action/create.js +15 -1
- package/dist/commands/action/create.js.map +1 -1
- package/dist/commands/action/show.js +5 -2
- package/dist/commands/action/show.js.map +1 -1
- package/dist/commands/agent/index.js +7 -1
- package/dist/commands/agent/index.js.map +1 -1
- package/dist/commands/board/index.js +5 -1
- package/dist/commands/board/index.js.map +1 -1
- package/dist/commands/branch/validate.js +7 -1
- package/dist/commands/branch/validate.js.map +1 -1
- package/dist/commands/branch/where.js +4 -1
- package/dist/commands/branch/where.js.map +1 -1
- package/dist/commands/category/create.js +20 -1
- package/dist/commands/category/create.js.map +1 -1
- package/dist/commands/category/delete.js +19 -1
- package/dist/commands/category/delete.js.map +1 -1
- package/dist/commands/category/rename.js +28 -1
- package/dist/commands/category/rename.js.map +1 -1
- package/dist/commands/diet.js +4 -1
- package/dist/commands/diet.js.map +1 -1
- package/dist/commands/docker/clean.js +7 -0
- package/dist/commands/docker/clean.js.map +1 -1
- package/dist/commands/docker/index.js +5 -0
- package/dist/commands/docker/index.js.map +1 -1
- package/dist/commands/docker/logs.js +19 -1
- package/dist/commands/docker/logs.js.map +1 -1
- package/dist/commands/docker/prune.js +4 -0
- package/dist/commands/docker/prune.js.map +1 -1
- package/dist/commands/docker/restart.js +17 -0
- package/dist/commands/docker/restart.js.map +1 -1
- package/dist/commands/docker/start.js +13 -1
- package/dist/commands/docker/start.js.map +1 -1
- package/dist/commands/docker/stop.js +14 -0
- package/dist/commands/docker/stop.js.map +1 -1
- package/dist/commands/epic/create.js +4 -1
- package/dist/commands/epic/create.js.map +1 -1
- package/dist/commands/epic/progress.js +4 -0
- package/dist/commands/epic/progress.js.map +1 -1
- package/dist/commands/epic/project.js +1 -1
- package/dist/commands/epic/project.js.map +1 -1
- package/dist/commands/epic/reorder.js +2 -2
- package/dist/commands/epic/reorder.js.map +1 -1
- package/dist/commands/epic/spec.js +1 -1
- package/dist/commands/epic/spec.js.map +1 -1
- package/dist/commands/epic/ticket.js +2 -2
- package/dist/commands/epic/ticket.js.map +1 -1
- package/dist/commands/execution/list.js +4 -1
- package/dist/commands/execution/list.js.map +1 -1
- package/dist/commands/execution/stop.js +8 -1
- package/dist/commands/execution/stop.js.map +1 -1
- package/dist/commands/media/add.js +3 -0
- package/dist/commands/media/add.js.map +1 -1
- package/dist/commands/media/index.js +7 -1
- package/dist/commands/media/index.js.map +1 -1
- package/dist/commands/media/list.js +5 -1
- package/dist/commands/media/list.js.map +1 -1
- package/dist/commands/media/remove.js +3 -0
- package/dist/commands/media/remove.js.map +1 -1
- package/dist/commands/pr/create.js +3 -3
- package/dist/commands/pr/create.js.map +1 -1
- package/dist/commands/project/create.js +4 -1
- package/dist/commands/project/create.js.map +1 -1
- package/dist/commands/pull.js +10 -1
- package/dist/commands/pull.js.map +1 -1
- package/dist/commands/roadmap/create.js +4 -1
- package/dist/commands/roadmap/create.js.map +1 -1
- package/dist/commands/session/health.d.ts +6 -0
- package/dist/commands/session/health.js +115 -8
- package/dist/commands/session/health.js.map +1 -1
- package/dist/commands/session/poke.js +3 -57
- package/dist/commands/session/poke.js.map +1 -1
- package/dist/commands/status/delete.js +3 -0
- package/dist/commands/status/delete.js.map +1 -1
- package/dist/commands/status/list.js +4 -1
- package/dist/commands/status/list.js.map +1 -1
- package/dist/commands/status/move.js +3 -0
- package/dist/commands/status/move.js.map +1 -1
- package/dist/commands/ticket/create.d.ts +2 -0
- package/dist/commands/ticket/create.js +103 -4
- package/dist/commands/ticket/create.js.map +1 -1
- package/dist/commands/ticket/delete.js +1 -1
- package/dist/commands/ticket/delete.js.map +1 -1
- package/dist/commands/ticket/edit.js +1 -1
- package/dist/commands/ticket/edit.js.map +1 -1
- package/dist/commands/ticket/move.js +3 -3
- package/dist/commands/ticket/move.js.map +1 -1
- package/dist/commands/ticket/update.js +3 -0
- package/dist/commands/ticket/update.js.map +1 -1
- package/dist/commands/ticket/view.js +1 -1
- package/dist/commands/ticket/view.js.map +1 -1
- package/dist/commands/work/complete.js +1 -1
- package/dist/commands/work/complete.js.map +1 -1
- package/dist/commands/work/ready.js +4 -1
- package/dist/commands/work/ready.js.map +1 -1
- package/dist/commands/work/source/set.js +4 -4
- package/dist/commands/work/source/set.js.map +1 -1
- package/dist/commands/work/source.js +15 -15
- package/dist/commands/work/source.js.map +1 -1
- package/dist/commands/work/spawn.js +6 -6
- package/dist/commands/work/spawn.js.map +1 -1
- package/dist/commands/work/start.js +43 -19
- package/dist/commands/work/start.js.map +1 -1
- package/dist/commands/workspace/add.js +16 -1
- package/dist/commands/workspace/add.js.map +1 -1
- package/dist/lib/execution/session-utils.d.ts +6 -0
- package/dist/lib/execution/session-utils.js +50 -0
- package/dist/lib/execution/session-utils.js.map +1 -1
- package/dist/lib/linear/client.d.ts +9 -0
- package/dist/lib/linear/client.js +20 -0
- package/dist/lib/linear/client.js.map +1 -1
- package/dist/lib/work-source/config.d.ts +14 -3
- package/dist/lib/work-source/config.js +35 -7
- package/dist/lib/work-source/config.js.map +1 -1
- package/dist/lib/work-source/index.d.ts +7 -1
- package/dist/lib/work-source/index.js +7 -1
- package/dist/lib/work-source/index.js.map +1 -1
- package/oclif.manifest.json +998 -989
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -2271,6 +2271,61 @@
|
|
|
2271
2271
|
"sync.js"
|
|
2272
2272
|
]
|
|
2273
2273
|
},
|
|
2274
|
+
"agents": {
|
|
2275
|
+
"aliases": [],
|
|
2276
|
+
"args": {},
|
|
2277
|
+
"description": "List all agents across all projects (machine-wide registry)",
|
|
2278
|
+
"examples": [
|
|
2279
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2280
|
+
"<%= config.bin %> <%= command.id %> --status running",
|
|
2281
|
+
"<%= config.bin %> <%= command.id %> --project /path/to/project",
|
|
2282
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
2283
|
+
],
|
|
2284
|
+
"flags": {
|
|
2285
|
+
"status": {
|
|
2286
|
+
"char": "s",
|
|
2287
|
+
"description": "Filter by agent status",
|
|
2288
|
+
"name": "status",
|
|
2289
|
+
"hasDynamicHelp": false,
|
|
2290
|
+
"multiple": false,
|
|
2291
|
+
"options": [
|
|
2292
|
+
"running",
|
|
2293
|
+
"idle",
|
|
2294
|
+
"completed"
|
|
2295
|
+
],
|
|
2296
|
+
"type": "option"
|
|
2297
|
+
},
|
|
2298
|
+
"project": {
|
|
2299
|
+
"char": "p",
|
|
2300
|
+
"description": "Filter by project path",
|
|
2301
|
+
"name": "project",
|
|
2302
|
+
"hasDynamicHelp": false,
|
|
2303
|
+
"multiple": false,
|
|
2304
|
+
"type": "option"
|
|
2305
|
+
},
|
|
2306
|
+
"json": {
|
|
2307
|
+
"description": "Output as JSON",
|
|
2308
|
+
"name": "json",
|
|
2309
|
+
"allowNo": false,
|
|
2310
|
+
"type": "boolean"
|
|
2311
|
+
}
|
|
2312
|
+
},
|
|
2313
|
+
"hasDynamicHelp": false,
|
|
2314
|
+
"hiddenAliases": [],
|
|
2315
|
+
"id": "agents",
|
|
2316
|
+
"pluginAlias": "@proletariat/cli",
|
|
2317
|
+
"pluginName": "@proletariat/cli",
|
|
2318
|
+
"pluginType": "core",
|
|
2319
|
+
"strict": true,
|
|
2320
|
+
"enableJsonFlag": false,
|
|
2321
|
+
"isESM": true,
|
|
2322
|
+
"relativePath": [
|
|
2323
|
+
"dist",
|
|
2324
|
+
"commands",
|
|
2325
|
+
"agents",
|
|
2326
|
+
"index.js"
|
|
2327
|
+
]
|
|
2328
|
+
},
|
|
2274
2329
|
"autocomplete:setup": {
|
|
2275
2330
|
"aliases": [],
|
|
2276
2331
|
"args": {},
|
|
@@ -2331,61 +2386,6 @@
|
|
|
2331
2386
|
"setup.js"
|
|
2332
2387
|
]
|
|
2333
2388
|
},
|
|
2334
|
-
"agents": {
|
|
2335
|
-
"aliases": [],
|
|
2336
|
-
"args": {},
|
|
2337
|
-
"description": "List all agents across all projects (machine-wide registry)",
|
|
2338
|
-
"examples": [
|
|
2339
|
-
"<%= config.bin %> <%= command.id %>",
|
|
2340
|
-
"<%= config.bin %> <%= command.id %> --status running",
|
|
2341
|
-
"<%= config.bin %> <%= command.id %> --project /path/to/project",
|
|
2342
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
2343
|
-
],
|
|
2344
|
-
"flags": {
|
|
2345
|
-
"status": {
|
|
2346
|
-
"char": "s",
|
|
2347
|
-
"description": "Filter by agent status",
|
|
2348
|
-
"name": "status",
|
|
2349
|
-
"hasDynamicHelp": false,
|
|
2350
|
-
"multiple": false,
|
|
2351
|
-
"options": [
|
|
2352
|
-
"running",
|
|
2353
|
-
"idle",
|
|
2354
|
-
"completed"
|
|
2355
|
-
],
|
|
2356
|
-
"type": "option"
|
|
2357
|
-
},
|
|
2358
|
-
"project": {
|
|
2359
|
-
"char": "p",
|
|
2360
|
-
"description": "Filter by project path",
|
|
2361
|
-
"name": "project",
|
|
2362
|
-
"hasDynamicHelp": false,
|
|
2363
|
-
"multiple": false,
|
|
2364
|
-
"type": "option"
|
|
2365
|
-
},
|
|
2366
|
-
"json": {
|
|
2367
|
-
"description": "Output as JSON",
|
|
2368
|
-
"name": "json",
|
|
2369
|
-
"allowNo": false,
|
|
2370
|
-
"type": "boolean"
|
|
2371
|
-
}
|
|
2372
|
-
},
|
|
2373
|
-
"hasDynamicHelp": false,
|
|
2374
|
-
"hiddenAliases": [],
|
|
2375
|
-
"id": "agents",
|
|
2376
|
-
"pluginAlias": "@proletariat/cli",
|
|
2377
|
-
"pluginName": "@proletariat/cli",
|
|
2378
|
-
"pluginType": "core",
|
|
2379
|
-
"strict": true,
|
|
2380
|
-
"enableJsonFlag": false,
|
|
2381
|
-
"isESM": true,
|
|
2382
|
-
"relativePath": [
|
|
2383
|
-
"dist",
|
|
2384
|
-
"commands",
|
|
2385
|
-
"agents",
|
|
2386
|
-
"index.js"
|
|
2387
|
-
]
|
|
2388
|
-
},
|
|
2389
2389
|
"board": {
|
|
2390
2390
|
"aliases": [],
|
|
2391
2391
|
"args": {},
|
|
@@ -4902,29 +4902,15 @@
|
|
|
4902
4902
|
"view.js"
|
|
4903
4903
|
]
|
|
4904
4904
|
},
|
|
4905
|
-
"
|
|
4905
|
+
"feedback": {
|
|
4906
4906
|
"aliases": [],
|
|
4907
|
-
"args": {
|
|
4908
|
-
|
|
4909
|
-
"description": "Epic ID",
|
|
4910
|
-
"name": "id",
|
|
4911
|
-
"required": false
|
|
4912
|
-
}
|
|
4913
|
-
},
|
|
4914
|
-
"description": "Activate a draft or archived epic",
|
|
4907
|
+
"args": {},
|
|
4908
|
+
"description": "Interactive menu for feedback and issue operations",
|
|
4915
4909
|
"examples": [
|
|
4916
|
-
"<%= config.bin %> <%= command.id %>
|
|
4917
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4910
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4911
|
+
"<%= config.bin %> <%= command.id %> --action submit"
|
|
4918
4912
|
],
|
|
4919
4913
|
"flags": {
|
|
4920
|
-
"project": {
|
|
4921
|
-
"char": "P",
|
|
4922
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4923
|
-
"name": "project",
|
|
4924
|
-
"hasDynamicHelp": false,
|
|
4925
|
-
"multiple": false,
|
|
4926
|
-
"type": "option"
|
|
4927
|
-
},
|
|
4928
4914
|
"json": {
|
|
4929
4915
|
"description": "Output as JSON for AI agents/scripts",
|
|
4930
4916
|
"name": "json",
|
|
@@ -4937,46 +4923,48 @@
|
|
|
4937
4923
|
"name": "machine",
|
|
4938
4924
|
"allowNo": false,
|
|
4939
4925
|
"type": "boolean"
|
|
4926
|
+
},
|
|
4927
|
+
"action": {
|
|
4928
|
+
"char": "a",
|
|
4929
|
+
"description": "Action to perform (submit, list, view)",
|
|
4930
|
+
"name": "action",
|
|
4931
|
+
"hasDynamicHelp": false,
|
|
4932
|
+
"multiple": false,
|
|
4933
|
+
"options": [
|
|
4934
|
+
"submit",
|
|
4935
|
+
"list",
|
|
4936
|
+
"view"
|
|
4937
|
+
],
|
|
4938
|
+
"type": "option"
|
|
4940
4939
|
}
|
|
4941
4940
|
},
|
|
4942
4941
|
"hasDynamicHelp": false,
|
|
4943
4942
|
"hiddenAliases": [],
|
|
4944
|
-
"id": "
|
|
4943
|
+
"id": "feedback",
|
|
4945
4944
|
"pluginAlias": "@proletariat/cli",
|
|
4946
4945
|
"pluginName": "@proletariat/cli",
|
|
4947
4946
|
"pluginType": "core",
|
|
4948
4947
|
"strict": true,
|
|
4948
|
+
"enableJsonFlag": false,
|
|
4949
4949
|
"isESM": true,
|
|
4950
4950
|
"relativePath": [
|
|
4951
4951
|
"dist",
|
|
4952
4952
|
"commands",
|
|
4953
|
-
"
|
|
4954
|
-
"
|
|
4953
|
+
"feedback",
|
|
4954
|
+
"index.js"
|
|
4955
4955
|
]
|
|
4956
4956
|
},
|
|
4957
|
-
"
|
|
4957
|
+
"feedback:list": {
|
|
4958
4958
|
"aliases": [],
|
|
4959
|
-
"args": {
|
|
4960
|
-
|
|
4961
|
-
"description": "Epic ID",
|
|
4962
|
-
"name": "id",
|
|
4963
|
-
"required": false
|
|
4964
|
-
}
|
|
4965
|
-
},
|
|
4966
|
-
"description": "Archive a completed epic",
|
|
4959
|
+
"args": {},
|
|
4960
|
+
"description": "List recent feedback issues from the repository",
|
|
4967
4961
|
"examples": [
|
|
4968
|
-
"<%= config.bin %> <%= command.id %>
|
|
4969
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4962
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4963
|
+
"<%= config.bin %> <%= command.id %> --category bug",
|
|
4964
|
+
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
4965
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
4970
4966
|
],
|
|
4971
4967
|
"flags": {
|
|
4972
|
-
"project": {
|
|
4973
|
-
"char": "P",
|
|
4974
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
4975
|
-
"name": "project",
|
|
4976
|
-
"hasDynamicHelp": false,
|
|
4977
|
-
"multiple": false,
|
|
4978
|
-
"type": "option"
|
|
4979
|
-
},
|
|
4980
4968
|
"json": {
|
|
4981
4969
|
"description": "Output as JSON for AI agents/scripts",
|
|
4982
4970
|
"name": "json",
|
|
@@ -4990,49 +4978,69 @@
|
|
|
4990
4978
|
"allowNo": false,
|
|
4991
4979
|
"type": "boolean"
|
|
4992
4980
|
},
|
|
4993
|
-
"
|
|
4994
|
-
"char": "
|
|
4995
|
-
"description": "
|
|
4996
|
-
"name": "
|
|
4997
|
-
"
|
|
4998
|
-
"
|
|
4981
|
+
"category": {
|
|
4982
|
+
"char": "c",
|
|
4983
|
+
"description": "Filter by category (bug, feature, general)",
|
|
4984
|
+
"name": "category",
|
|
4985
|
+
"hasDynamicHelp": false,
|
|
4986
|
+
"multiple": false,
|
|
4987
|
+
"options": [
|
|
4988
|
+
"bug",
|
|
4989
|
+
"feature",
|
|
4990
|
+
"general"
|
|
4991
|
+
],
|
|
4992
|
+
"type": "option"
|
|
4993
|
+
},
|
|
4994
|
+
"state": {
|
|
4995
|
+
"char": "s",
|
|
4996
|
+
"description": "Filter by state",
|
|
4997
|
+
"name": "state",
|
|
4998
|
+
"default": "open",
|
|
4999
|
+
"hasDynamicHelp": false,
|
|
5000
|
+
"multiple": false,
|
|
5001
|
+
"options": [
|
|
5002
|
+
"open",
|
|
5003
|
+
"closed",
|
|
5004
|
+
"all"
|
|
5005
|
+
],
|
|
5006
|
+
"type": "option"
|
|
5007
|
+
},
|
|
5008
|
+
"limit": {
|
|
5009
|
+
"char": "l",
|
|
5010
|
+
"description": "Maximum number of issues to show",
|
|
5011
|
+
"name": "limit",
|
|
5012
|
+
"default": 20,
|
|
5013
|
+
"hasDynamicHelp": false,
|
|
5014
|
+
"multiple": false,
|
|
5015
|
+
"type": "option"
|
|
4999
5016
|
}
|
|
5000
5017
|
},
|
|
5001
5018
|
"hasDynamicHelp": false,
|
|
5002
5019
|
"hiddenAliases": [],
|
|
5003
|
-
"id": "
|
|
5020
|
+
"id": "feedback:list",
|
|
5004
5021
|
"pluginAlias": "@proletariat/cli",
|
|
5005
5022
|
"pluginName": "@proletariat/cli",
|
|
5006
5023
|
"pluginType": "core",
|
|
5007
5024
|
"strict": true,
|
|
5025
|
+
"enableJsonFlag": false,
|
|
5008
5026
|
"isESM": true,
|
|
5009
5027
|
"relativePath": [
|
|
5010
5028
|
"dist",
|
|
5011
5029
|
"commands",
|
|
5012
|
-
"
|
|
5013
|
-
"
|
|
5030
|
+
"feedback",
|
|
5031
|
+
"list.js"
|
|
5014
5032
|
]
|
|
5015
5033
|
},
|
|
5016
|
-
"
|
|
5034
|
+
"feedback:submit": {
|
|
5017
5035
|
"aliases": [],
|
|
5018
5036
|
"args": {},
|
|
5019
|
-
"description": "
|
|
5037
|
+
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
5020
5038
|
"examples": [
|
|
5021
5039
|
"<%= config.bin %> <%= command.id %>",
|
|
5022
|
-
"<%= config.bin %> <%= command.id %> --title \"
|
|
5023
|
-
"<%= config.bin %> <%= command.id %>
|
|
5024
|
-
"<%= config.bin %> <%= command.id %> -t \"Implement Auth\" --spec SPEC-001",
|
|
5025
|
-
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating"
|
|
5040
|
+
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
5041
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
5026
5042
|
],
|
|
5027
5043
|
"flags": {
|
|
5028
|
-
"project": {
|
|
5029
|
-
"char": "P",
|
|
5030
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
5031
|
-
"name": "project",
|
|
5032
|
-
"hasDynamicHelp": false,
|
|
5033
|
-
"multiple": false,
|
|
5034
|
-
"type": "option"
|
|
5035
|
-
},
|
|
5036
5044
|
"json": {
|
|
5037
5045
|
"description": "Output as JSON for AI agents/scripts",
|
|
5038
5046
|
"name": "json",
|
|
@@ -5048,20 +5056,254 @@
|
|
|
5048
5056
|
},
|
|
5049
5057
|
"title": {
|
|
5050
5058
|
"char": "t",
|
|
5051
|
-
"description": "
|
|
5059
|
+
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
5052
5060
|
"name": "title",
|
|
5053
5061
|
"hasDynamicHelp": false,
|
|
5054
5062
|
"multiple": false,
|
|
5055
5063
|
"type": "option"
|
|
5056
5064
|
},
|
|
5057
|
-
"
|
|
5058
|
-
"char": "
|
|
5059
|
-
"description": "
|
|
5060
|
-
"name": "
|
|
5061
|
-
"
|
|
5062
|
-
"
|
|
5063
|
-
"
|
|
5064
|
-
|
|
5065
|
+
"body": {
|
|
5066
|
+
"char": "b",
|
|
5067
|
+
"description": "Issue description [required for non-interactive]",
|
|
5068
|
+
"name": "body",
|
|
5069
|
+
"hasDynamicHelp": false,
|
|
5070
|
+
"multiple": false,
|
|
5071
|
+
"type": "option"
|
|
5072
|
+
},
|
|
5073
|
+
"category": {
|
|
5074
|
+
"char": "c",
|
|
5075
|
+
"description": "Feedback category",
|
|
5076
|
+
"name": "category",
|
|
5077
|
+
"hasDynamicHelp": false,
|
|
5078
|
+
"multiple": false,
|
|
5079
|
+
"options": [
|
|
5080
|
+
"bug",
|
|
5081
|
+
"feature",
|
|
5082
|
+
"general"
|
|
5083
|
+
],
|
|
5084
|
+
"type": "option"
|
|
5085
|
+
}
|
|
5086
|
+
},
|
|
5087
|
+
"hasDynamicHelp": false,
|
|
5088
|
+
"hiddenAliases": [],
|
|
5089
|
+
"id": "feedback:submit",
|
|
5090
|
+
"pluginAlias": "@proletariat/cli",
|
|
5091
|
+
"pluginName": "@proletariat/cli",
|
|
5092
|
+
"pluginType": "core",
|
|
5093
|
+
"strict": true,
|
|
5094
|
+
"isESM": true,
|
|
5095
|
+
"relativePath": [
|
|
5096
|
+
"dist",
|
|
5097
|
+
"commands",
|
|
5098
|
+
"feedback",
|
|
5099
|
+
"submit.js"
|
|
5100
|
+
]
|
|
5101
|
+
},
|
|
5102
|
+
"feedback:view": {
|
|
5103
|
+
"aliases": [],
|
|
5104
|
+
"args": {
|
|
5105
|
+
"number": {
|
|
5106
|
+
"description": "Issue number to view",
|
|
5107
|
+
"name": "number",
|
|
5108
|
+
"required": true
|
|
5109
|
+
}
|
|
5110
|
+
},
|
|
5111
|
+
"description": "View details of a specific feedback issue",
|
|
5112
|
+
"examples": [
|
|
5113
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
5114
|
+
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
5115
|
+
],
|
|
5116
|
+
"flags": {
|
|
5117
|
+
"json": {
|
|
5118
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5119
|
+
"name": "json",
|
|
5120
|
+
"allowNo": false,
|
|
5121
|
+
"type": "boolean"
|
|
5122
|
+
},
|
|
5123
|
+
"machine": {
|
|
5124
|
+
"char": "m",
|
|
5125
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5126
|
+
"name": "machine",
|
|
5127
|
+
"allowNo": false,
|
|
5128
|
+
"type": "boolean"
|
|
5129
|
+
}
|
|
5130
|
+
},
|
|
5131
|
+
"hasDynamicHelp": false,
|
|
5132
|
+
"hiddenAliases": [],
|
|
5133
|
+
"id": "feedback:view",
|
|
5134
|
+
"pluginAlias": "@proletariat/cli",
|
|
5135
|
+
"pluginName": "@proletariat/cli",
|
|
5136
|
+
"pluginType": "core",
|
|
5137
|
+
"strict": true,
|
|
5138
|
+
"enableJsonFlag": false,
|
|
5139
|
+
"isESM": true,
|
|
5140
|
+
"relativePath": [
|
|
5141
|
+
"dist",
|
|
5142
|
+
"commands",
|
|
5143
|
+
"feedback",
|
|
5144
|
+
"view.js"
|
|
5145
|
+
]
|
|
5146
|
+
},
|
|
5147
|
+
"epic:activate": {
|
|
5148
|
+
"aliases": [],
|
|
5149
|
+
"args": {
|
|
5150
|
+
"id": {
|
|
5151
|
+
"description": "Epic ID",
|
|
5152
|
+
"name": "id",
|
|
5153
|
+
"required": false
|
|
5154
|
+
}
|
|
5155
|
+
},
|
|
5156
|
+
"description": "Activate a draft or archived epic",
|
|
5157
|
+
"examples": [
|
|
5158
|
+
"<%= config.bin %> <%= command.id %> EPIC-004",
|
|
5159
|
+
"<%= config.bin %> <%= command.id %>"
|
|
5160
|
+
],
|
|
5161
|
+
"flags": {
|
|
5162
|
+
"project": {
|
|
5163
|
+
"char": "P",
|
|
5164
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
5165
|
+
"name": "project",
|
|
5166
|
+
"hasDynamicHelp": false,
|
|
5167
|
+
"multiple": false,
|
|
5168
|
+
"type": "option"
|
|
5169
|
+
},
|
|
5170
|
+
"json": {
|
|
5171
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5172
|
+
"name": "json",
|
|
5173
|
+
"allowNo": false,
|
|
5174
|
+
"type": "boolean"
|
|
5175
|
+
},
|
|
5176
|
+
"machine": {
|
|
5177
|
+
"char": "m",
|
|
5178
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5179
|
+
"name": "machine",
|
|
5180
|
+
"allowNo": false,
|
|
5181
|
+
"type": "boolean"
|
|
5182
|
+
}
|
|
5183
|
+
},
|
|
5184
|
+
"hasDynamicHelp": false,
|
|
5185
|
+
"hiddenAliases": [],
|
|
5186
|
+
"id": "epic:activate",
|
|
5187
|
+
"pluginAlias": "@proletariat/cli",
|
|
5188
|
+
"pluginName": "@proletariat/cli",
|
|
5189
|
+
"pluginType": "core",
|
|
5190
|
+
"strict": true,
|
|
5191
|
+
"isESM": true,
|
|
5192
|
+
"relativePath": [
|
|
5193
|
+
"dist",
|
|
5194
|
+
"commands",
|
|
5195
|
+
"epic",
|
|
5196
|
+
"activate.js"
|
|
5197
|
+
]
|
|
5198
|
+
},
|
|
5199
|
+
"epic:archive": {
|
|
5200
|
+
"aliases": [],
|
|
5201
|
+
"args": {
|
|
5202
|
+
"id": {
|
|
5203
|
+
"description": "Epic ID",
|
|
5204
|
+
"name": "id",
|
|
5205
|
+
"required": false
|
|
5206
|
+
}
|
|
5207
|
+
},
|
|
5208
|
+
"description": "Archive a completed epic",
|
|
5209
|
+
"examples": [
|
|
5210
|
+
"<%= config.bin %> <%= command.id %> EPIC-002",
|
|
5211
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
5212
|
+
],
|
|
5213
|
+
"flags": {
|
|
5214
|
+
"project": {
|
|
5215
|
+
"char": "P",
|
|
5216
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
5217
|
+
"name": "project",
|
|
5218
|
+
"hasDynamicHelp": false,
|
|
5219
|
+
"multiple": false,
|
|
5220
|
+
"type": "option"
|
|
5221
|
+
},
|
|
5222
|
+
"json": {
|
|
5223
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5224
|
+
"name": "json",
|
|
5225
|
+
"allowNo": false,
|
|
5226
|
+
"type": "boolean"
|
|
5227
|
+
},
|
|
5228
|
+
"machine": {
|
|
5229
|
+
"char": "m",
|
|
5230
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5231
|
+
"name": "machine",
|
|
5232
|
+
"allowNo": false,
|
|
5233
|
+
"type": "boolean"
|
|
5234
|
+
},
|
|
5235
|
+
"force": {
|
|
5236
|
+
"char": "f",
|
|
5237
|
+
"description": "Skip ticket completion check",
|
|
5238
|
+
"name": "force",
|
|
5239
|
+
"allowNo": false,
|
|
5240
|
+
"type": "boolean"
|
|
5241
|
+
}
|
|
5242
|
+
},
|
|
5243
|
+
"hasDynamicHelp": false,
|
|
5244
|
+
"hiddenAliases": [],
|
|
5245
|
+
"id": "epic:archive",
|
|
5246
|
+
"pluginAlias": "@proletariat/cli",
|
|
5247
|
+
"pluginName": "@proletariat/cli",
|
|
5248
|
+
"pluginType": "core",
|
|
5249
|
+
"strict": true,
|
|
5250
|
+
"isESM": true,
|
|
5251
|
+
"relativePath": [
|
|
5252
|
+
"dist",
|
|
5253
|
+
"commands",
|
|
5254
|
+
"epic",
|
|
5255
|
+
"archive.js"
|
|
5256
|
+
]
|
|
5257
|
+
},
|
|
5258
|
+
"epic:create": {
|
|
5259
|
+
"aliases": [],
|
|
5260
|
+
"args": {},
|
|
5261
|
+
"description": "Create a new epic",
|
|
5262
|
+
"examples": [
|
|
5263
|
+
"<%= config.bin %> <%= command.id %>",
|
|
5264
|
+
"<%= config.bin %> <%= command.id %> --title \"User Authentication System\"",
|
|
5265
|
+
"<%= config.bin %> <%= command.id %> -t \"API Design\" --status draft",
|
|
5266
|
+
"<%= config.bin %> <%= command.id %> -t \"Implement Auth\" --spec SPEC-001",
|
|
5267
|
+
"<%= config.bin %> <%= command.id %> --title \"Test\" -P PROJ-001 --dry-run --json # Validate without creating"
|
|
5268
|
+
],
|
|
5269
|
+
"flags": {
|
|
5270
|
+
"project": {
|
|
5271
|
+
"char": "P",
|
|
5272
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
5273
|
+
"name": "project",
|
|
5274
|
+
"hasDynamicHelp": false,
|
|
5275
|
+
"multiple": false,
|
|
5276
|
+
"type": "option"
|
|
5277
|
+
},
|
|
5278
|
+
"json": {
|
|
5279
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5280
|
+
"name": "json",
|
|
5281
|
+
"allowNo": false,
|
|
5282
|
+
"type": "boolean"
|
|
5283
|
+
},
|
|
5284
|
+
"machine": {
|
|
5285
|
+
"char": "m",
|
|
5286
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
5287
|
+
"name": "machine",
|
|
5288
|
+
"allowNo": false,
|
|
5289
|
+
"type": "boolean"
|
|
5290
|
+
},
|
|
5291
|
+
"title": {
|
|
5292
|
+
"char": "t",
|
|
5293
|
+
"description": "Epic title [required for non-interactive]",
|
|
5294
|
+
"name": "title",
|
|
5295
|
+
"hasDynamicHelp": false,
|
|
5296
|
+
"multiple": false,
|
|
5297
|
+
"type": "option"
|
|
5298
|
+
},
|
|
5299
|
+
"status": {
|
|
5300
|
+
"char": "s",
|
|
5301
|
+
"description": "Initial status",
|
|
5302
|
+
"name": "status",
|
|
5303
|
+
"default": "active",
|
|
5304
|
+
"hasDynamicHelp": false,
|
|
5305
|
+
"multiple": false,
|
|
5306
|
+
"options": [
|
|
5065
5307
|
"active",
|
|
5066
5308
|
"draft"
|
|
5067
5309
|
],
|
|
@@ -5845,257 +6087,15 @@
|
|
|
5845
6087
|
"view.js"
|
|
5846
6088
|
]
|
|
5847
6089
|
},
|
|
5848
|
-
"
|
|
6090
|
+
"gh": {
|
|
5849
6091
|
"aliases": [],
|
|
5850
6092
|
"args": {},
|
|
5851
|
-
"description": "
|
|
6093
|
+
"description": "GitHub CLI setup and status for PR workflow",
|
|
5852
6094
|
"examples": [
|
|
5853
6095
|
"<%= config.bin %> <%= command.id %>",
|
|
5854
|
-
"<%= config.bin %> <%= command.id %>
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
"json": {
|
|
5858
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5859
|
-
"name": "json",
|
|
5860
|
-
"allowNo": false,
|
|
5861
|
-
"type": "boolean"
|
|
5862
|
-
},
|
|
5863
|
-
"machine": {
|
|
5864
|
-
"char": "m",
|
|
5865
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5866
|
-
"name": "machine",
|
|
5867
|
-
"allowNo": false,
|
|
5868
|
-
"type": "boolean"
|
|
5869
|
-
},
|
|
5870
|
-
"action": {
|
|
5871
|
-
"char": "a",
|
|
5872
|
-
"description": "Action to perform (submit, list, view)",
|
|
5873
|
-
"name": "action",
|
|
5874
|
-
"hasDynamicHelp": false,
|
|
5875
|
-
"multiple": false,
|
|
5876
|
-
"options": [
|
|
5877
|
-
"submit",
|
|
5878
|
-
"list",
|
|
5879
|
-
"view"
|
|
5880
|
-
],
|
|
5881
|
-
"type": "option"
|
|
5882
|
-
}
|
|
5883
|
-
},
|
|
5884
|
-
"hasDynamicHelp": false,
|
|
5885
|
-
"hiddenAliases": [],
|
|
5886
|
-
"id": "feedback",
|
|
5887
|
-
"pluginAlias": "@proletariat/cli",
|
|
5888
|
-
"pluginName": "@proletariat/cli",
|
|
5889
|
-
"pluginType": "core",
|
|
5890
|
-
"strict": true,
|
|
5891
|
-
"enableJsonFlag": false,
|
|
5892
|
-
"isESM": true,
|
|
5893
|
-
"relativePath": [
|
|
5894
|
-
"dist",
|
|
5895
|
-
"commands",
|
|
5896
|
-
"feedback",
|
|
5897
|
-
"index.js"
|
|
5898
|
-
]
|
|
5899
|
-
},
|
|
5900
|
-
"feedback:list": {
|
|
5901
|
-
"aliases": [],
|
|
5902
|
-
"args": {},
|
|
5903
|
-
"description": "List recent feedback issues from the repository",
|
|
5904
|
-
"examples": [
|
|
5905
|
-
"<%= config.bin %> <%= command.id %>",
|
|
5906
|
-
"<%= config.bin %> <%= command.id %> --category bug",
|
|
5907
|
-
"<%= config.bin %> <%= command.id %> --state closed --limit 10",
|
|
5908
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
5909
|
-
],
|
|
5910
|
-
"flags": {
|
|
5911
|
-
"json": {
|
|
5912
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5913
|
-
"name": "json",
|
|
5914
|
-
"allowNo": false,
|
|
5915
|
-
"type": "boolean"
|
|
5916
|
-
},
|
|
5917
|
-
"machine": {
|
|
5918
|
-
"char": "m",
|
|
5919
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5920
|
-
"name": "machine",
|
|
5921
|
-
"allowNo": false,
|
|
5922
|
-
"type": "boolean"
|
|
5923
|
-
},
|
|
5924
|
-
"category": {
|
|
5925
|
-
"char": "c",
|
|
5926
|
-
"description": "Filter by category (bug, feature, general)",
|
|
5927
|
-
"name": "category",
|
|
5928
|
-
"hasDynamicHelp": false,
|
|
5929
|
-
"multiple": false,
|
|
5930
|
-
"options": [
|
|
5931
|
-
"bug",
|
|
5932
|
-
"feature",
|
|
5933
|
-
"general"
|
|
5934
|
-
],
|
|
5935
|
-
"type": "option"
|
|
5936
|
-
},
|
|
5937
|
-
"state": {
|
|
5938
|
-
"char": "s",
|
|
5939
|
-
"description": "Filter by state",
|
|
5940
|
-
"name": "state",
|
|
5941
|
-
"default": "open",
|
|
5942
|
-
"hasDynamicHelp": false,
|
|
5943
|
-
"multiple": false,
|
|
5944
|
-
"options": [
|
|
5945
|
-
"open",
|
|
5946
|
-
"closed",
|
|
5947
|
-
"all"
|
|
5948
|
-
],
|
|
5949
|
-
"type": "option"
|
|
5950
|
-
},
|
|
5951
|
-
"limit": {
|
|
5952
|
-
"char": "l",
|
|
5953
|
-
"description": "Maximum number of issues to show",
|
|
5954
|
-
"name": "limit",
|
|
5955
|
-
"default": 20,
|
|
5956
|
-
"hasDynamicHelp": false,
|
|
5957
|
-
"multiple": false,
|
|
5958
|
-
"type": "option"
|
|
5959
|
-
}
|
|
5960
|
-
},
|
|
5961
|
-
"hasDynamicHelp": false,
|
|
5962
|
-
"hiddenAliases": [],
|
|
5963
|
-
"id": "feedback:list",
|
|
5964
|
-
"pluginAlias": "@proletariat/cli",
|
|
5965
|
-
"pluginName": "@proletariat/cli",
|
|
5966
|
-
"pluginType": "core",
|
|
5967
|
-
"strict": true,
|
|
5968
|
-
"enableJsonFlag": false,
|
|
5969
|
-
"isESM": true,
|
|
5970
|
-
"relativePath": [
|
|
5971
|
-
"dist",
|
|
5972
|
-
"commands",
|
|
5973
|
-
"feedback",
|
|
5974
|
-
"list.js"
|
|
5975
|
-
]
|
|
5976
|
-
},
|
|
5977
|
-
"feedback:submit": {
|
|
5978
|
-
"aliases": [],
|
|
5979
|
-
"args": {},
|
|
5980
|
-
"description": "Submit feedback, bug reports, or feature requests to GitHub Issues",
|
|
5981
|
-
"examples": [
|
|
5982
|
-
"<%= config.bin %> <%= command.id %>",
|
|
5983
|
-
"<%= config.bin %> <%= command.id %> --title \"Bug in CLI\" --body \"Description here\" --category bug",
|
|
5984
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
5985
|
-
],
|
|
5986
|
-
"flags": {
|
|
5987
|
-
"json": {
|
|
5988
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5989
|
-
"name": "json",
|
|
5990
|
-
"allowNo": false,
|
|
5991
|
-
"type": "boolean"
|
|
5992
|
-
},
|
|
5993
|
-
"machine": {
|
|
5994
|
-
"char": "m",
|
|
5995
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
5996
|
-
"name": "machine",
|
|
5997
|
-
"allowNo": false,
|
|
5998
|
-
"type": "boolean"
|
|
5999
|
-
},
|
|
6000
|
-
"title": {
|
|
6001
|
-
"char": "t",
|
|
6002
|
-
"description": "Issue title (one-liner) [required for non-interactive]",
|
|
6003
|
-
"name": "title",
|
|
6004
|
-
"hasDynamicHelp": false,
|
|
6005
|
-
"multiple": false,
|
|
6006
|
-
"type": "option"
|
|
6007
|
-
},
|
|
6008
|
-
"body": {
|
|
6009
|
-
"char": "b",
|
|
6010
|
-
"description": "Issue description [required for non-interactive]",
|
|
6011
|
-
"name": "body",
|
|
6012
|
-
"hasDynamicHelp": false,
|
|
6013
|
-
"multiple": false,
|
|
6014
|
-
"type": "option"
|
|
6015
|
-
},
|
|
6016
|
-
"category": {
|
|
6017
|
-
"char": "c",
|
|
6018
|
-
"description": "Feedback category",
|
|
6019
|
-
"name": "category",
|
|
6020
|
-
"hasDynamicHelp": false,
|
|
6021
|
-
"multiple": false,
|
|
6022
|
-
"options": [
|
|
6023
|
-
"bug",
|
|
6024
|
-
"feature",
|
|
6025
|
-
"general"
|
|
6026
|
-
],
|
|
6027
|
-
"type": "option"
|
|
6028
|
-
}
|
|
6029
|
-
},
|
|
6030
|
-
"hasDynamicHelp": false,
|
|
6031
|
-
"hiddenAliases": [],
|
|
6032
|
-
"id": "feedback:submit",
|
|
6033
|
-
"pluginAlias": "@proletariat/cli",
|
|
6034
|
-
"pluginName": "@proletariat/cli",
|
|
6035
|
-
"pluginType": "core",
|
|
6036
|
-
"strict": true,
|
|
6037
|
-
"isESM": true,
|
|
6038
|
-
"relativePath": [
|
|
6039
|
-
"dist",
|
|
6040
|
-
"commands",
|
|
6041
|
-
"feedback",
|
|
6042
|
-
"submit.js"
|
|
6043
|
-
]
|
|
6044
|
-
},
|
|
6045
|
-
"feedback:view": {
|
|
6046
|
-
"aliases": [],
|
|
6047
|
-
"args": {
|
|
6048
|
-
"number": {
|
|
6049
|
-
"description": "Issue number to view",
|
|
6050
|
-
"name": "number",
|
|
6051
|
-
"required": true
|
|
6052
|
-
}
|
|
6053
|
-
},
|
|
6054
|
-
"description": "View details of a specific feedback issue",
|
|
6055
|
-
"examples": [
|
|
6056
|
-
"<%= config.bin %> <%= command.id %> 123",
|
|
6057
|
-
"<%= config.bin %> <%= command.id %> 123 --json"
|
|
6058
|
-
],
|
|
6059
|
-
"flags": {
|
|
6060
|
-
"json": {
|
|
6061
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6062
|
-
"name": "json",
|
|
6063
|
-
"allowNo": false,
|
|
6064
|
-
"type": "boolean"
|
|
6065
|
-
},
|
|
6066
|
-
"machine": {
|
|
6067
|
-
"char": "m",
|
|
6068
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
6069
|
-
"name": "machine",
|
|
6070
|
-
"allowNo": false,
|
|
6071
|
-
"type": "boolean"
|
|
6072
|
-
}
|
|
6073
|
-
},
|
|
6074
|
-
"hasDynamicHelp": false,
|
|
6075
|
-
"hiddenAliases": [],
|
|
6076
|
-
"id": "feedback:view",
|
|
6077
|
-
"pluginAlias": "@proletariat/cli",
|
|
6078
|
-
"pluginName": "@proletariat/cli",
|
|
6079
|
-
"pluginType": "core",
|
|
6080
|
-
"strict": true,
|
|
6081
|
-
"enableJsonFlag": false,
|
|
6082
|
-
"isESM": true,
|
|
6083
|
-
"relativePath": [
|
|
6084
|
-
"dist",
|
|
6085
|
-
"commands",
|
|
6086
|
-
"feedback",
|
|
6087
|
-
"view.js"
|
|
6088
|
-
]
|
|
6089
|
-
},
|
|
6090
|
-
"gh": {
|
|
6091
|
-
"aliases": [],
|
|
6092
|
-
"args": {},
|
|
6093
|
-
"description": "GitHub CLI setup and status for PR workflow",
|
|
6094
|
-
"examples": [
|
|
6095
|
-
"<%= config.bin %> <%= command.id %>",
|
|
6096
|
-
"<%= config.bin %> <%= command.id %> status",
|
|
6097
|
-
"<%= config.bin %> <%= command.id %> login",
|
|
6098
|
-
"<%= config.bin %> <%= command.id %> token"
|
|
6096
|
+
"<%= config.bin %> <%= command.id %> status",
|
|
6097
|
+
"<%= config.bin %> <%= command.id %> login",
|
|
6098
|
+
"<%= config.bin %> <%= command.id %> token"
|
|
6099
6099
|
],
|
|
6100
6100
|
"flags": {
|
|
6101
6101
|
"json": {
|
|
@@ -10313,114 +10313,21 @@
|
|
|
10313
10313
|
"view.js"
|
|
10314
10314
|
]
|
|
10315
10315
|
},
|
|
10316
|
-
"
|
|
10316
|
+
"roadmap:add-project": {
|
|
10317
10317
|
"aliases": [],
|
|
10318
10318
|
"args": {
|
|
10319
|
-
"
|
|
10320
|
-
"description": "
|
|
10321
|
-
"name": "
|
|
10322
|
-
"required":
|
|
10319
|
+
"roadmap": {
|
|
10320
|
+
"description": "Roadmap ID",
|
|
10321
|
+
"name": "roadmap",
|
|
10322
|
+
"required": false
|
|
10323
|
+
},
|
|
10324
|
+
"project": {
|
|
10325
|
+
"description": "Project ID to add",
|
|
10326
|
+
"name": "project",
|
|
10327
|
+
"required": false
|
|
10323
10328
|
}
|
|
10324
10329
|
},
|
|
10325
|
-
"description": "
|
|
10326
|
-
"examples": [
|
|
10327
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
10328
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
10329
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
10330
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
10331
|
-
],
|
|
10332
|
-
"flags": {
|
|
10333
|
-
"json": {
|
|
10334
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
10335
|
-
"name": "json",
|
|
10336
|
-
"allowNo": false,
|
|
10337
|
-
"type": "boolean"
|
|
10338
|
-
},
|
|
10339
|
-
"machine": {
|
|
10340
|
-
"char": "m",
|
|
10341
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
10342
|
-
"name": "machine",
|
|
10343
|
-
"allowNo": false,
|
|
10344
|
-
"type": "boolean"
|
|
10345
|
-
},
|
|
10346
|
-
"runner": {
|
|
10347
|
-
"char": "r",
|
|
10348
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
10349
|
-
"name": "runner",
|
|
10350
|
-
"hasDynamicHelp": false,
|
|
10351
|
-
"multiple": false,
|
|
10352
|
-
"type": "option"
|
|
10353
|
-
},
|
|
10354
|
-
"detached": {
|
|
10355
|
-
"char": "d",
|
|
10356
|
-
"description": "Run in background (detached)",
|
|
10357
|
-
"name": "detached",
|
|
10358
|
-
"allowNo": false,
|
|
10359
|
-
"type": "boolean"
|
|
10360
|
-
},
|
|
10361
|
-
"directory": {
|
|
10362
|
-
"description": "Working directory (default: cwd)",
|
|
10363
|
-
"name": "directory",
|
|
10364
|
-
"hasDynamicHelp": false,
|
|
10365
|
-
"multiple": false,
|
|
10366
|
-
"type": "option"
|
|
10367
|
-
},
|
|
10368
|
-
"permission-mode": {
|
|
10369
|
-
"char": "p",
|
|
10370
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
10371
|
-
"name": "permission-mode",
|
|
10372
|
-
"hasDynamicHelp": false,
|
|
10373
|
-
"multiple": false,
|
|
10374
|
-
"options": [
|
|
10375
|
-
"danger",
|
|
10376
|
-
"safe"
|
|
10377
|
-
],
|
|
10378
|
-
"type": "option"
|
|
10379
|
-
},
|
|
10380
|
-
"environment": {
|
|
10381
|
-
"char": "e",
|
|
10382
|
-
"description": "Environment to run in",
|
|
10383
|
-
"name": "environment",
|
|
10384
|
-
"hasDynamicHelp": false,
|
|
10385
|
-
"multiple": false,
|
|
10386
|
-
"options": [
|
|
10387
|
-
"host",
|
|
10388
|
-
"docker",
|
|
10389
|
-
"podman"
|
|
10390
|
-
],
|
|
10391
|
-
"type": "option"
|
|
10392
|
-
}
|
|
10393
|
-
},
|
|
10394
|
-
"hasDynamicHelp": false,
|
|
10395
|
-
"hiddenAliases": [],
|
|
10396
|
-
"id": "run",
|
|
10397
|
-
"pluginAlias": "@proletariat/cli",
|
|
10398
|
-
"pluginName": "@proletariat/cli",
|
|
10399
|
-
"pluginType": "core",
|
|
10400
|
-
"strict": true,
|
|
10401
|
-
"isESM": true,
|
|
10402
|
-
"relativePath": [
|
|
10403
|
-
"dist",
|
|
10404
|
-
"commands",
|
|
10405
|
-
"run",
|
|
10406
|
-
"index.js"
|
|
10407
|
-
]
|
|
10408
|
-
},
|
|
10409
|
-
"roadmap:add-project": {
|
|
10410
|
-
"aliases": [],
|
|
10411
|
-
"args": {
|
|
10412
|
-
"roadmap": {
|
|
10413
|
-
"description": "Roadmap ID",
|
|
10414
|
-
"name": "roadmap",
|
|
10415
|
-
"required": false
|
|
10416
|
-
},
|
|
10417
|
-
"project": {
|
|
10418
|
-
"description": "Project ID to add",
|
|
10419
|
-
"name": "project",
|
|
10420
|
-
"required": false
|
|
10421
|
-
}
|
|
10422
|
-
},
|
|
10423
|
-
"description": "Add a project to a roadmap",
|
|
10330
|
+
"description": "Add a project to a roadmap",
|
|
10424
10331
|
"examples": [
|
|
10425
10332
|
"<%= config.bin %> <%= command.id %> my-roadmap my-project",
|
|
10426
10333
|
"<%= config.bin %> <%= command.id %> my-roadmap # Interactive project selection",
|
|
@@ -11037,6 +10944,99 @@
|
|
|
11037
10944
|
"view.js"
|
|
11038
10945
|
]
|
|
11039
10946
|
},
|
|
10947
|
+
"run": {
|
|
10948
|
+
"aliases": [],
|
|
10949
|
+
"args": {
|
|
10950
|
+
"task": {
|
|
10951
|
+
"description": "Task description for the agent",
|
|
10952
|
+
"name": "task",
|
|
10953
|
+
"required": true
|
|
10954
|
+
}
|
|
10955
|
+
},
|
|
10956
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
10957
|
+
"examples": [
|
|
10958
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
10959
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
10960
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
10961
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
10962
|
+
],
|
|
10963
|
+
"flags": {
|
|
10964
|
+
"json": {
|
|
10965
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10966
|
+
"name": "json",
|
|
10967
|
+
"allowNo": false,
|
|
10968
|
+
"type": "boolean"
|
|
10969
|
+
},
|
|
10970
|
+
"machine": {
|
|
10971
|
+
"char": "m",
|
|
10972
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10973
|
+
"name": "machine",
|
|
10974
|
+
"allowNo": false,
|
|
10975
|
+
"type": "boolean"
|
|
10976
|
+
},
|
|
10977
|
+
"runner": {
|
|
10978
|
+
"char": "r",
|
|
10979
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
10980
|
+
"name": "runner",
|
|
10981
|
+
"hasDynamicHelp": false,
|
|
10982
|
+
"multiple": false,
|
|
10983
|
+
"type": "option"
|
|
10984
|
+
},
|
|
10985
|
+
"detached": {
|
|
10986
|
+
"char": "d",
|
|
10987
|
+
"description": "Run in background (detached)",
|
|
10988
|
+
"name": "detached",
|
|
10989
|
+
"allowNo": false,
|
|
10990
|
+
"type": "boolean"
|
|
10991
|
+
},
|
|
10992
|
+
"directory": {
|
|
10993
|
+
"description": "Working directory (default: cwd)",
|
|
10994
|
+
"name": "directory",
|
|
10995
|
+
"hasDynamicHelp": false,
|
|
10996
|
+
"multiple": false,
|
|
10997
|
+
"type": "option"
|
|
10998
|
+
},
|
|
10999
|
+
"permission-mode": {
|
|
11000
|
+
"char": "p",
|
|
11001
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
11002
|
+
"name": "permission-mode",
|
|
11003
|
+
"hasDynamicHelp": false,
|
|
11004
|
+
"multiple": false,
|
|
11005
|
+
"options": [
|
|
11006
|
+
"danger",
|
|
11007
|
+
"safe"
|
|
11008
|
+
],
|
|
11009
|
+
"type": "option"
|
|
11010
|
+
},
|
|
11011
|
+
"environment": {
|
|
11012
|
+
"char": "e",
|
|
11013
|
+
"description": "Environment to run in",
|
|
11014
|
+
"name": "environment",
|
|
11015
|
+
"hasDynamicHelp": false,
|
|
11016
|
+
"multiple": false,
|
|
11017
|
+
"options": [
|
|
11018
|
+
"host",
|
|
11019
|
+
"docker",
|
|
11020
|
+
"podman"
|
|
11021
|
+
],
|
|
11022
|
+
"type": "option"
|
|
11023
|
+
}
|
|
11024
|
+
},
|
|
11025
|
+
"hasDynamicHelp": false,
|
|
11026
|
+
"hiddenAliases": [],
|
|
11027
|
+
"id": "run",
|
|
11028
|
+
"pluginAlias": "@proletariat/cli",
|
|
11029
|
+
"pluginName": "@proletariat/cli",
|
|
11030
|
+
"pluginType": "core",
|
|
11031
|
+
"strict": true,
|
|
11032
|
+
"isESM": true,
|
|
11033
|
+
"relativePath": [
|
|
11034
|
+
"dist",
|
|
11035
|
+
"commands",
|
|
11036
|
+
"run",
|
|
11037
|
+
"index.js"
|
|
11038
|
+
]
|
|
11039
|
+
},
|
|
11040
11040
|
"shortcut:connect": {
|
|
11041
11041
|
"aliases": [],
|
|
11042
11042
|
"args": {},
|
|
@@ -11105,26 +11105,33 @@
|
|
|
11105
11105
|
"connect.js"
|
|
11106
11106
|
]
|
|
11107
11107
|
},
|
|
11108
|
-
"
|
|
11108
|
+
"staff:add": {
|
|
11109
11109
|
"aliases": [],
|
|
11110
11110
|
"args": {
|
|
11111
|
-
"
|
|
11112
|
-
"description": "
|
|
11113
|
-
"name": "
|
|
11111
|
+
"names": {
|
|
11112
|
+
"description": "Agent names to add (space-separated)",
|
|
11113
|
+
"name": "names",
|
|
11114
11114
|
"required": false
|
|
11115
11115
|
}
|
|
11116
11116
|
},
|
|
11117
|
-
"description": "
|
|
11117
|
+
"description": "Add new agents to the workspace",
|
|
11118
11118
|
"examples": [
|
|
11119
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11120
|
-
"<%= config.bin %> <%= command.id %>
|
|
11121
|
-
"<%= config.bin %> <%= command.id %> --
|
|
11119
|
+
"<%= config.bin %> <%= command.id %> zeus",
|
|
11120
|
+
"<%= config.bin %> <%= command.id %> agent-1 agent-2",
|
|
11121
|
+
"<%= config.bin %> <%= command.id %> --theme billionaires",
|
|
11122
|
+
"<%= config.bin %> <%= command.id %> my-agent --no-container"
|
|
11122
11123
|
],
|
|
11123
11124
|
"flags": {
|
|
11124
|
-
"
|
|
11125
|
-
"
|
|
11126
|
-
"
|
|
11127
|
-
"
|
|
11125
|
+
"no-container": {
|
|
11126
|
+
"description": "Skip devcontainer setup (not recommended for autonomous agents)",
|
|
11127
|
+
"name": "no-container",
|
|
11128
|
+
"allowNo": false,
|
|
11129
|
+
"type": "boolean"
|
|
11130
|
+
},
|
|
11131
|
+
"theme": {
|
|
11132
|
+
"char": "t",
|
|
11133
|
+
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
11134
|
+
"name": "theme",
|
|
11128
11135
|
"hasDynamicHelp": false,
|
|
11129
11136
|
"multiple": false,
|
|
11130
11137
|
"type": "option"
|
|
@@ -11142,48 +11149,259 @@
|
|
|
11142
11149
|
"allowNo": false,
|
|
11143
11150
|
"type": "boolean"
|
|
11144
11151
|
},
|
|
11145
|
-
"
|
|
11146
|
-
"
|
|
11147
|
-
"
|
|
11148
|
-
"name": "new-tab",
|
|
11149
|
-
"allowNo": false,
|
|
11150
|
-
"type": "boolean"
|
|
11151
|
-
},
|
|
11152
|
-
"current-terminal": {
|
|
11153
|
-
"char": "c",
|
|
11154
|
-
"description": "Attach in current terminal instead of new tab",
|
|
11155
|
-
"name": "current-terminal",
|
|
11152
|
+
"clone": {
|
|
11153
|
+
"description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
|
|
11154
|
+
"name": "clone",
|
|
11156
11155
|
"allowNo": false,
|
|
11157
11156
|
"type": "boolean"
|
|
11158
|
-
},
|
|
11159
|
-
"terminal": {
|
|
11160
|
-
"char": "t",
|
|
11161
|
-
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
11162
|
-
"name": "terminal",
|
|
11163
|
-
"default": "iTerm",
|
|
11164
|
-
"hasDynamicHelp": false,
|
|
11165
|
-
"multiple": false,
|
|
11166
|
-
"type": "option"
|
|
11167
11157
|
}
|
|
11168
11158
|
},
|
|
11169
11159
|
"hasDynamicHelp": false,
|
|
11170
11160
|
"hiddenAliases": [],
|
|
11171
|
-
"id": "
|
|
11161
|
+
"id": "staff:add",
|
|
11172
11162
|
"pluginAlias": "@proletariat/cli",
|
|
11173
11163
|
"pluginName": "@proletariat/cli",
|
|
11174
11164
|
"pluginType": "core",
|
|
11175
|
-
"strict":
|
|
11165
|
+
"strict": false,
|
|
11176
11166
|
"isESM": true,
|
|
11177
11167
|
"relativePath": [
|
|
11178
11168
|
"dist",
|
|
11179
11169
|
"commands",
|
|
11180
|
-
"
|
|
11181
|
-
"
|
|
11170
|
+
"agent",
|
|
11171
|
+
"staff",
|
|
11172
|
+
"add.js"
|
|
11182
11173
|
]
|
|
11183
11174
|
},
|
|
11184
|
-
"
|
|
11175
|
+
"staff": {
|
|
11185
11176
|
"aliases": [],
|
|
11186
|
-
"args": {
|
|
11177
|
+
"args": {},
|
|
11178
|
+
"description": "Manage staff (persistent) agents",
|
|
11179
|
+
"examples": [
|
|
11180
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
11181
|
+
"<%= config.bin %> <%= command.id %> add",
|
|
11182
|
+
"<%= config.bin %> <%= command.id %> remove camry"
|
|
11183
|
+
],
|
|
11184
|
+
"flags": {
|
|
11185
|
+
"project": {
|
|
11186
|
+
"char": "P",
|
|
11187
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11188
|
+
"name": "project",
|
|
11189
|
+
"hasDynamicHelp": false,
|
|
11190
|
+
"multiple": false,
|
|
11191
|
+
"type": "option"
|
|
11192
|
+
},
|
|
11193
|
+
"json": {
|
|
11194
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11195
|
+
"name": "json",
|
|
11196
|
+
"allowNo": false,
|
|
11197
|
+
"type": "boolean"
|
|
11198
|
+
},
|
|
11199
|
+
"machine": {
|
|
11200
|
+
"char": "m",
|
|
11201
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11202
|
+
"name": "machine",
|
|
11203
|
+
"allowNo": false,
|
|
11204
|
+
"type": "boolean"
|
|
11205
|
+
},
|
|
11206
|
+
"no-interactive": {
|
|
11207
|
+
"description": "Alias for --json flag",
|
|
11208
|
+
"name": "no-interactive",
|
|
11209
|
+
"allowNo": false,
|
|
11210
|
+
"type": "boolean"
|
|
11211
|
+
}
|
|
11212
|
+
},
|
|
11213
|
+
"hasDynamicHelp": false,
|
|
11214
|
+
"hiddenAliases": [],
|
|
11215
|
+
"id": "staff",
|
|
11216
|
+
"pluginAlias": "@proletariat/cli",
|
|
11217
|
+
"pluginName": "@proletariat/cli",
|
|
11218
|
+
"pluginType": "core",
|
|
11219
|
+
"strict": true,
|
|
11220
|
+
"isESM": true,
|
|
11221
|
+
"relativePath": [
|
|
11222
|
+
"dist",
|
|
11223
|
+
"commands",
|
|
11224
|
+
"staff",
|
|
11225
|
+
"index.js"
|
|
11226
|
+
]
|
|
11227
|
+
},
|
|
11228
|
+
"staff:list": {
|
|
11229
|
+
"aliases": [],
|
|
11230
|
+
"args": {},
|
|
11231
|
+
"description": "List all staff (persistent) agents and their status",
|
|
11232
|
+
"examples": [
|
|
11233
|
+
"<%= config.bin %> <%= command.id %>"
|
|
11234
|
+
],
|
|
11235
|
+
"flags": {
|
|
11236
|
+
"json": {
|
|
11237
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11238
|
+
"name": "json",
|
|
11239
|
+
"allowNo": false,
|
|
11240
|
+
"type": "boolean"
|
|
11241
|
+
},
|
|
11242
|
+
"machine": {
|
|
11243
|
+
"char": "m",
|
|
11244
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11245
|
+
"name": "machine",
|
|
11246
|
+
"allowNo": false,
|
|
11247
|
+
"type": "boolean"
|
|
11248
|
+
}
|
|
11249
|
+
},
|
|
11250
|
+
"hasDynamicHelp": false,
|
|
11251
|
+
"hiddenAliases": [],
|
|
11252
|
+
"id": "staff:list",
|
|
11253
|
+
"pluginAlias": "@proletariat/cli",
|
|
11254
|
+
"pluginName": "@proletariat/cli",
|
|
11255
|
+
"pluginType": "core",
|
|
11256
|
+
"strict": true,
|
|
11257
|
+
"enableJsonFlag": false,
|
|
11258
|
+
"isESM": true,
|
|
11259
|
+
"relativePath": [
|
|
11260
|
+
"dist",
|
|
11261
|
+
"commands",
|
|
11262
|
+
"staff",
|
|
11263
|
+
"list.js"
|
|
11264
|
+
]
|
|
11265
|
+
},
|
|
11266
|
+
"staff:remove": {
|
|
11267
|
+
"aliases": [],
|
|
11268
|
+
"args": {
|
|
11269
|
+
"name": {
|
|
11270
|
+
"description": "Agent name to remove",
|
|
11271
|
+
"name": "name",
|
|
11272
|
+
"required": false
|
|
11273
|
+
}
|
|
11274
|
+
},
|
|
11275
|
+
"description": "Remove a specific agent from the workspace",
|
|
11276
|
+
"examples": [
|
|
11277
|
+
"<%= config.bin %> <%= command.id %> camry",
|
|
11278
|
+
"<%= config.bin %> <%= command.id %>"
|
|
11279
|
+
],
|
|
11280
|
+
"flags": {
|
|
11281
|
+
"project": {
|
|
11282
|
+
"char": "P",
|
|
11283
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11284
|
+
"name": "project",
|
|
11285
|
+
"hasDynamicHelp": false,
|
|
11286
|
+
"multiple": false,
|
|
11287
|
+
"type": "option"
|
|
11288
|
+
},
|
|
11289
|
+
"json": {
|
|
11290
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11291
|
+
"name": "json",
|
|
11292
|
+
"allowNo": false,
|
|
11293
|
+
"type": "boolean"
|
|
11294
|
+
},
|
|
11295
|
+
"machine": {
|
|
11296
|
+
"char": "m",
|
|
11297
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11298
|
+
"name": "machine",
|
|
11299
|
+
"allowNo": false,
|
|
11300
|
+
"type": "boolean"
|
|
11301
|
+
},
|
|
11302
|
+
"force": {
|
|
11303
|
+
"char": "f",
|
|
11304
|
+
"description": "Skip confirmation prompt (for non-interactive use)",
|
|
11305
|
+
"name": "force",
|
|
11306
|
+
"allowNo": false,
|
|
11307
|
+
"type": "boolean"
|
|
11308
|
+
}
|
|
11309
|
+
},
|
|
11310
|
+
"hasDynamicHelp": false,
|
|
11311
|
+
"hiddenAliases": [],
|
|
11312
|
+
"id": "staff:remove",
|
|
11313
|
+
"pluginAlias": "@proletariat/cli",
|
|
11314
|
+
"pluginName": "@proletariat/cli",
|
|
11315
|
+
"pluginType": "core",
|
|
11316
|
+
"strict": true,
|
|
11317
|
+
"isESM": true,
|
|
11318
|
+
"relativePath": [
|
|
11319
|
+
"dist",
|
|
11320
|
+
"commands",
|
|
11321
|
+
"agent",
|
|
11322
|
+
"staff",
|
|
11323
|
+
"remove.js"
|
|
11324
|
+
]
|
|
11325
|
+
},
|
|
11326
|
+
"session:attach": {
|
|
11327
|
+
"aliases": [],
|
|
11328
|
+
"args": {
|
|
11329
|
+
"session": {
|
|
11330
|
+
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
11331
|
+
"name": "session",
|
|
11332
|
+
"required": false
|
|
11333
|
+
}
|
|
11334
|
+
},
|
|
11335
|
+
"description": "Attach to an active tmux session",
|
|
11336
|
+
"examples": [
|
|
11337
|
+
"<%= config.bin %> <%= command.id %>",
|
|
11338
|
+
"<%= config.bin %> <%= command.id %> TKT-347-implement-altman",
|
|
11339
|
+
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
11340
|
+
],
|
|
11341
|
+
"flags": {
|
|
11342
|
+
"project": {
|
|
11343
|
+
"char": "P",
|
|
11344
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11345
|
+
"name": "project",
|
|
11346
|
+
"hasDynamicHelp": false,
|
|
11347
|
+
"multiple": false,
|
|
11348
|
+
"type": "option"
|
|
11349
|
+
},
|
|
11350
|
+
"json": {
|
|
11351
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11352
|
+
"name": "json",
|
|
11353
|
+
"allowNo": false,
|
|
11354
|
+
"type": "boolean"
|
|
11355
|
+
},
|
|
11356
|
+
"machine": {
|
|
11357
|
+
"char": "m",
|
|
11358
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11359
|
+
"name": "machine",
|
|
11360
|
+
"allowNo": false,
|
|
11361
|
+
"type": "boolean"
|
|
11362
|
+
},
|
|
11363
|
+
"new-tab": {
|
|
11364
|
+
"char": "n",
|
|
11365
|
+
"description": "Open in a new terminal tab (default: true)",
|
|
11366
|
+
"name": "new-tab",
|
|
11367
|
+
"allowNo": false,
|
|
11368
|
+
"type": "boolean"
|
|
11369
|
+
},
|
|
11370
|
+
"current-terminal": {
|
|
11371
|
+
"char": "c",
|
|
11372
|
+
"description": "Attach in current terminal instead of new tab",
|
|
11373
|
+
"name": "current-terminal",
|
|
11374
|
+
"allowNo": false,
|
|
11375
|
+
"type": "boolean"
|
|
11376
|
+
},
|
|
11377
|
+
"terminal": {
|
|
11378
|
+
"char": "t",
|
|
11379
|
+
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
11380
|
+
"name": "terminal",
|
|
11381
|
+
"default": "iTerm",
|
|
11382
|
+
"hasDynamicHelp": false,
|
|
11383
|
+
"multiple": false,
|
|
11384
|
+
"type": "option"
|
|
11385
|
+
}
|
|
11386
|
+
},
|
|
11387
|
+
"hasDynamicHelp": false,
|
|
11388
|
+
"hiddenAliases": [],
|
|
11389
|
+
"id": "session:attach",
|
|
11390
|
+
"pluginAlias": "@proletariat/cli",
|
|
11391
|
+
"pluginName": "@proletariat/cli",
|
|
11392
|
+
"pluginType": "core",
|
|
11393
|
+
"strict": true,
|
|
11394
|
+
"isESM": true,
|
|
11395
|
+
"relativePath": [
|
|
11396
|
+
"dist",
|
|
11397
|
+
"commands",
|
|
11398
|
+
"session",
|
|
11399
|
+
"attach.js"
|
|
11400
|
+
]
|
|
11401
|
+
},
|
|
11402
|
+
"session:create": {
|
|
11403
|
+
"aliases": [],
|
|
11404
|
+
"args": {
|
|
11187
11405
|
"name": {
|
|
11188
11406
|
"description": "Name for the new tmux session",
|
|
11189
11407
|
"name": "name",
|
|
@@ -11315,12 +11533,15 @@
|
|
|
11315
11533
|
"session:health": {
|
|
11316
11534
|
"aliases": [],
|
|
11317
11535
|
"args": {},
|
|
11318
|
-
"description": "Check health of running agent sessions
|
|
11536
|
+
"description": "Check health of running agent sessions, detect/recover hung agents, and auto-poke idle agents",
|
|
11319
11537
|
"examples": [
|
|
11320
11538
|
"<%= config.bin %> session health",
|
|
11321
11539
|
"<%= config.bin %> session health --fix",
|
|
11540
|
+
"<%= config.bin %> session health --poke-idle",
|
|
11541
|
+
"<%= config.bin %> session health --fix --poke-idle",
|
|
11322
11542
|
"<%= config.bin %> session health --watch",
|
|
11323
|
-
"<%= config.bin %> session health --watch --interval 3 --threshold 5"
|
|
11543
|
+
"<%= config.bin %> session health --watch --interval 3 --threshold 5",
|
|
11544
|
+
"<%= config.bin %> session health --watch --poke-idle"
|
|
11324
11545
|
],
|
|
11325
11546
|
"flags": {
|
|
11326
11547
|
"project": {
|
|
@@ -11350,6 +11571,12 @@
|
|
|
11350
11571
|
"allowNo": false,
|
|
11351
11572
|
"type": "boolean"
|
|
11352
11573
|
},
|
|
11574
|
+
"poke-idle": {
|
|
11575
|
+
"description": "Auto-poke idle agents with their ticket description to resume work",
|
|
11576
|
+
"name": "poke-idle",
|
|
11577
|
+
"allowNo": false,
|
|
11578
|
+
"type": "boolean"
|
|
11579
|
+
},
|
|
11353
11580
|
"watch": {
|
|
11354
11581
|
"description": "Continuously monitor agents and auto-recover hung ones",
|
|
11355
11582
|
"name": "watch",
|
|
@@ -11365,7 +11592,7 @@
|
|
|
11365
11592
|
"type": "option"
|
|
11366
11593
|
},
|
|
11367
11594
|
"threshold": {
|
|
11368
|
-
"description": "Minutes an agent must be hung before auto-recovery in watch mode",
|
|
11595
|
+
"description": "Minutes an agent must be hung/idle before auto-recovery in watch mode",
|
|
11369
11596
|
"name": "threshold",
|
|
11370
11597
|
"default": 10,
|
|
11371
11598
|
"hasDynamicHelp": false,
|
|
@@ -11889,236 +12116,18 @@
|
|
|
11889
12116
|
"restart.js"
|
|
11890
12117
|
]
|
|
11891
12118
|
},
|
|
11892
|
-
"
|
|
11893
|
-
"aliases": [
|
|
11894
|
-
|
|
11895
|
-
|
|
11896
|
-
|
|
11897
|
-
|
|
11898
|
-
"required": false
|
|
11899
|
-
}
|
|
11900
|
-
},
|
|
11901
|
-
"description": "Add new agents to the workspace",
|
|
12119
|
+
"status:category": {
|
|
12120
|
+
"aliases": [
|
|
12121
|
+
"status:categories"
|
|
12122
|
+
],
|
|
12123
|
+
"args": {},
|
|
12124
|
+
"description": "Manage status categories (backlog, started, completed, etc.)",
|
|
11902
12125
|
"examples": [
|
|
11903
|
-
"<%= config.bin %> <%= command.id %>
|
|
11904
|
-
"<%= config.bin %> <%= command.id %>
|
|
11905
|
-
"<%= config.bin %> <%= command.id %>
|
|
11906
|
-
"<%= config.bin %> <%= command.id %>
|
|
11907
|
-
|
|
11908
|
-
"flags": {
|
|
11909
|
-
"no-container": {
|
|
11910
|
-
"description": "Skip devcontainer setup (not recommended for autonomous agents)",
|
|
11911
|
-
"name": "no-container",
|
|
11912
|
-
"allowNo": false,
|
|
11913
|
-
"type": "boolean"
|
|
11914
|
-
},
|
|
11915
|
-
"theme": {
|
|
11916
|
-
"char": "t",
|
|
11917
|
-
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
11918
|
-
"name": "theme",
|
|
11919
|
-
"hasDynamicHelp": false,
|
|
11920
|
-
"multiple": false,
|
|
11921
|
-
"type": "option"
|
|
11922
|
-
},
|
|
11923
|
-
"json": {
|
|
11924
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11925
|
-
"name": "json",
|
|
11926
|
-
"allowNo": false,
|
|
11927
|
-
"type": "boolean"
|
|
11928
|
-
},
|
|
11929
|
-
"machine": {
|
|
11930
|
-
"char": "m",
|
|
11931
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11932
|
-
"name": "machine",
|
|
11933
|
-
"allowNo": false,
|
|
11934
|
-
"type": "boolean"
|
|
11935
|
-
},
|
|
11936
|
-
"clone": {
|
|
11937
|
-
"description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
|
|
11938
|
-
"name": "clone",
|
|
11939
|
-
"allowNo": false,
|
|
11940
|
-
"type": "boolean"
|
|
11941
|
-
}
|
|
11942
|
-
},
|
|
11943
|
-
"hasDynamicHelp": false,
|
|
11944
|
-
"hiddenAliases": [],
|
|
11945
|
-
"id": "staff:add",
|
|
11946
|
-
"pluginAlias": "@proletariat/cli",
|
|
11947
|
-
"pluginName": "@proletariat/cli",
|
|
11948
|
-
"pluginType": "core",
|
|
11949
|
-
"strict": false,
|
|
11950
|
-
"isESM": true,
|
|
11951
|
-
"relativePath": [
|
|
11952
|
-
"dist",
|
|
11953
|
-
"commands",
|
|
11954
|
-
"agent",
|
|
11955
|
-
"staff",
|
|
11956
|
-
"add.js"
|
|
11957
|
-
]
|
|
11958
|
-
},
|
|
11959
|
-
"staff": {
|
|
11960
|
-
"aliases": [],
|
|
11961
|
-
"args": {},
|
|
11962
|
-
"description": "Manage staff (persistent) agents",
|
|
11963
|
-
"examples": [
|
|
11964
|
-
"<%= config.bin %> <%= command.id %> list",
|
|
11965
|
-
"<%= config.bin %> <%= command.id %> add",
|
|
11966
|
-
"<%= config.bin %> <%= command.id %> remove camry"
|
|
11967
|
-
],
|
|
11968
|
-
"flags": {
|
|
11969
|
-
"project": {
|
|
11970
|
-
"char": "P",
|
|
11971
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11972
|
-
"name": "project",
|
|
11973
|
-
"hasDynamicHelp": false,
|
|
11974
|
-
"multiple": false,
|
|
11975
|
-
"type": "option"
|
|
11976
|
-
},
|
|
11977
|
-
"json": {
|
|
11978
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11979
|
-
"name": "json",
|
|
11980
|
-
"allowNo": false,
|
|
11981
|
-
"type": "boolean"
|
|
11982
|
-
},
|
|
11983
|
-
"machine": {
|
|
11984
|
-
"char": "m",
|
|
11985
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11986
|
-
"name": "machine",
|
|
11987
|
-
"allowNo": false,
|
|
11988
|
-
"type": "boolean"
|
|
11989
|
-
},
|
|
11990
|
-
"no-interactive": {
|
|
11991
|
-
"description": "Alias for --json flag",
|
|
11992
|
-
"name": "no-interactive",
|
|
11993
|
-
"allowNo": false,
|
|
11994
|
-
"type": "boolean"
|
|
11995
|
-
}
|
|
11996
|
-
},
|
|
11997
|
-
"hasDynamicHelp": false,
|
|
11998
|
-
"hiddenAliases": [],
|
|
11999
|
-
"id": "staff",
|
|
12000
|
-
"pluginAlias": "@proletariat/cli",
|
|
12001
|
-
"pluginName": "@proletariat/cli",
|
|
12002
|
-
"pluginType": "core",
|
|
12003
|
-
"strict": true,
|
|
12004
|
-
"isESM": true,
|
|
12005
|
-
"relativePath": [
|
|
12006
|
-
"dist",
|
|
12007
|
-
"commands",
|
|
12008
|
-
"staff",
|
|
12009
|
-
"index.js"
|
|
12010
|
-
]
|
|
12011
|
-
},
|
|
12012
|
-
"staff:list": {
|
|
12013
|
-
"aliases": [],
|
|
12014
|
-
"args": {},
|
|
12015
|
-
"description": "List all staff (persistent) agents and their status",
|
|
12016
|
-
"examples": [
|
|
12017
|
-
"<%= config.bin %> <%= command.id %>"
|
|
12018
|
-
],
|
|
12019
|
-
"flags": {
|
|
12020
|
-
"json": {
|
|
12021
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
12022
|
-
"name": "json",
|
|
12023
|
-
"allowNo": false,
|
|
12024
|
-
"type": "boolean"
|
|
12025
|
-
},
|
|
12026
|
-
"machine": {
|
|
12027
|
-
"char": "m",
|
|
12028
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
12029
|
-
"name": "machine",
|
|
12030
|
-
"allowNo": false,
|
|
12031
|
-
"type": "boolean"
|
|
12032
|
-
}
|
|
12033
|
-
},
|
|
12034
|
-
"hasDynamicHelp": false,
|
|
12035
|
-
"hiddenAliases": [],
|
|
12036
|
-
"id": "staff:list",
|
|
12037
|
-
"pluginAlias": "@proletariat/cli",
|
|
12038
|
-
"pluginName": "@proletariat/cli",
|
|
12039
|
-
"pluginType": "core",
|
|
12040
|
-
"strict": true,
|
|
12041
|
-
"enableJsonFlag": false,
|
|
12042
|
-
"isESM": true,
|
|
12043
|
-
"relativePath": [
|
|
12044
|
-
"dist",
|
|
12045
|
-
"commands",
|
|
12046
|
-
"staff",
|
|
12047
|
-
"list.js"
|
|
12048
|
-
]
|
|
12049
|
-
},
|
|
12050
|
-
"staff:remove": {
|
|
12051
|
-
"aliases": [],
|
|
12052
|
-
"args": {
|
|
12053
|
-
"name": {
|
|
12054
|
-
"description": "Agent name to remove",
|
|
12055
|
-
"name": "name",
|
|
12056
|
-
"required": false
|
|
12057
|
-
}
|
|
12058
|
-
},
|
|
12059
|
-
"description": "Remove a specific agent from the workspace",
|
|
12060
|
-
"examples": [
|
|
12061
|
-
"<%= config.bin %> <%= command.id %> camry",
|
|
12062
|
-
"<%= config.bin %> <%= command.id %>"
|
|
12063
|
-
],
|
|
12064
|
-
"flags": {
|
|
12065
|
-
"project": {
|
|
12066
|
-
"char": "P",
|
|
12067
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
12068
|
-
"name": "project",
|
|
12069
|
-
"hasDynamicHelp": false,
|
|
12070
|
-
"multiple": false,
|
|
12071
|
-
"type": "option"
|
|
12072
|
-
},
|
|
12073
|
-
"json": {
|
|
12074
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
12075
|
-
"name": "json",
|
|
12076
|
-
"allowNo": false,
|
|
12077
|
-
"type": "boolean"
|
|
12078
|
-
},
|
|
12079
|
-
"machine": {
|
|
12080
|
-
"char": "m",
|
|
12081
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
12082
|
-
"name": "machine",
|
|
12083
|
-
"allowNo": false,
|
|
12084
|
-
"type": "boolean"
|
|
12085
|
-
},
|
|
12086
|
-
"force": {
|
|
12087
|
-
"char": "f",
|
|
12088
|
-
"description": "Skip confirmation prompt (for non-interactive use)",
|
|
12089
|
-
"name": "force",
|
|
12090
|
-
"allowNo": false,
|
|
12091
|
-
"type": "boolean"
|
|
12092
|
-
}
|
|
12093
|
-
},
|
|
12094
|
-
"hasDynamicHelp": false,
|
|
12095
|
-
"hiddenAliases": [],
|
|
12096
|
-
"id": "staff:remove",
|
|
12097
|
-
"pluginAlias": "@proletariat/cli",
|
|
12098
|
-
"pluginName": "@proletariat/cli",
|
|
12099
|
-
"pluginType": "core",
|
|
12100
|
-
"strict": true,
|
|
12101
|
-
"isESM": true,
|
|
12102
|
-
"relativePath": [
|
|
12103
|
-
"dist",
|
|
12104
|
-
"commands",
|
|
12105
|
-
"agent",
|
|
12106
|
-
"staff",
|
|
12107
|
-
"remove.js"
|
|
12108
|
-
]
|
|
12109
|
-
},
|
|
12110
|
-
"status:category": {
|
|
12111
|
-
"aliases": [
|
|
12112
|
-
"status:categories"
|
|
12113
|
-
],
|
|
12114
|
-
"args": {},
|
|
12115
|
-
"description": "Manage status categories (backlog, started, completed, etc.)",
|
|
12116
|
-
"examples": [
|
|
12117
|
-
"<%= config.bin %> <%= command.id %>",
|
|
12118
|
-
"<%= config.bin %> <%= command.id %> list",
|
|
12119
|
-
"<%= config.bin %> <%= command.id %> create reviewing",
|
|
12120
|
-
"<%= config.bin %> <%= command.id %> rename reviewing in-review",
|
|
12121
|
-
"<%= config.bin %> <%= command.id %> delete reviewing"
|
|
12126
|
+
"<%= config.bin %> <%= command.id %>",
|
|
12127
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
12128
|
+
"<%= config.bin %> <%= command.id %> create reviewing",
|
|
12129
|
+
"<%= config.bin %> <%= command.id %> rename reviewing in-review",
|
|
12130
|
+
"<%= config.bin %> <%= command.id %> delete reviewing"
|
|
12122
12131
|
],
|
|
12123
12132
|
"flags": {
|
|
12124
12133
|
"project": {
|
|
@@ -13001,83 +13010,30 @@
|
|
|
13001
13010
|
"status.js"
|
|
13002
13011
|
]
|
|
13003
13012
|
},
|
|
13004
|
-
"
|
|
13013
|
+
"template:apply": {
|
|
13005
13014
|
"aliases": [],
|
|
13006
13015
|
"args": {
|
|
13007
|
-
"
|
|
13008
|
-
"description": "
|
|
13009
|
-
"name": "
|
|
13016
|
+
"template": {
|
|
13017
|
+
"description": "Template ID to apply",
|
|
13018
|
+
"name": "template",
|
|
13010
13019
|
"required": false
|
|
13011
13020
|
}
|
|
13012
13021
|
},
|
|
13013
|
-
"description": "
|
|
13022
|
+
"description": "Apply a template",
|
|
13014
13023
|
"examples": [
|
|
13015
|
-
"<%= config.bin %> <%= command.id %>
|
|
13016
|
-
"<%= config.bin %> <%= command.id %>
|
|
13017
|
-
"<%= config.bin %> <%= command.id %> --
|
|
13018
|
-
"<%= config.bin %> <%= command.id %> --
|
|
13024
|
+
"<%= config.bin %> <%= command.id %> --type ticket bug-report",
|
|
13025
|
+
"<%= config.bin %> <%= command.id %> --type ticket bug-report --title \"Login fails\"",
|
|
13026
|
+
"<%= config.bin %> <%= command.id %> --type phase agile",
|
|
13027
|
+
"<%= config.bin %> <%= command.id %> --type phase default --force"
|
|
13019
13028
|
],
|
|
13020
13029
|
"flags": {
|
|
13021
|
-
"
|
|
13022
|
-
"char": "
|
|
13023
|
-
"description": "
|
|
13024
|
-
"name": "
|
|
13025
|
-
"
|
|
13026
|
-
"
|
|
13027
|
-
|
|
13028
|
-
"json": {
|
|
13029
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13030
|
-
"name": "json",
|
|
13031
|
-
"allowNo": false,
|
|
13032
|
-
"type": "boolean"
|
|
13033
|
-
},
|
|
13034
|
-
"machine": {
|
|
13035
|
-
"char": "m",
|
|
13036
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13037
|
-
"name": "machine",
|
|
13038
|
-
"allowNo": false,
|
|
13039
|
-
"type": "boolean"
|
|
13040
|
-
}
|
|
13041
|
-
},
|
|
13042
|
-
"hasDynamicHelp": false,
|
|
13043
|
-
"hiddenAliases": [],
|
|
13044
|
-
"id": "terminal:title",
|
|
13045
|
-
"pluginAlias": "@proletariat/cli",
|
|
13046
|
-
"pluginName": "@proletariat/cli",
|
|
13047
|
-
"pluginType": "core",
|
|
13048
|
-
"strict": true,
|
|
13049
|
-
"isESM": true,
|
|
13050
|
-
"relativePath": [
|
|
13051
|
-
"dist",
|
|
13052
|
-
"commands",
|
|
13053
|
-
"terminal",
|
|
13054
|
-
"title.js"
|
|
13055
|
-
]
|
|
13056
|
-
},
|
|
13057
|
-
"template:apply": {
|
|
13058
|
-
"aliases": [],
|
|
13059
|
-
"args": {
|
|
13060
|
-
"template": {
|
|
13061
|
-
"description": "Template ID to apply",
|
|
13062
|
-
"name": "template",
|
|
13063
|
-
"required": false
|
|
13064
|
-
}
|
|
13065
|
-
},
|
|
13066
|
-
"description": "Apply a template",
|
|
13067
|
-
"examples": [
|
|
13068
|
-
"<%= config.bin %> <%= command.id %> --type ticket bug-report",
|
|
13069
|
-
"<%= config.bin %> <%= command.id %> --type ticket bug-report --title \"Login fails\"",
|
|
13070
|
-
"<%= config.bin %> <%= command.id %> --type phase agile",
|
|
13071
|
-
"<%= config.bin %> <%= command.id %> --type phase default --force"
|
|
13072
|
-
],
|
|
13073
|
-
"flags": {
|
|
13074
|
-
"project": {
|
|
13075
|
-
"char": "P",
|
|
13076
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
13077
|
-
"name": "project",
|
|
13078
|
-
"hasDynamicHelp": false,
|
|
13079
|
-
"multiple": false,
|
|
13080
|
-
"type": "option"
|
|
13030
|
+
"project": {
|
|
13031
|
+
"char": "P",
|
|
13032
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
13033
|
+
"name": "project",
|
|
13034
|
+
"hasDynamicHelp": false,
|
|
13035
|
+
"multiple": false,
|
|
13036
|
+
"type": "option"
|
|
13081
13037
|
},
|
|
13082
13038
|
"json": {
|
|
13083
13039
|
"description": "Output as JSON for AI agents/scripts",
|
|
@@ -13673,26 +13629,30 @@
|
|
|
13673
13629
|
"update.js"
|
|
13674
13630
|
]
|
|
13675
13631
|
},
|
|
13676
|
-
"
|
|
13632
|
+
"terminal:title": {
|
|
13677
13633
|
"aliases": [],
|
|
13678
13634
|
"args": {
|
|
13679
|
-
"
|
|
13680
|
-
"description": "
|
|
13681
|
-
"name": "
|
|
13682
|
-
"required": true
|
|
13683
|
-
},
|
|
13684
|
-
"names": {
|
|
13685
|
-
"description": "Names to add to the theme (space-separated)",
|
|
13686
|
-
"name": "names",
|
|
13635
|
+
"title": {
|
|
13636
|
+
"description": "Title to set for the terminal tab/window",
|
|
13637
|
+
"name": "title",
|
|
13687
13638
|
"required": false
|
|
13688
13639
|
}
|
|
13689
13640
|
},
|
|
13690
|
-
"description": "
|
|
13641
|
+
"description": "Set the terminal tab/window title",
|
|
13691
13642
|
"examples": [
|
|
13692
|
-
"<%= config.bin %> <%= command.id %>
|
|
13693
|
-
"<%= config.bin %> <%= command.id %>
|
|
13643
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
13644
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
13645
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
13646
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
13694
13647
|
],
|
|
13695
13648
|
"flags": {
|
|
13649
|
+
"reset": {
|
|
13650
|
+
"char": "r",
|
|
13651
|
+
"description": "Reset terminal title to default",
|
|
13652
|
+
"name": "reset",
|
|
13653
|
+
"allowNo": false,
|
|
13654
|
+
"type": "boolean"
|
|
13655
|
+
},
|
|
13696
13656
|
"json": {
|
|
13697
13657
|
"description": "Output as JSON for AI agents/scripts",
|
|
13698
13658
|
"name": "json",
|
|
@@ -13709,34 +13669,41 @@
|
|
|
13709
13669
|
},
|
|
13710
13670
|
"hasDynamicHelp": false,
|
|
13711
13671
|
"hiddenAliases": [],
|
|
13712
|
-
"id": "
|
|
13672
|
+
"id": "terminal:title",
|
|
13713
13673
|
"pluginAlias": "@proletariat/cli",
|
|
13714
13674
|
"pluginName": "@proletariat/cli",
|
|
13715
13675
|
"pluginType": "core",
|
|
13716
|
-
"strict":
|
|
13717
|
-
"enableJsonFlag": false,
|
|
13676
|
+
"strict": true,
|
|
13718
13677
|
"isESM": true,
|
|
13719
13678
|
"relativePath": [
|
|
13720
13679
|
"dist",
|
|
13721
13680
|
"commands",
|
|
13722
|
-
"
|
|
13723
|
-
"
|
|
13681
|
+
"terminal",
|
|
13682
|
+
"title.js"
|
|
13724
13683
|
]
|
|
13725
13684
|
},
|
|
13726
|
-
"
|
|
13685
|
+
"tools:add": {
|
|
13727
13686
|
"aliases": [],
|
|
13728
13687
|
"args": {
|
|
13688
|
+
"type": {
|
|
13689
|
+
"description": "Tool type (mcp or cli)",
|
|
13690
|
+
"name": "type",
|
|
13691
|
+
"options": [
|
|
13692
|
+
"mcp",
|
|
13693
|
+
"cli"
|
|
13694
|
+
],
|
|
13695
|
+
"required": true
|
|
13696
|
+
},
|
|
13729
13697
|
"name": {
|
|
13730
|
-
"description": "
|
|
13698
|
+
"description": "Tool name (unique identifier)",
|
|
13731
13699
|
"name": "name",
|
|
13732
13700
|
"required": true
|
|
13733
13701
|
}
|
|
13734
13702
|
},
|
|
13735
|
-
"description": "
|
|
13703
|
+
"description": "Register an MCP server or CLI tool",
|
|
13736
13704
|
"examples": [
|
|
13737
|
-
"<%= config.bin %>
|
|
13738
|
-
"<%= config.bin %>
|
|
13739
|
-
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
13705
|
+
"<%= config.bin %> tools add mcp arcade --url https://api.arcade.dev/mcp --auth ARCADE_API_KEY --description \"Arcade integrations\"",
|
|
13706
|
+
"<%= config.bin %> tools add cli gh --command gh --detect \"which gh\" --install \"brew install gh\" --description \"GitHub CLI\""
|
|
13740
13707
|
],
|
|
13741
13708
|
"flags": {
|
|
13742
13709
|
"json": {
|
|
@@ -13752,17 +13719,46 @@
|
|
|
13752
13719
|
"allowNo": false,
|
|
13753
13720
|
"type": "boolean"
|
|
13754
13721
|
},
|
|
13755
|
-
"
|
|
13756
|
-
"
|
|
13757
|
-
"
|
|
13758
|
-
"name": "description",
|
|
13722
|
+
"url": {
|
|
13723
|
+
"description": "MCP server URL (for remote servers)",
|
|
13724
|
+
"name": "url",
|
|
13759
13725
|
"hasDynamicHelp": false,
|
|
13760
13726
|
"multiple": false,
|
|
13761
13727
|
"type": "option"
|
|
13762
13728
|
},
|
|
13763
|
-
"
|
|
13764
|
-
"description": "
|
|
13765
|
-
"name": "
|
|
13729
|
+
"command": {
|
|
13730
|
+
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
13731
|
+
"name": "command",
|
|
13732
|
+
"hasDynamicHelp": false,
|
|
13733
|
+
"multiple": false,
|
|
13734
|
+
"type": "option"
|
|
13735
|
+
},
|
|
13736
|
+
"auth": {
|
|
13737
|
+
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
13738
|
+
"name": "auth",
|
|
13739
|
+
"hasDynamicHelp": false,
|
|
13740
|
+
"multiple": false,
|
|
13741
|
+
"type": "option"
|
|
13742
|
+
},
|
|
13743
|
+
"detect": {
|
|
13744
|
+
"description": "Shell command to detect if CLI tool is installed",
|
|
13745
|
+
"name": "detect",
|
|
13746
|
+
"hasDynamicHelp": false,
|
|
13747
|
+
"multiple": false,
|
|
13748
|
+
"type": "option"
|
|
13749
|
+
},
|
|
13750
|
+
"install": {
|
|
13751
|
+
"description": "Shell command to install the CLI tool",
|
|
13752
|
+
"name": "install",
|
|
13753
|
+
"hasDynamicHelp": false,
|
|
13754
|
+
"multiple": false,
|
|
13755
|
+
"type": "option"
|
|
13756
|
+
},
|
|
13757
|
+
"description": {
|
|
13758
|
+
"char": "d",
|
|
13759
|
+
"description": "Human-readable description",
|
|
13760
|
+
"name": "description",
|
|
13761
|
+
"required": true,
|
|
13766
13762
|
"hasDynamicHelp": false,
|
|
13767
13763
|
"multiple": false,
|
|
13768
13764
|
"type": "option"
|
|
@@ -13770,28 +13766,26 @@
|
|
|
13770
13766
|
},
|
|
13771
13767
|
"hasDynamicHelp": false,
|
|
13772
13768
|
"hiddenAliases": [],
|
|
13773
|
-
"id": "
|
|
13769
|
+
"id": "tools:add",
|
|
13774
13770
|
"pluginAlias": "@proletariat/cli",
|
|
13775
13771
|
"pluginName": "@proletariat/cli",
|
|
13776
13772
|
"pluginType": "core",
|
|
13777
13773
|
"strict": true,
|
|
13778
|
-
"enableJsonFlag": false,
|
|
13779
13774
|
"isESM": true,
|
|
13780
13775
|
"relativePath": [
|
|
13781
13776
|
"dist",
|
|
13782
13777
|
"commands",
|
|
13783
|
-
"
|
|
13784
|
-
"
|
|
13778
|
+
"tools",
|
|
13779
|
+
"add.js"
|
|
13785
13780
|
]
|
|
13786
13781
|
},
|
|
13787
|
-
"
|
|
13782
|
+
"tools:check": {
|
|
13788
13783
|
"aliases": [],
|
|
13789
13784
|
"args": {},
|
|
13790
|
-
"description": "
|
|
13785
|
+
"description": "Verify all registered tools are available and healthy",
|
|
13791
13786
|
"examples": [
|
|
13792
|
-
"<%= config.bin %>
|
|
13793
|
-
"<%= config.bin %>
|
|
13794
|
-
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
13787
|
+
"<%= config.bin %> tools check",
|
|
13788
|
+
"<%= config.bin %> tools check --json"
|
|
13795
13789
|
],
|
|
13796
13790
|
"flags": {
|
|
13797
13791
|
"json": {
|
|
@@ -13810,25 +13804,28 @@
|
|
|
13810
13804
|
},
|
|
13811
13805
|
"hasDynamicHelp": false,
|
|
13812
13806
|
"hiddenAliases": [],
|
|
13813
|
-
"id": "
|
|
13807
|
+
"id": "tools:check",
|
|
13814
13808
|
"pluginAlias": "@proletariat/cli",
|
|
13815
13809
|
"pluginName": "@proletariat/cli",
|
|
13816
13810
|
"pluginType": "core",
|
|
13817
13811
|
"strict": true,
|
|
13812
|
+
"enableJsonFlag": false,
|
|
13818
13813
|
"isESM": true,
|
|
13819
13814
|
"relativePath": [
|
|
13820
13815
|
"dist",
|
|
13821
13816
|
"commands",
|
|
13822
|
-
"
|
|
13823
|
-
"
|
|
13817
|
+
"tools",
|
|
13818
|
+
"check.js"
|
|
13824
13819
|
]
|
|
13825
13820
|
},
|
|
13826
|
-
"
|
|
13821
|
+
"tools:detect": {
|
|
13827
13822
|
"aliases": [],
|
|
13828
13823
|
"args": {},
|
|
13829
|
-
"description": "
|
|
13824
|
+
"description": "Auto-detect common CLI tools on the system and register them",
|
|
13830
13825
|
"examples": [
|
|
13831
|
-
"<%= config.bin %>
|
|
13826
|
+
"<%= config.bin %> tools detect",
|
|
13827
|
+
"<%= config.bin %> tools detect --auto",
|
|
13828
|
+
"<%= config.bin %> tools detect --json"
|
|
13832
13829
|
],
|
|
13833
13830
|
"flags": {
|
|
13834
13831
|
"json": {
|
|
@@ -13843,11 +13840,17 @@
|
|
|
13843
13840
|
"name": "machine",
|
|
13844
13841
|
"allowNo": false,
|
|
13845
13842
|
"type": "boolean"
|
|
13843
|
+
},
|
|
13844
|
+
"auto": {
|
|
13845
|
+
"description": "Automatically register all detected tools without prompting",
|
|
13846
|
+
"name": "auto",
|
|
13847
|
+
"allowNo": false,
|
|
13848
|
+
"type": "boolean"
|
|
13846
13849
|
}
|
|
13847
13850
|
},
|
|
13848
13851
|
"hasDynamicHelp": false,
|
|
13849
13852
|
"hiddenAliases": [],
|
|
13850
|
-
"id": "
|
|
13853
|
+
"id": "tools:detect",
|
|
13851
13854
|
"pluginAlias": "@proletariat/cli",
|
|
13852
13855
|
"pluginName": "@proletariat/cli",
|
|
13853
13856
|
"pluginType": "core",
|
|
@@ -13857,23 +13860,19 @@
|
|
|
13857
13860
|
"relativePath": [
|
|
13858
13861
|
"dist",
|
|
13859
13862
|
"commands",
|
|
13860
|
-
"
|
|
13861
|
-
"
|
|
13863
|
+
"tools",
|
|
13864
|
+
"detect.js"
|
|
13862
13865
|
]
|
|
13863
13866
|
},
|
|
13864
|
-
"
|
|
13865
|
-
"aliases": [
|
|
13866
|
-
|
|
13867
|
-
|
|
13868
|
-
|
|
13869
|
-
|
|
13870
|
-
"required": false
|
|
13871
|
-
}
|
|
13872
|
-
},
|
|
13873
|
-
"description": "Set the active theme for this workspace",
|
|
13867
|
+
"tools": {
|
|
13868
|
+
"aliases": [
|
|
13869
|
+
"tools:list"
|
|
13870
|
+
],
|
|
13871
|
+
"args": {},
|
|
13872
|
+
"description": "Show all registered MCP servers and CLI tools",
|
|
13874
13873
|
"examples": [
|
|
13875
|
-
"<%= config.bin %>
|
|
13876
|
-
"<%= config.bin %>
|
|
13874
|
+
"<%= config.bin %> tools",
|
|
13875
|
+
"<%= config.bin %> tools --json"
|
|
13877
13876
|
],
|
|
13878
13877
|
"flags": {
|
|
13879
13878
|
"json": {
|
|
@@ -13892,42 +13891,33 @@
|
|
|
13892
13891
|
},
|
|
13893
13892
|
"hasDynamicHelp": false,
|
|
13894
13893
|
"hiddenAliases": [],
|
|
13895
|
-
"id": "
|
|
13894
|
+
"id": "tools",
|
|
13896
13895
|
"pluginAlias": "@proletariat/cli",
|
|
13897
13896
|
"pluginName": "@proletariat/cli",
|
|
13898
13897
|
"pluginType": "core",
|
|
13899
13898
|
"strict": true,
|
|
13899
|
+
"enableJsonFlag": false,
|
|
13900
13900
|
"isESM": true,
|
|
13901
13901
|
"relativePath": [
|
|
13902
13902
|
"dist",
|
|
13903
13903
|
"commands",
|
|
13904
|
-
"
|
|
13905
|
-
"
|
|
13906
|
-
"set.js"
|
|
13904
|
+
"tools",
|
|
13905
|
+
"index.js"
|
|
13907
13906
|
]
|
|
13908
13907
|
},
|
|
13909
|
-
"tools:
|
|
13908
|
+
"tools:remove": {
|
|
13910
13909
|
"aliases": [],
|
|
13911
13910
|
"args": {
|
|
13912
|
-
"type": {
|
|
13913
|
-
"description": "Tool type (mcp or cli)",
|
|
13914
|
-
"name": "type",
|
|
13915
|
-
"options": [
|
|
13916
|
-
"mcp",
|
|
13917
|
-
"cli"
|
|
13918
|
-
],
|
|
13919
|
-
"required": true
|
|
13920
|
-
},
|
|
13921
13911
|
"name": {
|
|
13922
|
-
"description": "Tool name
|
|
13912
|
+
"description": "Tool name to remove",
|
|
13923
13913
|
"name": "name",
|
|
13924
13914
|
"required": true
|
|
13925
13915
|
}
|
|
13926
13916
|
},
|
|
13927
|
-
"description": "
|
|
13917
|
+
"description": "Remove a tool from the registry",
|
|
13928
13918
|
"examples": [
|
|
13929
|
-
"<%= config.bin %> tools
|
|
13930
|
-
"<%= config.bin %> tools
|
|
13919
|
+
"<%= config.bin %> tools remove arcade",
|
|
13920
|
+
"<%= config.bin %> tools remove ffmpeg"
|
|
13931
13921
|
],
|
|
13932
13922
|
"flags": {
|
|
13933
13923
|
"json": {
|
|
@@ -13942,74 +13932,42 @@
|
|
|
13942
13932
|
"name": "machine",
|
|
13943
13933
|
"allowNo": false,
|
|
13944
13934
|
"type": "boolean"
|
|
13945
|
-
},
|
|
13946
|
-
"url": {
|
|
13947
|
-
"description": "MCP server URL (for remote servers)",
|
|
13948
|
-
"name": "url",
|
|
13949
|
-
"hasDynamicHelp": false,
|
|
13950
|
-
"multiple": false,
|
|
13951
|
-
"type": "option"
|
|
13952
|
-
},
|
|
13953
|
-
"command": {
|
|
13954
|
-
"description": "Command to run (MCP server command or CLI tool binary)",
|
|
13955
|
-
"name": "command",
|
|
13956
|
-
"hasDynamicHelp": false,
|
|
13957
|
-
"multiple": false,
|
|
13958
|
-
"type": "option"
|
|
13959
|
-
},
|
|
13960
|
-
"auth": {
|
|
13961
|
-
"description": "Environment variable for authentication (e.g., ARCADE_API_KEY)",
|
|
13962
|
-
"name": "auth",
|
|
13963
|
-
"hasDynamicHelp": false,
|
|
13964
|
-
"multiple": false,
|
|
13965
|
-
"type": "option"
|
|
13966
|
-
},
|
|
13967
|
-
"detect": {
|
|
13968
|
-
"description": "Shell command to detect if CLI tool is installed",
|
|
13969
|
-
"name": "detect",
|
|
13970
|
-
"hasDynamicHelp": false,
|
|
13971
|
-
"multiple": false,
|
|
13972
|
-
"type": "option"
|
|
13973
|
-
},
|
|
13974
|
-
"install": {
|
|
13975
|
-
"description": "Shell command to install the CLI tool",
|
|
13976
|
-
"name": "install",
|
|
13977
|
-
"hasDynamicHelp": false,
|
|
13978
|
-
"multiple": false,
|
|
13979
|
-
"type": "option"
|
|
13980
|
-
},
|
|
13981
|
-
"description": {
|
|
13982
|
-
"char": "d",
|
|
13983
|
-
"description": "Human-readable description",
|
|
13984
|
-
"name": "description",
|
|
13985
|
-
"required": true,
|
|
13986
|
-
"hasDynamicHelp": false,
|
|
13987
|
-
"multiple": false,
|
|
13988
|
-
"type": "option"
|
|
13989
13935
|
}
|
|
13990
13936
|
},
|
|
13991
13937
|
"hasDynamicHelp": false,
|
|
13992
13938
|
"hiddenAliases": [],
|
|
13993
|
-
"id": "tools:
|
|
13939
|
+
"id": "tools:remove",
|
|
13994
13940
|
"pluginAlias": "@proletariat/cli",
|
|
13995
13941
|
"pluginName": "@proletariat/cli",
|
|
13996
13942
|
"pluginType": "core",
|
|
13997
13943
|
"strict": true,
|
|
13944
|
+
"enableJsonFlag": false,
|
|
13998
13945
|
"isESM": true,
|
|
13999
13946
|
"relativePath": [
|
|
14000
13947
|
"dist",
|
|
14001
13948
|
"commands",
|
|
14002
13949
|
"tools",
|
|
14003
|
-
"
|
|
13950
|
+
"remove.js"
|
|
14004
13951
|
]
|
|
14005
13952
|
},
|
|
14006
|
-
"
|
|
13953
|
+
"theme:add-names": {
|
|
14007
13954
|
"aliases": [],
|
|
14008
|
-
"args": {
|
|
14009
|
-
|
|
13955
|
+
"args": {
|
|
13956
|
+
"theme": {
|
|
13957
|
+
"description": "Theme ID",
|
|
13958
|
+
"name": "theme",
|
|
13959
|
+
"required": true
|
|
13960
|
+
},
|
|
13961
|
+
"names": {
|
|
13962
|
+
"description": "Names to add to the theme (space-separated)",
|
|
13963
|
+
"name": "names",
|
|
13964
|
+
"required": false
|
|
13965
|
+
}
|
|
13966
|
+
},
|
|
13967
|
+
"description": "Add names to a theme",
|
|
14010
13968
|
"examples": [
|
|
14011
|
-
"<%= config.bin %>
|
|
14012
|
-
"<%= config.bin %>
|
|
13969
|
+
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
13970
|
+
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
14013
13971
|
],
|
|
14014
13972
|
"flags": {
|
|
14015
13973
|
"json": {
|
|
@@ -14028,28 +13986,34 @@
|
|
|
14028
13986
|
},
|
|
14029
13987
|
"hasDynamicHelp": false,
|
|
14030
13988
|
"hiddenAliases": [],
|
|
14031
|
-
"id": "
|
|
13989
|
+
"id": "theme:add-names",
|
|
14032
13990
|
"pluginAlias": "@proletariat/cli",
|
|
14033
13991
|
"pluginName": "@proletariat/cli",
|
|
14034
13992
|
"pluginType": "core",
|
|
14035
|
-
"strict":
|
|
13993
|
+
"strict": false,
|
|
14036
13994
|
"enableJsonFlag": false,
|
|
14037
13995
|
"isESM": true,
|
|
14038
13996
|
"relativePath": [
|
|
14039
13997
|
"dist",
|
|
14040
13998
|
"commands",
|
|
14041
|
-
"
|
|
14042
|
-
"
|
|
13999
|
+
"theme",
|
|
14000
|
+
"add-names.js"
|
|
14043
14001
|
]
|
|
14044
14002
|
},
|
|
14045
|
-
"
|
|
14003
|
+
"theme:create": {
|
|
14046
14004
|
"aliases": [],
|
|
14047
|
-
"args": {
|
|
14048
|
-
|
|
14005
|
+
"args": {
|
|
14006
|
+
"name": {
|
|
14007
|
+
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
14008
|
+
"name": "name",
|
|
14009
|
+
"required": true
|
|
14010
|
+
}
|
|
14011
|
+
},
|
|
14012
|
+
"description": "Create a custom agent theme",
|
|
14049
14013
|
"examples": [
|
|
14050
|
-
"<%= config.bin %>
|
|
14051
|
-
"<%= config.bin %>
|
|
14052
|
-
"<%= config.bin %>
|
|
14014
|
+
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
14015
|
+
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
14016
|
+
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
14053
14017
|
],
|
|
14054
14018
|
"flags": {
|
|
14055
14019
|
"json": {
|
|
@@ -14065,16 +14029,25 @@
|
|
|
14065
14029
|
"allowNo": false,
|
|
14066
14030
|
"type": "boolean"
|
|
14067
14031
|
},
|
|
14068
|
-
"
|
|
14069
|
-
"
|
|
14070
|
-
"
|
|
14071
|
-
"
|
|
14072
|
-
"
|
|
14032
|
+
"description": {
|
|
14033
|
+
"char": "d",
|
|
14034
|
+
"description": "Theme description",
|
|
14035
|
+
"name": "description",
|
|
14036
|
+
"hasDynamicHelp": false,
|
|
14037
|
+
"multiple": false,
|
|
14038
|
+
"type": "option"
|
|
14039
|
+
},
|
|
14040
|
+
"display-name": {
|
|
14041
|
+
"description": "Display name (defaults to formatted name)",
|
|
14042
|
+
"name": "display-name",
|
|
14043
|
+
"hasDynamicHelp": false,
|
|
14044
|
+
"multiple": false,
|
|
14045
|
+
"type": "option"
|
|
14073
14046
|
}
|
|
14074
14047
|
},
|
|
14075
14048
|
"hasDynamicHelp": false,
|
|
14076
14049
|
"hiddenAliases": [],
|
|
14077
|
-
"id": "
|
|
14050
|
+
"id": "theme:create",
|
|
14078
14051
|
"pluginAlias": "@proletariat/cli",
|
|
14079
14052
|
"pluginName": "@proletariat/cli",
|
|
14080
14053
|
"pluginType": "core",
|
|
@@ -14084,19 +14057,55 @@
|
|
|
14084
14057
|
"relativePath": [
|
|
14085
14058
|
"dist",
|
|
14086
14059
|
"commands",
|
|
14087
|
-
"
|
|
14088
|
-
"
|
|
14060
|
+
"theme",
|
|
14061
|
+
"create.js"
|
|
14089
14062
|
]
|
|
14090
14063
|
},
|
|
14091
|
-
"
|
|
14092
|
-
"aliases": [
|
|
14093
|
-
|
|
14064
|
+
"theme": {
|
|
14065
|
+
"aliases": [],
|
|
14066
|
+
"args": {},
|
|
14067
|
+
"description": "Manage agent naming themes",
|
|
14068
|
+
"examples": [
|
|
14069
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
14070
|
+
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
14071
|
+
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
14094
14072
|
],
|
|
14073
|
+
"flags": {
|
|
14074
|
+
"json": {
|
|
14075
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14076
|
+
"name": "json",
|
|
14077
|
+
"allowNo": false,
|
|
14078
|
+
"type": "boolean"
|
|
14079
|
+
},
|
|
14080
|
+
"machine": {
|
|
14081
|
+
"char": "m",
|
|
14082
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
14083
|
+
"name": "machine",
|
|
14084
|
+
"allowNo": false,
|
|
14085
|
+
"type": "boolean"
|
|
14086
|
+
}
|
|
14087
|
+
},
|
|
14088
|
+
"hasDynamicHelp": false,
|
|
14089
|
+
"hiddenAliases": [],
|
|
14090
|
+
"id": "theme",
|
|
14091
|
+
"pluginAlias": "@proletariat/cli",
|
|
14092
|
+
"pluginName": "@proletariat/cli",
|
|
14093
|
+
"pluginType": "core",
|
|
14094
|
+
"strict": true,
|
|
14095
|
+
"isESM": true,
|
|
14096
|
+
"relativePath": [
|
|
14097
|
+
"dist",
|
|
14098
|
+
"commands",
|
|
14099
|
+
"theme",
|
|
14100
|
+
"index.js"
|
|
14101
|
+
]
|
|
14102
|
+
},
|
|
14103
|
+
"theme:list": {
|
|
14104
|
+
"aliases": [],
|
|
14095
14105
|
"args": {},
|
|
14096
|
-
"description": "
|
|
14106
|
+
"description": "List available agent themes",
|
|
14097
14107
|
"examples": [
|
|
14098
|
-
"<%= config.bin %>
|
|
14099
|
-
"<%= config.bin %> tools --json"
|
|
14108
|
+
"<%= config.bin %> <%= command.id %>"
|
|
14100
14109
|
],
|
|
14101
14110
|
"flags": {
|
|
14102
14111
|
"json": {
|
|
@@ -14115,7 +14124,7 @@
|
|
|
14115
14124
|
},
|
|
14116
14125
|
"hasDynamicHelp": false,
|
|
14117
14126
|
"hiddenAliases": [],
|
|
14118
|
-
"id": "
|
|
14127
|
+
"id": "theme:list",
|
|
14119
14128
|
"pluginAlias": "@proletariat/cli",
|
|
14120
14129
|
"pluginName": "@proletariat/cli",
|
|
14121
14130
|
"pluginType": "core",
|
|
@@ -14125,23 +14134,23 @@
|
|
|
14125
14134
|
"relativePath": [
|
|
14126
14135
|
"dist",
|
|
14127
14136
|
"commands",
|
|
14128
|
-
"
|
|
14129
|
-
"
|
|
14137
|
+
"theme",
|
|
14138
|
+
"list.js"
|
|
14130
14139
|
]
|
|
14131
14140
|
},
|
|
14132
|
-
"
|
|
14141
|
+
"theme:set": {
|
|
14133
14142
|
"aliases": [],
|
|
14134
14143
|
"args": {
|
|
14135
|
-
"
|
|
14136
|
-
"description": "
|
|
14137
|
-
"name": "
|
|
14138
|
-
"required":
|
|
14144
|
+
"theme": {
|
|
14145
|
+
"description": "Theme ID to set as active",
|
|
14146
|
+
"name": "theme",
|
|
14147
|
+
"required": false
|
|
14139
14148
|
}
|
|
14140
14149
|
},
|
|
14141
|
-
"description": "
|
|
14150
|
+
"description": "Set the active theme for this workspace",
|
|
14142
14151
|
"examples": [
|
|
14143
|
-
"<%= config.bin %>
|
|
14144
|
-
"<%= config.bin %>
|
|
14152
|
+
"<%= config.bin %> <%= command.id %> billionaires",
|
|
14153
|
+
"<%= config.bin %> <%= command.id %>"
|
|
14145
14154
|
],
|
|
14146
14155
|
"flags": {
|
|
14147
14156
|
"json": {
|
|
@@ -14160,18 +14169,18 @@
|
|
|
14160
14169
|
},
|
|
14161
14170
|
"hasDynamicHelp": false,
|
|
14162
14171
|
"hiddenAliases": [],
|
|
14163
|
-
"id": "
|
|
14172
|
+
"id": "theme:set",
|
|
14164
14173
|
"pluginAlias": "@proletariat/cli",
|
|
14165
14174
|
"pluginName": "@proletariat/cli",
|
|
14166
14175
|
"pluginType": "core",
|
|
14167
14176
|
"strict": true,
|
|
14168
|
-
"enableJsonFlag": false,
|
|
14169
14177
|
"isESM": true,
|
|
14170
14178
|
"relativePath": [
|
|
14171
14179
|
"dist",
|
|
14172
14180
|
"commands",
|
|
14173
|
-
"
|
|
14174
|
-
"
|
|
14181
|
+
"agent",
|
|
14182
|
+
"themes",
|
|
14183
|
+
"set.js"
|
|
14175
14184
|
]
|
|
14176
14185
|
},
|
|
14177
14186
|
"version:bump": {
|
|
@@ -17628,7 +17637,7 @@
|
|
|
17628
17637
|
"work:source": {
|
|
17629
17638
|
"aliases": [],
|
|
17630
17639
|
"args": {},
|
|
17631
|
-
"description": "Show the
|
|
17640
|
+
"description": "Show the default work source used by \"work start\" and \"work spawn\"",
|
|
17632
17641
|
"examples": [
|
|
17633
17642
|
"<%= config.bin %> <%= command.id %>",
|
|
17634
17643
|
"<%= config.bin %> work source set linear:PRO",
|
|
@@ -20713,7 +20722,7 @@
|
|
|
20713
20722
|
"work:source:set": {
|
|
20714
20723
|
"aliases": [],
|
|
20715
20724
|
"args": {},
|
|
20716
|
-
"description": "Set the
|
|
20725
|
+
"description": "Set the default work source used by \"work start\" and \"work spawn\"",
|
|
20717
20726
|
"examples": [
|
|
20718
20727
|
"<%= config.bin %> <%= command.id %> pmo",
|
|
20719
20728
|
"<%= config.bin %> <%= command.id %> linear:PRO",
|
|
@@ -20759,5 +20768,5 @@
|
|
|
20759
20768
|
]
|
|
20760
20769
|
}
|
|
20761
20770
|
},
|
|
20762
|
-
"version": "0.3.
|
|
20771
|
+
"version": "0.3.69"
|
|
20763
20772
|
}
|