centy 0.5.1 → 0.6.0
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/oclif.manifest.json +507 -507
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -891,42 +891,45 @@
|
|
|
891
891
|
"status.js"
|
|
892
892
|
]
|
|
893
893
|
},
|
|
894
|
-
"
|
|
894
|
+
"create:doc": {
|
|
895
895
|
"aliases": [],
|
|
896
|
-
"args": {
|
|
897
|
-
|
|
898
|
-
"description": "Doc slug",
|
|
899
|
-
"name": "slug",
|
|
900
|
-
"required": true
|
|
901
|
-
}
|
|
902
|
-
},
|
|
903
|
-
"description": "Duplicate a doc (same project or different project)",
|
|
896
|
+
"args": {},
|
|
897
|
+
"description": "Create a new documentation file",
|
|
904
898
|
"examples": [
|
|
905
|
-
"<%= config.bin %>
|
|
906
|
-
"<%= config.bin %>
|
|
907
|
-
"<%= config.bin %>
|
|
908
|
-
"<%= config.bin %>
|
|
899
|
+
"<%= config.bin %> create doc --title \"Getting Started\"",
|
|
900
|
+
"<%= config.bin %> create doc -t \"API Reference\" -c \"# API\n\nDocumentation here\"",
|
|
901
|
+
"<%= config.bin %> create doc --title \"Guide\" --slug my-guide",
|
|
902
|
+
"<%= config.bin %> create doc --title \"Guide\" --project centy-daemon"
|
|
909
903
|
],
|
|
910
904
|
"flags": {
|
|
911
|
-
"
|
|
905
|
+
"title": {
|
|
912
906
|
"char": "t",
|
|
913
|
-
"description": "
|
|
914
|
-
"name": "
|
|
907
|
+
"description": "Doc title",
|
|
908
|
+
"name": "title",
|
|
909
|
+
"required": true,
|
|
915
910
|
"hasDynamicHelp": false,
|
|
916
911
|
"multiple": false,
|
|
917
912
|
"type": "option"
|
|
918
913
|
},
|
|
919
|
-
"
|
|
920
|
-
"char": "
|
|
921
|
-
"description": "
|
|
922
|
-
"name": "
|
|
914
|
+
"content": {
|
|
915
|
+
"char": "c",
|
|
916
|
+
"description": "Doc content (markdown)",
|
|
917
|
+
"name": "content",
|
|
918
|
+
"default": "",
|
|
923
919
|
"hasDynamicHelp": false,
|
|
924
920
|
"multiple": false,
|
|
925
921
|
"type": "option"
|
|
926
922
|
},
|
|
927
|
-
"
|
|
928
|
-
"description": "
|
|
929
|
-
"name": "
|
|
923
|
+
"slug": {
|
|
924
|
+
"description": "Custom slug (auto-generated from title if not provided)",
|
|
925
|
+
"name": "slug",
|
|
926
|
+
"hasDynamicHelp": false,
|
|
927
|
+
"multiple": false,
|
|
928
|
+
"type": "option"
|
|
929
|
+
},
|
|
930
|
+
"template": {
|
|
931
|
+
"description": "Template name to use",
|
|
932
|
+
"name": "template",
|
|
930
933
|
"hasDynamicHelp": false,
|
|
931
934
|
"multiple": false,
|
|
932
935
|
"type": "option"
|
|
@@ -941,7 +944,7 @@
|
|
|
941
944
|
},
|
|
942
945
|
"hasDynamicHelp": false,
|
|
943
946
|
"hiddenAliases": [],
|
|
944
|
-
"id": "
|
|
947
|
+
"id": "create:doc",
|
|
945
948
|
"pluginAlias": "centy",
|
|
946
949
|
"pluginName": "centy",
|
|
947
950
|
"pluginType": "core",
|
|
@@ -951,42 +954,73 @@
|
|
|
951
954
|
"relativePath": [
|
|
952
955
|
"dist",
|
|
953
956
|
"commands",
|
|
954
|
-
"
|
|
957
|
+
"create",
|
|
955
958
|
"doc.js"
|
|
956
959
|
]
|
|
957
960
|
},
|
|
958
|
-
"
|
|
961
|
+
"create:issue": {
|
|
959
962
|
"aliases": [],
|
|
960
|
-
"args": {
|
|
961
|
-
|
|
962
|
-
"description": "Issue ID (UUID) or display number",
|
|
963
|
-
"name": "id",
|
|
964
|
-
"required": true
|
|
965
|
-
}
|
|
966
|
-
},
|
|
967
|
-
"description": "Duplicate an issue (same project or different project)",
|
|
963
|
+
"args": {},
|
|
964
|
+
"description": "Create a new issue in the .centy folder",
|
|
968
965
|
"examples": [
|
|
969
|
-
"<%= config.bin %>
|
|
970
|
-
"<%= config.bin %>
|
|
971
|
-
"<%= config.bin %>
|
|
972
|
-
"<%= config.bin %>
|
|
966
|
+
"<%= config.bin %> create issue",
|
|
967
|
+
"<%= config.bin %> create issue --title \"Bug in login\" --priority high",
|
|
968
|
+
"<%= config.bin %> create issue -t \"Add feature\" -d \"Implement dark mode\"",
|
|
969
|
+
"<%= config.bin %> create issue -t \"Add feature\" --project centy-daemon",
|
|
970
|
+
"<%= config.bin %> create issue --title \"WIP feature\" --draft",
|
|
971
|
+
"<%= config.bin %> create issue --title \"Cross-org bug\" --org"
|
|
973
972
|
],
|
|
974
973
|
"flags": {
|
|
975
|
-
"
|
|
974
|
+
"title": {
|
|
976
975
|
"char": "t",
|
|
977
|
-
"description": "
|
|
978
|
-
"name": "
|
|
976
|
+
"description": "Issue title",
|
|
977
|
+
"name": "title",
|
|
979
978
|
"hasDynamicHelp": false,
|
|
980
979
|
"multiple": false,
|
|
981
980
|
"type": "option"
|
|
982
981
|
},
|
|
983
|
-
"
|
|
984
|
-
"
|
|
985
|
-
"
|
|
982
|
+
"description": {
|
|
983
|
+
"char": "d",
|
|
984
|
+
"description": "Issue description",
|
|
985
|
+
"name": "description",
|
|
986
|
+
"hasDynamicHelp": false,
|
|
987
|
+
"multiple": false,
|
|
988
|
+
"type": "option"
|
|
989
|
+
},
|
|
990
|
+
"priority": {
|
|
991
|
+
"char": "p",
|
|
992
|
+
"description": "Priority level (low/medium/high)",
|
|
993
|
+
"name": "priority",
|
|
994
|
+
"hasDynamicHelp": false,
|
|
995
|
+
"multiple": false,
|
|
996
|
+
"options": [
|
|
997
|
+
"low",
|
|
998
|
+
"medium",
|
|
999
|
+
"high"
|
|
1000
|
+
],
|
|
1001
|
+
"type": "option"
|
|
1002
|
+
},
|
|
1003
|
+
"status": {
|
|
1004
|
+
"char": "s",
|
|
1005
|
+
"description": "Initial status",
|
|
1006
|
+
"name": "status",
|
|
1007
|
+
"default": "open",
|
|
986
1008
|
"hasDynamicHelp": false,
|
|
987
1009
|
"multiple": false,
|
|
988
1010
|
"type": "option"
|
|
989
1011
|
},
|
|
1012
|
+
"draft": {
|
|
1013
|
+
"description": "Create as draft",
|
|
1014
|
+
"name": "draft",
|
|
1015
|
+
"allowNo": false,
|
|
1016
|
+
"type": "boolean"
|
|
1017
|
+
},
|
|
1018
|
+
"org": {
|
|
1019
|
+
"description": "Create as an org-wide issue",
|
|
1020
|
+
"name": "org",
|
|
1021
|
+
"allowNo": false,
|
|
1022
|
+
"type": "boolean"
|
|
1023
|
+
},
|
|
990
1024
|
"project": {
|
|
991
1025
|
"description": "Project name or path (defaults to current directory)",
|
|
992
1026
|
"name": "project",
|
|
@@ -997,7 +1031,7 @@
|
|
|
997
1031
|
},
|
|
998
1032
|
"hasDynamicHelp": false,
|
|
999
1033
|
"hiddenAliases": [],
|
|
1000
|
-
"id": "
|
|
1034
|
+
"id": "create:issue",
|
|
1001
1035
|
"pluginAlias": "centy",
|
|
1002
1036
|
"pluginName": "centy",
|
|
1003
1037
|
"pluginType": "core",
|
|
@@ -1007,48 +1041,79 @@
|
|
|
1007
1041
|
"relativePath": [
|
|
1008
1042
|
"dist",
|
|
1009
1043
|
"commands",
|
|
1010
|
-
"
|
|
1044
|
+
"create",
|
|
1011
1045
|
"issue.js"
|
|
1012
1046
|
]
|
|
1013
1047
|
},
|
|
1014
|
-
"
|
|
1048
|
+
"create:item-type": {
|
|
1015
1049
|
"aliases": [],
|
|
1016
|
-
"args": {
|
|
1017
|
-
|
|
1018
|
-
"description": "Asset filename",
|
|
1019
|
-
"name": "filename",
|
|
1020
|
-
"required": true
|
|
1021
|
-
}
|
|
1022
|
-
},
|
|
1023
|
-
"description": "Delete an asset",
|
|
1050
|
+
"args": {},
|
|
1051
|
+
"description": "Create a new custom item type",
|
|
1024
1052
|
"examples": [
|
|
1025
|
-
"<%= config.bin %>
|
|
1026
|
-
"<%= config.bin %>
|
|
1027
|
-
"<%= config.bin %> delete asset old-image.png --issue 1 --force",
|
|
1028
|
-
"<%= config.bin %> delete asset screenshot.png --issue 1 --project centy-daemon"
|
|
1053
|
+
"<%= config.bin %> create item-type --name \"Bug\" --plural \"bugs\" --identifier uuid --statuses open,in-progress,closed --default-status open --priority-levels 3 --features display-number,status,priority,move,duplicate",
|
|
1054
|
+
"<%= config.bin %> create item-type --name \"Task\" --plural \"tasks\" --identifier slug --statuses todo,doing,done --default-status todo --features status,priority"
|
|
1029
1055
|
],
|
|
1030
1056
|
"flags": {
|
|
1031
|
-
"
|
|
1032
|
-
"char": "
|
|
1033
|
-
"description": "
|
|
1034
|
-
"name": "
|
|
1057
|
+
"name": {
|
|
1058
|
+
"char": "n",
|
|
1059
|
+
"description": "Singular display name (e.g., \"Bug\", \"Task\", \"Epic\")",
|
|
1060
|
+
"name": "name",
|
|
1061
|
+
"required": true,
|
|
1035
1062
|
"hasDynamicHelp": false,
|
|
1036
1063
|
"multiple": false,
|
|
1037
1064
|
"type": "option"
|
|
1038
1065
|
},
|
|
1039
|
-
"
|
|
1040
|
-
"
|
|
1041
|
-
"
|
|
1042
|
-
"
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1066
|
+
"plural": {
|
|
1067
|
+
"description": "Folder/type key, lowercase alphanumeric + hyphens (e.g., \"bugs\")",
|
|
1068
|
+
"name": "plural",
|
|
1069
|
+
"required": true,
|
|
1070
|
+
"hasDynamicHelp": false,
|
|
1071
|
+
"multiple": false,
|
|
1072
|
+
"type": "option"
|
|
1045
1073
|
},
|
|
1046
|
-
"
|
|
1074
|
+
"identifier": {
|
|
1075
|
+
"description": "Identifier type for items",
|
|
1076
|
+
"name": "identifier",
|
|
1077
|
+
"required": true,
|
|
1078
|
+
"hasDynamicHelp": false,
|
|
1079
|
+
"multiple": false,
|
|
1080
|
+
"options": [
|
|
1081
|
+
"uuid",
|
|
1082
|
+
"slug"
|
|
1083
|
+
],
|
|
1084
|
+
"type": "option"
|
|
1085
|
+
},
|
|
1086
|
+
"statuses": {
|
|
1087
|
+
"description": "Comma-separated list of allowed statuses",
|
|
1088
|
+
"name": "statuses",
|
|
1089
|
+
"required": true,
|
|
1090
|
+
"hasDynamicHelp": false,
|
|
1091
|
+
"multiple": false,
|
|
1092
|
+
"type": "option"
|
|
1093
|
+
},
|
|
1094
|
+
"default-status": {
|
|
1095
|
+
"description": "Default status for new items (must be in statuses list)",
|
|
1096
|
+
"name": "default-status",
|
|
1097
|
+
"required": true,
|
|
1098
|
+
"hasDynamicHelp": false,
|
|
1099
|
+
"multiple": false,
|
|
1100
|
+
"type": "option"
|
|
1101
|
+
},
|
|
1102
|
+
"priority-levels": {
|
|
1103
|
+
"description": "Number of priority levels (0 = none)",
|
|
1104
|
+
"name": "priority-levels",
|
|
1105
|
+
"default": 0,
|
|
1106
|
+
"hasDynamicHelp": false,
|
|
1107
|
+
"multiple": false,
|
|
1108
|
+
"type": "option"
|
|
1109
|
+
},
|
|
1110
|
+
"features": {
|
|
1047
1111
|
"char": "f",
|
|
1048
|
-
"description": "
|
|
1049
|
-
"name": "
|
|
1050
|
-
"
|
|
1051
|
-
"
|
|
1112
|
+
"description": "Comma-separated features (display-number, status, priority, assets, org-sync, move, duplicate)",
|
|
1113
|
+
"name": "features",
|
|
1114
|
+
"hasDynamicHelp": false,
|
|
1115
|
+
"multiple": false,
|
|
1116
|
+
"type": "option"
|
|
1052
1117
|
},
|
|
1053
1118
|
"project": {
|
|
1054
1119
|
"description": "Project name or path (defaults to current directory)",
|
|
@@ -1060,7 +1125,7 @@
|
|
|
1060
1125
|
},
|
|
1061
1126
|
"hasDynamicHelp": false,
|
|
1062
1127
|
"hiddenAliases": [],
|
|
1063
|
-
"id": "
|
|
1128
|
+
"id": "create:item-type",
|
|
1064
1129
|
"pluginAlias": "centy",
|
|
1065
1130
|
"pluginName": "centy",
|
|
1066
1131
|
"pluginType": "core",
|
|
@@ -1070,44 +1135,55 @@
|
|
|
1070
1135
|
"relativePath": [
|
|
1071
1136
|
"dist",
|
|
1072
1137
|
"commands",
|
|
1073
|
-
"
|
|
1074
|
-
"
|
|
1138
|
+
"create",
|
|
1139
|
+
"item-type.js"
|
|
1075
1140
|
]
|
|
1076
1141
|
},
|
|
1077
|
-
"
|
|
1078
|
-
"aliases": [
|
|
1142
|
+
"create:org": {
|
|
1143
|
+
"aliases": [
|
|
1144
|
+
"create:organization"
|
|
1145
|
+
],
|
|
1079
1146
|
"args": {
|
|
1080
|
-
"
|
|
1081
|
-
"description": "
|
|
1082
|
-
"name": "
|
|
1147
|
+
"name": {
|
|
1148
|
+
"description": "Organization display name",
|
|
1149
|
+
"name": "name",
|
|
1083
1150
|
"required": true
|
|
1084
1151
|
}
|
|
1085
1152
|
},
|
|
1086
|
-
"description": "
|
|
1153
|
+
"description": "Create a new organization to group projects",
|
|
1087
1154
|
"examples": [
|
|
1088
|
-
"<%= config.bin %>
|
|
1089
|
-
"<%= config.bin %>
|
|
1090
|
-
"<%= config.bin %>
|
|
1155
|
+
"<%= config.bin %> create org \"My Company\"",
|
|
1156
|
+
"<%= config.bin %> create org \"Centy.io\" --slug centy-io",
|
|
1157
|
+
"<%= config.bin %> create org \"My Org\" --description \"Official projects\"",
|
|
1158
|
+
"<%= config.bin %> create organization \"Work Projects\""
|
|
1091
1159
|
],
|
|
1092
1160
|
"flags": {
|
|
1093
|
-
"
|
|
1094
|
-
"char": "
|
|
1095
|
-
"description": "
|
|
1096
|
-
"name": "
|
|
1097
|
-
"allowNo": false,
|
|
1098
|
-
"type": "boolean"
|
|
1099
|
-
},
|
|
1100
|
-
"project": {
|
|
1101
|
-
"description": "Project name or path (defaults to current directory)",
|
|
1102
|
-
"name": "project",
|
|
1161
|
+
"slug": {
|
|
1162
|
+
"char": "s",
|
|
1163
|
+
"description": "Custom slug (auto-generated from name if not provided)",
|
|
1164
|
+
"name": "slug",
|
|
1103
1165
|
"hasDynamicHelp": false,
|
|
1104
1166
|
"multiple": false,
|
|
1105
1167
|
"type": "option"
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1168
|
+
},
|
|
1169
|
+
"description": {
|
|
1170
|
+
"char": "d",
|
|
1171
|
+
"description": "Organization description",
|
|
1172
|
+
"name": "description",
|
|
1173
|
+
"hasDynamicHelp": false,
|
|
1174
|
+
"multiple": false,
|
|
1175
|
+
"type": "option"
|
|
1176
|
+
},
|
|
1177
|
+
"json": {
|
|
1178
|
+
"description": "Output as JSON",
|
|
1179
|
+
"name": "json",
|
|
1180
|
+
"allowNo": false,
|
|
1181
|
+
"type": "boolean"
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1108
1184
|
"hasDynamicHelp": false,
|
|
1109
1185
|
"hiddenAliases": [],
|
|
1110
|
-
"id": "
|
|
1186
|
+
"id": "create:org",
|
|
1111
1187
|
"pluginAlias": "centy",
|
|
1112
1188
|
"pluginName": "centy",
|
|
1113
1189
|
"pluginType": "core",
|
|
@@ -1117,31 +1193,57 @@
|
|
|
1117
1193
|
"relativePath": [
|
|
1118
1194
|
"dist",
|
|
1119
1195
|
"commands",
|
|
1120
|
-
"
|
|
1121
|
-
"
|
|
1196
|
+
"create",
|
|
1197
|
+
"org.js"
|
|
1122
1198
|
]
|
|
1123
1199
|
},
|
|
1124
|
-
"
|
|
1200
|
+
"create:user": {
|
|
1125
1201
|
"aliases": [],
|
|
1126
|
-
"args": {
|
|
1127
|
-
|
|
1128
|
-
"description": "Issue ID (UUID) or display number",
|
|
1129
|
-
"name": "id",
|
|
1130
|
-
"required": true
|
|
1131
|
-
}
|
|
1132
|
-
},
|
|
1133
|
-
"description": "Delete an issue",
|
|
1202
|
+
"args": {},
|
|
1203
|
+
"description": "Create a new user in the project",
|
|
1134
1204
|
"examples": [
|
|
1135
|
-
"<%= config.bin %>
|
|
1136
|
-
"<%= config.bin %>
|
|
1137
|
-
"<%= config.bin %>
|
|
1138
|
-
"<%= config.bin %>
|
|
1205
|
+
"<%= config.bin %> create user --name \"John Doe\"",
|
|
1206
|
+
"<%= config.bin %> create user --id john-doe --name \"John Doe\" --email john@example.com",
|
|
1207
|
+
"<%= config.bin %> create user -n \"Alice\" -g alice-dev -g alice-work",
|
|
1208
|
+
"<%= config.bin %> create user --name \"Bob\" --project centy-daemon"
|
|
1139
1209
|
],
|
|
1140
1210
|
"flags": {
|
|
1141
|
-
"
|
|
1142
|
-
"char": "
|
|
1143
|
-
"description": "
|
|
1144
|
-
"name": "
|
|
1211
|
+
"id": {
|
|
1212
|
+
"char": "i",
|
|
1213
|
+
"description": "User ID (slug format, auto-generated from name if not provided)",
|
|
1214
|
+
"name": "id",
|
|
1215
|
+
"hasDynamicHelp": false,
|
|
1216
|
+
"multiple": false,
|
|
1217
|
+
"type": "option"
|
|
1218
|
+
},
|
|
1219
|
+
"name": {
|
|
1220
|
+
"char": "n",
|
|
1221
|
+
"description": "Display name (required)",
|
|
1222
|
+
"name": "name",
|
|
1223
|
+
"required": true,
|
|
1224
|
+
"hasDynamicHelp": false,
|
|
1225
|
+
"multiple": false,
|
|
1226
|
+
"type": "option"
|
|
1227
|
+
},
|
|
1228
|
+
"email": {
|
|
1229
|
+
"char": "e",
|
|
1230
|
+
"description": "Email address",
|
|
1231
|
+
"name": "email",
|
|
1232
|
+
"hasDynamicHelp": false,
|
|
1233
|
+
"multiple": false,
|
|
1234
|
+
"type": "option"
|
|
1235
|
+
},
|
|
1236
|
+
"git-username": {
|
|
1237
|
+
"char": "g",
|
|
1238
|
+
"description": "Git username (can be specified multiple times)",
|
|
1239
|
+
"name": "git-username",
|
|
1240
|
+
"hasDynamicHelp": false,
|
|
1241
|
+
"multiple": true,
|
|
1242
|
+
"type": "option"
|
|
1243
|
+
},
|
|
1244
|
+
"json": {
|
|
1245
|
+
"description": "Output as JSON",
|
|
1246
|
+
"name": "json",
|
|
1145
1247
|
"allowNo": false,
|
|
1146
1248
|
"type": "boolean"
|
|
1147
1249
|
},
|
|
@@ -1155,7 +1257,7 @@
|
|
|
1155
1257
|
},
|
|
1156
1258
|
"hasDynamicHelp": false,
|
|
1157
1259
|
"hiddenAliases": [],
|
|
1158
|
-
"id": "
|
|
1260
|
+
"id": "create:user",
|
|
1159
1261
|
"pluginAlias": "centy",
|
|
1160
1262
|
"pluginName": "centy",
|
|
1161
1263
|
"pluginType": "core",
|
|
@@ -1165,38 +1267,61 @@
|
|
|
1165
1267
|
"relativePath": [
|
|
1166
1268
|
"dist",
|
|
1167
1269
|
"commands",
|
|
1168
|
-
"
|
|
1169
|
-
"
|
|
1270
|
+
"create",
|
|
1271
|
+
"user.js"
|
|
1170
1272
|
]
|
|
1171
1273
|
},
|
|
1172
|
-
"
|
|
1173
|
-
"aliases": [
|
|
1174
|
-
"delete:organization"
|
|
1175
|
-
],
|
|
1274
|
+
"duplicate:doc": {
|
|
1275
|
+
"aliases": [],
|
|
1176
1276
|
"args": {
|
|
1177
1277
|
"slug": {
|
|
1178
|
-
"description": "
|
|
1278
|
+
"description": "Doc slug",
|
|
1179
1279
|
"name": "slug",
|
|
1180
1280
|
"required": true
|
|
1181
1281
|
}
|
|
1182
1282
|
},
|
|
1183
|
-
"description": "
|
|
1283
|
+
"description": "Duplicate a doc (same project or different project)",
|
|
1184
1284
|
"examples": [
|
|
1185
|
-
"<%= config.bin %>
|
|
1186
|
-
"<%= config.bin %>
|
|
1285
|
+
"<%= config.bin %> duplicate doc my-doc",
|
|
1286
|
+
"<%= config.bin %> duplicate doc readme --new-slug readme-v2",
|
|
1287
|
+
"<%= config.bin %> duplicate doc api-guide --to /path/to/other/project",
|
|
1288
|
+
"<%= config.bin %> duplicate doc spec --to ../other --new-slug spec-copy --title \"Spec Copy\""
|
|
1187
1289
|
],
|
|
1188
1290
|
"flags": {
|
|
1189
|
-
"
|
|
1190
|
-
"char": "
|
|
1191
|
-
"description": "
|
|
1192
|
-
"name": "
|
|
1193
|
-
"
|
|
1194
|
-
"
|
|
1291
|
+
"to": {
|
|
1292
|
+
"char": "t",
|
|
1293
|
+
"description": "Target project path (defaults to same project if not specified)",
|
|
1294
|
+
"name": "to",
|
|
1295
|
+
"hasDynamicHelp": false,
|
|
1296
|
+
"multiple": false,
|
|
1297
|
+
"type": "option"
|
|
1298
|
+
},
|
|
1299
|
+
"new-slug": {
|
|
1300
|
+
"char": "s",
|
|
1301
|
+
"description": "Slug for the duplicate (defaults to \"{slug}-copy\")",
|
|
1302
|
+
"name": "new-slug",
|
|
1303
|
+
"hasDynamicHelp": false,
|
|
1304
|
+
"multiple": false,
|
|
1305
|
+
"type": "option"
|
|
1306
|
+
},
|
|
1307
|
+
"title": {
|
|
1308
|
+
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1309
|
+
"name": "title",
|
|
1310
|
+
"hasDynamicHelp": false,
|
|
1311
|
+
"multiple": false,
|
|
1312
|
+
"type": "option"
|
|
1313
|
+
},
|
|
1314
|
+
"project": {
|
|
1315
|
+
"description": "Project name or path (defaults to current directory)",
|
|
1316
|
+
"name": "project",
|
|
1317
|
+
"hasDynamicHelp": false,
|
|
1318
|
+
"multiple": false,
|
|
1319
|
+
"type": "option"
|
|
1195
1320
|
}
|
|
1196
1321
|
},
|
|
1197
1322
|
"hasDynamicHelp": false,
|
|
1198
1323
|
"hiddenAliases": [],
|
|
1199
|
-
"id": "
|
|
1324
|
+
"id": "duplicate:doc",
|
|
1200
1325
|
"pluginAlias": "centy",
|
|
1201
1326
|
"pluginName": "centy",
|
|
1202
1327
|
"pluginType": "core",
|
|
@@ -1206,32 +1331,41 @@
|
|
|
1206
1331
|
"relativePath": [
|
|
1207
1332
|
"dist",
|
|
1208
1333
|
"commands",
|
|
1209
|
-
"
|
|
1210
|
-
"
|
|
1334
|
+
"duplicate",
|
|
1335
|
+
"doc.js"
|
|
1211
1336
|
]
|
|
1212
1337
|
},
|
|
1213
|
-
"
|
|
1338
|
+
"duplicate:issue": {
|
|
1214
1339
|
"aliases": [],
|
|
1215
1340
|
"args": {
|
|
1216
1341
|
"id": {
|
|
1217
|
-
"description": "
|
|
1342
|
+
"description": "Issue ID (UUID) or display number",
|
|
1218
1343
|
"name": "id",
|
|
1219
1344
|
"required": true
|
|
1220
1345
|
}
|
|
1221
1346
|
},
|
|
1222
|
-
"description": "
|
|
1347
|
+
"description": "Duplicate an issue (same project or different project)",
|
|
1223
1348
|
"examples": [
|
|
1224
|
-
"<%= config.bin %>
|
|
1225
|
-
"<%= config.bin %>
|
|
1226
|
-
"<%= config.bin %>
|
|
1349
|
+
"<%= config.bin %> duplicate issue 1",
|
|
1350
|
+
"<%= config.bin %> duplicate issue 1 --title \"New feature branch\"",
|
|
1351
|
+
"<%= config.bin %> duplicate issue abc123-uuid --to /path/to/other/project",
|
|
1352
|
+
"<%= config.bin %> duplicate issue 5 --to ../other --title \"Copy for testing\""
|
|
1227
1353
|
],
|
|
1228
1354
|
"flags": {
|
|
1229
|
-
"
|
|
1230
|
-
"char": "
|
|
1231
|
-
"description": "
|
|
1232
|
-
"name": "
|
|
1233
|
-
"
|
|
1234
|
-
"
|
|
1355
|
+
"to": {
|
|
1356
|
+
"char": "t",
|
|
1357
|
+
"description": "Target project path (defaults to same project if not specified)",
|
|
1358
|
+
"name": "to",
|
|
1359
|
+
"hasDynamicHelp": false,
|
|
1360
|
+
"multiple": false,
|
|
1361
|
+
"type": "option"
|
|
1362
|
+
},
|
|
1363
|
+
"title": {
|
|
1364
|
+
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1365
|
+
"name": "title",
|
|
1366
|
+
"hasDynamicHelp": false,
|
|
1367
|
+
"multiple": false,
|
|
1368
|
+
"type": "option"
|
|
1235
1369
|
},
|
|
1236
1370
|
"project": {
|
|
1237
1371
|
"description": "Project name or path (defaults to current directory)",
|
|
@@ -1243,7 +1377,7 @@
|
|
|
1243
1377
|
},
|
|
1244
1378
|
"hasDynamicHelp": false,
|
|
1245
1379
|
"hiddenAliases": [],
|
|
1246
|
-
"id": "
|
|
1380
|
+
"id": "duplicate:issue",
|
|
1247
1381
|
"pluginAlias": "centy",
|
|
1248
1382
|
"pluginName": "centy",
|
|
1249
1383
|
"pluginType": "core",
|
|
@@ -1253,14 +1387,12 @@
|
|
|
1253
1387
|
"relativePath": [
|
|
1254
1388
|
"dist",
|
|
1255
1389
|
"commands",
|
|
1256
|
-
"
|
|
1257
|
-
"
|
|
1390
|
+
"duplicate",
|
|
1391
|
+
"issue.js"
|
|
1258
1392
|
]
|
|
1259
1393
|
},
|
|
1260
|
-
"
|
|
1261
|
-
"aliases": [
|
|
1262
|
-
"show:asset"
|
|
1263
|
-
],
|
|
1394
|
+
"delete:asset": {
|
|
1395
|
+
"aliases": [],
|
|
1264
1396
|
"args": {
|
|
1265
1397
|
"filename": {
|
|
1266
1398
|
"description": "Asset filename",
|
|
@@ -1268,11 +1400,12 @@
|
|
|
1268
1400
|
"required": true
|
|
1269
1401
|
}
|
|
1270
1402
|
},
|
|
1271
|
-
"description": "
|
|
1403
|
+
"description": "Delete an asset",
|
|
1272
1404
|
"examples": [
|
|
1273
|
-
"<%= config.bin %>
|
|
1274
|
-
"<%= config.bin %>
|
|
1275
|
-
"<%= config.bin %>
|
|
1405
|
+
"<%= config.bin %> delete asset screenshot.png --issue 1",
|
|
1406
|
+
"<%= config.bin %> delete asset logo.svg --shared",
|
|
1407
|
+
"<%= config.bin %> delete asset old-image.png --issue 1 --force",
|
|
1408
|
+
"<%= config.bin %> delete asset screenshot.png --issue 1 --project centy-daemon"
|
|
1276
1409
|
],
|
|
1277
1410
|
"flags": {
|
|
1278
1411
|
"issue": {
|
|
@@ -1285,18 +1418,17 @@
|
|
|
1285
1418
|
},
|
|
1286
1419
|
"shared": {
|
|
1287
1420
|
"char": "s",
|
|
1288
|
-
"description": "
|
|
1421
|
+
"description": "Delete a shared asset",
|
|
1289
1422
|
"name": "shared",
|
|
1290
1423
|
"allowNo": false,
|
|
1291
1424
|
"type": "boolean"
|
|
1292
1425
|
},
|
|
1293
|
-
"
|
|
1294
|
-
"char": "
|
|
1295
|
-
"description": "
|
|
1296
|
-
"name": "
|
|
1297
|
-
"
|
|
1298
|
-
"
|
|
1299
|
-
"type": "option"
|
|
1426
|
+
"force": {
|
|
1427
|
+
"char": "f",
|
|
1428
|
+
"description": "Skip confirmation prompt",
|
|
1429
|
+
"name": "force",
|
|
1430
|
+
"allowNo": false,
|
|
1431
|
+
"type": "boolean"
|
|
1300
1432
|
},
|
|
1301
1433
|
"project": {
|
|
1302
1434
|
"description": "Project name or path (defaults to current directory)",
|
|
@@ -1308,7 +1440,7 @@
|
|
|
1308
1440
|
},
|
|
1309
1441
|
"hasDynamicHelp": false,
|
|
1310
1442
|
"hiddenAliases": [],
|
|
1311
|
-
"id": "
|
|
1443
|
+
"id": "delete:asset",
|
|
1312
1444
|
"pluginAlias": "centy",
|
|
1313
1445
|
"pluginName": "centy",
|
|
1314
1446
|
"pluginType": "core",
|
|
@@ -1318,37 +1450,44 @@
|
|
|
1318
1450
|
"relativePath": [
|
|
1319
1451
|
"dist",
|
|
1320
1452
|
"commands",
|
|
1321
|
-
"
|
|
1453
|
+
"delete",
|
|
1322
1454
|
"asset.js"
|
|
1323
1455
|
]
|
|
1324
1456
|
},
|
|
1325
|
-
"
|
|
1326
|
-
"aliases": [
|
|
1327
|
-
"get:organization"
|
|
1328
|
-
],
|
|
1457
|
+
"delete:doc": {
|
|
1458
|
+
"aliases": [],
|
|
1329
1459
|
"args": {
|
|
1330
1460
|
"slug": {
|
|
1331
|
-
"description": "
|
|
1461
|
+
"description": "Doc slug",
|
|
1332
1462
|
"name": "slug",
|
|
1333
1463
|
"required": true
|
|
1334
1464
|
}
|
|
1335
1465
|
},
|
|
1336
|
-
"description": "
|
|
1466
|
+
"description": "Delete a documentation file",
|
|
1337
1467
|
"examples": [
|
|
1338
|
-
"<%= config.bin %>
|
|
1339
|
-
"<%= config.bin %>
|
|
1468
|
+
"<%= config.bin %> delete doc getting-started",
|
|
1469
|
+
"<%= config.bin %> delete doc api-reference --force",
|
|
1470
|
+
"<%= config.bin %> delete doc api-reference --project centy-daemon"
|
|
1340
1471
|
],
|
|
1341
1472
|
"flags": {
|
|
1342
|
-
"
|
|
1343
|
-
"
|
|
1344
|
-
"
|
|
1473
|
+
"force": {
|
|
1474
|
+
"char": "f",
|
|
1475
|
+
"description": "Skip confirmation prompt",
|
|
1476
|
+
"name": "force",
|
|
1345
1477
|
"allowNo": false,
|
|
1346
1478
|
"type": "boolean"
|
|
1479
|
+
},
|
|
1480
|
+
"project": {
|
|
1481
|
+
"description": "Project name or path (defaults to current directory)",
|
|
1482
|
+
"name": "project",
|
|
1483
|
+
"hasDynamicHelp": false,
|
|
1484
|
+
"multiple": false,
|
|
1485
|
+
"type": "option"
|
|
1347
1486
|
}
|
|
1348
1487
|
},
|
|
1349
1488
|
"hasDynamicHelp": false,
|
|
1350
1489
|
"hiddenAliases": [],
|
|
1351
|
-
"id": "
|
|
1490
|
+
"id": "delete:doc",
|
|
1352
1491
|
"pluginAlias": "centy",
|
|
1353
1492
|
"pluginName": "centy",
|
|
1354
1493
|
"pluginType": "core",
|
|
@@ -1358,93 +1497,33 @@
|
|
|
1358
1497
|
"relativePath": [
|
|
1359
1498
|
"dist",
|
|
1360
1499
|
"commands",
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1500
|
+
"delete",
|
|
1501
|
+
"doc.js"
|
|
1363
1502
|
]
|
|
1364
1503
|
},
|
|
1365
|
-
"
|
|
1366
|
-
"aliases": [
|
|
1367
|
-
"show:project"
|
|
1368
|
-
],
|
|
1504
|
+
"delete:issue": {
|
|
1505
|
+
"aliases": [],
|
|
1369
1506
|
"args": {
|
|
1370
|
-
"
|
|
1371
|
-
"description": "
|
|
1372
|
-
"name": "
|
|
1373
|
-
"required":
|
|
1507
|
+
"id": {
|
|
1508
|
+
"description": "Issue ID (UUID) or display number",
|
|
1509
|
+
"name": "id",
|
|
1510
|
+
"required": true
|
|
1374
1511
|
}
|
|
1375
1512
|
},
|
|
1376
|
-
"description": "
|
|
1513
|
+
"description": "Delete an issue",
|
|
1377
1514
|
"examples": [
|
|
1378
|
-
"<%= config.bin %>
|
|
1379
|
-
"<%= config.bin %>
|
|
1380
|
-
"<%= config.bin %>
|
|
1515
|
+
"<%= config.bin %> delete issue 1",
|
|
1516
|
+
"<%= config.bin %> delete issue abc123-uuid",
|
|
1517
|
+
"<%= config.bin %> delete issue 1 --force",
|
|
1518
|
+
"<%= config.bin %> delete issue 1 --project centy-daemon"
|
|
1381
1519
|
],
|
|
1382
1520
|
"flags": {
|
|
1383
|
-
"
|
|
1384
|
-
"
|
|
1385
|
-
"
|
|
1521
|
+
"force": {
|
|
1522
|
+
"char": "f",
|
|
1523
|
+
"description": "Skip confirmation prompt",
|
|
1524
|
+
"name": "force",
|
|
1386
1525
|
"allowNo": false,
|
|
1387
1526
|
"type": "boolean"
|
|
1388
|
-
}
|
|
1389
|
-
},
|
|
1390
|
-
"hasDynamicHelp": false,
|
|
1391
|
-
"hiddenAliases": [],
|
|
1392
|
-
"id": "get:project",
|
|
1393
|
-
"pluginAlias": "centy",
|
|
1394
|
-
"pluginName": "centy",
|
|
1395
|
-
"pluginType": "core",
|
|
1396
|
-
"strict": true,
|
|
1397
|
-
"enableJsonFlag": false,
|
|
1398
|
-
"isESM": true,
|
|
1399
|
-
"relativePath": [
|
|
1400
|
-
"dist",
|
|
1401
|
-
"commands",
|
|
1402
|
-
"get",
|
|
1403
|
-
"project.js"
|
|
1404
|
-
]
|
|
1405
|
-
},
|
|
1406
|
-
"create:doc": {
|
|
1407
|
-
"aliases": [],
|
|
1408
|
-
"args": {},
|
|
1409
|
-
"description": "Create a new documentation file",
|
|
1410
|
-
"examples": [
|
|
1411
|
-
"<%= config.bin %> create doc --title \"Getting Started\"",
|
|
1412
|
-
"<%= config.bin %> create doc -t \"API Reference\" -c \"# API\n\nDocumentation here\"",
|
|
1413
|
-
"<%= config.bin %> create doc --title \"Guide\" --slug my-guide",
|
|
1414
|
-
"<%= config.bin %> create doc --title \"Guide\" --project centy-daemon"
|
|
1415
|
-
],
|
|
1416
|
-
"flags": {
|
|
1417
|
-
"title": {
|
|
1418
|
-
"char": "t",
|
|
1419
|
-
"description": "Doc title",
|
|
1420
|
-
"name": "title",
|
|
1421
|
-
"required": true,
|
|
1422
|
-
"hasDynamicHelp": false,
|
|
1423
|
-
"multiple": false,
|
|
1424
|
-
"type": "option"
|
|
1425
|
-
},
|
|
1426
|
-
"content": {
|
|
1427
|
-
"char": "c",
|
|
1428
|
-
"description": "Doc content (markdown)",
|
|
1429
|
-
"name": "content",
|
|
1430
|
-
"default": "",
|
|
1431
|
-
"hasDynamicHelp": false,
|
|
1432
|
-
"multiple": false,
|
|
1433
|
-
"type": "option"
|
|
1434
|
-
},
|
|
1435
|
-
"slug": {
|
|
1436
|
-
"description": "Custom slug (auto-generated from title if not provided)",
|
|
1437
|
-
"name": "slug",
|
|
1438
|
-
"hasDynamicHelp": false,
|
|
1439
|
-
"multiple": false,
|
|
1440
|
-
"type": "option"
|
|
1441
|
-
},
|
|
1442
|
-
"template": {
|
|
1443
|
-
"description": "Template name to use",
|
|
1444
|
-
"name": "template",
|
|
1445
|
-
"hasDynamicHelp": false,
|
|
1446
|
-
"multiple": false,
|
|
1447
|
-
"type": "option"
|
|
1448
1527
|
},
|
|
1449
1528
|
"project": {
|
|
1450
1529
|
"description": "Project name or path (defaults to current directory)",
|
|
@@ -1456,7 +1535,7 @@
|
|
|
1456
1535
|
},
|
|
1457
1536
|
"hasDynamicHelp": false,
|
|
1458
1537
|
"hiddenAliases": [],
|
|
1459
|
-
"id": "
|
|
1538
|
+
"id": "delete:issue",
|
|
1460
1539
|
"pluginAlias": "centy",
|
|
1461
1540
|
"pluginName": "centy",
|
|
1462
1541
|
"pluginType": "core",
|
|
@@ -1466,84 +1545,38 @@
|
|
|
1466
1545
|
"relativePath": [
|
|
1467
1546
|
"dist",
|
|
1468
1547
|
"commands",
|
|
1469
|
-
"
|
|
1470
|
-
"
|
|
1548
|
+
"delete",
|
|
1549
|
+
"issue.js"
|
|
1471
1550
|
]
|
|
1472
1551
|
},
|
|
1473
|
-
"
|
|
1474
|
-
"aliases": [
|
|
1475
|
-
|
|
1476
|
-
|
|
1552
|
+
"delete:org": {
|
|
1553
|
+
"aliases": [
|
|
1554
|
+
"delete:organization"
|
|
1555
|
+
],
|
|
1556
|
+
"args": {
|
|
1557
|
+
"slug": {
|
|
1558
|
+
"description": "Organization slug",
|
|
1559
|
+
"name": "slug",
|
|
1560
|
+
"required": true
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"description": "Delete an organization (must have no projects assigned)",
|
|
1477
1564
|
"examples": [
|
|
1478
|
-
"<%= config.bin %>
|
|
1479
|
-
"<%= config.bin %>
|
|
1480
|
-
"<%= config.bin %> create issue -t \"Add feature\" -d \"Implement dark mode\"",
|
|
1481
|
-
"<%= config.bin %> create issue -t \"Add feature\" --project centy-daemon",
|
|
1482
|
-
"<%= config.bin %> create issue --title \"WIP feature\" --draft",
|
|
1483
|
-
"<%= config.bin %> create issue --title \"Cross-org bug\" --org"
|
|
1565
|
+
"<%= config.bin %> delete org my-org",
|
|
1566
|
+
"<%= config.bin %> delete organization old-org"
|
|
1484
1567
|
],
|
|
1485
1568
|
"flags": {
|
|
1486
|
-
"
|
|
1487
|
-
"char": "
|
|
1488
|
-
"description": "
|
|
1489
|
-
"name": "
|
|
1490
|
-
"hasDynamicHelp": false,
|
|
1491
|
-
"multiple": false,
|
|
1492
|
-
"type": "option"
|
|
1493
|
-
},
|
|
1494
|
-
"description": {
|
|
1495
|
-
"char": "d",
|
|
1496
|
-
"description": "Issue description",
|
|
1497
|
-
"name": "description",
|
|
1498
|
-
"hasDynamicHelp": false,
|
|
1499
|
-
"multiple": false,
|
|
1500
|
-
"type": "option"
|
|
1501
|
-
},
|
|
1502
|
-
"priority": {
|
|
1503
|
-
"char": "p",
|
|
1504
|
-
"description": "Priority level (low/medium/high)",
|
|
1505
|
-
"name": "priority",
|
|
1506
|
-
"hasDynamicHelp": false,
|
|
1507
|
-
"multiple": false,
|
|
1508
|
-
"options": [
|
|
1509
|
-
"low",
|
|
1510
|
-
"medium",
|
|
1511
|
-
"high"
|
|
1512
|
-
],
|
|
1513
|
-
"type": "option"
|
|
1514
|
-
},
|
|
1515
|
-
"status": {
|
|
1516
|
-
"char": "s",
|
|
1517
|
-
"description": "Initial status",
|
|
1518
|
-
"name": "status",
|
|
1519
|
-
"default": "open",
|
|
1520
|
-
"hasDynamicHelp": false,
|
|
1521
|
-
"multiple": false,
|
|
1522
|
-
"type": "option"
|
|
1523
|
-
},
|
|
1524
|
-
"draft": {
|
|
1525
|
-
"description": "Create as draft",
|
|
1526
|
-
"name": "draft",
|
|
1527
|
-
"allowNo": false,
|
|
1528
|
-
"type": "boolean"
|
|
1529
|
-
},
|
|
1530
|
-
"org": {
|
|
1531
|
-
"description": "Create as an org-wide issue",
|
|
1532
|
-
"name": "org",
|
|
1569
|
+
"force": {
|
|
1570
|
+
"char": "f",
|
|
1571
|
+
"description": "Skip confirmation prompt",
|
|
1572
|
+
"name": "force",
|
|
1533
1573
|
"allowNo": false,
|
|
1534
1574
|
"type": "boolean"
|
|
1535
|
-
},
|
|
1536
|
-
"project": {
|
|
1537
|
-
"description": "Project name or path (defaults to current directory)",
|
|
1538
|
-
"name": "project",
|
|
1539
|
-
"hasDynamicHelp": false,
|
|
1540
|
-
"multiple": false,
|
|
1541
|
-
"type": "option"
|
|
1542
1575
|
}
|
|
1543
1576
|
},
|
|
1544
1577
|
"hasDynamicHelp": false,
|
|
1545
1578
|
"hiddenAliases": [],
|
|
1546
|
-
"id": "
|
|
1579
|
+
"id": "delete:org",
|
|
1547
1580
|
"pluginAlias": "centy",
|
|
1548
1581
|
"pluginName": "centy",
|
|
1549
1582
|
"pluginType": "core",
|
|
@@ -1553,76 +1586,94 @@
|
|
|
1553
1586
|
"relativePath": [
|
|
1554
1587
|
"dist",
|
|
1555
1588
|
"commands",
|
|
1556
|
-
"
|
|
1557
|
-
"
|
|
1589
|
+
"delete",
|
|
1590
|
+
"org.js"
|
|
1558
1591
|
]
|
|
1559
1592
|
},
|
|
1560
|
-
"
|
|
1593
|
+
"delete:user": {
|
|
1561
1594
|
"aliases": [],
|
|
1562
|
-
"args": {
|
|
1563
|
-
|
|
1595
|
+
"args": {
|
|
1596
|
+
"id": {
|
|
1597
|
+
"description": "User ID",
|
|
1598
|
+
"name": "id",
|
|
1599
|
+
"required": true
|
|
1600
|
+
}
|
|
1601
|
+
},
|
|
1602
|
+
"description": "Delete a user",
|
|
1564
1603
|
"examples": [
|
|
1565
|
-
"<%= config.bin %>
|
|
1566
|
-
"<%= config.bin %>
|
|
1604
|
+
"<%= config.bin %> delete user john-doe",
|
|
1605
|
+
"<%= config.bin %> delete user john-doe --force",
|
|
1606
|
+
"<%= config.bin %> delete user john-doe --project centy-daemon"
|
|
1567
1607
|
],
|
|
1568
1608
|
"flags": {
|
|
1569
|
-
"
|
|
1570
|
-
"char": "
|
|
1571
|
-
"description": "
|
|
1572
|
-
"name": "
|
|
1573
|
-
"
|
|
1574
|
-
"
|
|
1575
|
-
"multiple": false,
|
|
1576
|
-
"type": "option"
|
|
1577
|
-
},
|
|
1578
|
-
"plural": {
|
|
1579
|
-
"description": "Folder/type key, lowercase alphanumeric + hyphens (e.g., \"bugs\")",
|
|
1580
|
-
"name": "plural",
|
|
1581
|
-
"required": true,
|
|
1582
|
-
"hasDynamicHelp": false,
|
|
1583
|
-
"multiple": false,
|
|
1584
|
-
"type": "option"
|
|
1585
|
-
},
|
|
1586
|
-
"identifier": {
|
|
1587
|
-
"description": "Identifier type for items",
|
|
1588
|
-
"name": "identifier",
|
|
1589
|
-
"required": true,
|
|
1590
|
-
"hasDynamicHelp": false,
|
|
1591
|
-
"multiple": false,
|
|
1592
|
-
"options": [
|
|
1593
|
-
"uuid",
|
|
1594
|
-
"slug"
|
|
1595
|
-
],
|
|
1596
|
-
"type": "option"
|
|
1597
|
-
},
|
|
1598
|
-
"statuses": {
|
|
1599
|
-
"description": "Comma-separated list of allowed statuses",
|
|
1600
|
-
"name": "statuses",
|
|
1601
|
-
"required": true,
|
|
1602
|
-
"hasDynamicHelp": false,
|
|
1603
|
-
"multiple": false,
|
|
1604
|
-
"type": "option"
|
|
1609
|
+
"force": {
|
|
1610
|
+
"char": "f",
|
|
1611
|
+
"description": "Skip confirmation prompt",
|
|
1612
|
+
"name": "force",
|
|
1613
|
+
"allowNo": false,
|
|
1614
|
+
"type": "boolean"
|
|
1605
1615
|
},
|
|
1606
|
-
"
|
|
1607
|
-
"description": "
|
|
1608
|
-
"name": "
|
|
1609
|
-
"required": true,
|
|
1616
|
+
"project": {
|
|
1617
|
+
"description": "Project name or path (defaults to current directory)",
|
|
1618
|
+
"name": "project",
|
|
1610
1619
|
"hasDynamicHelp": false,
|
|
1611
1620
|
"multiple": false,
|
|
1612
1621
|
"type": "option"
|
|
1613
|
-
}
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1622
|
+
}
|
|
1623
|
+
},
|
|
1624
|
+
"hasDynamicHelp": false,
|
|
1625
|
+
"hiddenAliases": [],
|
|
1626
|
+
"id": "delete:user",
|
|
1627
|
+
"pluginAlias": "centy",
|
|
1628
|
+
"pluginName": "centy",
|
|
1629
|
+
"pluginType": "core",
|
|
1630
|
+
"strict": true,
|
|
1631
|
+
"enableJsonFlag": false,
|
|
1632
|
+
"isESM": true,
|
|
1633
|
+
"relativePath": [
|
|
1634
|
+
"dist",
|
|
1635
|
+
"commands",
|
|
1636
|
+
"delete",
|
|
1637
|
+
"user.js"
|
|
1638
|
+
]
|
|
1639
|
+
},
|
|
1640
|
+
"get:asset": {
|
|
1641
|
+
"aliases": [
|
|
1642
|
+
"show:asset"
|
|
1643
|
+
],
|
|
1644
|
+
"args": {
|
|
1645
|
+
"filename": {
|
|
1646
|
+
"description": "Asset filename",
|
|
1647
|
+
"name": "filename",
|
|
1648
|
+
"required": true
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
"description": "Get an asset and save it to a file",
|
|
1652
|
+
"examples": [
|
|
1653
|
+
"<%= config.bin %> get asset screenshot.png --issue 1 --output ./screenshot.png",
|
|
1654
|
+
"<%= config.bin %> get asset logo.svg --shared --output ./logo.svg",
|
|
1655
|
+
"<%= config.bin %> get asset screenshot.png --issue 1 --project centy-daemon"
|
|
1656
|
+
],
|
|
1657
|
+
"flags": {
|
|
1658
|
+
"issue": {
|
|
1659
|
+
"char": "i",
|
|
1660
|
+
"description": "Issue ID or display number",
|
|
1661
|
+
"name": "issue",
|
|
1618
1662
|
"hasDynamicHelp": false,
|
|
1619
1663
|
"multiple": false,
|
|
1620
1664
|
"type": "option"
|
|
1621
1665
|
},
|
|
1622
|
-
"
|
|
1623
|
-
"char": "
|
|
1624
|
-
"description": "
|
|
1625
|
-
"name": "
|
|
1666
|
+
"shared": {
|
|
1667
|
+
"char": "s",
|
|
1668
|
+
"description": "Get a shared asset",
|
|
1669
|
+
"name": "shared",
|
|
1670
|
+
"allowNo": false,
|
|
1671
|
+
"type": "boolean"
|
|
1672
|
+
},
|
|
1673
|
+
"output": {
|
|
1674
|
+
"char": "o",
|
|
1675
|
+
"description": "Output file path (defaults to asset filename)",
|
|
1676
|
+
"name": "output",
|
|
1626
1677
|
"hasDynamicHelp": false,
|
|
1627
1678
|
"multiple": false,
|
|
1628
1679
|
"type": "option"
|
|
@@ -1637,7 +1688,7 @@
|
|
|
1637
1688
|
},
|
|
1638
1689
|
"hasDynamicHelp": false,
|
|
1639
1690
|
"hiddenAliases": [],
|
|
1640
|
-
"id": "
|
|
1691
|
+
"id": "get:asset",
|
|
1641
1692
|
"pluginAlias": "centy",
|
|
1642
1693
|
"pluginName": "centy",
|
|
1643
1694
|
"pluginType": "core",
|
|
@@ -1647,45 +1698,27 @@
|
|
|
1647
1698
|
"relativePath": [
|
|
1648
1699
|
"dist",
|
|
1649
1700
|
"commands",
|
|
1650
|
-
"
|
|
1651
|
-
"
|
|
1701
|
+
"get",
|
|
1702
|
+
"asset.js"
|
|
1652
1703
|
]
|
|
1653
1704
|
},
|
|
1654
|
-
"
|
|
1705
|
+
"get:org": {
|
|
1655
1706
|
"aliases": [
|
|
1656
|
-
"
|
|
1707
|
+
"get:organization"
|
|
1657
1708
|
],
|
|
1658
1709
|
"args": {
|
|
1659
|
-
"
|
|
1660
|
-
"description": "Organization
|
|
1661
|
-
"name": "
|
|
1710
|
+
"slug": {
|
|
1711
|
+
"description": "Organization slug",
|
|
1712
|
+
"name": "slug",
|
|
1662
1713
|
"required": true
|
|
1663
1714
|
}
|
|
1664
1715
|
},
|
|
1665
|
-
"description": "
|
|
1716
|
+
"description": "Get organization details by slug",
|
|
1666
1717
|
"examples": [
|
|
1667
|
-
"<%= config.bin %>
|
|
1668
|
-
"<%= config.bin %>
|
|
1669
|
-
"<%= config.bin %> create org \"My Org\" --description \"Official projects\"",
|
|
1670
|
-
"<%= config.bin %> create organization \"Work Projects\""
|
|
1718
|
+
"<%= config.bin %> get org centy-io",
|
|
1719
|
+
"<%= config.bin %> get organization my-org --json"
|
|
1671
1720
|
],
|
|
1672
1721
|
"flags": {
|
|
1673
|
-
"slug": {
|
|
1674
|
-
"char": "s",
|
|
1675
|
-
"description": "Custom slug (auto-generated from name if not provided)",
|
|
1676
|
-
"name": "slug",
|
|
1677
|
-
"hasDynamicHelp": false,
|
|
1678
|
-
"multiple": false,
|
|
1679
|
-
"type": "option"
|
|
1680
|
-
},
|
|
1681
|
-
"description": {
|
|
1682
|
-
"char": "d",
|
|
1683
|
-
"description": "Organization description",
|
|
1684
|
-
"name": "description",
|
|
1685
|
-
"hasDynamicHelp": false,
|
|
1686
|
-
"multiple": false,
|
|
1687
|
-
"type": "option"
|
|
1688
|
-
},
|
|
1689
1722
|
"json": {
|
|
1690
1723
|
"description": "Output as JSON",
|
|
1691
1724
|
"name": "json",
|
|
@@ -1695,7 +1728,7 @@
|
|
|
1695
1728
|
},
|
|
1696
1729
|
"hasDynamicHelp": false,
|
|
1697
1730
|
"hiddenAliases": [],
|
|
1698
|
-
"id": "
|
|
1731
|
+
"id": "get:org",
|
|
1699
1732
|
"pluginAlias": "centy",
|
|
1700
1733
|
"pluginName": "centy",
|
|
1701
1734
|
"pluginType": "core",
|
|
@@ -1705,71 +1738,38 @@
|
|
|
1705
1738
|
"relativePath": [
|
|
1706
1739
|
"dist",
|
|
1707
1740
|
"commands",
|
|
1708
|
-
"
|
|
1741
|
+
"get",
|
|
1709
1742
|
"org.js"
|
|
1710
1743
|
]
|
|
1711
1744
|
},
|
|
1712
|
-
"
|
|
1713
|
-
"aliases": [
|
|
1714
|
-
|
|
1715
|
-
|
|
1745
|
+
"get:project": {
|
|
1746
|
+
"aliases": [
|
|
1747
|
+
"show:project"
|
|
1748
|
+
],
|
|
1749
|
+
"args": {
|
|
1750
|
+
"path": {
|
|
1751
|
+
"description": "Path to the project (defaults to current directory)",
|
|
1752
|
+
"name": "path",
|
|
1753
|
+
"required": false
|
|
1754
|
+
}
|
|
1755
|
+
},
|
|
1756
|
+
"description": "Get info about a specific project",
|
|
1716
1757
|
"examples": [
|
|
1717
|
-
"<%= config.bin %>
|
|
1718
|
-
"<%= config.bin %>
|
|
1719
|
-
"<%= config.bin %>
|
|
1720
|
-
"<%= config.bin %> create user --name \"Bob\" --project centy-daemon"
|
|
1758
|
+
"<%= config.bin %> get project",
|
|
1759
|
+
"<%= config.bin %> get project /path/to/project",
|
|
1760
|
+
"<%= config.bin %> get project --json"
|
|
1721
1761
|
],
|
|
1722
1762
|
"flags": {
|
|
1723
|
-
"id": {
|
|
1724
|
-
"char": "i",
|
|
1725
|
-
"description": "User ID (slug format, auto-generated from name if not provided)",
|
|
1726
|
-
"name": "id",
|
|
1727
|
-
"hasDynamicHelp": false,
|
|
1728
|
-
"multiple": false,
|
|
1729
|
-
"type": "option"
|
|
1730
|
-
},
|
|
1731
|
-
"name": {
|
|
1732
|
-
"char": "n",
|
|
1733
|
-
"description": "Display name (required)",
|
|
1734
|
-
"name": "name",
|
|
1735
|
-
"required": true,
|
|
1736
|
-
"hasDynamicHelp": false,
|
|
1737
|
-
"multiple": false,
|
|
1738
|
-
"type": "option"
|
|
1739
|
-
},
|
|
1740
|
-
"email": {
|
|
1741
|
-
"char": "e",
|
|
1742
|
-
"description": "Email address",
|
|
1743
|
-
"name": "email",
|
|
1744
|
-
"hasDynamicHelp": false,
|
|
1745
|
-
"multiple": false,
|
|
1746
|
-
"type": "option"
|
|
1747
|
-
},
|
|
1748
|
-
"git-username": {
|
|
1749
|
-
"char": "g",
|
|
1750
|
-
"description": "Git username (can be specified multiple times)",
|
|
1751
|
-
"name": "git-username",
|
|
1752
|
-
"hasDynamicHelp": false,
|
|
1753
|
-
"multiple": true,
|
|
1754
|
-
"type": "option"
|
|
1755
|
-
},
|
|
1756
1763
|
"json": {
|
|
1757
1764
|
"description": "Output as JSON",
|
|
1758
1765
|
"name": "json",
|
|
1759
1766
|
"allowNo": false,
|
|
1760
1767
|
"type": "boolean"
|
|
1761
|
-
},
|
|
1762
|
-
"project": {
|
|
1763
|
-
"description": "Project name or path (defaults to current directory)",
|
|
1764
|
-
"name": "project",
|
|
1765
|
-
"hasDynamicHelp": false,
|
|
1766
|
-
"multiple": false,
|
|
1767
|
-
"type": "option"
|
|
1768
1768
|
}
|
|
1769
1769
|
},
|
|
1770
1770
|
"hasDynamicHelp": false,
|
|
1771
1771
|
"hiddenAliases": [],
|
|
1772
|
-
"id": "
|
|
1772
|
+
"id": "get:project",
|
|
1773
1773
|
"pluginAlias": "centy",
|
|
1774
1774
|
"pluginName": "centy",
|
|
1775
1775
|
"pluginType": "core",
|
|
@@ -1779,8 +1779,8 @@
|
|
|
1779
1779
|
"relativePath": [
|
|
1780
1780
|
"dist",
|
|
1781
1781
|
"commands",
|
|
1782
|
-
"
|
|
1783
|
-
"
|
|
1782
|
+
"get",
|
|
1783
|
+
"project.js"
|
|
1784
1784
|
]
|
|
1785
1785
|
},
|
|
1786
1786
|
"list:assets": {
|
|
@@ -2259,6 +2259,46 @@
|
|
|
2259
2259
|
"issue.js"
|
|
2260
2260
|
]
|
|
2261
2261
|
},
|
|
2262
|
+
"register:project": {
|
|
2263
|
+
"aliases": [],
|
|
2264
|
+
"args": {
|
|
2265
|
+
"path": {
|
|
2266
|
+
"description": "Path to the project (defaults to current directory)",
|
|
2267
|
+
"name": "path",
|
|
2268
|
+
"required": false
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2271
|
+
"description": "Register a project for tracking",
|
|
2272
|
+
"examples": [
|
|
2273
|
+
"<%= config.bin %> register project",
|
|
2274
|
+
"<%= config.bin %> register project /path/to/project",
|
|
2275
|
+
"<%= config.bin %> register project --no-init"
|
|
2276
|
+
],
|
|
2277
|
+
"flags": {
|
|
2278
|
+
"init": {
|
|
2279
|
+
"char": "i",
|
|
2280
|
+
"description": "Initialize .centy folder if not already initialized",
|
|
2281
|
+
"name": "init",
|
|
2282
|
+
"allowNo": true,
|
|
2283
|
+
"type": "boolean"
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2286
|
+
"hasDynamicHelp": false,
|
|
2287
|
+
"hiddenAliases": [],
|
|
2288
|
+
"id": "register:project",
|
|
2289
|
+
"pluginAlias": "centy",
|
|
2290
|
+
"pluginName": "centy",
|
|
2291
|
+
"pluginType": "core",
|
|
2292
|
+
"strict": true,
|
|
2293
|
+
"enableJsonFlag": false,
|
|
2294
|
+
"isESM": true,
|
|
2295
|
+
"relativePath": [
|
|
2296
|
+
"dist",
|
|
2297
|
+
"commands",
|
|
2298
|
+
"register",
|
|
2299
|
+
"project.js"
|
|
2300
|
+
]
|
|
2301
|
+
},
|
|
2262
2302
|
"project:archive": {
|
|
2263
2303
|
"aliases": [],
|
|
2264
2304
|
"args": {
|
|
@@ -2457,46 +2497,6 @@
|
|
|
2457
2497
|
"title.js"
|
|
2458
2498
|
]
|
|
2459
2499
|
},
|
|
2460
|
-
"register:project": {
|
|
2461
|
-
"aliases": [],
|
|
2462
|
-
"args": {
|
|
2463
|
-
"path": {
|
|
2464
|
-
"description": "Path to the project (defaults to current directory)",
|
|
2465
|
-
"name": "path",
|
|
2466
|
-
"required": false
|
|
2467
|
-
}
|
|
2468
|
-
},
|
|
2469
|
-
"description": "Register a project for tracking",
|
|
2470
|
-
"examples": [
|
|
2471
|
-
"<%= config.bin %> register project",
|
|
2472
|
-
"<%= config.bin %> register project /path/to/project",
|
|
2473
|
-
"<%= config.bin %> register project --no-init"
|
|
2474
|
-
],
|
|
2475
|
-
"flags": {
|
|
2476
|
-
"init": {
|
|
2477
|
-
"char": "i",
|
|
2478
|
-
"description": "Initialize .centy folder if not already initialized",
|
|
2479
|
-
"name": "init",
|
|
2480
|
-
"allowNo": true,
|
|
2481
|
-
"type": "boolean"
|
|
2482
|
-
}
|
|
2483
|
-
},
|
|
2484
|
-
"hasDynamicHelp": false,
|
|
2485
|
-
"hiddenAliases": [],
|
|
2486
|
-
"id": "register:project",
|
|
2487
|
-
"pluginAlias": "centy",
|
|
2488
|
-
"pluginName": "centy",
|
|
2489
|
-
"pluginType": "core",
|
|
2490
|
-
"strict": true,
|
|
2491
|
-
"enableJsonFlag": false,
|
|
2492
|
-
"isESM": true,
|
|
2493
|
-
"relativePath": [
|
|
2494
|
-
"dist",
|
|
2495
|
-
"commands",
|
|
2496
|
-
"register",
|
|
2497
|
-
"project.js"
|
|
2498
|
-
]
|
|
2499
|
-
},
|
|
2500
2500
|
"sync:users": {
|
|
2501
2501
|
"aliases": [],
|
|
2502
2502
|
"args": {},
|
|
@@ -3035,5 +3035,5 @@
|
|
|
3035
3035
|
]
|
|
3036
3036
|
}
|
|
3037
3037
|
},
|
|
3038
|
-
"version": "0.
|
|
3038
|
+
"version": "0.6.0"
|
|
3039
3039
|
}
|