@proletariat/cli 0.3.1 → 0.3.3
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/README.md +6 -6
- package/images/board/board-view.png +0 -0
- package/images/execution/agent-working.png +0 -0
- package/images/execution/execution-list.png +0 -0
- package/images/execution/github-prs.png +0 -0
- package/images/init/init-board-template.png +0 -0
- package/images/init/init-complete.png +0 -0
- package/images/init/init-repo-options.png +0 -0
- package/images/init/init-repo-search.png +0 -0
- package/images/init/init-setup-progress.png +0 -0
- package/images/init/init-theme-select.png +0 -0
- package/images/init/init-welcome.png +0 -0
- package/images/spawn/spawn-action-select.png +0 -0
- package/images/spawn/spawn-display.png +0 -0
- package/images/spawn/spawn-environment.png +0 -0
- package/images/spawn/spawn-permissions.png +0 -0
- package/images/spawn/spawn-starting.png +0 -0
- package/images/ticket/ticket-view.png +0 -0
- package/images/work/work-operations-menu.png +0 -0
- package/images/work/work-project-select.png +0 -0
- package/images/work/work-ticket-select.png +0 -0
- package/oclif.manifest.json +585 -585
- package/package.json +4 -2
package/oclif.manifest.json
CHANGED
|
@@ -3864,93 +3864,90 @@
|
|
|
3864
3864
|
"init.js"
|
|
3865
3865
|
]
|
|
3866
3866
|
},
|
|
3867
|
-
"
|
|
3867
|
+
"pr:create": {
|
|
3868
3868
|
"aliases": [],
|
|
3869
3869
|
"args": {
|
|
3870
|
-
"
|
|
3871
|
-
"description": "
|
|
3872
|
-
"name": "
|
|
3870
|
+
"ticketId": {
|
|
3871
|
+
"description": "Ticket ID to link to PR - auto-detects from branch if not provided",
|
|
3872
|
+
"name": "ticketId",
|
|
3873
3873
|
"required": false
|
|
3874
3874
|
}
|
|
3875
3875
|
},
|
|
3876
|
-
"description": "
|
|
3876
|
+
"description": "Create a GitHub pull request from the current branch",
|
|
3877
3877
|
"examples": [
|
|
3878
3878
|
"<%= config.bin %> <%= command.id %>",
|
|
3879
|
-
"<%= config.bin %> <%= command.id %> TKT-
|
|
3880
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3879
|
+
"<%= config.bin %> <%= command.id %> TKT-001",
|
|
3880
|
+
"<%= config.bin %> <%= command.id %> --draft",
|
|
3881
|
+
"<%= config.bin %> <%= command.id %> --base develop"
|
|
3881
3882
|
],
|
|
3882
3883
|
"flags": {
|
|
3883
|
-
"
|
|
3884
|
-
"char": "
|
|
3885
|
-
"description": "
|
|
3886
|
-
"name": "
|
|
3884
|
+
"base": {
|
|
3885
|
+
"char": "b",
|
|
3886
|
+
"description": "Base branch for the PR (defaults to main/master)",
|
|
3887
|
+
"name": "base",
|
|
3887
3888
|
"hasDynamicHelp": false,
|
|
3888
3889
|
"multiple": false,
|
|
3889
3890
|
"type": "option"
|
|
3890
3891
|
},
|
|
3891
|
-
"
|
|
3892
|
-
"
|
|
3893
|
-
"
|
|
3894
|
-
"
|
|
3895
|
-
"type": "boolean"
|
|
3896
|
-
},
|
|
3897
|
-
"new-tab": {
|
|
3898
|
-
"char": "n",
|
|
3899
|
-
"description": "Open in a new terminal tab (default: true)",
|
|
3900
|
-
"name": "new-tab",
|
|
3892
|
+
"draft": {
|
|
3893
|
+
"char": "d",
|
|
3894
|
+
"description": "Create as draft PR",
|
|
3895
|
+
"name": "draft",
|
|
3901
3896
|
"allowNo": false,
|
|
3902
3897
|
"type": "boolean"
|
|
3903
3898
|
},
|
|
3904
|
-
"
|
|
3905
|
-
"
|
|
3906
|
-
"
|
|
3907
|
-
"name": "current-terminal",
|
|
3899
|
+
"no-link": {
|
|
3900
|
+
"description": "Skip linking PR to ticket",
|
|
3901
|
+
"name": "no-link",
|
|
3908
3902
|
"allowNo": false,
|
|
3909
3903
|
"type": "boolean"
|
|
3910
3904
|
},
|
|
3911
|
-
"
|
|
3905
|
+
"title": {
|
|
3912
3906
|
"char": "t",
|
|
3913
|
-
"description": "
|
|
3914
|
-
"name": "
|
|
3915
|
-
"
|
|
3907
|
+
"description": "PR title (auto-generated from ticket if not provided)",
|
|
3908
|
+
"name": "title",
|
|
3909
|
+
"hasDynamicHelp": false,
|
|
3910
|
+
"multiple": false,
|
|
3911
|
+
"type": "option"
|
|
3912
|
+
},
|
|
3913
|
+
"body": {
|
|
3914
|
+
"description": "PR body/description",
|
|
3915
|
+
"name": "body",
|
|
3916
3916
|
"hasDynamicHelp": false,
|
|
3917
3917
|
"multiple": false,
|
|
3918
3918
|
"type": "option"
|
|
3919
|
+
},
|
|
3920
|
+
"json": {
|
|
3921
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
3922
|
+
"name": "json",
|
|
3923
|
+
"allowNo": false,
|
|
3924
|
+
"type": "boolean"
|
|
3919
3925
|
}
|
|
3920
3926
|
},
|
|
3921
3927
|
"hasDynamicHelp": false,
|
|
3922
3928
|
"hiddenAliases": [],
|
|
3923
|
-
"id": "
|
|
3929
|
+
"id": "pr:create",
|
|
3924
3930
|
"pluginAlias": "@proletariat/cli",
|
|
3925
3931
|
"pluginName": "@proletariat/cli",
|
|
3926
3932
|
"pluginType": "core",
|
|
3927
3933
|
"strict": true,
|
|
3934
|
+
"enableJsonFlag": false,
|
|
3928
3935
|
"isESM": true,
|
|
3929
3936
|
"relativePath": [
|
|
3930
3937
|
"dist",
|
|
3931
3938
|
"commands",
|
|
3932
|
-
"
|
|
3933
|
-
"
|
|
3939
|
+
"pr",
|
|
3940
|
+
"create.js"
|
|
3934
3941
|
]
|
|
3935
3942
|
},
|
|
3936
|
-
"
|
|
3943
|
+
"pr": {
|
|
3937
3944
|
"aliases": [],
|
|
3938
3945
|
"args": {},
|
|
3939
|
-
"description": "
|
|
3946
|
+
"description": "Interactive menu for pull request operations",
|
|
3940
3947
|
"examples": [
|
|
3941
|
-
"<%= config.bin %> <%= command.id %>"
|
|
3942
|
-
"<%= config.bin %> <%= command.id %> list",
|
|
3943
|
-
"<%= config.bin %> <%= command.id %> attach TKT-347-implement"
|
|
3948
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3944
3949
|
],
|
|
3945
3950
|
"flags": {
|
|
3946
|
-
"project": {
|
|
3947
|
-
"char": "P",
|
|
3948
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
3949
|
-
"name": "project",
|
|
3950
|
-
"hasDynamicHelp": false,
|
|
3951
|
-
"multiple": false,
|
|
3952
|
-
"type": "option"
|
|
3953
|
-
},
|
|
3954
3951
|
"json": {
|
|
3955
3952
|
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
3956
3953
|
"name": "json",
|
|
@@ -3960,57 +3957,112 @@
|
|
|
3960
3957
|
},
|
|
3961
3958
|
"hasDynamicHelp": false,
|
|
3962
3959
|
"hiddenAliases": [],
|
|
3963
|
-
"id": "
|
|
3960
|
+
"id": "pr",
|
|
3964
3961
|
"pluginAlias": "@proletariat/cli",
|
|
3965
3962
|
"pluginName": "@proletariat/cli",
|
|
3966
3963
|
"pluginType": "core",
|
|
3967
3964
|
"strict": true,
|
|
3965
|
+
"enableJsonFlag": false,
|
|
3968
3966
|
"isESM": true,
|
|
3969
3967
|
"relativePath": [
|
|
3970
3968
|
"dist",
|
|
3971
3969
|
"commands",
|
|
3972
|
-
"
|
|
3970
|
+
"pr",
|
|
3973
3971
|
"index.js"
|
|
3974
3972
|
]
|
|
3975
3973
|
},
|
|
3976
|
-
"
|
|
3974
|
+
"pr:link": {
|
|
3977
3975
|
"aliases": [],
|
|
3978
|
-
"args": {
|
|
3979
|
-
|
|
3976
|
+
"args": {
|
|
3977
|
+
"ticketId": {
|
|
3978
|
+
"description": "Ticket ID to link PR to",
|
|
3979
|
+
"name": "ticketId",
|
|
3980
|
+
"required": false
|
|
3981
|
+
}
|
|
3982
|
+
},
|
|
3983
|
+
"description": "Link an existing GitHub pull request to a ticket",
|
|
3980
3984
|
"examples": [
|
|
3981
3985
|
"<%= config.bin %> <%= command.id %>",
|
|
3982
|
-
"<%= config.bin %> <%= command.id %>
|
|
3986
|
+
"<%= config.bin %> <%= command.id %> TKT-001",
|
|
3987
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
|
|
3988
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
|
|
3983
3989
|
],
|
|
3984
3990
|
"flags": {
|
|
3985
|
-
"
|
|
3986
|
-
"char": "
|
|
3987
|
-
"description": "
|
|
3988
|
-
"name": "
|
|
3991
|
+
"pr": {
|
|
3992
|
+
"char": "p",
|
|
3993
|
+
"description": "PR number to link",
|
|
3994
|
+
"name": "pr",
|
|
3989
3995
|
"hasDynamicHelp": false,
|
|
3990
3996
|
"multiple": false,
|
|
3991
3997
|
"type": "option"
|
|
3992
3998
|
},
|
|
3993
|
-
"
|
|
3994
|
-
"char": "
|
|
3995
|
-
"description": "
|
|
3996
|
-
"name": "
|
|
3999
|
+
"url": {
|
|
4000
|
+
"char": "u",
|
|
4001
|
+
"description": "PR URL to link",
|
|
4002
|
+
"name": "url",
|
|
4003
|
+
"hasDynamicHelp": false,
|
|
4004
|
+
"multiple": false,
|
|
4005
|
+
"type": "option"
|
|
4006
|
+
},
|
|
4007
|
+
"json": {
|
|
4008
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
4009
|
+
"name": "json",
|
|
3997
4010
|
"allowNo": false,
|
|
3998
4011
|
"type": "boolean"
|
|
3999
4012
|
}
|
|
4000
4013
|
},
|
|
4001
4014
|
"hasDynamicHelp": false,
|
|
4002
4015
|
"hiddenAliases": [],
|
|
4003
|
-
"id": "
|
|
4016
|
+
"id": "pr:link",
|
|
4004
4017
|
"pluginAlias": "@proletariat/cli",
|
|
4005
4018
|
"pluginName": "@proletariat/cli",
|
|
4006
4019
|
"pluginType": "core",
|
|
4007
4020
|
"strict": true,
|
|
4021
|
+
"enableJsonFlag": false,
|
|
4008
4022
|
"isESM": true,
|
|
4009
4023
|
"relativePath": [
|
|
4010
4024
|
"dist",
|
|
4011
4025
|
"commands",
|
|
4012
|
-
"
|
|
4013
|
-
"
|
|
4026
|
+
"pr",
|
|
4027
|
+
"link.js"
|
|
4028
|
+
]
|
|
4029
|
+
},
|
|
4030
|
+
"pr:status": {
|
|
4031
|
+
"aliases": [],
|
|
4032
|
+
"args": {
|
|
4033
|
+
"ticketId": {
|
|
4034
|
+
"description": "Ticket ID to check PR status for",
|
|
4035
|
+
"name": "ticketId",
|
|
4036
|
+
"required": false
|
|
4037
|
+
}
|
|
4038
|
+
},
|
|
4039
|
+
"description": "View PR status for a ticket",
|
|
4040
|
+
"examples": [
|
|
4041
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4042
|
+
"<%= config.bin %> <%= command.id %> TKT-001"
|
|
4043
|
+
],
|
|
4044
|
+
"flags": {
|
|
4045
|
+
"json": {
|
|
4046
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
4047
|
+
"name": "json",
|
|
4048
|
+
"allowNo": false,
|
|
4049
|
+
"type": "boolean"
|
|
4050
|
+
}
|
|
4051
|
+
},
|
|
4052
|
+
"hasDynamicHelp": false,
|
|
4053
|
+
"hiddenAliases": [],
|
|
4054
|
+
"id": "pr:status",
|
|
4055
|
+
"pluginAlias": "@proletariat/cli",
|
|
4056
|
+
"pluginName": "@proletariat/cli",
|
|
4057
|
+
"pluginType": "core",
|
|
4058
|
+
"strict": true,
|
|
4059
|
+
"enableJsonFlag": false,
|
|
4060
|
+
"isESM": true,
|
|
4061
|
+
"relativePath": [
|
|
4062
|
+
"dist",
|
|
4063
|
+
"commands",
|
|
4064
|
+
"pr",
|
|
4065
|
+
"status.js"
|
|
4014
4066
|
]
|
|
4015
4067
|
},
|
|
4016
4068
|
"repo:add": {
|
|
@@ -4269,142 +4321,89 @@
|
|
|
4269
4321
|
"view.js"
|
|
4270
4322
|
]
|
|
4271
4323
|
},
|
|
4272
|
-
"
|
|
4324
|
+
"session:attach": {
|
|
4273
4325
|
"aliases": [],
|
|
4274
4326
|
"args": {
|
|
4275
|
-
"
|
|
4276
|
-
"description": "
|
|
4277
|
-
"name": "
|
|
4327
|
+
"session": {
|
|
4328
|
+
"description": "Session name or ticket ID to attach to (optional - will prompt if not provided)",
|
|
4329
|
+
"name": "session",
|
|
4278
4330
|
"required": false
|
|
4279
4331
|
}
|
|
4280
4332
|
},
|
|
4281
|
-
"description": "
|
|
4333
|
+
"description": "Attach to an active tmux session",
|
|
4282
4334
|
"examples": [
|
|
4283
4335
|
"<%= config.bin %> <%= command.id %>",
|
|
4284
|
-
"<%= config.bin %> <%= command.id %> TKT-
|
|
4285
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4286
|
-
"<%= config.bin %> <%= command.id %> --base develop"
|
|
4336
|
+
"<%= config.bin %> <%= command.id %> TKT-347-implement-altman",
|
|
4337
|
+
"<%= config.bin %> <%= command.id %> --current-terminal"
|
|
4287
4338
|
],
|
|
4288
4339
|
"flags": {
|
|
4289
|
-
"
|
|
4290
|
-
"char": "
|
|
4291
|
-
"description": "
|
|
4292
|
-
"name": "
|
|
4340
|
+
"project": {
|
|
4341
|
+
"char": "P",
|
|
4342
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4343
|
+
"name": "project",
|
|
4293
4344
|
"hasDynamicHelp": false,
|
|
4294
4345
|
"multiple": false,
|
|
4295
4346
|
"type": "option"
|
|
4296
4347
|
},
|
|
4297
|
-
"
|
|
4298
|
-
"
|
|
4299
|
-
"
|
|
4300
|
-
"name": "draft",
|
|
4348
|
+
"json": {
|
|
4349
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
4350
|
+
"name": "json",
|
|
4301
4351
|
"allowNo": false,
|
|
4302
4352
|
"type": "boolean"
|
|
4303
4353
|
},
|
|
4304
|
-
"
|
|
4305
|
-
"
|
|
4306
|
-
"
|
|
4354
|
+
"new-tab": {
|
|
4355
|
+
"char": "n",
|
|
4356
|
+
"description": "Open in a new terminal tab (default: true)",
|
|
4357
|
+
"name": "new-tab",
|
|
4307
4358
|
"allowNo": false,
|
|
4308
4359
|
"type": "boolean"
|
|
4309
4360
|
},
|
|
4310
|
-
"
|
|
4311
|
-
"char": "
|
|
4312
|
-
"description": "
|
|
4313
|
-
"name": "
|
|
4314
|
-
"
|
|
4315
|
-
"
|
|
4316
|
-
"type": "option"
|
|
4361
|
+
"current-terminal": {
|
|
4362
|
+
"char": "c",
|
|
4363
|
+
"description": "Attach in current terminal instead of new tab",
|
|
4364
|
+
"name": "current-terminal",
|
|
4365
|
+
"allowNo": false,
|
|
4366
|
+
"type": "boolean"
|
|
4317
4367
|
},
|
|
4318
|
-
"
|
|
4319
|
-
"
|
|
4320
|
-
"
|
|
4368
|
+
"terminal": {
|
|
4369
|
+
"char": "t",
|
|
4370
|
+
"description": "Terminal app to use (iTerm, Terminal, Ghostty)",
|
|
4371
|
+
"name": "terminal",
|
|
4372
|
+
"default": "iTerm",
|
|
4321
4373
|
"hasDynamicHelp": false,
|
|
4322
4374
|
"multiple": false,
|
|
4323
4375
|
"type": "option"
|
|
4324
|
-
},
|
|
4325
|
-
"json": {
|
|
4326
|
-
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
4327
|
-
"name": "json",
|
|
4328
|
-
"allowNo": false,
|
|
4329
|
-
"type": "boolean"
|
|
4330
4376
|
}
|
|
4331
4377
|
},
|
|
4332
4378
|
"hasDynamicHelp": false,
|
|
4333
4379
|
"hiddenAliases": [],
|
|
4334
|
-
"id": "
|
|
4380
|
+
"id": "session:attach",
|
|
4335
4381
|
"pluginAlias": "@proletariat/cli",
|
|
4336
4382
|
"pluginName": "@proletariat/cli",
|
|
4337
4383
|
"pluginType": "core",
|
|
4338
4384
|
"strict": true,
|
|
4339
|
-
"enableJsonFlag": false,
|
|
4340
4385
|
"isESM": true,
|
|
4341
4386
|
"relativePath": [
|
|
4342
4387
|
"dist",
|
|
4343
4388
|
"commands",
|
|
4344
|
-
"
|
|
4345
|
-
"
|
|
4389
|
+
"session",
|
|
4390
|
+
"attach.js"
|
|
4346
4391
|
]
|
|
4347
4392
|
},
|
|
4348
|
-
"
|
|
4393
|
+
"session": {
|
|
4349
4394
|
"aliases": [],
|
|
4350
4395
|
"args": {},
|
|
4351
|
-
"description": "
|
|
4396
|
+
"description": "Manage agent tmux sessions (list, attach, detach)",
|
|
4352
4397
|
"examples": [
|
|
4353
|
-
"<%= config.bin %> <%= command.id %>"
|
|
4398
|
+
"<%= config.bin %> <%= command.id %>",
|
|
4399
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
4400
|
+
"<%= config.bin %> <%= command.id %> attach TKT-347-implement"
|
|
4354
4401
|
],
|
|
4355
4402
|
"flags": {
|
|
4356
|
-
"
|
|
4357
|
-
"
|
|
4358
|
-
"
|
|
4359
|
-
"
|
|
4360
|
-
"type": "boolean"
|
|
4361
|
-
}
|
|
4362
|
-
},
|
|
4363
|
-
"hasDynamicHelp": false,
|
|
4364
|
-
"hiddenAliases": [],
|
|
4365
|
-
"id": "pr",
|
|
4366
|
-
"pluginAlias": "@proletariat/cli",
|
|
4367
|
-
"pluginName": "@proletariat/cli",
|
|
4368
|
-
"pluginType": "core",
|
|
4369
|
-
"strict": true,
|
|
4370
|
-
"enableJsonFlag": false,
|
|
4371
|
-
"isESM": true,
|
|
4372
|
-
"relativePath": [
|
|
4373
|
-
"dist",
|
|
4374
|
-
"commands",
|
|
4375
|
-
"pr",
|
|
4376
|
-
"index.js"
|
|
4377
|
-
]
|
|
4378
|
-
},
|
|
4379
|
-
"pr:link": {
|
|
4380
|
-
"aliases": [],
|
|
4381
|
-
"args": {
|
|
4382
|
-
"ticketId": {
|
|
4383
|
-
"description": "Ticket ID to link PR to",
|
|
4384
|
-
"name": "ticketId",
|
|
4385
|
-
"required": false
|
|
4386
|
-
}
|
|
4387
|
-
},
|
|
4388
|
-
"description": "Link an existing GitHub pull request to a ticket",
|
|
4389
|
-
"examples": [
|
|
4390
|
-
"<%= config.bin %> <%= command.id %>",
|
|
4391
|
-
"<%= config.bin %> <%= command.id %> TKT-001",
|
|
4392
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
|
|
4393
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
|
|
4394
|
-
],
|
|
4395
|
-
"flags": {
|
|
4396
|
-
"pr": {
|
|
4397
|
-
"char": "p",
|
|
4398
|
-
"description": "PR number to link",
|
|
4399
|
-
"name": "pr",
|
|
4400
|
-
"hasDynamicHelp": false,
|
|
4401
|
-
"multiple": false,
|
|
4402
|
-
"type": "option"
|
|
4403
|
-
},
|
|
4404
|
-
"url": {
|
|
4405
|
-
"char": "u",
|
|
4406
|
-
"description": "PR URL to link",
|
|
4407
|
-
"name": "url",
|
|
4403
|
+
"project": {
|
|
4404
|
+
"char": "P",
|
|
4405
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4406
|
+
"name": "project",
|
|
4408
4407
|
"hasDynamicHelp": false,
|
|
4409
4408
|
"multiple": false,
|
|
4410
4409
|
"type": "option"
|
|
@@ -4418,56 +4417,57 @@
|
|
|
4418
4417
|
},
|
|
4419
4418
|
"hasDynamicHelp": false,
|
|
4420
4419
|
"hiddenAliases": [],
|
|
4421
|
-
"id": "
|
|
4420
|
+
"id": "session",
|
|
4422
4421
|
"pluginAlias": "@proletariat/cli",
|
|
4423
4422
|
"pluginName": "@proletariat/cli",
|
|
4424
4423
|
"pluginType": "core",
|
|
4425
4424
|
"strict": true,
|
|
4426
|
-
"enableJsonFlag": false,
|
|
4427
4425
|
"isESM": true,
|
|
4428
4426
|
"relativePath": [
|
|
4429
4427
|
"dist",
|
|
4430
4428
|
"commands",
|
|
4431
|
-
"
|
|
4432
|
-
"
|
|
4429
|
+
"session",
|
|
4430
|
+
"index.js"
|
|
4433
4431
|
]
|
|
4434
4432
|
},
|
|
4435
|
-
"
|
|
4433
|
+
"session:list": {
|
|
4436
4434
|
"aliases": [],
|
|
4437
|
-
"args": {
|
|
4438
|
-
|
|
4439
|
-
"description": "Ticket ID to check PR status for",
|
|
4440
|
-
"name": "ticketId",
|
|
4441
|
-
"required": false
|
|
4442
|
-
}
|
|
4443
|
-
},
|
|
4444
|
-
"description": "View PR status for a ticket",
|
|
4435
|
+
"args": {},
|
|
4436
|
+
"description": "List active tmux sessions (host and container)",
|
|
4445
4437
|
"examples": [
|
|
4446
4438
|
"<%= config.bin %> <%= command.id %>",
|
|
4447
|
-
"<%= config.bin %> <%= command.id %>
|
|
4439
|
+
"<%= config.bin %> <%= command.id %> --all"
|
|
4448
4440
|
],
|
|
4449
4441
|
"flags": {
|
|
4450
|
-
"
|
|
4451
|
-
"
|
|
4452
|
-
"
|
|
4442
|
+
"project": {
|
|
4443
|
+
"char": "P",
|
|
4444
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
4445
|
+
"name": "project",
|
|
4446
|
+
"hasDynamicHelp": false,
|
|
4447
|
+
"multiple": false,
|
|
4448
|
+
"type": "option"
|
|
4449
|
+
},
|
|
4450
|
+
"all": {
|
|
4451
|
+
"char": "a",
|
|
4452
|
+
"description": "Show all sessions including stale DB records",
|
|
4453
|
+
"name": "all",
|
|
4453
4454
|
"allowNo": false,
|
|
4454
4455
|
"type": "boolean"
|
|
4455
4456
|
}
|
|
4456
4457
|
},
|
|
4457
4458
|
"hasDynamicHelp": false,
|
|
4458
4459
|
"hiddenAliases": [],
|
|
4459
|
-
"id": "
|
|
4460
|
+
"id": "session:list",
|
|
4460
4461
|
"pluginAlias": "@proletariat/cli",
|
|
4461
4462
|
"pluginName": "@proletariat/cli",
|
|
4462
4463
|
"pluginType": "core",
|
|
4463
4464
|
"strict": true,
|
|
4464
|
-
"enableJsonFlag": false,
|
|
4465
4465
|
"isESM": true,
|
|
4466
4466
|
"relativePath": [
|
|
4467
4467
|
"dist",
|
|
4468
4468
|
"commands",
|
|
4469
|
-
"
|
|
4470
|
-
"
|
|
4469
|
+
"session",
|
|
4470
|
+
"list.js"
|
|
4471
4471
|
]
|
|
4472
4472
|
},
|
|
4473
4473
|
"template:delete": {
|
|
@@ -8084,311 +8084,25 @@
|
|
|
8084
8084
|
"type": "option"
|
|
8085
8085
|
},
|
|
8086
8086
|
"builtin": {
|
|
8087
|
-
"description": "Show only built-in templates",
|
|
8088
|
-
"exclusive": [
|
|
8089
|
-
"custom"
|
|
8090
|
-
],
|
|
8091
|
-
"name": "builtin",
|
|
8092
|
-
"allowNo": false,
|
|
8093
|
-
"type": "boolean"
|
|
8094
|
-
},
|
|
8095
|
-
"custom": {
|
|
8096
|
-
"description": "Show only custom templates",
|
|
8097
|
-
"exclusive": [
|
|
8098
|
-
"builtin"
|
|
8099
|
-
],
|
|
8100
|
-
"name": "custom",
|
|
8101
|
-
"allowNo": false,
|
|
8102
|
-
"type": "boolean"
|
|
8103
|
-
},
|
|
8104
|
-
"json": {
|
|
8105
|
-
"description": "Output as JSON",
|
|
8106
|
-
"name": "json",
|
|
8107
|
-
"allowNo": false,
|
|
8108
|
-
"type": "boolean"
|
|
8109
|
-
}
|
|
8110
|
-
},
|
|
8111
|
-
"hasDynamicHelp": false,
|
|
8112
|
-
"hiddenAliases": [],
|
|
8113
|
-
"id": "phase:template:list",
|
|
8114
|
-
"pluginAlias": "@proletariat/cli",
|
|
8115
|
-
"pluginName": "@proletariat/cli",
|
|
8116
|
-
"pluginType": "core",
|
|
8117
|
-
"strict": true,
|
|
8118
|
-
"isESM": true,
|
|
8119
|
-
"relativePath": [
|
|
8120
|
-
"dist",
|
|
8121
|
-
"commands",
|
|
8122
|
-
"phase",
|
|
8123
|
-
"template",
|
|
8124
|
-
"list.js"
|
|
8125
|
-
]
|
|
8126
|
-
},
|
|
8127
|
-
"phase:template:update": {
|
|
8128
|
-
"aliases": [],
|
|
8129
|
-
"args": {
|
|
8130
|
-
"id": {
|
|
8131
|
-
"description": "Template ID to update",
|
|
8132
|
-
"name": "id",
|
|
8133
|
-
"required": false
|
|
8134
|
-
}
|
|
8135
|
-
},
|
|
8136
|
-
"description": "Update a phase template",
|
|
8137
|
-
"examples": [
|
|
8138
|
-
"<%= config.bin %> <%= command.id %> my-template --name \"New Name\"",
|
|
8139
|
-
"<%= config.bin %> <%= command.id %> my-template --description \"Updated description\""
|
|
8140
|
-
],
|
|
8141
|
-
"flags": {
|
|
8142
|
-
"project": {
|
|
8143
|
-
"char": "P",
|
|
8144
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
8145
|
-
"name": "project",
|
|
8146
|
-
"hasDynamicHelp": false,
|
|
8147
|
-
"multiple": false,
|
|
8148
|
-
"type": "option"
|
|
8149
|
-
},
|
|
8150
|
-
"name": {
|
|
8151
|
-
"char": "n",
|
|
8152
|
-
"description": "New template name",
|
|
8153
|
-
"name": "name",
|
|
8154
|
-
"hasDynamicHelp": false,
|
|
8155
|
-
"multiple": false,
|
|
8156
|
-
"type": "option"
|
|
8157
|
-
},
|
|
8158
|
-
"description": {
|
|
8159
|
-
"char": "d",
|
|
8160
|
-
"description": "New template description",
|
|
8161
|
-
"name": "description",
|
|
8162
|
-
"hasDynamicHelp": false,
|
|
8163
|
-
"multiple": false,
|
|
8164
|
-
"type": "option"
|
|
8165
|
-
}
|
|
8166
|
-
},
|
|
8167
|
-
"hasDynamicHelp": false,
|
|
8168
|
-
"hiddenAliases": [],
|
|
8169
|
-
"id": "phase:template:update",
|
|
8170
|
-
"pluginAlias": "@proletariat/cli",
|
|
8171
|
-
"pluginName": "@proletariat/cli",
|
|
8172
|
-
"pluginType": "core",
|
|
8173
|
-
"strict": true,
|
|
8174
|
-
"isESM": true,
|
|
8175
|
-
"relativePath": [
|
|
8176
|
-
"dist",
|
|
8177
|
-
"commands",
|
|
8178
|
-
"phase",
|
|
8179
|
-
"template",
|
|
8180
|
-
"update.js"
|
|
8181
|
-
]
|
|
8182
|
-
},
|
|
8183
|
-
"epic:link:block": {
|
|
8184
|
-
"aliases": [],
|
|
8185
|
-
"args": {
|
|
8186
|
-
"id": {
|
|
8187
|
-
"description": "Epic ID that will be blocked",
|
|
8188
|
-
"name": "id",
|
|
8189
|
-
"required": true
|
|
8190
|
-
},
|
|
8191
|
-
"blocker": {
|
|
8192
|
-
"description": "Epic ID that blocks this epic",
|
|
8193
|
-
"name": "blocker",
|
|
8194
|
-
"required": false
|
|
8195
|
-
}
|
|
8196
|
-
},
|
|
8197
|
-
"description": "Add a blocking dependency (epic is blocked by another)",
|
|
8198
|
-
"examples": [
|
|
8199
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 EPIC-002 # EPIC-001 is blocked by EPIC-002"
|
|
8200
|
-
],
|
|
8201
|
-
"flags": {
|
|
8202
|
-
"project": {
|
|
8203
|
-
"char": "P",
|
|
8204
|
-
"description": "Project ID",
|
|
8205
|
-
"name": "project",
|
|
8206
|
-
"hasDynamicHelp": false,
|
|
8207
|
-
"multiple": false,
|
|
8208
|
-
"type": "option"
|
|
8209
|
-
},
|
|
8210
|
-
"json": {
|
|
8211
|
-
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
8212
|
-
"name": "json",
|
|
8213
|
-
"allowNo": false,
|
|
8214
|
-
"type": "boolean"
|
|
8215
|
-
}
|
|
8216
|
-
},
|
|
8217
|
-
"hasDynamicHelp": false,
|
|
8218
|
-
"hiddenAliases": [],
|
|
8219
|
-
"id": "epic:link:block",
|
|
8220
|
-
"pluginAlias": "@proletariat/cli",
|
|
8221
|
-
"pluginName": "@proletariat/cli",
|
|
8222
|
-
"pluginType": "core",
|
|
8223
|
-
"strict": true,
|
|
8224
|
-
"isESM": true,
|
|
8225
|
-
"relativePath": [
|
|
8226
|
-
"dist",
|
|
8227
|
-
"commands",
|
|
8228
|
-
"epic",
|
|
8229
|
-
"link",
|
|
8230
|
-
"block.js"
|
|
8231
|
-
]
|
|
8232
|
-
},
|
|
8233
|
-
"epic:link:duplicates": {
|
|
8234
|
-
"aliases": [],
|
|
8235
|
-
"args": {
|
|
8236
|
-
"id": {
|
|
8237
|
-
"description": "Duplicate epic ID",
|
|
8238
|
-
"name": "id",
|
|
8239
|
-
"required": true
|
|
8240
|
-
},
|
|
8241
|
-
"original": {
|
|
8242
|
-
"description": "Original epic ID",
|
|
8243
|
-
"name": "original",
|
|
8244
|
-
"required": false
|
|
8245
|
-
}
|
|
8246
|
-
},
|
|
8247
|
-
"description": "Mark an epic as duplicate of another",
|
|
8248
|
-
"examples": [
|
|
8249
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 EPIC-002"
|
|
8250
|
-
],
|
|
8251
|
-
"flags": {
|
|
8252
|
-
"project": {
|
|
8253
|
-
"char": "P",
|
|
8254
|
-
"description": "Project ID",
|
|
8255
|
-
"name": "project",
|
|
8256
|
-
"hasDynamicHelp": false,
|
|
8257
|
-
"multiple": false,
|
|
8258
|
-
"type": "option"
|
|
8259
|
-
},
|
|
8260
|
-
"json": {
|
|
8261
|
-
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
8262
|
-
"name": "json",
|
|
8263
|
-
"allowNo": false,
|
|
8264
|
-
"type": "boolean"
|
|
8265
|
-
}
|
|
8266
|
-
},
|
|
8267
|
-
"hasDynamicHelp": false,
|
|
8268
|
-
"hiddenAliases": [],
|
|
8269
|
-
"id": "epic:link:duplicates",
|
|
8270
|
-
"pluginAlias": "@proletariat/cli",
|
|
8271
|
-
"pluginName": "@proletariat/cli",
|
|
8272
|
-
"pluginType": "core",
|
|
8273
|
-
"strict": true,
|
|
8274
|
-
"isESM": true,
|
|
8275
|
-
"relativePath": [
|
|
8276
|
-
"dist",
|
|
8277
|
-
"commands",
|
|
8278
|
-
"epic",
|
|
8279
|
-
"link",
|
|
8280
|
-
"duplicates.js"
|
|
8281
|
-
]
|
|
8282
|
-
},
|
|
8283
|
-
"epic:link": {
|
|
8284
|
-
"aliases": [],
|
|
8285
|
-
"args": {
|
|
8286
|
-
"id": {
|
|
8287
|
-
"description": "Epic ID",
|
|
8288
|
-
"name": "id",
|
|
8289
|
-
"required": false
|
|
8290
|
-
}
|
|
8291
|
-
},
|
|
8292
|
-
"description": "Manage epic dependencies (links)",
|
|
8293
|
-
"examples": [
|
|
8294
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 # List dependencies",
|
|
8295
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 --blocks EPIC-002 # EPIC-001 is blocked by EPIC-002",
|
|
8296
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 --relates EPIC-002 # EPIC-001 relates to EPIC-002",
|
|
8297
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 --duplicates EPIC-002",
|
|
8298
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 --all # Show all links"
|
|
8299
|
-
],
|
|
8300
|
-
"flags": {
|
|
8301
|
-
"project": {
|
|
8302
|
-
"char": "P",
|
|
8303
|
-
"description": "Project ID (default: \"default\")",
|
|
8304
|
-
"name": "project",
|
|
8305
|
-
"hasDynamicHelp": false,
|
|
8306
|
-
"multiple": false,
|
|
8307
|
-
"type": "option"
|
|
8308
|
-
},
|
|
8309
|
-
"blocks": {
|
|
8310
|
-
"char": "b",
|
|
8311
|
-
"description": "Add blocking dependency: this epic is blocked by TARGET",
|
|
8312
|
-
"name": "blocks",
|
|
8313
|
-
"hasDynamicHelp": false,
|
|
8314
|
-
"multiple": false,
|
|
8315
|
-
"type": "option"
|
|
8316
|
-
},
|
|
8317
|
-
"relates": {
|
|
8318
|
-
"char": "r",
|
|
8319
|
-
"description": "Add relates_to dependency",
|
|
8320
|
-
"name": "relates",
|
|
8321
|
-
"hasDynamicHelp": false,
|
|
8322
|
-
"multiple": false,
|
|
8323
|
-
"type": "option"
|
|
8324
|
-
},
|
|
8325
|
-
"duplicates": {
|
|
8326
|
-
"char": "d",
|
|
8327
|
-
"description": "Add duplicates dependency",
|
|
8328
|
-
"name": "duplicates",
|
|
8329
|
-
"hasDynamicHelp": false,
|
|
8330
|
-
"multiple": false,
|
|
8331
|
-
"type": "option"
|
|
8332
|
-
},
|
|
8333
|
-
"all": {
|
|
8334
|
-
"char": "a",
|
|
8335
|
-
"description": "Show all dependencies (blockers and blocking)",
|
|
8336
|
-
"name": "all",
|
|
8337
|
-
"allowNo": false,
|
|
8338
|
-
"type": "boolean"
|
|
8339
|
-
},
|
|
8340
|
-
"json": {
|
|
8341
|
-
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
8342
|
-
"name": "json",
|
|
8343
|
-
"allowNo": false,
|
|
8344
|
-
"type": "boolean"
|
|
8345
|
-
}
|
|
8346
|
-
},
|
|
8347
|
-
"hasDynamicHelp": false,
|
|
8348
|
-
"hiddenAliases": [],
|
|
8349
|
-
"id": "epic:link",
|
|
8350
|
-
"pluginAlias": "@proletariat/cli",
|
|
8351
|
-
"pluginName": "@proletariat/cli",
|
|
8352
|
-
"pluginType": "core",
|
|
8353
|
-
"strict": true,
|
|
8354
|
-
"isESM": true,
|
|
8355
|
-
"relativePath": [
|
|
8356
|
-
"dist",
|
|
8357
|
-
"commands",
|
|
8358
|
-
"epic",
|
|
8359
|
-
"link",
|
|
8360
|
-
"index.js"
|
|
8361
|
-
]
|
|
8362
|
-
},
|
|
8363
|
-
"epic:link:relates": {
|
|
8364
|
-
"aliases": [],
|
|
8365
|
-
"args": {
|
|
8366
|
-
"id": {
|
|
8367
|
-
"description": "Epic ID",
|
|
8368
|
-
"name": "id",
|
|
8369
|
-
"required": true
|
|
8370
|
-
},
|
|
8371
|
-
"target": {
|
|
8372
|
-
"description": "Related epic ID",
|
|
8373
|
-
"name": "target",
|
|
8374
|
-
"required": false
|
|
8375
|
-
}
|
|
8376
|
-
},
|
|
8377
|
-
"description": "Add a relates_to dependency (informational link)",
|
|
8378
|
-
"examples": [
|
|
8379
|
-
"<%= config.bin %> <%= command.id %> EPIC-001 EPIC-002"
|
|
8380
|
-
],
|
|
8381
|
-
"flags": {
|
|
8382
|
-
"project": {
|
|
8383
|
-
"char": "P",
|
|
8384
|
-
"description": "Project ID",
|
|
8385
|
-
"name": "project",
|
|
8386
|
-
"hasDynamicHelp": false,
|
|
8387
|
-
"multiple": false,
|
|
8388
|
-
"type": "option"
|
|
8087
|
+
"description": "Show only built-in templates",
|
|
8088
|
+
"exclusive": [
|
|
8089
|
+
"custom"
|
|
8090
|
+
],
|
|
8091
|
+
"name": "builtin",
|
|
8092
|
+
"allowNo": false,
|
|
8093
|
+
"type": "boolean"
|
|
8094
|
+
},
|
|
8095
|
+
"custom": {
|
|
8096
|
+
"description": "Show only custom templates",
|
|
8097
|
+
"exclusive": [
|
|
8098
|
+
"builtin"
|
|
8099
|
+
],
|
|
8100
|
+
"name": "custom",
|
|
8101
|
+
"allowNo": false,
|
|
8102
|
+
"type": "boolean"
|
|
8389
8103
|
},
|
|
8390
8104
|
"json": {
|
|
8391
|
-
"description": "Output
|
|
8105
|
+
"description": "Output as JSON",
|
|
8392
8106
|
"name": "json",
|
|
8393
8107
|
"allowNo": false,
|
|
8394
8108
|
"type": "boolean"
|
|
@@ -8396,7 +8110,7 @@
|
|
|
8396
8110
|
},
|
|
8397
8111
|
"hasDynamicHelp": false,
|
|
8398
8112
|
"hiddenAliases": [],
|
|
8399
|
-
"id": "
|
|
8113
|
+
"id": "phase:template:list",
|
|
8400
8114
|
"pluginAlias": "@proletariat/cli",
|
|
8401
8115
|
"pluginName": "@proletariat/cli",
|
|
8402
8116
|
"pluginType": "core",
|
|
@@ -8405,69 +8119,54 @@
|
|
|
8405
8119
|
"relativePath": [
|
|
8406
8120
|
"dist",
|
|
8407
8121
|
"commands",
|
|
8408
|
-
"
|
|
8409
|
-
"
|
|
8410
|
-
"
|
|
8122
|
+
"phase",
|
|
8123
|
+
"template",
|
|
8124
|
+
"list.js"
|
|
8411
8125
|
]
|
|
8412
8126
|
},
|
|
8413
|
-
"
|
|
8127
|
+
"phase:template:update": {
|
|
8414
8128
|
"aliases": [],
|
|
8415
8129
|
"args": {
|
|
8416
8130
|
"id": {
|
|
8417
|
-
"description": "
|
|
8131
|
+
"description": "Template ID to update",
|
|
8418
8132
|
"name": "id",
|
|
8419
|
-
"required": true
|
|
8420
|
-
},
|
|
8421
|
-
"target": {
|
|
8422
|
-
"description": "Target epic ID to unlink",
|
|
8423
|
-
"name": "target",
|
|
8424
8133
|
"required": false
|
|
8425
8134
|
}
|
|
8426
8135
|
},
|
|
8427
|
-
"description": "
|
|
8136
|
+
"description": "Update a phase template",
|
|
8428
8137
|
"examples": [
|
|
8429
|
-
"<%= config.bin %> <%= command.id %>
|
|
8430
|
-
"<%= config.bin %> <%= command.id %>
|
|
8138
|
+
"<%= config.bin %> <%= command.id %> my-template --name \"New Name\"",
|
|
8139
|
+
"<%= config.bin %> <%= command.id %> my-template --description \"Updated description\""
|
|
8431
8140
|
],
|
|
8432
8141
|
"flags": {
|
|
8433
8142
|
"project": {
|
|
8434
8143
|
"char": "P",
|
|
8435
|
-
"description": "Project ID",
|
|
8144
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8436
8145
|
"name": "project",
|
|
8437
8146
|
"hasDynamicHelp": false,
|
|
8438
8147
|
"multiple": false,
|
|
8439
8148
|
"type": "option"
|
|
8440
8149
|
},
|
|
8441
|
-
"
|
|
8442
|
-
"char": "
|
|
8443
|
-
"description": "
|
|
8444
|
-
"name": "
|
|
8150
|
+
"name": {
|
|
8151
|
+
"char": "n",
|
|
8152
|
+
"description": "New template name",
|
|
8153
|
+
"name": "name",
|
|
8445
8154
|
"hasDynamicHelp": false,
|
|
8446
8155
|
"multiple": false,
|
|
8447
|
-
"options": [
|
|
8448
|
-
"blocks",
|
|
8449
|
-
"relates_to",
|
|
8450
|
-
"duplicates"
|
|
8451
|
-
],
|
|
8452
8156
|
"type": "option"
|
|
8453
8157
|
},
|
|
8454
|
-
"
|
|
8455
|
-
"char": "
|
|
8456
|
-
"description": "
|
|
8457
|
-
"name": "
|
|
8458
|
-
"
|
|
8459
|
-
"
|
|
8460
|
-
|
|
8461
|
-
"json": {
|
|
8462
|
-
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
8463
|
-
"name": "json",
|
|
8464
|
-
"allowNo": false,
|
|
8465
|
-
"type": "boolean"
|
|
8158
|
+
"description": {
|
|
8159
|
+
"char": "d",
|
|
8160
|
+
"description": "New template description",
|
|
8161
|
+
"name": "description",
|
|
8162
|
+
"hasDynamicHelp": false,
|
|
8163
|
+
"multiple": false,
|
|
8164
|
+
"type": "option"
|
|
8466
8165
|
}
|
|
8467
8166
|
},
|
|
8468
8167
|
"hasDynamicHelp": false,
|
|
8469
8168
|
"hiddenAliases": [],
|
|
8470
|
-
"id": "
|
|
8169
|
+
"id": "phase:template:update",
|
|
8471
8170
|
"pluginAlias": "@proletariat/cli",
|
|
8472
8171
|
"pluginName": "@proletariat/cli",
|
|
8473
8172
|
"pluginType": "core",
|
|
@@ -8476,9 +8175,9 @@
|
|
|
8476
8175
|
"relativePath": [
|
|
8477
8176
|
"dist",
|
|
8478
8177
|
"commands",
|
|
8479
|
-
"
|
|
8480
|
-
"
|
|
8481
|
-
"
|
|
8178
|
+
"phase",
|
|
8179
|
+
"template",
|
|
8180
|
+
"update.js"
|
|
8482
8181
|
]
|
|
8483
8182
|
},
|
|
8484
8183
|
"agent:temp:cleanup": {
|
|
@@ -9069,19 +8768,192 @@
|
|
|
9069
8768
|
},
|
|
9070
8769
|
"hasDynamicHelp": false,
|
|
9071
8770
|
"hiddenAliases": [],
|
|
9072
|
-
"id": "template:ticket:save",
|
|
8771
|
+
"id": "template:ticket:save",
|
|
8772
|
+
"pluginAlias": "@proletariat/cli",
|
|
8773
|
+
"pluginName": "@proletariat/cli",
|
|
8774
|
+
"pluginType": "core",
|
|
8775
|
+
"strict": true,
|
|
8776
|
+
"enableJsonFlag": false,
|
|
8777
|
+
"isESM": true,
|
|
8778
|
+
"relativePath": [
|
|
8779
|
+
"dist",
|
|
8780
|
+
"commands",
|
|
8781
|
+
"template",
|
|
8782
|
+
"ticket",
|
|
8783
|
+
"save.js"
|
|
8784
|
+
]
|
|
8785
|
+
},
|
|
8786
|
+
"agent:staff:add": {
|
|
8787
|
+
"aliases": [],
|
|
8788
|
+
"args": {
|
|
8789
|
+
"names": {
|
|
8790
|
+
"description": "Agent names to add (space-separated)",
|
|
8791
|
+
"name": "names",
|
|
8792
|
+
"required": false
|
|
8793
|
+
}
|
|
8794
|
+
},
|
|
8795
|
+
"description": "Add new agents to the workspace",
|
|
8796
|
+
"examples": [
|
|
8797
|
+
"<%= config.bin %> <%= command.id %> zeus",
|
|
8798
|
+
"<%= config.bin %> <%= command.id %> agent-1 agent-2",
|
|
8799
|
+
"<%= config.bin %> <%= command.id %> --theme billionaires",
|
|
8800
|
+
"<%= config.bin %> <%= command.id %> my-agent --no-container"
|
|
8801
|
+
],
|
|
8802
|
+
"flags": {
|
|
8803
|
+
"no-container": {
|
|
8804
|
+
"description": "Skip devcontainer setup (not recommended for autonomous agents)",
|
|
8805
|
+
"name": "no-container",
|
|
8806
|
+
"allowNo": false,
|
|
8807
|
+
"type": "boolean"
|
|
8808
|
+
},
|
|
8809
|
+
"theme": {
|
|
8810
|
+
"char": "t",
|
|
8811
|
+
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
8812
|
+
"name": "theme",
|
|
8813
|
+
"hasDynamicHelp": false,
|
|
8814
|
+
"multiple": false,
|
|
8815
|
+
"type": "option"
|
|
8816
|
+
},
|
|
8817
|
+
"json": {
|
|
8818
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
8819
|
+
"name": "json",
|
|
8820
|
+
"allowNo": false,
|
|
8821
|
+
"type": "boolean"
|
|
8822
|
+
}
|
|
8823
|
+
},
|
|
8824
|
+
"hasDynamicHelp": false,
|
|
8825
|
+
"hiddenAliases": [],
|
|
8826
|
+
"id": "agent:staff:add",
|
|
8827
|
+
"pluginAlias": "@proletariat/cli",
|
|
8828
|
+
"pluginName": "@proletariat/cli",
|
|
8829
|
+
"pluginType": "core",
|
|
8830
|
+
"strict": false,
|
|
8831
|
+
"enableJsonFlag": false,
|
|
8832
|
+
"isESM": true,
|
|
8833
|
+
"relativePath": [
|
|
8834
|
+
"dist",
|
|
8835
|
+
"commands",
|
|
8836
|
+
"agent",
|
|
8837
|
+
"staff",
|
|
8838
|
+
"add.js"
|
|
8839
|
+
]
|
|
8840
|
+
},
|
|
8841
|
+
"agent:staff": {
|
|
8842
|
+
"aliases": [],
|
|
8843
|
+
"args": {},
|
|
8844
|
+
"description": "Manage staff (persistent) agents",
|
|
8845
|
+
"examples": [
|
|
8846
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
8847
|
+
"<%= config.bin %> <%= command.id %> add",
|
|
8848
|
+
"<%= config.bin %> <%= command.id %> remove camry"
|
|
8849
|
+
],
|
|
8850
|
+
"flags": {
|
|
8851
|
+
"project": {
|
|
8852
|
+
"char": "P",
|
|
8853
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8854
|
+
"name": "project",
|
|
8855
|
+
"hasDynamicHelp": false,
|
|
8856
|
+
"multiple": false,
|
|
8857
|
+
"type": "option"
|
|
8858
|
+
},
|
|
8859
|
+
"json": {
|
|
8860
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
8861
|
+
"name": "json",
|
|
8862
|
+
"allowNo": false,
|
|
8863
|
+
"type": "boolean"
|
|
8864
|
+
},
|
|
8865
|
+
"no-interactive": {
|
|
8866
|
+
"description": "Alias for --json flag",
|
|
8867
|
+
"name": "no-interactive",
|
|
8868
|
+
"allowNo": false,
|
|
8869
|
+
"type": "boolean"
|
|
8870
|
+
}
|
|
8871
|
+
},
|
|
8872
|
+
"hasDynamicHelp": false,
|
|
8873
|
+
"hiddenAliases": [],
|
|
8874
|
+
"id": "agent:staff",
|
|
8875
|
+
"pluginAlias": "@proletariat/cli",
|
|
8876
|
+
"pluginName": "@proletariat/cli",
|
|
8877
|
+
"pluginType": "core",
|
|
8878
|
+
"strict": true,
|
|
8879
|
+
"isESM": true,
|
|
8880
|
+
"relativePath": [
|
|
8881
|
+
"dist",
|
|
8882
|
+
"commands",
|
|
8883
|
+
"agent",
|
|
8884
|
+
"staff",
|
|
8885
|
+
"index.js"
|
|
8886
|
+
]
|
|
8887
|
+
},
|
|
8888
|
+
"agent:staff:list": {
|
|
8889
|
+
"aliases": [],
|
|
8890
|
+
"args": {},
|
|
8891
|
+
"description": "List all staff (persistent) agents and their status",
|
|
8892
|
+
"examples": [
|
|
8893
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8894
|
+
],
|
|
8895
|
+
"flags": {},
|
|
8896
|
+
"hasDynamicHelp": false,
|
|
8897
|
+
"hiddenAliases": [],
|
|
8898
|
+
"id": "agent:staff:list",
|
|
8899
|
+
"pluginAlias": "@proletariat/cli",
|
|
8900
|
+
"pluginName": "@proletariat/cli",
|
|
8901
|
+
"pluginType": "core",
|
|
8902
|
+
"strict": true,
|
|
8903
|
+
"enableJsonFlag": false,
|
|
8904
|
+
"isESM": true,
|
|
8905
|
+
"relativePath": [
|
|
8906
|
+
"dist",
|
|
8907
|
+
"commands",
|
|
8908
|
+
"agent",
|
|
8909
|
+
"staff",
|
|
8910
|
+
"list.js"
|
|
8911
|
+
]
|
|
8912
|
+
},
|
|
8913
|
+
"agent:staff:remove": {
|
|
8914
|
+
"aliases": [],
|
|
8915
|
+
"args": {
|
|
8916
|
+
"name": {
|
|
8917
|
+
"description": "Agent name to remove",
|
|
8918
|
+
"name": "name",
|
|
8919
|
+
"required": false
|
|
8920
|
+
}
|
|
8921
|
+
},
|
|
8922
|
+
"description": "Remove a specific agent from the workspace",
|
|
8923
|
+
"examples": [
|
|
8924
|
+
"<%= config.bin %> <%= command.id %> camry",
|
|
8925
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8926
|
+
],
|
|
8927
|
+
"flags": {
|
|
8928
|
+
"project": {
|
|
8929
|
+
"char": "P",
|
|
8930
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8931
|
+
"name": "project",
|
|
8932
|
+
"hasDynamicHelp": false,
|
|
8933
|
+
"multiple": false,
|
|
8934
|
+
"type": "option"
|
|
8935
|
+
},
|
|
8936
|
+
"json": {
|
|
8937
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
8938
|
+
"name": "json",
|
|
8939
|
+
"allowNo": false,
|
|
8940
|
+
"type": "boolean"
|
|
8941
|
+
}
|
|
8942
|
+
},
|
|
8943
|
+
"hasDynamicHelp": false,
|
|
8944
|
+
"hiddenAliases": [],
|
|
8945
|
+
"id": "agent:staff:remove",
|
|
9073
8946
|
"pluginAlias": "@proletariat/cli",
|
|
9074
8947
|
"pluginName": "@proletariat/cli",
|
|
9075
8948
|
"pluginType": "core",
|
|
9076
8949
|
"strict": true,
|
|
9077
|
-
"enableJsonFlag": false,
|
|
9078
8950
|
"isESM": true,
|
|
9079
8951
|
"relativePath": [
|
|
9080
8952
|
"dist",
|
|
9081
8953
|
"commands",
|
|
9082
|
-
"
|
|
9083
|
-
"
|
|
9084
|
-
"
|
|
8954
|
+
"agent",
|
|
8955
|
+
"staff",
|
|
8956
|
+
"remove.js"
|
|
9085
8957
|
]
|
|
9086
8958
|
},
|
|
9087
8959
|
"spec:link:depends": {
|
|
@@ -9384,33 +9256,29 @@
|
|
|
9384
9256
|
"remove.js"
|
|
9385
9257
|
]
|
|
9386
9258
|
},
|
|
9387
|
-
"
|
|
9259
|
+
"epic:link:block": {
|
|
9388
9260
|
"aliases": [],
|
|
9389
9261
|
"args": {
|
|
9390
|
-
"
|
|
9391
|
-
"description": "
|
|
9392
|
-
"name": "
|
|
9262
|
+
"id": {
|
|
9263
|
+
"description": "Epic ID that will be blocked",
|
|
9264
|
+
"name": "id",
|
|
9265
|
+
"required": true
|
|
9266
|
+
},
|
|
9267
|
+
"blocker": {
|
|
9268
|
+
"description": "Epic ID that blocks this epic",
|
|
9269
|
+
"name": "blocker",
|
|
9393
9270
|
"required": false
|
|
9394
9271
|
}
|
|
9395
9272
|
},
|
|
9396
|
-
"description": "Add
|
|
9273
|
+
"description": "Add a blocking dependency (epic is blocked by another)",
|
|
9397
9274
|
"examples": [
|
|
9398
|
-
"<%= config.bin %> <%= command.id %>
|
|
9399
|
-
"<%= config.bin %> <%= command.id %> agent-1 agent-2",
|
|
9400
|
-
"<%= config.bin %> <%= command.id %> --theme billionaires",
|
|
9401
|
-
"<%= config.bin %> <%= command.id %> my-agent --no-container"
|
|
9275
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 EPIC-002 # EPIC-001 is blocked by EPIC-002"
|
|
9402
9276
|
],
|
|
9403
9277
|
"flags": {
|
|
9404
|
-
"
|
|
9405
|
-
"
|
|
9406
|
-
"
|
|
9407
|
-
"
|
|
9408
|
-
"type": "boolean"
|
|
9409
|
-
},
|
|
9410
|
-
"theme": {
|
|
9411
|
-
"char": "t",
|
|
9412
|
-
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
9413
|
-
"name": "theme",
|
|
9278
|
+
"project": {
|
|
9279
|
+
"char": "P",
|
|
9280
|
+
"description": "Project ID",
|
|
9281
|
+
"name": "project",
|
|
9414
9282
|
"hasDynamicHelp": false,
|
|
9415
9283
|
"multiple": false,
|
|
9416
9284
|
"type": "option"
|
|
@@ -9424,34 +9292,42 @@
|
|
|
9424
9292
|
},
|
|
9425
9293
|
"hasDynamicHelp": false,
|
|
9426
9294
|
"hiddenAliases": [],
|
|
9427
|
-
"id": "
|
|
9295
|
+
"id": "epic:link:block",
|
|
9428
9296
|
"pluginAlias": "@proletariat/cli",
|
|
9429
9297
|
"pluginName": "@proletariat/cli",
|
|
9430
9298
|
"pluginType": "core",
|
|
9431
|
-
"strict":
|
|
9432
|
-
"enableJsonFlag": false,
|
|
9299
|
+
"strict": true,
|
|
9433
9300
|
"isESM": true,
|
|
9434
9301
|
"relativePath": [
|
|
9435
9302
|
"dist",
|
|
9436
9303
|
"commands",
|
|
9437
|
-
"
|
|
9438
|
-
"
|
|
9439
|
-
"
|
|
9304
|
+
"epic",
|
|
9305
|
+
"link",
|
|
9306
|
+
"block.js"
|
|
9440
9307
|
]
|
|
9441
9308
|
},
|
|
9442
|
-
"
|
|
9309
|
+
"epic:link:duplicates": {
|
|
9443
9310
|
"aliases": [],
|
|
9444
|
-
"args": {
|
|
9445
|
-
|
|
9311
|
+
"args": {
|
|
9312
|
+
"id": {
|
|
9313
|
+
"description": "Duplicate epic ID",
|
|
9314
|
+
"name": "id",
|
|
9315
|
+
"required": true
|
|
9316
|
+
},
|
|
9317
|
+
"original": {
|
|
9318
|
+
"description": "Original epic ID",
|
|
9319
|
+
"name": "original",
|
|
9320
|
+
"required": false
|
|
9321
|
+
}
|
|
9322
|
+
},
|
|
9323
|
+
"description": "Mark an epic as duplicate of another",
|
|
9446
9324
|
"examples": [
|
|
9447
|
-
"<%= config.bin %> <%= command.id %>
|
|
9448
|
-
"<%= config.bin %> <%= command.id %> add",
|
|
9449
|
-
"<%= config.bin %> <%= command.id %> remove camry"
|
|
9325
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 EPIC-002"
|
|
9450
9326
|
],
|
|
9451
9327
|
"flags": {
|
|
9452
9328
|
"project": {
|
|
9453
9329
|
"char": "P",
|
|
9454
|
-
"description": "Project ID
|
|
9330
|
+
"description": "Project ID",
|
|
9455
9331
|
"name": "project",
|
|
9456
9332
|
"hasDynamicHelp": false,
|
|
9457
9333
|
"multiple": false,
|
|
@@ -9462,17 +9338,91 @@
|
|
|
9462
9338
|
"name": "json",
|
|
9463
9339
|
"allowNo": false,
|
|
9464
9340
|
"type": "boolean"
|
|
9341
|
+
}
|
|
9342
|
+
},
|
|
9343
|
+
"hasDynamicHelp": false,
|
|
9344
|
+
"hiddenAliases": [],
|
|
9345
|
+
"id": "epic:link:duplicates",
|
|
9346
|
+
"pluginAlias": "@proletariat/cli",
|
|
9347
|
+
"pluginName": "@proletariat/cli",
|
|
9348
|
+
"pluginType": "core",
|
|
9349
|
+
"strict": true,
|
|
9350
|
+
"isESM": true,
|
|
9351
|
+
"relativePath": [
|
|
9352
|
+
"dist",
|
|
9353
|
+
"commands",
|
|
9354
|
+
"epic",
|
|
9355
|
+
"link",
|
|
9356
|
+
"duplicates.js"
|
|
9357
|
+
]
|
|
9358
|
+
},
|
|
9359
|
+
"epic:link": {
|
|
9360
|
+
"aliases": [],
|
|
9361
|
+
"args": {
|
|
9362
|
+
"id": {
|
|
9363
|
+
"description": "Epic ID",
|
|
9364
|
+
"name": "id",
|
|
9365
|
+
"required": false
|
|
9366
|
+
}
|
|
9367
|
+
},
|
|
9368
|
+
"description": "Manage epic dependencies (links)",
|
|
9369
|
+
"examples": [
|
|
9370
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 # List dependencies",
|
|
9371
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --blocks EPIC-002 # EPIC-001 is blocked by EPIC-002",
|
|
9372
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --relates EPIC-002 # EPIC-001 relates to EPIC-002",
|
|
9373
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --duplicates EPIC-002",
|
|
9374
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --all # Show all links"
|
|
9375
|
+
],
|
|
9376
|
+
"flags": {
|
|
9377
|
+
"project": {
|
|
9378
|
+
"char": "P",
|
|
9379
|
+
"description": "Project ID (default: \"default\")",
|
|
9380
|
+
"name": "project",
|
|
9381
|
+
"hasDynamicHelp": false,
|
|
9382
|
+
"multiple": false,
|
|
9383
|
+
"type": "option"
|
|
9465
9384
|
},
|
|
9466
|
-
"
|
|
9467
|
-
"
|
|
9468
|
-
"
|
|
9385
|
+
"blocks": {
|
|
9386
|
+
"char": "b",
|
|
9387
|
+
"description": "Add blocking dependency: this epic is blocked by TARGET",
|
|
9388
|
+
"name": "blocks",
|
|
9389
|
+
"hasDynamicHelp": false,
|
|
9390
|
+
"multiple": false,
|
|
9391
|
+
"type": "option"
|
|
9392
|
+
},
|
|
9393
|
+
"relates": {
|
|
9394
|
+
"char": "r",
|
|
9395
|
+
"description": "Add relates_to dependency",
|
|
9396
|
+
"name": "relates",
|
|
9397
|
+
"hasDynamicHelp": false,
|
|
9398
|
+
"multiple": false,
|
|
9399
|
+
"type": "option"
|
|
9400
|
+
},
|
|
9401
|
+
"duplicates": {
|
|
9402
|
+
"char": "d",
|
|
9403
|
+
"description": "Add duplicates dependency",
|
|
9404
|
+
"name": "duplicates",
|
|
9405
|
+
"hasDynamicHelp": false,
|
|
9406
|
+
"multiple": false,
|
|
9407
|
+
"type": "option"
|
|
9408
|
+
},
|
|
9409
|
+
"all": {
|
|
9410
|
+
"char": "a",
|
|
9411
|
+
"description": "Show all dependencies (blockers and blocking)",
|
|
9412
|
+
"name": "all",
|
|
9413
|
+
"allowNo": false,
|
|
9414
|
+
"type": "boolean"
|
|
9415
|
+
},
|
|
9416
|
+
"json": {
|
|
9417
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
9418
|
+
"name": "json",
|
|
9469
9419
|
"allowNo": false,
|
|
9470
9420
|
"type": "boolean"
|
|
9471
9421
|
}
|
|
9472
9422
|
},
|
|
9473
9423
|
"hasDynamicHelp": false,
|
|
9474
9424
|
"hiddenAliases": [],
|
|
9475
|
-
"id": "
|
|
9425
|
+
"id": "epic:link",
|
|
9476
9426
|
"pluginAlias": "@proletariat/cli",
|
|
9477
9427
|
"pluginName": "@proletariat/cli",
|
|
9478
9428
|
"pluginType": "core",
|
|
@@ -9481,59 +9431,109 @@
|
|
|
9481
9431
|
"relativePath": [
|
|
9482
9432
|
"dist",
|
|
9483
9433
|
"commands",
|
|
9484
|
-
"
|
|
9485
|
-
"
|
|
9434
|
+
"epic",
|
|
9435
|
+
"link",
|
|
9486
9436
|
"index.js"
|
|
9487
9437
|
]
|
|
9488
9438
|
},
|
|
9489
|
-
"
|
|
9439
|
+
"epic:link:relates": {
|
|
9490
9440
|
"aliases": [],
|
|
9491
|
-
"args": {
|
|
9492
|
-
|
|
9441
|
+
"args": {
|
|
9442
|
+
"id": {
|
|
9443
|
+
"description": "Epic ID",
|
|
9444
|
+
"name": "id",
|
|
9445
|
+
"required": true
|
|
9446
|
+
},
|
|
9447
|
+
"target": {
|
|
9448
|
+
"description": "Related epic ID",
|
|
9449
|
+
"name": "target",
|
|
9450
|
+
"required": false
|
|
9451
|
+
}
|
|
9452
|
+
},
|
|
9453
|
+
"description": "Add a relates_to dependency (informational link)",
|
|
9493
9454
|
"examples": [
|
|
9494
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9455
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 EPIC-002"
|
|
9495
9456
|
],
|
|
9496
|
-
"flags": {
|
|
9457
|
+
"flags": {
|
|
9458
|
+
"project": {
|
|
9459
|
+
"char": "P",
|
|
9460
|
+
"description": "Project ID",
|
|
9461
|
+
"name": "project",
|
|
9462
|
+
"hasDynamicHelp": false,
|
|
9463
|
+
"multiple": false,
|
|
9464
|
+
"type": "option"
|
|
9465
|
+
},
|
|
9466
|
+
"json": {
|
|
9467
|
+
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
9468
|
+
"name": "json",
|
|
9469
|
+
"allowNo": false,
|
|
9470
|
+
"type": "boolean"
|
|
9471
|
+
}
|
|
9472
|
+
},
|
|
9497
9473
|
"hasDynamicHelp": false,
|
|
9498
9474
|
"hiddenAliases": [],
|
|
9499
|
-
"id": "
|
|
9475
|
+
"id": "epic:link:relates",
|
|
9500
9476
|
"pluginAlias": "@proletariat/cli",
|
|
9501
9477
|
"pluginName": "@proletariat/cli",
|
|
9502
9478
|
"pluginType": "core",
|
|
9503
9479
|
"strict": true,
|
|
9504
|
-
"enableJsonFlag": false,
|
|
9505
9480
|
"isESM": true,
|
|
9506
9481
|
"relativePath": [
|
|
9507
9482
|
"dist",
|
|
9508
9483
|
"commands",
|
|
9509
|
-
"
|
|
9510
|
-
"
|
|
9511
|
-
"
|
|
9484
|
+
"epic",
|
|
9485
|
+
"link",
|
|
9486
|
+
"relates.js"
|
|
9512
9487
|
]
|
|
9513
9488
|
},
|
|
9514
|
-
"
|
|
9489
|
+
"epic:link:remove": {
|
|
9515
9490
|
"aliases": [],
|
|
9516
9491
|
"args": {
|
|
9517
|
-
"
|
|
9518
|
-
"description": "
|
|
9519
|
-
"name": "
|
|
9492
|
+
"id": {
|
|
9493
|
+
"description": "Epic ID",
|
|
9494
|
+
"name": "id",
|
|
9495
|
+
"required": true
|
|
9496
|
+
},
|
|
9497
|
+
"target": {
|
|
9498
|
+
"description": "Target epic ID to unlink",
|
|
9499
|
+
"name": "target",
|
|
9520
9500
|
"required": false
|
|
9521
9501
|
}
|
|
9522
9502
|
},
|
|
9523
|
-
"description": "Remove a
|
|
9503
|
+
"description": "Remove a dependency from an epic",
|
|
9524
9504
|
"examples": [
|
|
9525
|
-
"<%= config.bin %> <%= command.id %>
|
|
9526
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9505
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 EPIC-002",
|
|
9506
|
+
"<%= config.bin %> <%= command.id %> EPIC-001 --all"
|
|
9527
9507
|
],
|
|
9528
9508
|
"flags": {
|
|
9529
9509
|
"project": {
|
|
9530
9510
|
"char": "P",
|
|
9531
|
-
"description": "Project ID
|
|
9511
|
+
"description": "Project ID",
|
|
9532
9512
|
"name": "project",
|
|
9533
9513
|
"hasDynamicHelp": false,
|
|
9534
9514
|
"multiple": false,
|
|
9535
9515
|
"type": "option"
|
|
9536
9516
|
},
|
|
9517
|
+
"type": {
|
|
9518
|
+
"char": "t",
|
|
9519
|
+
"description": "Dependency type",
|
|
9520
|
+
"name": "type",
|
|
9521
|
+
"hasDynamicHelp": false,
|
|
9522
|
+
"multiple": false,
|
|
9523
|
+
"options": [
|
|
9524
|
+
"blocks",
|
|
9525
|
+
"relates_to",
|
|
9526
|
+
"duplicates"
|
|
9527
|
+
],
|
|
9528
|
+
"type": "option"
|
|
9529
|
+
},
|
|
9530
|
+
"all": {
|
|
9531
|
+
"char": "a",
|
|
9532
|
+
"description": "Remove all dependencies",
|
|
9533
|
+
"name": "all",
|
|
9534
|
+
"allowNo": false,
|
|
9535
|
+
"type": "boolean"
|
|
9536
|
+
},
|
|
9537
9537
|
"json": {
|
|
9538
9538
|
"description": "Output prompt configuration as JSON (for AI agents/scripts)",
|
|
9539
9539
|
"name": "json",
|
|
@@ -9543,7 +9543,7 @@
|
|
|
9543
9543
|
},
|
|
9544
9544
|
"hasDynamicHelp": false,
|
|
9545
9545
|
"hiddenAliases": [],
|
|
9546
|
-
"id": "
|
|
9546
|
+
"id": "epic:link:remove",
|
|
9547
9547
|
"pluginAlias": "@proletariat/cli",
|
|
9548
9548
|
"pluginName": "@proletariat/cli",
|
|
9549
9549
|
"pluginType": "core",
|
|
@@ -9552,8 +9552,8 @@
|
|
|
9552
9552
|
"relativePath": [
|
|
9553
9553
|
"dist",
|
|
9554
9554
|
"commands",
|
|
9555
|
-
"
|
|
9556
|
-
"
|
|
9555
|
+
"epic",
|
|
9556
|
+
"link",
|
|
9557
9557
|
"remove.js"
|
|
9558
9558
|
]
|
|
9559
9559
|
},
|
|
@@ -10589,5 +10589,5 @@
|
|
|
10589
10589
|
]
|
|
10590
10590
|
}
|
|
10591
10591
|
},
|
|
10592
|
-
"version": "0.3.
|
|
10592
|
+
"version": "0.3.3"
|
|
10593
10593
|
}
|