@bussolabs/closeyourit-cli 0.23.1 → 0.24.2
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 +3 -0
- package/dist/base.d.ts +12 -0
- package/dist/base.js +16 -0
- package/dist/commands/coverage/show.d.ts +10 -0
- package/dist/commands/coverage/show.js +39 -0
- package/dist/commands/tickets/clarifications.d.ts +21 -0
- package/dist/commands/tickets/clarifications.js +36 -0
- package/dist/commands/usage/list.d.ts +12 -0
- package/dist/commands/usage/list.js +43 -0
- package/dist/commands/usage/reporters.d.ts +10 -0
- package/dist/commands/usage/reporters.js +37 -0
- package/dist/lib/api.d.ts +12 -0
- package/dist/lib/api.js +25 -3
- package/dist/lib/ticket-clarifications.d.ts +13 -0
- package/dist/lib/ticket-clarifications.js +31 -0
- package/oclif.manifest.json +8325 -6114
- package/opencli.json +1658 -2
- package/package.json +106 -1
package/opencli.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"opencli": "0.1",
|
|
4
4
|
"info": {
|
|
5
5
|
"title": "closeyourit",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.24.2",
|
|
7
7
|
"description": "CLI for CloseYourIt — manage org, errors, tokens and tickets with your user token",
|
|
8
8
|
"license": {
|
|
9
9
|
"name": "MIT",
|
|
@@ -60,10 +60,17 @@
|
|
|
60
60
|
"commands": [
|
|
61
61
|
{
|
|
62
62
|
"name": "tokens",
|
|
63
|
+
"description": "The automator tokens themselves: create, list, revoke (the secret is shown only once)",
|
|
63
64
|
"commands": [
|
|
64
65
|
{
|
|
65
66
|
"name": "create",
|
|
66
67
|
"description": "Create an org automator token (cyi_a_ — the secret is shown only once)",
|
|
68
|
+
"options": [
|
|
69
|
+
{
|
|
70
|
+
"name": "--yes",
|
|
71
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
67
74
|
"arguments": [
|
|
68
75
|
{
|
|
69
76
|
"name": "NAME",
|
|
@@ -79,6 +86,10 @@
|
|
|
79
86
|
"name": "list",
|
|
80
87
|
"description": "List the org automator tokens (closeyourit-automator authenticates with these)",
|
|
81
88
|
"options": [
|
|
89
|
+
{
|
|
90
|
+
"name": "--yes",
|
|
91
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
92
|
+
},
|
|
82
93
|
{
|
|
83
94
|
"name": "--page",
|
|
84
95
|
"description": "Page number",
|
|
@@ -98,6 +109,10 @@
|
|
|
98
109
|
"name": "revoke",
|
|
99
110
|
"description": "Revoke an org automator token (the automator using it stops syncing)",
|
|
100
111
|
"options": [
|
|
112
|
+
{
|
|
113
|
+
"name": "--yes",
|
|
114
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
115
|
+
},
|
|
101
116
|
{
|
|
102
117
|
"name": "--confirm",
|
|
103
118
|
"description": "Required: confirm the revocation"
|
|
@@ -120,14 +135,20 @@
|
|
|
120
135
|
},
|
|
121
136
|
{
|
|
122
137
|
"name": "alerts",
|
|
138
|
+
"description": "Alert rules, external delivery channels and your own notifications",
|
|
123
139
|
"commands": [
|
|
124
140
|
{
|
|
125
141
|
"name": "channels",
|
|
142
|
+
"description": "External delivery channels for alerts (webhook, Telegram)",
|
|
126
143
|
"commands": [
|
|
127
144
|
{
|
|
128
145
|
"name": "create",
|
|
129
146
|
"description": "Create an external alert channel (webhook or Telegram)",
|
|
130
147
|
"options": [
|
|
148
|
+
{
|
|
149
|
+
"name": "--yes",
|
|
150
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
151
|
+
},
|
|
131
152
|
{
|
|
132
153
|
"name": "--kind",
|
|
133
154
|
"description": "Channel kind",
|
|
@@ -200,6 +221,10 @@
|
|
|
200
221
|
"name": "delete",
|
|
201
222
|
"description": "Delete an external alert channel (rules keep delivering in-app/email)",
|
|
202
223
|
"options": [
|
|
224
|
+
{
|
|
225
|
+
"name": "--yes",
|
|
226
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
227
|
+
},
|
|
203
228
|
{
|
|
204
229
|
"name": "--confirm",
|
|
205
230
|
"description": "Required: confirm the deletion"
|
|
@@ -220,6 +245,10 @@
|
|
|
220
245
|
"name": "list",
|
|
221
246
|
"description": "List the external alert channels (webhook / Telegram)",
|
|
222
247
|
"options": [
|
|
248
|
+
{
|
|
249
|
+
"name": "--yes",
|
|
250
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
251
|
+
},
|
|
223
252
|
{
|
|
224
253
|
"name": "--page",
|
|
225
254
|
"description": "Page number",
|
|
@@ -241,6 +270,10 @@
|
|
|
241
270
|
"name": "create",
|
|
242
271
|
"description": "Create an alert rule in your organization",
|
|
243
272
|
"options": [
|
|
273
|
+
{
|
|
274
|
+
"name": "--yes",
|
|
275
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
276
|
+
},
|
|
244
277
|
{
|
|
245
278
|
"name": "--event-type",
|
|
246
279
|
"description": "Event that triggers the rule",
|
|
@@ -389,6 +422,10 @@
|
|
|
389
422
|
"name": "delete",
|
|
390
423
|
"description": "Delete an alert rule",
|
|
391
424
|
"options": [
|
|
425
|
+
{
|
|
426
|
+
"name": "--yes",
|
|
427
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
428
|
+
},
|
|
392
429
|
{
|
|
393
430
|
"name": "--confirm",
|
|
394
431
|
"description": "Required: confirm the deletion"
|
|
@@ -409,6 +446,10 @@
|
|
|
409
446
|
"name": "list",
|
|
410
447
|
"description": "List the alert rules in your organization",
|
|
411
448
|
"options": [
|
|
449
|
+
{
|
|
450
|
+
"name": "--yes",
|
|
451
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
452
|
+
},
|
|
412
453
|
{
|
|
413
454
|
"name": "--page",
|
|
414
455
|
"description": "Page number",
|
|
@@ -427,11 +468,16 @@
|
|
|
427
468
|
},
|
|
428
469
|
{
|
|
429
470
|
"name": "notifications",
|
|
471
|
+
"description": "Your in-app notification inbox: list, mark read, delete",
|
|
430
472
|
"commands": [
|
|
431
473
|
{
|
|
432
474
|
"name": "delete",
|
|
433
475
|
"description": "Delete one of your notifications (irreversible)",
|
|
434
476
|
"options": [
|
|
477
|
+
{
|
|
478
|
+
"name": "--yes",
|
|
479
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
480
|
+
},
|
|
435
481
|
{
|
|
436
482
|
"name": "--confirm",
|
|
437
483
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -452,6 +498,10 @@
|
|
|
452
498
|
"name": "list",
|
|
453
499
|
"description": "List your in-app alert notifications (your own inbox)",
|
|
454
500
|
"options": [
|
|
501
|
+
{
|
|
502
|
+
"name": "--yes",
|
|
503
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
504
|
+
},
|
|
455
505
|
{
|
|
456
506
|
"name": "--page",
|
|
457
507
|
"description": "Page number",
|
|
@@ -471,6 +521,12 @@
|
|
|
471
521
|
{
|
|
472
522
|
"name": "read",
|
|
473
523
|
"description": "Mark a single notification as read (idempotent)",
|
|
524
|
+
"options": [
|
|
525
|
+
{
|
|
526
|
+
"name": "--yes",
|
|
527
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
528
|
+
}
|
|
529
|
+
],
|
|
474
530
|
"arguments": [
|
|
475
531
|
{
|
|
476
532
|
"name": "ID",
|
|
@@ -485,6 +541,12 @@
|
|
|
485
541
|
{
|
|
486
542
|
"name": "read-all",
|
|
487
543
|
"description": "Mark all your unread notifications as read",
|
|
544
|
+
"options": [
|
|
545
|
+
{
|
|
546
|
+
"name": "--yes",
|
|
547
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
548
|
+
}
|
|
549
|
+
],
|
|
488
550
|
"examples": [
|
|
489
551
|
"closeyourit alerts notifications read-all"
|
|
490
552
|
]
|
|
@@ -493,10 +555,17 @@
|
|
|
493
555
|
},
|
|
494
556
|
{
|
|
495
557
|
"name": "preferences",
|
|
558
|
+
"description": "Your personal alert preferences, per organization",
|
|
496
559
|
"commands": [
|
|
497
560
|
{
|
|
498
561
|
"name": "show",
|
|
499
562
|
"description": "Show your personal alert preferences (per organization)",
|
|
563
|
+
"options": [
|
|
564
|
+
{
|
|
565
|
+
"name": "--yes",
|
|
566
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
567
|
+
}
|
|
568
|
+
],
|
|
500
569
|
"examples": [
|
|
501
570
|
"closeyourit alerts preferences show"
|
|
502
571
|
]
|
|
@@ -505,6 +574,10 @@
|
|
|
505
574
|
"name": "update",
|
|
506
575
|
"description": "Update your personal alert preferences (send only the fields you want to change)",
|
|
507
576
|
"options": [
|
|
577
|
+
{
|
|
578
|
+
"name": "--yes",
|
|
579
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
580
|
+
},
|
|
508
581
|
{
|
|
509
582
|
"name": "--in-app-enabled",
|
|
510
583
|
"description": "Deliver notifications in-app"
|
|
@@ -588,6 +661,12 @@
|
|
|
588
661
|
{
|
|
589
662
|
"name": "show",
|
|
590
663
|
"description": "Show a single alert rule",
|
|
664
|
+
"options": [
|
|
665
|
+
{
|
|
666
|
+
"name": "--yes",
|
|
667
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
591
670
|
"arguments": [
|
|
592
671
|
{
|
|
593
672
|
"name": "ID",
|
|
@@ -603,6 +682,10 @@
|
|
|
603
682
|
"name": "update",
|
|
604
683
|
"description": "Update an alert rule (send only the fields you want to change)",
|
|
605
684
|
"options": [
|
|
685
|
+
{
|
|
686
|
+
"name": "--yes",
|
|
687
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
688
|
+
},
|
|
606
689
|
{
|
|
607
690
|
"name": "--name",
|
|
608
691
|
"description": "Rule name",
|
|
@@ -764,11 +847,16 @@
|
|
|
764
847
|
"commands": [
|
|
765
848
|
{
|
|
766
849
|
"name": "goals",
|
|
850
|
+
"description": "Conversion goals of a project: create, list, delete",
|
|
767
851
|
"commands": [
|
|
768
852
|
{
|
|
769
853
|
"name": "create",
|
|
770
854
|
"description": "Create a conversion goal on a project",
|
|
771
855
|
"options": [
|
|
856
|
+
{
|
|
857
|
+
"name": "--yes",
|
|
858
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
859
|
+
},
|
|
772
860
|
{
|
|
773
861
|
"name": "--project",
|
|
774
862
|
"aliases": [
|
|
@@ -839,6 +927,10 @@
|
|
|
839
927
|
"name": "delete",
|
|
840
928
|
"description": "Delete a conversion goal (irreversible)",
|
|
841
929
|
"options": [
|
|
930
|
+
{
|
|
931
|
+
"name": "--yes",
|
|
932
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
933
|
+
},
|
|
842
934
|
{
|
|
843
935
|
"name": "--project",
|
|
844
936
|
"aliases": [
|
|
@@ -873,6 +965,10 @@
|
|
|
873
965
|
"name": "list",
|
|
874
966
|
"description": "List the conversion goals of a project",
|
|
875
967
|
"options": [
|
|
968
|
+
{
|
|
969
|
+
"name": "--yes",
|
|
970
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
971
|
+
},
|
|
876
972
|
{
|
|
877
973
|
"name": "--project",
|
|
878
974
|
"aliases": [
|
|
@@ -898,6 +994,10 @@
|
|
|
898
994
|
"name": "share",
|
|
899
995
|
"description": "Publish a public shareable link to the analytics dashboard (optional password)",
|
|
900
996
|
"options": [
|
|
997
|
+
{
|
|
998
|
+
"name": "--yes",
|
|
999
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1000
|
+
},
|
|
901
1001
|
{
|
|
902
1002
|
"name": "--project",
|
|
903
1003
|
"aliases": [
|
|
@@ -932,6 +1032,10 @@
|
|
|
932
1032
|
"name": "show",
|
|
933
1033
|
"description": "Show the web analytics snapshot for a project (traffic, top pages, goals)",
|
|
934
1034
|
"options": [
|
|
1035
|
+
{
|
|
1036
|
+
"name": "--yes",
|
|
1037
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1038
|
+
},
|
|
935
1039
|
{
|
|
936
1040
|
"name": "--project",
|
|
937
1041
|
"aliases": [
|
|
@@ -982,6 +1086,10 @@
|
|
|
982
1086
|
"name": "unshare",
|
|
983
1087
|
"description": "Revoke the public analytics dashboard link",
|
|
984
1088
|
"options": [
|
|
1089
|
+
{
|
|
1090
|
+
"name": "--yes",
|
|
1091
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1092
|
+
},
|
|
985
1093
|
{
|
|
986
1094
|
"name": "--project",
|
|
987
1095
|
"aliases": [
|
|
@@ -1015,6 +1123,10 @@
|
|
|
1015
1123
|
"name": "ask",
|
|
1016
1124
|
"description": "Ask the assistant a question about your own data; it reads what you are allowed to see and answers (may take a while)",
|
|
1017
1125
|
"options": [
|
|
1126
|
+
{
|
|
1127
|
+
"name": "--yes",
|
|
1128
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1129
|
+
},
|
|
1018
1130
|
{
|
|
1019
1131
|
"name": "--conversation",
|
|
1020
1132
|
"aliases": [
|
|
@@ -1059,6 +1171,10 @@
|
|
|
1059
1171
|
"name": "create",
|
|
1060
1172
|
"description": "Open an empty conversation with the assistant (ask questions into it with `assistant ask --conversation`)",
|
|
1061
1173
|
"options": [
|
|
1174
|
+
{
|
|
1175
|
+
"name": "--yes",
|
|
1176
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1177
|
+
},
|
|
1062
1178
|
{
|
|
1063
1179
|
"name": "--title",
|
|
1064
1180
|
"description": "Conversation title (defaults to the first question asked)",
|
|
@@ -1079,6 +1195,10 @@
|
|
|
1079
1195
|
"name": "delete",
|
|
1080
1196
|
"description": "Delete a conversation with the assistant, questions and answers included (irreversible)",
|
|
1081
1197
|
"options": [
|
|
1198
|
+
{
|
|
1199
|
+
"name": "--yes",
|
|
1200
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1201
|
+
},
|
|
1082
1202
|
{
|
|
1083
1203
|
"name": "--confirm",
|
|
1084
1204
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -1099,6 +1219,10 @@
|
|
|
1099
1219
|
"name": "list",
|
|
1100
1220
|
"description": "List your conversations with the assistant (most recently active first)",
|
|
1101
1221
|
"options": [
|
|
1222
|
+
{
|
|
1223
|
+
"name": "--yes",
|
|
1224
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1225
|
+
},
|
|
1102
1226
|
{
|
|
1103
1227
|
"name": "--per",
|
|
1104
1228
|
"description": "Page size",
|
|
@@ -1128,6 +1252,12 @@
|
|
|
1128
1252
|
{
|
|
1129
1253
|
"name": "show",
|
|
1130
1254
|
"description": "Read one conversation with the assistant: its questions, its answers and what they were based on",
|
|
1255
|
+
"options": [
|
|
1256
|
+
{
|
|
1257
|
+
"name": "--yes",
|
|
1258
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1259
|
+
}
|
|
1260
|
+
],
|
|
1131
1261
|
"arguments": [
|
|
1132
1262
|
{
|
|
1133
1263
|
"name": "ID",
|
|
@@ -1143,6 +1273,51 @@
|
|
|
1143
1273
|
}
|
|
1144
1274
|
]
|
|
1145
1275
|
},
|
|
1276
|
+
{
|
|
1277
|
+
"name": "coverage",
|
|
1278
|
+
"description": "Test coverage published by the CI (last snapshot per branch)",
|
|
1279
|
+
"commands": [
|
|
1280
|
+
{
|
|
1281
|
+
"name": "show",
|
|
1282
|
+
"description": "Show the coverage extract the CI published for a project (last snapshot per branch, never the history)",
|
|
1283
|
+
"options": [
|
|
1284
|
+
{
|
|
1285
|
+
"name": "--yes",
|
|
1286
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"name": "--project",
|
|
1290
|
+
"aliases": [
|
|
1291
|
+
"-p"
|
|
1292
|
+
],
|
|
1293
|
+
"description": "Project id (UUID) or key",
|
|
1294
|
+
"required": true,
|
|
1295
|
+
"arguments": [
|
|
1296
|
+
{
|
|
1297
|
+
"name": "PROJECT",
|
|
1298
|
+
"required": true
|
|
1299
|
+
}
|
|
1300
|
+
]
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"name": "--branch",
|
|
1304
|
+
"description": "Only the extract of this branch",
|
|
1305
|
+
"arguments": [
|
|
1306
|
+
{
|
|
1307
|
+
"name": "BRANCH",
|
|
1308
|
+
"required": true
|
|
1309
|
+
}
|
|
1310
|
+
]
|
|
1311
|
+
}
|
|
1312
|
+
],
|
|
1313
|
+
"examples": [
|
|
1314
|
+
"closeyourit coverage show --project closeyourit-rails",
|
|
1315
|
+
"closeyourit coverage show -p CYRA --branch main",
|
|
1316
|
+
"closeyourit coverage show -p CYRA --json"
|
|
1317
|
+
]
|
|
1318
|
+
}
|
|
1319
|
+
]
|
|
1320
|
+
},
|
|
1146
1321
|
{
|
|
1147
1322
|
"name": "cron-monitors",
|
|
1148
1323
|
"description": "Cron/heartbeat monitors (read-only)",
|
|
@@ -1151,6 +1326,10 @@
|
|
|
1151
1326
|
"name": "list",
|
|
1152
1327
|
"description": "List cron / heartbeat monitors across your visible projects",
|
|
1153
1328
|
"options": [
|
|
1329
|
+
{
|
|
1330
|
+
"name": "--yes",
|
|
1331
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1332
|
+
},
|
|
1154
1333
|
{
|
|
1155
1334
|
"name": "--page",
|
|
1156
1335
|
"description": "Page number",
|
|
@@ -1199,6 +1378,12 @@
|
|
|
1199
1378
|
{
|
|
1200
1379
|
"name": "show",
|
|
1201
1380
|
"description": "Show a cron / heartbeat monitor",
|
|
1381
|
+
"options": [
|
|
1382
|
+
{
|
|
1383
|
+
"name": "--yes",
|
|
1384
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1385
|
+
}
|
|
1386
|
+
],
|
|
1202
1387
|
"arguments": [
|
|
1203
1388
|
{
|
|
1204
1389
|
"name": "ID",
|
|
@@ -1214,11 +1399,16 @@
|
|
|
1214
1399
|
},
|
|
1215
1400
|
{
|
|
1216
1401
|
"name": "environments",
|
|
1402
|
+
"description": "Environments (production, staging, …) shared by projects, tokens and monitors",
|
|
1217
1403
|
"commands": [
|
|
1218
1404
|
{
|
|
1219
1405
|
"name": "create",
|
|
1220
1406
|
"description": "Create an environment (production, staging, …) in your organization",
|
|
1221
1407
|
"options": [
|
|
1408
|
+
{
|
|
1409
|
+
"name": "--yes",
|
|
1410
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1411
|
+
},
|
|
1222
1412
|
{
|
|
1223
1413
|
"name": "--label",
|
|
1224
1414
|
"description": "Human-readable label",
|
|
@@ -1284,6 +1474,10 @@
|
|
|
1284
1474
|
"name": "delete",
|
|
1285
1475
|
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
1286
1476
|
"options": [
|
|
1477
|
+
{
|
|
1478
|
+
"name": "--yes",
|
|
1479
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1480
|
+
},
|
|
1287
1481
|
{
|
|
1288
1482
|
"name": "--confirm",
|
|
1289
1483
|
"description": "Required: confirm the deletion"
|
|
@@ -1304,6 +1498,10 @@
|
|
|
1304
1498
|
"name": "list",
|
|
1305
1499
|
"description": "List the environments (production, staging, …) in your organization",
|
|
1306
1500
|
"options": [
|
|
1501
|
+
{
|
|
1502
|
+
"name": "--yes",
|
|
1503
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1504
|
+
},
|
|
1307
1505
|
{
|
|
1308
1506
|
"name": "--page",
|
|
1309
1507
|
"description": "Page number",
|
|
@@ -1324,6 +1522,10 @@
|
|
|
1324
1522
|
"name": "update",
|
|
1325
1523
|
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
1326
1524
|
"options": [
|
|
1525
|
+
{
|
|
1526
|
+
"name": "--yes",
|
|
1527
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1528
|
+
},
|
|
1327
1529
|
{
|
|
1328
1530
|
"name": "--code",
|
|
1329
1531
|
"description": "New code (lowercase)",
|
|
@@ -1405,6 +1607,10 @@
|
|
|
1405
1607
|
"name": "assign",
|
|
1406
1608
|
"description": "Put an error group in someone's hands, or take it out (--unassign)",
|
|
1407
1609
|
"options": [
|
|
1610
|
+
{
|
|
1611
|
+
"name": "--yes",
|
|
1612
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1613
|
+
},
|
|
1408
1614
|
{
|
|
1409
1615
|
"name": "--project",
|
|
1410
1616
|
"aliases": [
|
|
@@ -1450,6 +1656,10 @@
|
|
|
1450
1656
|
"name": "bulk-triage",
|
|
1451
1657
|
"description": "Resolve, ignore or reopen several error groups in one call",
|
|
1452
1658
|
"options": [
|
|
1659
|
+
{
|
|
1660
|
+
"name": "--yes",
|
|
1661
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1662
|
+
},
|
|
1453
1663
|
{
|
|
1454
1664
|
"name": "--project",
|
|
1455
1665
|
"aliases": [
|
|
@@ -1501,6 +1711,10 @@
|
|
|
1501
1711
|
"name": "delete",
|
|
1502
1712
|
"description": "Delete an error group and every occurrence it holds (irreversible)",
|
|
1503
1713
|
"options": [
|
|
1714
|
+
{
|
|
1715
|
+
"name": "--yes",
|
|
1716
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1717
|
+
},
|
|
1504
1718
|
{
|
|
1505
1719
|
"name": "--project",
|
|
1506
1720
|
"aliases": [
|
|
@@ -1539,6 +1753,10 @@
|
|
|
1539
1753
|
"name": "create",
|
|
1540
1754
|
"description": "Add a grouping rule: occurrences that match it are grouped under one key",
|
|
1541
1755
|
"options": [
|
|
1756
|
+
{
|
|
1757
|
+
"name": "--yes",
|
|
1758
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1759
|
+
},
|
|
1542
1760
|
{
|
|
1543
1761
|
"name": "--project",
|
|
1544
1762
|
"aliases": [
|
|
@@ -1632,6 +1850,10 @@
|
|
|
1632
1850
|
"name": "delete",
|
|
1633
1851
|
"description": "Delete a grouping rule (the groups it already made stay where they are)",
|
|
1634
1852
|
"options": [
|
|
1853
|
+
{
|
|
1854
|
+
"name": "--yes",
|
|
1855
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1856
|
+
},
|
|
1635
1857
|
{
|
|
1636
1858
|
"name": "--project",
|
|
1637
1859
|
"aliases": [
|
|
@@ -1666,6 +1888,10 @@
|
|
|
1666
1888
|
"name": "list",
|
|
1667
1889
|
"description": "List the custom grouping rules of a project, in the order they are applied",
|
|
1668
1890
|
"options": [
|
|
1891
|
+
{
|
|
1892
|
+
"name": "--yes",
|
|
1893
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1894
|
+
},
|
|
1669
1895
|
{
|
|
1670
1896
|
"name": "--project",
|
|
1671
1897
|
"aliases": [
|
|
@@ -1699,6 +1925,10 @@
|
|
|
1699
1925
|
"name": "update",
|
|
1700
1926
|
"description": "Change a grouping rule: what it matches, where it sends, when it runs, or turn it off",
|
|
1701
1927
|
"options": [
|
|
1928
|
+
{
|
|
1929
|
+
"name": "--yes",
|
|
1930
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
1931
|
+
},
|
|
1702
1932
|
{
|
|
1703
1933
|
"name": "--project",
|
|
1704
1934
|
"aliases": [
|
|
@@ -1798,6 +2028,10 @@
|
|
|
1798
2028
|
"name": "list",
|
|
1799
2029
|
"description": "List error groups for a project",
|
|
1800
2030
|
"options": [
|
|
2031
|
+
{
|
|
2032
|
+
"name": "--yes",
|
|
2033
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2034
|
+
},
|
|
1801
2035
|
{
|
|
1802
2036
|
"name": "--project",
|
|
1803
2037
|
"aliases": [
|
|
@@ -1842,6 +2076,10 @@
|
|
|
1842
2076
|
"name": "merge",
|
|
1843
2077
|
"description": "Merge error groups into one: the occurrences move, the absorbed groups disappear (irreversible)",
|
|
1844
2078
|
"options": [
|
|
2079
|
+
{
|
|
2080
|
+
"name": "--yes",
|
|
2081
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2082
|
+
},
|
|
1845
2083
|
{
|
|
1846
2084
|
"name": "--project",
|
|
1847
2085
|
"aliases": [
|
|
@@ -1887,6 +2125,10 @@
|
|
|
1887
2125
|
"name": "mute",
|
|
1888
2126
|
"description": "Mute an error group",
|
|
1889
2127
|
"options": [
|
|
2128
|
+
{
|
|
2129
|
+
"name": "--yes",
|
|
2130
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2131
|
+
},
|
|
1890
2132
|
{
|
|
1891
2133
|
"name": "--project",
|
|
1892
2134
|
"aliases": [
|
|
@@ -1917,6 +2159,10 @@
|
|
|
1917
2159
|
"name": "promote",
|
|
1918
2160
|
"description": "Promote an error group to a ticket",
|
|
1919
2161
|
"options": [
|
|
2162
|
+
{
|
|
2163
|
+
"name": "--yes",
|
|
2164
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2165
|
+
},
|
|
1920
2166
|
{
|
|
1921
2167
|
"name": "--project",
|
|
1922
2168
|
"aliases": [
|
|
@@ -1947,6 +2193,10 @@
|
|
|
1947
2193
|
"name": "reopen",
|
|
1948
2194
|
"description": "Reopen a resolved error group",
|
|
1949
2195
|
"options": [
|
|
2196
|
+
{
|
|
2197
|
+
"name": "--yes",
|
|
2198
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2199
|
+
},
|
|
1950
2200
|
{
|
|
1951
2201
|
"name": "--project",
|
|
1952
2202
|
"aliases": [
|
|
@@ -1977,6 +2227,10 @@
|
|
|
1977
2227
|
"name": "resolve",
|
|
1978
2228
|
"description": "Mark an error group as resolved",
|
|
1979
2229
|
"options": [
|
|
2230
|
+
{
|
|
2231
|
+
"name": "--yes",
|
|
2232
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2233
|
+
},
|
|
1980
2234
|
{
|
|
1981
2235
|
"name": "--project",
|
|
1982
2236
|
"aliases": [
|
|
@@ -2007,6 +2261,10 @@
|
|
|
2007
2261
|
"name": "show",
|
|
2008
2262
|
"description": "Show a single error group",
|
|
2009
2263
|
"options": [
|
|
2264
|
+
{
|
|
2265
|
+
"name": "--yes",
|
|
2266
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2267
|
+
},
|
|
2010
2268
|
{
|
|
2011
2269
|
"name": "--project",
|
|
2012
2270
|
"aliases": [
|
|
@@ -2037,6 +2295,10 @@
|
|
|
2037
2295
|
"name": "split",
|
|
2038
2296
|
"description": "Split an error group: pull some occurrences out into a new one",
|
|
2039
2297
|
"options": [
|
|
2298
|
+
{
|
|
2299
|
+
"name": "--yes",
|
|
2300
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2301
|
+
},
|
|
2040
2302
|
{
|
|
2041
2303
|
"name": "--project",
|
|
2042
2304
|
"aliases": [
|
|
@@ -2078,6 +2340,10 @@
|
|
|
2078
2340
|
"name": "unmute",
|
|
2079
2341
|
"description": "Unmute an error group",
|
|
2080
2342
|
"options": [
|
|
2343
|
+
{
|
|
2344
|
+
"name": "--yes",
|
|
2345
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2346
|
+
},
|
|
2081
2347
|
{
|
|
2082
2348
|
"name": "--project",
|
|
2083
2349
|
"aliases": [
|
|
@@ -2108,11 +2374,16 @@
|
|
|
2108
2374
|
},
|
|
2109
2375
|
{
|
|
2110
2376
|
"name": "groups",
|
|
2377
|
+
"description": "Groups: containers of related projects (macro-projects)",
|
|
2111
2378
|
"commands": [
|
|
2112
2379
|
{
|
|
2113
2380
|
"name": "create",
|
|
2114
2381
|
"description": "Create a group (a container of related projects, e.g. \"DriverOne\")",
|
|
2115
2382
|
"options": [
|
|
2383
|
+
{
|
|
2384
|
+
"name": "--yes",
|
|
2385
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2386
|
+
},
|
|
2116
2387
|
{
|
|
2117
2388
|
"name": "--color",
|
|
2118
2389
|
"description": "Color label",
|
|
@@ -2140,6 +2411,10 @@
|
|
|
2140
2411
|
"name": "delete",
|
|
2141
2412
|
"description": "Delete a group (its projects are detached, not deleted)",
|
|
2142
2413
|
"options": [
|
|
2414
|
+
{
|
|
2415
|
+
"name": "--yes",
|
|
2416
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2417
|
+
},
|
|
2143
2418
|
{
|
|
2144
2419
|
"name": "--confirm",
|
|
2145
2420
|
"description": "Required: confirm the deletion"
|
|
@@ -2160,6 +2435,10 @@
|
|
|
2160
2435
|
"name": "list",
|
|
2161
2436
|
"description": "List the groups (macro-projects) in your organization",
|
|
2162
2437
|
"options": [
|
|
2438
|
+
{
|
|
2439
|
+
"name": "--yes",
|
|
2440
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2441
|
+
},
|
|
2163
2442
|
{
|
|
2164
2443
|
"name": "--page",
|
|
2165
2444
|
"description": "Page number",
|
|
@@ -2180,6 +2459,10 @@
|
|
|
2180
2459
|
"name": "update",
|
|
2181
2460
|
"description": "Update a group (rename, recolor)",
|
|
2182
2461
|
"options": [
|
|
2462
|
+
{
|
|
2463
|
+
"name": "--yes",
|
|
2464
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2465
|
+
},
|
|
2183
2466
|
{
|
|
2184
2467
|
"name": "--name",
|
|
2185
2468
|
"description": "New name",
|
|
@@ -2223,6 +2506,10 @@
|
|
|
2223
2506
|
"name": "show",
|
|
2224
2507
|
"description": "Show a project's effective guidance: the references and procedures resolved by the backend (the CLI never recomposes inheritance)",
|
|
2225
2508
|
"options": [
|
|
2509
|
+
{
|
|
2510
|
+
"name": "--yes",
|
|
2511
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2512
|
+
},
|
|
2226
2513
|
{
|
|
2227
2514
|
"name": "--project",
|
|
2228
2515
|
"aliases": [
|
|
@@ -2254,6 +2541,10 @@
|
|
|
2254
2541
|
"name": "archive",
|
|
2255
2542
|
"description": "Archive an idea (open → archived; author always allowed, others need ideas.edit)",
|
|
2256
2543
|
"options": [
|
|
2544
|
+
{
|
|
2545
|
+
"name": "--yes",
|
|
2546
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2547
|
+
},
|
|
2257
2548
|
{
|
|
2258
2549
|
"name": "--project",
|
|
2259
2550
|
"aliases": [
|
|
@@ -2284,6 +2575,10 @@
|
|
|
2284
2575
|
"name": "case",
|
|
2285
2576
|
"description": "Add a case (example/scenario) to an idea (only open ideas accept cases)",
|
|
2286
2577
|
"options": [
|
|
2578
|
+
{
|
|
2579
|
+
"name": "--yes",
|
|
2580
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2581
|
+
},
|
|
2287
2582
|
{
|
|
2288
2583
|
"name": "--project",
|
|
2289
2584
|
"aliases": [
|
|
@@ -2335,6 +2630,10 @@
|
|
|
2335
2630
|
"name": "case-delete",
|
|
2336
2631
|
"description": "Delete a case from an open idea (author always allowed, others need ideas.edit)",
|
|
2337
2632
|
"options": [
|
|
2633
|
+
{
|
|
2634
|
+
"name": "--yes",
|
|
2635
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2636
|
+
},
|
|
2338
2637
|
{
|
|
2339
2638
|
"name": "--project",
|
|
2340
2639
|
"aliases": [
|
|
@@ -2374,6 +2673,10 @@
|
|
|
2374
2673
|
"name": "case-update",
|
|
2375
2674
|
"description": "Update a case (example/scenario) of an idea (title and/or description)",
|
|
2376
2675
|
"options": [
|
|
2676
|
+
{
|
|
2677
|
+
"name": "--yes",
|
|
2678
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2679
|
+
},
|
|
2377
2680
|
{
|
|
2378
2681
|
"name": "--project",
|
|
2379
2682
|
"aliases": [
|
|
@@ -2430,6 +2733,10 @@
|
|
|
2430
2733
|
"name": "comment",
|
|
2431
2734
|
"description": "Add a comment to an idea (only open ideas accept comments)",
|
|
2432
2735
|
"options": [
|
|
2736
|
+
{
|
|
2737
|
+
"name": "--yes",
|
|
2738
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2739
|
+
},
|
|
2433
2740
|
{
|
|
2434
2741
|
"name": "--project",
|
|
2435
2742
|
"aliases": [
|
|
@@ -2471,6 +2778,10 @@
|
|
|
2471
2778
|
"name": "comment-delete",
|
|
2472
2779
|
"description": "Delete a comment from an open idea (author, or with ideas.comment.delete_any)",
|
|
2473
2780
|
"options": [
|
|
2781
|
+
{
|
|
2782
|
+
"name": "--yes",
|
|
2783
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2784
|
+
},
|
|
2474
2785
|
{
|
|
2475
2786
|
"name": "--project",
|
|
2476
2787
|
"aliases": [
|
|
@@ -2516,6 +2827,10 @@
|
|
|
2516
2827
|
"name": "comments",
|
|
2517
2828
|
"description": "List all comments of an idea (oldest first)",
|
|
2518
2829
|
"options": [
|
|
2830
|
+
{
|
|
2831
|
+
"name": "--yes",
|
|
2832
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2833
|
+
},
|
|
2519
2834
|
{
|
|
2520
2835
|
"name": "--project",
|
|
2521
2836
|
"aliases": [
|
|
@@ -2547,6 +2862,10 @@
|
|
|
2547
2862
|
"name": "convert",
|
|
2548
2863
|
"description": "Convert an idea into a ticket. Without --title/--description the server AI synthesizes the draft from the idea and its comments (may take ~30s). Author always allowed; others need ideas.convert.",
|
|
2549
2864
|
"options": [
|
|
2865
|
+
{
|
|
2866
|
+
"name": "--yes",
|
|
2867
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2868
|
+
},
|
|
2550
2869
|
{
|
|
2551
2870
|
"name": "--project",
|
|
2552
2871
|
"aliases": [
|
|
@@ -2634,6 +2953,10 @@
|
|
|
2634
2953
|
"name": "create",
|
|
2635
2954
|
"description": "Propose an idea for a project",
|
|
2636
2955
|
"options": [
|
|
2956
|
+
{
|
|
2957
|
+
"name": "--yes",
|
|
2958
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
2959
|
+
},
|
|
2637
2960
|
{
|
|
2638
2961
|
"name": "--project",
|
|
2639
2962
|
"aliases": [
|
|
@@ -2699,6 +3022,10 @@
|
|
|
2699
3022
|
"name": "delete",
|
|
2700
3023
|
"description": "Delete an idea (author always allowed; others need ideas.delete)",
|
|
2701
3024
|
"options": [
|
|
3025
|
+
{
|
|
3026
|
+
"name": "--yes",
|
|
3027
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3028
|
+
},
|
|
2702
3029
|
{
|
|
2703
3030
|
"name": "--project",
|
|
2704
3031
|
"aliases": [
|
|
@@ -2733,6 +3060,10 @@
|
|
|
2733
3060
|
"name": "list",
|
|
2734
3061
|
"description": "List ideas for a project (sorted by votes)",
|
|
2735
3062
|
"options": [
|
|
3063
|
+
{
|
|
3064
|
+
"name": "--yes",
|
|
3065
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3066
|
+
},
|
|
2736
3067
|
{
|
|
2737
3068
|
"name": "--project",
|
|
2738
3069
|
"aliases": [
|
|
@@ -2787,6 +3118,10 @@
|
|
|
2787
3118
|
"name": "show",
|
|
2788
3119
|
"description": "Show an idea (fields + problem, solution, stakeholders)",
|
|
2789
3120
|
"options": [
|
|
3121
|
+
{
|
|
3122
|
+
"name": "--yes",
|
|
3123
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3124
|
+
},
|
|
2790
3125
|
{
|
|
2791
3126
|
"name": "--project",
|
|
2792
3127
|
"aliases": [
|
|
@@ -2817,6 +3152,10 @@
|
|
|
2817
3152
|
"name": "unarchive",
|
|
2818
3153
|
"description": "Reopen an archived idea (archived → open; author always allowed, others need ideas.edit)",
|
|
2819
3154
|
"options": [
|
|
3155
|
+
{
|
|
3156
|
+
"name": "--yes",
|
|
3157
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3158
|
+
},
|
|
2820
3159
|
{
|
|
2821
3160
|
"name": "--project",
|
|
2822
3161
|
"aliases": [
|
|
@@ -2847,6 +3186,10 @@
|
|
|
2847
3186
|
"name": "unvote",
|
|
2848
3187
|
"description": "Remove your upvote from an idea (idempotent)",
|
|
2849
3188
|
"options": [
|
|
3189
|
+
{
|
|
3190
|
+
"name": "--yes",
|
|
3191
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3192
|
+
},
|
|
2850
3193
|
{
|
|
2851
3194
|
"name": "--project",
|
|
2852
3195
|
"aliases": [
|
|
@@ -2877,6 +3220,10 @@
|
|
|
2877
3220
|
"name": "update",
|
|
2878
3221
|
"description": "Update an idea (full replace of title/problem/solution — omitted fields are cleared)",
|
|
2879
3222
|
"options": [
|
|
3223
|
+
{
|
|
3224
|
+
"name": "--yes",
|
|
3225
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3226
|
+
},
|
|
2880
3227
|
{
|
|
2881
3228
|
"name": "--project",
|
|
2882
3229
|
"aliases": [
|
|
@@ -2947,6 +3294,10 @@
|
|
|
2947
3294
|
"name": "vote",
|
|
2948
3295
|
"description": "Upvote an idea (idempotent; only open ideas accept votes)",
|
|
2949
3296
|
"options": [
|
|
3297
|
+
{
|
|
3298
|
+
"name": "--yes",
|
|
3299
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3300
|
+
},
|
|
2950
3301
|
{
|
|
2951
3302
|
"name": "--project",
|
|
2952
3303
|
"aliases": [
|
|
@@ -2977,11 +3328,16 @@
|
|
|
2977
3328
|
},
|
|
2978
3329
|
{
|
|
2979
3330
|
"name": "invitations",
|
|
3331
|
+
"description": "Invitations to join the organization: create, resend, revoke",
|
|
2980
3332
|
"commands": [
|
|
2981
3333
|
{
|
|
2982
3334
|
"name": "create",
|
|
2983
3335
|
"description": "Invite a person to the organization. Prints the acceptance link.",
|
|
2984
3336
|
"options": [
|
|
3337
|
+
{
|
|
3338
|
+
"name": "--yes",
|
|
3339
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3340
|
+
},
|
|
2985
3341
|
{
|
|
2986
3342
|
"name": "--role",
|
|
2987
3343
|
"description": "Membership role",
|
|
@@ -3014,6 +3370,10 @@
|
|
|
3014
3370
|
"name": "list",
|
|
3015
3371
|
"description": "List the pending/accepted invitations of your organization",
|
|
3016
3372
|
"options": [
|
|
3373
|
+
{
|
|
3374
|
+
"name": "--yes",
|
|
3375
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3376
|
+
},
|
|
3017
3377
|
{
|
|
3018
3378
|
"name": "--page",
|
|
3019
3379
|
"description": "Page number",
|
|
@@ -3033,6 +3393,12 @@
|
|
|
3033
3393
|
{
|
|
3034
3394
|
"name": "resend",
|
|
3035
3395
|
"description": "Resend a pending invitation. Prints the acceptance link.",
|
|
3396
|
+
"options": [
|
|
3397
|
+
{
|
|
3398
|
+
"name": "--yes",
|
|
3399
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3400
|
+
}
|
|
3401
|
+
],
|
|
3036
3402
|
"arguments": [
|
|
3037
3403
|
{
|
|
3038
3404
|
"name": "ID",
|
|
@@ -3047,6 +3413,12 @@
|
|
|
3047
3413
|
{
|
|
3048
3414
|
"name": "revoke",
|
|
3049
3415
|
"description": "Revoke a pending invitation",
|
|
3416
|
+
"options": [
|
|
3417
|
+
{
|
|
3418
|
+
"name": "--yes",
|
|
3419
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3420
|
+
}
|
|
3421
|
+
],
|
|
3050
3422
|
"arguments": [
|
|
3051
3423
|
{
|
|
3052
3424
|
"name": "ID",
|
|
@@ -3067,6 +3439,12 @@
|
|
|
3067
3439
|
{
|
|
3068
3440
|
"name": "ask",
|
|
3069
3441
|
"description": "Ask a natural-language question; the server AI answers from the knowledge base and cites the pages it used (may take a few seconds)",
|
|
3442
|
+
"options": [
|
|
3443
|
+
{
|
|
3444
|
+
"name": "--yes",
|
|
3445
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3446
|
+
}
|
|
3447
|
+
],
|
|
3070
3448
|
"arguments": [
|
|
3071
3449
|
{
|
|
3072
3450
|
"name": "QUESTION",
|
|
@@ -3082,6 +3460,10 @@
|
|
|
3082
3460
|
"name": "attach",
|
|
3083
3461
|
"description": "Attach one or more local files to a knowledge page",
|
|
3084
3462
|
"options": [
|
|
3463
|
+
{
|
|
3464
|
+
"name": "--yes",
|
|
3465
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3466
|
+
},
|
|
3085
3467
|
{
|
|
3086
3468
|
"name": "--file",
|
|
3087
3469
|
"description": "Path to a local file to upload (repeatable)",
|
|
@@ -3110,6 +3492,10 @@
|
|
|
3110
3492
|
"name": "attachment-download",
|
|
3111
3493
|
"description": "Download a knowledge page's attachment to disk",
|
|
3112
3494
|
"options": [
|
|
3495
|
+
{
|
|
3496
|
+
"name": "--yes",
|
|
3497
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3498
|
+
},
|
|
3113
3499
|
{
|
|
3114
3500
|
"name": "--out",
|
|
3115
3501
|
"description": "Output directory",
|
|
@@ -3151,6 +3537,12 @@
|
|
|
3151
3537
|
{
|
|
3152
3538
|
"name": "attachments",
|
|
3153
3539
|
"description": "List a knowledge page's attachments",
|
|
3540
|
+
"options": [
|
|
3541
|
+
{
|
|
3542
|
+
"name": "--yes",
|
|
3543
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3544
|
+
}
|
|
3545
|
+
],
|
|
3154
3546
|
"arguments": [
|
|
3155
3547
|
{
|
|
3156
3548
|
"name": "ID",
|
|
@@ -3171,6 +3563,10 @@
|
|
|
3171
3563
|
"name": "add-page",
|
|
3172
3564
|
"description": "Add a knowledge page to a book, optionally at a given position in the summary",
|
|
3173
3565
|
"options": [
|
|
3566
|
+
{
|
|
3567
|
+
"name": "--yes",
|
|
3568
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3569
|
+
},
|
|
3174
3570
|
{
|
|
3175
3571
|
"name": "--page",
|
|
3176
3572
|
"description": "Id of the knowledge page to add (an id, not a page number; alias: --page-id)",
|
|
@@ -3210,6 +3606,10 @@
|
|
|
3210
3606
|
"name": "list",
|
|
3211
3607
|
"description": "List knowledge books (ordered collections of pages) across the projects you can see",
|
|
3212
3608
|
"options": [
|
|
3609
|
+
{
|
|
3610
|
+
"name": "--yes",
|
|
3611
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3612
|
+
},
|
|
3213
3613
|
{
|
|
3214
3614
|
"name": "--project",
|
|
3215
3615
|
"aliases": [
|
|
@@ -3264,6 +3664,12 @@
|
|
|
3264
3664
|
{
|
|
3265
3665
|
"name": "show",
|
|
3266
3666
|
"description": "Show a knowledge book: its metadata, then the summary of the pages it collects",
|
|
3667
|
+
"options": [
|
|
3668
|
+
{
|
|
3669
|
+
"name": "--yes",
|
|
3670
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3671
|
+
}
|
|
3672
|
+
],
|
|
3267
3673
|
"arguments": [
|
|
3268
3674
|
{
|
|
3269
3675
|
"name": "ID",
|
|
@@ -3282,6 +3688,10 @@
|
|
|
3282
3688
|
"name": "consolidate",
|
|
3283
3689
|
"description": "Mark an accepted page as written to the versioned docs, recording its path",
|
|
3284
3690
|
"options": [
|
|
3691
|
+
{
|
|
3692
|
+
"name": "--yes",
|
|
3693
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3694
|
+
},
|
|
3285
3695
|
{
|
|
3286
3696
|
"name": "--path",
|
|
3287
3697
|
"description": "Path of the document inside the knowledge-base repo",
|
|
@@ -3310,6 +3720,10 @@
|
|
|
3310
3720
|
"name": "create",
|
|
3311
3721
|
"description": "Create a knowledge page in one or more projects (and groups)",
|
|
3312
3722
|
"options": [
|
|
3723
|
+
{
|
|
3724
|
+
"name": "--yes",
|
|
3725
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3726
|
+
},
|
|
3313
3727
|
{
|
|
3314
3728
|
"name": "--project",
|
|
3315
3729
|
"aliases": [
|
|
@@ -3441,6 +3855,10 @@
|
|
|
3441
3855
|
"name": "delete",
|
|
3442
3856
|
"description": "Delete a knowledge page (irreversible)",
|
|
3443
3857
|
"options": [
|
|
3858
|
+
{
|
|
3859
|
+
"name": "--yes",
|
|
3860
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3861
|
+
},
|
|
3444
3862
|
{
|
|
3445
3863
|
"name": "--confirm",
|
|
3446
3864
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -3461,6 +3879,10 @@
|
|
|
3461
3879
|
"name": "detach",
|
|
3462
3880
|
"description": "Remove an attachment from a knowledge page (irreversible)",
|
|
3463
3881
|
"options": [
|
|
3882
|
+
{
|
|
3883
|
+
"name": "--yes",
|
|
3884
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3885
|
+
},
|
|
3464
3886
|
{
|
|
3465
3887
|
"name": "--attachment",
|
|
3466
3888
|
"description": "Attachment id to remove",
|
|
@@ -3492,6 +3914,10 @@
|
|
|
3492
3914
|
"name": "list",
|
|
3493
3915
|
"description": "List knowledge pages across the projects you can see",
|
|
3494
3916
|
"options": [
|
|
3917
|
+
{
|
|
3918
|
+
"name": "--yes",
|
|
3919
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3920
|
+
},
|
|
3495
3921
|
{
|
|
3496
3922
|
"name": "--project",
|
|
3497
3923
|
"aliases": [
|
|
@@ -3568,6 +3994,10 @@
|
|
|
3568
3994
|
"name": "publish",
|
|
3569
3995
|
"description": "Idempotently create or update a Knowledge page by publication key.\n\nExactly one of --body or --body-file is required.",
|
|
3570
3996
|
"options": [
|
|
3997
|
+
{
|
|
3998
|
+
"name": "--yes",
|
|
3999
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4000
|
+
},
|
|
3571
4001
|
{
|
|
3572
4002
|
"name": "--project",
|
|
3573
4003
|
"aliases": [
|
|
@@ -3644,6 +4074,10 @@
|
|
|
3644
4074
|
"name": "related",
|
|
3645
4075
|
"description": "List the pages to read next: the ones this page links to (and that link to it), plus close matches by meaning",
|
|
3646
4076
|
"options": [
|
|
4077
|
+
{
|
|
4078
|
+
"name": "--yes",
|
|
4079
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4080
|
+
},
|
|
3647
4081
|
{
|
|
3648
4082
|
"name": "--question",
|
|
3649
4083
|
"description": "Keep only the pages relevant to this question",
|
|
@@ -3676,6 +4110,10 @@
|
|
|
3676
4110
|
"name": "search",
|
|
3677
4111
|
"description": "Search knowledge pages (semantic when available, ILIKE fallback on the title otherwise)",
|
|
3678
4112
|
"options": [
|
|
4113
|
+
{
|
|
4114
|
+
"name": "--yes",
|
|
4115
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4116
|
+
},
|
|
3679
4117
|
{
|
|
3680
4118
|
"name": "--project",
|
|
3681
4119
|
"aliases": [
|
|
@@ -3741,6 +4179,10 @@
|
|
|
3741
4179
|
"name": "show",
|
|
3742
4180
|
"description": "Show a single knowledge page: metadata header then the raw markdown body",
|
|
3743
4181
|
"options": [
|
|
4182
|
+
{
|
|
4183
|
+
"name": "--yes",
|
|
4184
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4185
|
+
},
|
|
3744
4186
|
{
|
|
3745
4187
|
"name": "--related",
|
|
3746
4188
|
"description": "Also list the pages to read next"
|
|
@@ -3773,6 +4215,10 @@
|
|
|
3773
4215
|
"name": "update",
|
|
3774
4216
|
"description": "Update a knowledge page (only the fields you pass; the others keep their current value)",
|
|
3775
4217
|
"options": [
|
|
4218
|
+
{
|
|
4219
|
+
"name": "--yes",
|
|
4220
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4221
|
+
},
|
|
3776
4222
|
{
|
|
3777
4223
|
"name": "--title",
|
|
3778
4224
|
"description": "New title (max 255 characters)",
|
|
@@ -3898,6 +4344,10 @@
|
|
|
3898
4344
|
"name": "login",
|
|
3899
4345
|
"description": "Authenticate via the device flow and store your CLI token",
|
|
3900
4346
|
"options": [
|
|
4347
|
+
{
|
|
4348
|
+
"name": "--yes",
|
|
4349
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4350
|
+
},
|
|
3901
4351
|
{
|
|
3902
4352
|
"name": "--api-url",
|
|
3903
4353
|
"description": "Backend base URL to authenticate against (persisted)",
|
|
@@ -3917,6 +4367,12 @@
|
|
|
3917
4367
|
{
|
|
3918
4368
|
"name": "logout",
|
|
3919
4369
|
"description": "Clear the locally stored token and identity",
|
|
4370
|
+
"options": [
|
|
4371
|
+
{
|
|
4372
|
+
"name": "--yes",
|
|
4373
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4374
|
+
}
|
|
4375
|
+
],
|
|
3920
4376
|
"examples": [
|
|
3921
4377
|
"closeyourit logout"
|
|
3922
4378
|
]
|
|
@@ -3929,6 +4385,10 @@
|
|
|
3929
4385
|
"name": "link",
|
|
3930
4386
|
"description": "Manually link a log entry to an error group or a ticket",
|
|
3931
4387
|
"options": [
|
|
4388
|
+
{
|
|
4389
|
+
"name": "--yes",
|
|
4390
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4391
|
+
},
|
|
3932
4392
|
{
|
|
3933
4393
|
"name": "--to",
|
|
3934
4394
|
"description": "Target to link: \"Errors::Group:<uuid>\" or \"Ticketing::Ticket:<uuid>\"",
|
|
@@ -3957,6 +4417,10 @@
|
|
|
3957
4417
|
"name": "list",
|
|
3958
4418
|
"description": "List structured log entries (cross-app stream)",
|
|
3959
4419
|
"options": [
|
|
4420
|
+
{
|
|
4421
|
+
"name": "--yes",
|
|
4422
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4423
|
+
},
|
|
3960
4424
|
{
|
|
3961
4425
|
"name": "--project",
|
|
3962
4426
|
"aliases": [
|
|
@@ -4020,6 +4484,12 @@
|
|
|
4020
4484
|
{
|
|
4021
4485
|
"name": "show",
|
|
4022
4486
|
"description": "Show a single log entry (attributes, trace id, correlation)",
|
|
4487
|
+
"options": [
|
|
4488
|
+
{
|
|
4489
|
+
"name": "--yes",
|
|
4490
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4491
|
+
}
|
|
4492
|
+
],
|
|
4023
4493
|
"arguments": [
|
|
4024
4494
|
{
|
|
4025
4495
|
"name": "ID",
|
|
@@ -4035,6 +4505,10 @@
|
|
|
4035
4505
|
"name": "unlink",
|
|
4036
4506
|
"description": "Remove a manual log↔target link (irreversible)",
|
|
4037
4507
|
"options": [
|
|
4508
|
+
{
|
|
4509
|
+
"name": "--yes",
|
|
4510
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4511
|
+
},
|
|
4038
4512
|
{
|
|
4039
4513
|
"name": "--confirm",
|
|
4040
4514
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -4064,11 +4538,16 @@
|
|
|
4064
4538
|
"commands": [
|
|
4065
4539
|
{
|
|
4066
4540
|
"name": "categories",
|
|
4541
|
+
"description": "Feature groups (categories): how the rows of a product matrix are organized",
|
|
4067
4542
|
"commands": [
|
|
4068
4543
|
{
|
|
4069
4544
|
"name": "create",
|
|
4070
4545
|
"description": "Create a feature group (category) in a product matrix",
|
|
4071
4546
|
"options": [
|
|
4547
|
+
{
|
|
4548
|
+
"name": "--yes",
|
|
4549
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4550
|
+
},
|
|
4072
4551
|
{
|
|
4073
4552
|
"name": "--name",
|
|
4074
4553
|
"description": "Category name (unique within the product)",
|
|
@@ -4107,6 +4586,10 @@
|
|
|
4107
4586
|
"name": "delete",
|
|
4108
4587
|
"description": "Delete a feature group (only when empty: move or delete its features first)",
|
|
4109
4588
|
"options": [
|
|
4589
|
+
{
|
|
4590
|
+
"name": "--yes",
|
|
4591
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4592
|
+
},
|
|
4110
4593
|
{
|
|
4111
4594
|
"name": "--confirm",
|
|
4112
4595
|
"description": "Required: confirm the deletion"
|
|
@@ -4132,6 +4615,10 @@
|
|
|
4132
4615
|
"name": "list",
|
|
4133
4616
|
"description": "List the feature groups (categories) of a product matrix",
|
|
4134
4617
|
"options": [
|
|
4618
|
+
{
|
|
4619
|
+
"name": "--yes",
|
|
4620
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4621
|
+
},
|
|
4135
4622
|
{
|
|
4136
4623
|
"name": "--page",
|
|
4137
4624
|
"description": "Page number",
|
|
@@ -4158,6 +4645,10 @@
|
|
|
4158
4645
|
"name": "update",
|
|
4159
4646
|
"description": "Update a feature group (rename or reorder); unpassed fields keep their value",
|
|
4160
4647
|
"options": [
|
|
4648
|
+
{
|
|
4649
|
+
"name": "--yes",
|
|
4650
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4651
|
+
},
|
|
4161
4652
|
{
|
|
4162
4653
|
"name": "--name",
|
|
4163
4654
|
"description": "New name",
|
|
@@ -4200,11 +4691,16 @@
|
|
|
4200
4691
|
},
|
|
4201
4692
|
{
|
|
4202
4693
|
"name": "cells",
|
|
4694
|
+
"description": "Matrix cells: how far a feature is on a platform, and since which version",
|
|
4203
4695
|
"commands": [
|
|
4204
4696
|
{
|
|
4205
4697
|
"name": "clear",
|
|
4206
4698
|
"description": "Clear a matrix cell: the crossing goes back to \"not set\"",
|
|
4207
4699
|
"options": [
|
|
4700
|
+
{
|
|
4701
|
+
"name": "--yes",
|
|
4702
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4703
|
+
},
|
|
4208
4704
|
{
|
|
4209
4705
|
"name": "--confirm",
|
|
4210
4706
|
"description": "Required: confirm clearing the cell"
|
|
@@ -4235,6 +4731,10 @@
|
|
|
4235
4731
|
"name": "set",
|
|
4236
4732
|
"description": "Write a matrix cell: how far along a feature is on a platform, and since which version",
|
|
4237
4733
|
"options": [
|
|
4734
|
+
{
|
|
4735
|
+
"name": "--yes",
|
|
4736
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4737
|
+
},
|
|
4238
4738
|
{
|
|
4239
4739
|
"name": "--status",
|
|
4240
4740
|
"description": "Status code (see: matrix statuses) or id",
|
|
@@ -4283,11 +4783,16 @@
|
|
|
4283
4783
|
},
|
|
4284
4784
|
{
|
|
4285
4785
|
"name": "features",
|
|
4786
|
+
"description": "Features: the rows of a product matrix",
|
|
4286
4787
|
"commands": [
|
|
4287
4788
|
{
|
|
4288
4789
|
"name": "create",
|
|
4289
4790
|
"description": "Create a feature (a row of the matrix) inside a category",
|
|
4290
4791
|
"options": [
|
|
4792
|
+
{
|
|
4793
|
+
"name": "--yes",
|
|
4794
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4795
|
+
},
|
|
4291
4796
|
{
|
|
4292
4797
|
"name": "--category",
|
|
4293
4798
|
"description": "Category id (UUID) or name",
|
|
@@ -4357,6 +4862,10 @@
|
|
|
4357
4862
|
"name": "delete",
|
|
4358
4863
|
"description": "Delete a feature and every cell written for it (irreversible)",
|
|
4359
4864
|
"options": [
|
|
4865
|
+
{
|
|
4866
|
+
"name": "--yes",
|
|
4867
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4868
|
+
},
|
|
4360
4869
|
{
|
|
4361
4870
|
"name": "--confirm",
|
|
4362
4871
|
"description": "Required: confirm the deletion"
|
|
@@ -4382,6 +4891,10 @@
|
|
|
4382
4891
|
"name": "list",
|
|
4383
4892
|
"description": "List the features of a product matrix",
|
|
4384
4893
|
"options": [
|
|
4894
|
+
{
|
|
4895
|
+
"name": "--yes",
|
|
4896
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4897
|
+
},
|
|
4385
4898
|
{
|
|
4386
4899
|
"name": "--page",
|
|
4387
4900
|
"description": "Page number",
|
|
@@ -4418,6 +4931,12 @@
|
|
|
4418
4931
|
{
|
|
4419
4932
|
"name": "show",
|
|
4420
4933
|
"description": "Show one feature and the cells written for it",
|
|
4934
|
+
"options": [
|
|
4935
|
+
{
|
|
4936
|
+
"name": "--yes",
|
|
4937
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4938
|
+
}
|
|
4939
|
+
],
|
|
4421
4940
|
"arguments": [
|
|
4422
4941
|
{
|
|
4423
4942
|
"name": "PRODUCT",
|
|
@@ -4438,6 +4957,10 @@
|
|
|
4438
4957
|
"name": "update",
|
|
4439
4958
|
"description": "Update a feature (rename, move to another category, …); unpassed fields keep their value",
|
|
4440
4959
|
"options": [
|
|
4960
|
+
{
|
|
4961
|
+
"name": "--yes",
|
|
4962
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4963
|
+
},
|
|
4441
4964
|
{
|
|
4442
4965
|
"name": "--name",
|
|
4443
4966
|
"description": "New name",
|
|
@@ -4512,6 +5035,10 @@
|
|
|
4512
5035
|
"name": "list",
|
|
4513
5036
|
"description": "List the products (groups) whose feature matrix you can see",
|
|
4514
5037
|
"options": [
|
|
5038
|
+
{
|
|
5039
|
+
"name": "--yes",
|
|
5040
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5041
|
+
},
|
|
4515
5042
|
{
|
|
4516
5043
|
"name": "--page",
|
|
4517
5044
|
"description": "Page number",
|
|
@@ -4531,6 +5058,12 @@
|
|
|
4531
5058
|
{
|
|
4532
5059
|
"name": "show",
|
|
4533
5060
|
"description": "Show a product feature matrix: features in rows, platforms in columns",
|
|
5061
|
+
"options": [
|
|
5062
|
+
{
|
|
5063
|
+
"name": "--yes",
|
|
5064
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5065
|
+
}
|
|
5066
|
+
],
|
|
4534
5067
|
"arguments": [
|
|
4535
5068
|
{
|
|
4536
5069
|
"name": "PRODUCT",
|
|
@@ -4546,6 +5079,12 @@
|
|
|
4546
5079
|
{
|
|
4547
5080
|
"name": "statuses",
|
|
4548
5081
|
"description": "List the cell statuses of your organization (the codes accepted by matrix cells set)",
|
|
5082
|
+
"options": [
|
|
5083
|
+
{
|
|
5084
|
+
"name": "--yes",
|
|
5085
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5086
|
+
}
|
|
5087
|
+
],
|
|
4549
5088
|
"examples": [
|
|
4550
5089
|
"closeyourit matrix statuses",
|
|
4551
5090
|
"closeyourit matrix statuses --json"
|
|
@@ -4555,11 +5094,16 @@
|
|
|
4555
5094
|
},
|
|
4556
5095
|
{
|
|
4557
5096
|
"name": "members",
|
|
5097
|
+
"description": "Organization members: profile, role, access scope",
|
|
4558
5098
|
"commands": [
|
|
4559
5099
|
{
|
|
4560
5100
|
"name": "list",
|
|
4561
5101
|
"description": "List the members of your organization (to resolve emails to account ids)",
|
|
4562
5102
|
"options": [
|
|
5103
|
+
{
|
|
5104
|
+
"name": "--yes",
|
|
5105
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5106
|
+
},
|
|
4563
5107
|
{
|
|
4564
5108
|
"name": "--page",
|
|
4565
5109
|
"description": "Page number",
|
|
@@ -4580,6 +5124,10 @@
|
|
|
4580
5124
|
"name": "remove",
|
|
4581
5125
|
"description": "Remove a member from your organization (irreversible; requires members.manage)",
|
|
4582
5126
|
"options": [
|
|
5127
|
+
{
|
|
5128
|
+
"name": "--yes",
|
|
5129
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5130
|
+
},
|
|
4583
5131
|
{
|
|
4584
5132
|
"name": "--confirm",
|
|
4585
5133
|
"description": "Required: confirm the irreversible removal"
|
|
@@ -4600,6 +5148,10 @@
|
|
|
4600
5148
|
"name": "set-access",
|
|
4601
5149
|
"description": "Set a member's access: group/project scope, direct roles, and permission overrides",
|
|
4602
5150
|
"options": [
|
|
5151
|
+
{
|
|
5152
|
+
"name": "--yes",
|
|
5153
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5154
|
+
},
|
|
4603
5155
|
{
|
|
4604
5156
|
"name": "--group",
|
|
4605
5157
|
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
@@ -4659,6 +5211,10 @@
|
|
|
4659
5211
|
"name": "set-role",
|
|
4660
5212
|
"description": "Change a member's organization role",
|
|
4661
5213
|
"options": [
|
|
5214
|
+
{
|
|
5215
|
+
"name": "--yes",
|
|
5216
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5217
|
+
},
|
|
4662
5218
|
{
|
|
4663
5219
|
"name": "--role",
|
|
4664
5220
|
"description": "Organization role",
|
|
@@ -4693,6 +5249,10 @@
|
|
|
4693
5249
|
"name": "update",
|
|
4694
5250
|
"description": "Update a member's profile: name, email, handle (requires members.edit)",
|
|
4695
5251
|
"options": [
|
|
5252
|
+
{
|
|
5253
|
+
"name": "--yes",
|
|
5254
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5255
|
+
},
|
|
4696
5256
|
{
|
|
4697
5257
|
"name": "--name",
|
|
4698
5258
|
"description": "New display name",
|
|
@@ -4746,6 +5306,10 @@
|
|
|
4746
5306
|
"name": "bulk-triage",
|
|
4747
5307
|
"description": "Resolve, ignore or reopen several metric groups in one call",
|
|
4748
5308
|
"options": [
|
|
5309
|
+
{
|
|
5310
|
+
"name": "--yes",
|
|
5311
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5312
|
+
},
|
|
4749
5313
|
{
|
|
4750
5314
|
"name": "--project",
|
|
4751
5315
|
"aliases": [
|
|
@@ -4797,6 +5361,10 @@
|
|
|
4797
5361
|
"name": "list",
|
|
4798
5362
|
"description": "List performance metric groups (slow queries/methods) for a project",
|
|
4799
5363
|
"options": [
|
|
5364
|
+
{
|
|
5365
|
+
"name": "--yes",
|
|
5366
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5367
|
+
},
|
|
4800
5368
|
{
|
|
4801
5369
|
"name": "--project",
|
|
4802
5370
|
"aliases": [
|
|
@@ -4841,6 +5409,10 @@
|
|
|
4841
5409
|
"name": "promote",
|
|
4842
5410
|
"description": "Promote a metric group (slow query/method) to a ticket",
|
|
4843
5411
|
"options": [
|
|
5412
|
+
{
|
|
5413
|
+
"name": "--yes",
|
|
5414
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5415
|
+
},
|
|
4844
5416
|
{
|
|
4845
5417
|
"name": "--project",
|
|
4846
5418
|
"aliases": [
|
|
@@ -4871,6 +5443,10 @@
|
|
|
4871
5443
|
"name": "show",
|
|
4872
5444
|
"description": "Show a single metric group",
|
|
4873
5445
|
"options": [
|
|
5446
|
+
{
|
|
5447
|
+
"name": "--yes",
|
|
5448
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5449
|
+
},
|
|
4874
5450
|
{
|
|
4875
5451
|
"name": "--project",
|
|
4876
5452
|
"aliases": [
|
|
@@ -4901,11 +5477,16 @@
|
|
|
4901
5477
|
},
|
|
4902
5478
|
{
|
|
4903
5479
|
"name": "milestones",
|
|
5480
|
+
"description": "Project milestones: dated goals a ticket can be assigned to",
|
|
4904
5481
|
"commands": [
|
|
4905
5482
|
{
|
|
4906
5483
|
"name": "create",
|
|
4907
5484
|
"description": "Create a milestone for a project",
|
|
4908
5485
|
"options": [
|
|
5486
|
+
{
|
|
5487
|
+
"name": "--yes",
|
|
5488
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5489
|
+
},
|
|
4909
5490
|
{
|
|
4910
5491
|
"name": "--project",
|
|
4911
5492
|
"aliases": [
|
|
@@ -4976,6 +5557,10 @@
|
|
|
4976
5557
|
"name": "delete",
|
|
4977
5558
|
"description": "Delete a milestone (irreversible)",
|
|
4978
5559
|
"options": [
|
|
5560
|
+
{
|
|
5561
|
+
"name": "--yes",
|
|
5562
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5563
|
+
},
|
|
4979
5564
|
{
|
|
4980
5565
|
"name": "--project",
|
|
4981
5566
|
"aliases": [
|
|
@@ -5010,6 +5595,10 @@
|
|
|
5010
5595
|
"name": "list",
|
|
5011
5596
|
"description": "List the milestones for a project",
|
|
5012
5597
|
"options": [
|
|
5598
|
+
{
|
|
5599
|
+
"name": "--yes",
|
|
5600
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5601
|
+
},
|
|
5013
5602
|
{
|
|
5014
5603
|
"name": "--project",
|
|
5015
5604
|
"aliases": [
|
|
@@ -5044,6 +5633,10 @@
|
|
|
5044
5633
|
"name": "show",
|
|
5045
5634
|
"description": "Show a single milestone",
|
|
5046
5635
|
"options": [
|
|
5636
|
+
{
|
|
5637
|
+
"name": "--yes",
|
|
5638
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5639
|
+
},
|
|
5047
5640
|
{
|
|
5048
5641
|
"name": "--project",
|
|
5049
5642
|
"aliases": [
|
|
@@ -5074,6 +5667,10 @@
|
|
|
5074
5667
|
"name": "update",
|
|
5075
5668
|
"description": "Update a milestone (send only the fields you want to change)",
|
|
5076
5669
|
"options": [
|
|
5670
|
+
{
|
|
5671
|
+
"name": "--yes",
|
|
5672
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5673
|
+
},
|
|
5077
5674
|
{
|
|
5078
5675
|
"name": "--project",
|
|
5079
5676
|
"aliases": [
|
|
@@ -5149,14 +5746,20 @@
|
|
|
5149
5746
|
},
|
|
5150
5747
|
{
|
|
5151
5748
|
"name": "monitors",
|
|
5749
|
+
"description": "Uptime monitors of a project: checks, public status page, incidents",
|
|
5152
5750
|
"commands": [
|
|
5153
5751
|
{
|
|
5154
5752
|
"name": "announcements",
|
|
5753
|
+
"description": "Announcement banner shown on a monitor's public status page",
|
|
5155
5754
|
"commands": [
|
|
5156
5755
|
{
|
|
5157
5756
|
"name": "clear",
|
|
5158
5757
|
"description": "Remove the status page announcement banner for a monitor",
|
|
5159
5758
|
"options": [
|
|
5759
|
+
{
|
|
5760
|
+
"name": "--yes",
|
|
5761
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5762
|
+
},
|
|
5160
5763
|
{
|
|
5161
5764
|
"name": "--project",
|
|
5162
5765
|
"aliases": [
|
|
@@ -5191,6 +5794,10 @@
|
|
|
5191
5794
|
"name": "set",
|
|
5192
5795
|
"description": "Upsert the status page announcement banner for a monitor",
|
|
5193
5796
|
"options": [
|
|
5797
|
+
{
|
|
5798
|
+
"name": "--yes",
|
|
5799
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5800
|
+
},
|
|
5194
5801
|
{
|
|
5195
5802
|
"name": "--project",
|
|
5196
5803
|
"aliases": [
|
|
@@ -5271,6 +5878,10 @@
|
|
|
5271
5878
|
"name": "show",
|
|
5272
5879
|
"description": "Show the status page announcement banner for a monitor (null if none)",
|
|
5273
5880
|
"options": [
|
|
5881
|
+
{
|
|
5882
|
+
"name": "--yes",
|
|
5883
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5884
|
+
},
|
|
5274
5885
|
{
|
|
5275
5886
|
"name": "--project",
|
|
5276
5887
|
"aliases": [
|
|
@@ -5303,6 +5914,10 @@
|
|
|
5303
5914
|
"name": "create",
|
|
5304
5915
|
"description": "Create an uptime monitor for a project (one per environment)",
|
|
5305
5916
|
"options": [
|
|
5917
|
+
{
|
|
5918
|
+
"name": "--yes",
|
|
5919
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
5920
|
+
},
|
|
5306
5921
|
{
|
|
5307
5922
|
"name": "--project",
|
|
5308
5923
|
"aliases": [
|
|
@@ -5418,6 +6033,10 @@
|
|
|
5418
6033
|
"name": "delete",
|
|
5419
6034
|
"description": "Delete an uptime monitor (irreversible)",
|
|
5420
6035
|
"options": [
|
|
6036
|
+
{
|
|
6037
|
+
"name": "--yes",
|
|
6038
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6039
|
+
},
|
|
5421
6040
|
{
|
|
5422
6041
|
"name": "--project",
|
|
5423
6042
|
"aliases": [
|
|
@@ -5450,11 +6069,16 @@
|
|
|
5450
6069
|
},
|
|
5451
6070
|
{
|
|
5452
6071
|
"name": "incidents",
|
|
6072
|
+
"description": "Uptime incidents: group them and narrate them step by step",
|
|
5453
6073
|
"commands": [
|
|
5454
6074
|
{
|
|
5455
6075
|
"name": "delete",
|
|
5456
6076
|
"description": "Delete an uptime incident (and its grouped windows; irreversible)",
|
|
5457
6077
|
"options": [
|
|
6078
|
+
{
|
|
6079
|
+
"name": "--yes",
|
|
6080
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6081
|
+
},
|
|
5458
6082
|
{
|
|
5459
6083
|
"name": "--project",
|
|
5460
6084
|
"aliases": [
|
|
@@ -5494,6 +6118,10 @@
|
|
|
5494
6118
|
"name": "group",
|
|
5495
6119
|
"description": "Unify incidents of a monitor and post the first narration step",
|
|
5496
6120
|
"options": [
|
|
6121
|
+
{
|
|
6122
|
+
"name": "--yes",
|
|
6123
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6124
|
+
},
|
|
5497
6125
|
{
|
|
5498
6126
|
"name": "--project",
|
|
5499
6127
|
"aliases": [
|
|
@@ -5563,6 +6191,10 @@
|
|
|
5563
6191
|
"name": "ungroup",
|
|
5564
6192
|
"description": "Dissolve an incident grouping (grouped windows become separate again)",
|
|
5565
6193
|
"options": [
|
|
6194
|
+
{
|
|
6195
|
+
"name": "--yes",
|
|
6196
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6197
|
+
},
|
|
5566
6198
|
{
|
|
5567
6199
|
"name": "--project",
|
|
5568
6200
|
"aliases": [
|
|
@@ -5609,6 +6241,10 @@
|
|
|
5609
6241
|
"name": "update-add",
|
|
5610
6242
|
"description": "Add a timeline step to a narrated incident",
|
|
5611
6243
|
"options": [
|
|
6244
|
+
{
|
|
6245
|
+
"name": "--yes",
|
|
6246
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6247
|
+
},
|
|
5612
6248
|
{
|
|
5613
6249
|
"name": "--project",
|
|
5614
6250
|
"aliases": [
|
|
@@ -5672,6 +6308,10 @@
|
|
|
5672
6308
|
"name": "update-delete",
|
|
5673
6309
|
"description": "Delete a timeline step from a narrated incident (irreversible)",
|
|
5674
6310
|
"options": [
|
|
6311
|
+
{
|
|
6312
|
+
"name": "--yes",
|
|
6313
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6314
|
+
},
|
|
5675
6315
|
{
|
|
5676
6316
|
"name": "--project",
|
|
5677
6317
|
"aliases": [
|
|
@@ -5718,6 +6358,10 @@
|
|
|
5718
6358
|
"name": "list",
|
|
5719
6359
|
"description": "List the uptime monitors for a project",
|
|
5720
6360
|
"options": [
|
|
6361
|
+
{
|
|
6362
|
+
"name": "--yes",
|
|
6363
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6364
|
+
},
|
|
5721
6365
|
{
|
|
5722
6366
|
"name": "--project",
|
|
5723
6367
|
"aliases": [
|
|
@@ -5752,6 +6396,10 @@
|
|
|
5752
6396
|
"name": "pause",
|
|
5753
6397
|
"description": "Pause an uptime monitor (stops scheduling checks)",
|
|
5754
6398
|
"options": [
|
|
6399
|
+
{
|
|
6400
|
+
"name": "--yes",
|
|
6401
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6402
|
+
},
|
|
5755
6403
|
{
|
|
5756
6404
|
"name": "--project",
|
|
5757
6405
|
"aliases": [
|
|
@@ -5782,6 +6430,10 @@
|
|
|
5782
6430
|
"name": "publish",
|
|
5783
6431
|
"description": "Publish the public status page for a monitor (opt-in)",
|
|
5784
6432
|
"options": [
|
|
6433
|
+
{
|
|
6434
|
+
"name": "--yes",
|
|
6435
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6436
|
+
},
|
|
5785
6437
|
{
|
|
5786
6438
|
"name": "--project",
|
|
5787
6439
|
"aliases": [
|
|
@@ -5812,6 +6464,10 @@
|
|
|
5812
6464
|
"name": "resume",
|
|
5813
6465
|
"description": "Resume a paused uptime monitor (re-enables scheduling)",
|
|
5814
6466
|
"options": [
|
|
6467
|
+
{
|
|
6468
|
+
"name": "--yes",
|
|
6469
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6470
|
+
},
|
|
5815
6471
|
{
|
|
5816
6472
|
"name": "--project",
|
|
5817
6473
|
"aliases": [
|
|
@@ -5842,6 +6498,10 @@
|
|
|
5842
6498
|
"name": "show",
|
|
5843
6499
|
"description": "Show a single uptime monitor",
|
|
5844
6500
|
"options": [
|
|
6501
|
+
{
|
|
6502
|
+
"name": "--yes",
|
|
6503
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6504
|
+
},
|
|
5845
6505
|
{
|
|
5846
6506
|
"name": "--project",
|
|
5847
6507
|
"aliases": [
|
|
@@ -5872,6 +6532,10 @@
|
|
|
5872
6532
|
"name": "unpublish",
|
|
5873
6533
|
"description": "Unpublish the public status page for a monitor",
|
|
5874
6534
|
"options": [
|
|
6535
|
+
{
|
|
6536
|
+
"name": "--yes",
|
|
6537
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6538
|
+
},
|
|
5875
6539
|
{
|
|
5876
6540
|
"name": "--project",
|
|
5877
6541
|
"aliases": [
|
|
@@ -5902,6 +6566,10 @@
|
|
|
5902
6566
|
"name": "update",
|
|
5903
6567
|
"description": "Update an uptime monitor (URL, method, interval, expected status, timeout)",
|
|
5904
6568
|
"options": [
|
|
6569
|
+
{
|
|
6570
|
+
"name": "--yes",
|
|
6571
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6572
|
+
},
|
|
5905
6573
|
{
|
|
5906
6574
|
"name": "--project",
|
|
5907
6575
|
"aliases": [
|
|
@@ -6013,10 +6681,17 @@
|
|
|
6013
6681
|
},
|
|
6014
6682
|
{
|
|
6015
6683
|
"name": "org",
|
|
6684
|
+
"description": "Organization settings (show and update)",
|
|
6016
6685
|
"commands": [
|
|
6017
6686
|
{
|
|
6018
6687
|
"name": "show",
|
|
6019
6688
|
"description": "Show your organization settings",
|
|
6689
|
+
"options": [
|
|
6690
|
+
{
|
|
6691
|
+
"name": "--yes",
|
|
6692
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6693
|
+
}
|
|
6694
|
+
],
|
|
6020
6695
|
"examples": [
|
|
6021
6696
|
"closeyourit org show",
|
|
6022
6697
|
"closeyourit org show --json"
|
|
@@ -6026,6 +6701,10 @@
|
|
|
6026
6701
|
"name": "update",
|
|
6027
6702
|
"description": "Update your organization settings (requires organization.manage)",
|
|
6028
6703
|
"options": [
|
|
6704
|
+
{
|
|
6705
|
+
"name": "--yes",
|
|
6706
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6707
|
+
},
|
|
6029
6708
|
{
|
|
6030
6709
|
"name": "--name",
|
|
6031
6710
|
"description": "New organization name",
|
|
@@ -6097,6 +6776,12 @@
|
|
|
6097
6776
|
{
|
|
6098
6777
|
"name": "delete",
|
|
6099
6778
|
"description": "Delete a personal secret from the current organization",
|
|
6779
|
+
"options": [
|
|
6780
|
+
{
|
|
6781
|
+
"name": "--yes",
|
|
6782
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6783
|
+
}
|
|
6784
|
+
],
|
|
6100
6785
|
"arguments": [
|
|
6101
6786
|
{
|
|
6102
6787
|
"name": "NAME",
|
|
@@ -6112,6 +6797,10 @@
|
|
|
6112
6797
|
"name": "download",
|
|
6113
6798
|
"description": "Download all your personal secrets as .env or JSON (to a file or stdout). Values with newlines: use --format json. Prefer `cyi personal run` to avoid writing plaintext to disk.",
|
|
6114
6799
|
"options": [
|
|
6800
|
+
{
|
|
6801
|
+
"name": "--yes",
|
|
6802
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6803
|
+
},
|
|
6115
6804
|
{
|
|
6116
6805
|
"name": "--format",
|
|
6117
6806
|
"description": "Output format",
|
|
@@ -6145,6 +6834,12 @@
|
|
|
6145
6834
|
{
|
|
6146
6835
|
"name": "get",
|
|
6147
6836
|
"description": "Print the value of a single personal secret (pipeable).",
|
|
6837
|
+
"options": [
|
|
6838
|
+
{
|
|
6839
|
+
"name": "--yes",
|
|
6840
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6841
|
+
}
|
|
6842
|
+
],
|
|
6148
6843
|
"arguments": [
|
|
6149
6844
|
{
|
|
6150
6845
|
"name": "NAME",
|
|
@@ -6160,6 +6855,10 @@
|
|
|
6160
6855
|
"name": "import",
|
|
6161
6856
|
"description": "Import many personal secrets at once (all-or-nothing) from a .env or JSON file",
|
|
6162
6857
|
"options": [
|
|
6858
|
+
{
|
|
6859
|
+
"name": "--yes",
|
|
6860
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6861
|
+
},
|
|
6163
6862
|
{
|
|
6164
6863
|
"name": "--from-file",
|
|
6165
6864
|
"description": "Path to a .env or JSON file (default: read from stdin)",
|
|
@@ -6194,6 +6893,12 @@
|
|
|
6194
6893
|
{
|
|
6195
6894
|
"name": "list",
|
|
6196
6895
|
"description": "List your personal secret names for the current organization. Never prints values.",
|
|
6896
|
+
"options": [
|
|
6897
|
+
{
|
|
6898
|
+
"name": "--yes",
|
|
6899
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6900
|
+
}
|
|
6901
|
+
],
|
|
6197
6902
|
"examples": [
|
|
6198
6903
|
"closeyourit personal list",
|
|
6199
6904
|
"closeyourit personal list --json"
|
|
@@ -6202,6 +6907,12 @@
|
|
|
6202
6907
|
{
|
|
6203
6908
|
"name": "run",
|
|
6204
6909
|
"description": "Run a command with your personal secrets injected as env vars. Secrets never touch disk.",
|
|
6910
|
+
"options": [
|
|
6911
|
+
{
|
|
6912
|
+
"name": "--yes",
|
|
6913
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6914
|
+
}
|
|
6915
|
+
],
|
|
6205
6916
|
"examples": [
|
|
6206
6917
|
"closeyourit personal run -- bundle exec rails server",
|
|
6207
6918
|
"closeyourit personal run -- printenv OPENAI_API_KEY"
|
|
@@ -6211,6 +6922,10 @@
|
|
|
6211
6922
|
"name": "set",
|
|
6212
6923
|
"description": "Set (create or update) a personal secret for the current organization",
|
|
6213
6924
|
"options": [
|
|
6925
|
+
{
|
|
6926
|
+
"name": "--yes",
|
|
6927
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6928
|
+
},
|
|
6214
6929
|
{
|
|
6215
6930
|
"name": "--value",
|
|
6216
6931
|
"description": "Secret value (use when the arg is just NAME)",
|
|
@@ -6248,11 +6963,16 @@
|
|
|
6248
6963
|
},
|
|
6249
6964
|
{
|
|
6250
6965
|
"name": "platforms",
|
|
6966
|
+
"description": "Platforms (devices/systems) your projects and tickets run on",
|
|
6251
6967
|
"commands": [
|
|
6252
6968
|
{
|
|
6253
6969
|
"name": "create",
|
|
6254
6970
|
"description": "Create a platform (a device/system your projects run on)",
|
|
6255
6971
|
"options": [
|
|
6972
|
+
{
|
|
6973
|
+
"name": "--yes",
|
|
6974
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
6975
|
+
},
|
|
6256
6976
|
{
|
|
6257
6977
|
"name": "--label",
|
|
6258
6978
|
"description": "Human-readable label",
|
|
@@ -6310,6 +7030,10 @@
|
|
|
6310
7030
|
"name": "delete",
|
|
6311
7031
|
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
6312
7032
|
"options": [
|
|
7033
|
+
{
|
|
7034
|
+
"name": "--yes",
|
|
7035
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7036
|
+
},
|
|
6313
7037
|
{
|
|
6314
7038
|
"name": "--confirm",
|
|
6315
7039
|
"description": "Required: confirm the deletion"
|
|
@@ -6330,6 +7054,10 @@
|
|
|
6330
7054
|
"name": "list",
|
|
6331
7055
|
"description": "List the platforms (devices/systems) in your organization",
|
|
6332
7056
|
"options": [
|
|
7057
|
+
{
|
|
7058
|
+
"name": "--yes",
|
|
7059
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7060
|
+
},
|
|
6333
7061
|
{
|
|
6334
7062
|
"name": "--page",
|
|
6335
7063
|
"description": "Page number",
|
|
@@ -6350,6 +7078,10 @@
|
|
|
6350
7078
|
"name": "update",
|
|
6351
7079
|
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate, toggle uptime support)",
|
|
6352
7080
|
"options": [
|
|
7081
|
+
{
|
|
7082
|
+
"name": "--yes",
|
|
7083
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7084
|
+
},
|
|
6353
7085
|
{
|
|
6354
7086
|
"name": "--code",
|
|
6355
7087
|
"description": "New code",
|
|
@@ -6423,6 +7155,10 @@
|
|
|
6423
7155
|
"name": "create",
|
|
6424
7156
|
"description": "Create a project (optionally inside a group)",
|
|
6425
7157
|
"options": [
|
|
7158
|
+
{
|
|
7159
|
+
"name": "--yes",
|
|
7160
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7161
|
+
},
|
|
6426
7162
|
{
|
|
6427
7163
|
"name": "--color",
|
|
6428
7164
|
"description": "Color label",
|
|
@@ -6493,6 +7229,10 @@
|
|
|
6493
7229
|
"name": "delete",
|
|
6494
7230
|
"description": "Delete a project (irreversible)",
|
|
6495
7231
|
"options": [
|
|
7232
|
+
{
|
|
7233
|
+
"name": "--yes",
|
|
7234
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7235
|
+
},
|
|
6496
7236
|
{
|
|
6497
7237
|
"name": "--project",
|
|
6498
7238
|
"aliases": [
|
|
@@ -6520,6 +7260,10 @@
|
|
|
6520
7260
|
"name": "github",
|
|
6521
7261
|
"description": "Show a project GitHub integration (repo link + tag→release binding rules)",
|
|
6522
7262
|
"options": [
|
|
7263
|
+
{
|
|
7264
|
+
"name": "--yes",
|
|
7265
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7266
|
+
},
|
|
6523
7267
|
{
|
|
6524
7268
|
"name": "--project",
|
|
6525
7269
|
"aliases": [
|
|
@@ -6545,6 +7289,10 @@
|
|
|
6545
7289
|
"name": "github-connect",
|
|
6546
7290
|
"description": "Connect a project to a repository available to the organization GitHub App",
|
|
6547
7291
|
"options": [
|
|
7292
|
+
{
|
|
7293
|
+
"name": "--yes",
|
|
7294
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7295
|
+
},
|
|
6548
7296
|
{
|
|
6549
7297
|
"name": "--project",
|
|
6550
7298
|
"aliases": [
|
|
@@ -6579,6 +7327,10 @@
|
|
|
6579
7327
|
"name": "github-map",
|
|
6580
7328
|
"description": "List the project → GitHub repository mapping for local automation",
|
|
6581
7329
|
"options": [
|
|
7330
|
+
{
|
|
7331
|
+
"name": "--yes",
|
|
7332
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7333
|
+
},
|
|
6582
7334
|
{
|
|
6583
7335
|
"name": "--connected-only",
|
|
6584
7336
|
"description": "Show only projects connected to a GitHub repository"
|
|
@@ -6594,6 +7346,10 @@
|
|
|
6594
7346
|
"name": "github-update",
|
|
6595
7347
|
"description": "Update a project GitHub binding rules (environment mapping + sync/binding/autoclose flags); only the passed fields change",
|
|
6596
7348
|
"options": [
|
|
7349
|
+
{
|
|
7350
|
+
"name": "--yes",
|
|
7351
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7352
|
+
},
|
|
6597
7353
|
{
|
|
6598
7354
|
"name": "--project",
|
|
6599
7355
|
"aliases": [
|
|
@@ -6676,6 +7432,10 @@
|
|
|
6676
7432
|
"name": "link-server",
|
|
6677
7433
|
"description": "Link a server host to one of the project declared environments (uptime monitoring)",
|
|
6678
7434
|
"options": [
|
|
7435
|
+
{
|
|
7436
|
+
"name": "--yes",
|
|
7437
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7438
|
+
},
|
|
6679
7439
|
{
|
|
6680
7440
|
"name": "--project",
|
|
6681
7441
|
"aliases": [
|
|
@@ -6721,6 +7481,10 @@
|
|
|
6721
7481
|
"name": "list",
|
|
6722
7482
|
"description": "List the projects visible to you",
|
|
6723
7483
|
"options": [
|
|
7484
|
+
{
|
|
7485
|
+
"name": "--yes",
|
|
7486
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7487
|
+
},
|
|
6724
7488
|
{
|
|
6725
7489
|
"name": "--page",
|
|
6726
7490
|
"description": "Page number",
|
|
@@ -6741,6 +7505,10 @@
|
|
|
6741
7505
|
"name": "set-environment-capabilities",
|
|
6742
7506
|
"description": "Override the servers/uptime/secrets capabilities of a project environment (inherit = follow the environment default)",
|
|
6743
7507
|
"options": [
|
|
7508
|
+
{
|
|
7509
|
+
"name": "--yes",
|
|
7510
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7511
|
+
},
|
|
6744
7512
|
{
|
|
6745
7513
|
"name": "--project",
|
|
6746
7514
|
"aliases": [
|
|
@@ -6824,6 +7592,10 @@
|
|
|
6824
7592
|
"name": "set-environments",
|
|
6825
7593
|
"description": "Declare the environments a project receives data from (replaces the current set)",
|
|
6826
7594
|
"options": [
|
|
7595
|
+
{
|
|
7596
|
+
"name": "--yes",
|
|
7597
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7598
|
+
},
|
|
6827
7599
|
{
|
|
6828
7600
|
"name": "--project",
|
|
6829
7601
|
"aliases": [
|
|
@@ -6868,6 +7640,10 @@
|
|
|
6868
7640
|
"name": "set-platforms",
|
|
6869
7641
|
"description": "Declare the platforms of a project (replaces the current set)",
|
|
6870
7642
|
"options": [
|
|
7643
|
+
{
|
|
7644
|
+
"name": "--yes",
|
|
7645
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7646
|
+
},
|
|
6871
7647
|
{
|
|
6872
7648
|
"name": "--project",
|
|
6873
7649
|
"aliases": [
|
|
@@ -6910,11 +7686,16 @@
|
|
|
6910
7686
|
},
|
|
6911
7687
|
{
|
|
6912
7688
|
"name": "settings",
|
|
7689
|
+
"description": "Per-project settings: log/analytics retention and feature flags",
|
|
6913
7690
|
"commands": [
|
|
6914
7691
|
{
|
|
6915
7692
|
"name": "show",
|
|
6916
7693
|
"description": "Show a project settings (log/analytics retention + feature flags)",
|
|
6917
7694
|
"options": [
|
|
7695
|
+
{
|
|
7696
|
+
"name": "--yes",
|
|
7697
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7698
|
+
},
|
|
6918
7699
|
{
|
|
6919
7700
|
"name": "--project",
|
|
6920
7701
|
"aliases": [
|
|
@@ -6939,6 +7720,10 @@
|
|
|
6939
7720
|
"name": "update",
|
|
6940
7721
|
"description": "Update a project settings (log/analytics retention + feature flags); only the passed fields change",
|
|
6941
7722
|
"options": [
|
|
7723
|
+
{
|
|
7724
|
+
"name": "--yes",
|
|
7725
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7726
|
+
},
|
|
6942
7727
|
{
|
|
6943
7728
|
"name": "--project",
|
|
6944
7729
|
"aliases": [
|
|
@@ -6993,6 +7778,12 @@
|
|
|
6993
7778
|
{
|
|
6994
7779
|
"name": "show",
|
|
6995
7780
|
"description": "Show a single project by id or key, with its declared environments and their capabilities",
|
|
7781
|
+
"options": [
|
|
7782
|
+
{
|
|
7783
|
+
"name": "--yes",
|
|
7784
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7785
|
+
}
|
|
7786
|
+
],
|
|
6996
7787
|
"arguments": [
|
|
6997
7788
|
{
|
|
6998
7789
|
"name": "ID",
|
|
@@ -7009,6 +7800,10 @@
|
|
|
7009
7800
|
"name": "unlink-server",
|
|
7010
7801
|
"description": "Unlink a server host from the project (removes the host↔environment link)",
|
|
7011
7802
|
"options": [
|
|
7803
|
+
{
|
|
7804
|
+
"name": "--yes",
|
|
7805
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7806
|
+
},
|
|
7012
7807
|
{
|
|
7013
7808
|
"name": "--project",
|
|
7014
7809
|
"aliases": [
|
|
@@ -7043,6 +7838,10 @@
|
|
|
7043
7838
|
"name": "update",
|
|
7044
7839
|
"description": "Update a project (name, key, color, description, group, feature flags)",
|
|
7045
7840
|
"options": [
|
|
7841
|
+
{
|
|
7842
|
+
"name": "--yes",
|
|
7843
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7844
|
+
},
|
|
7046
7845
|
{
|
|
7047
7846
|
"name": "--project",
|
|
7048
7847
|
"aliases": [
|
|
@@ -7128,6 +7927,10 @@
|
|
|
7128
7927
|
"name": "list",
|
|
7129
7928
|
"description": "List the releases of a project (tracked from CI)",
|
|
7130
7929
|
"options": [
|
|
7930
|
+
{
|
|
7931
|
+
"name": "--yes",
|
|
7932
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7933
|
+
},
|
|
7131
7934
|
{
|
|
7132
7935
|
"name": "--project",
|
|
7133
7936
|
"aliases": [
|
|
@@ -7162,11 +7965,16 @@
|
|
|
7162
7965
|
},
|
|
7163
7966
|
{
|
|
7164
7967
|
"name": "roles",
|
|
7968
|
+
"description": "RBAC roles: named bundles of permission keys",
|
|
7165
7969
|
"commands": [
|
|
7166
7970
|
{
|
|
7167
7971
|
"name": "create",
|
|
7168
7972
|
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
7169
7973
|
"options": [
|
|
7974
|
+
{
|
|
7975
|
+
"name": "--yes",
|
|
7976
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
7977
|
+
},
|
|
7170
7978
|
{
|
|
7171
7979
|
"name": "--color",
|
|
7172
7980
|
"description": "Color label",
|
|
@@ -7202,6 +8010,12 @@
|
|
|
7202
8010
|
{
|
|
7203
8011
|
"name": "delete",
|
|
7204
8012
|
"description": "Delete a role (its assignments to teams and accounts are removed)",
|
|
8013
|
+
"options": [
|
|
8014
|
+
{
|
|
8015
|
+
"name": "--yes",
|
|
8016
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8017
|
+
}
|
|
8018
|
+
],
|
|
7205
8019
|
"arguments": [
|
|
7206
8020
|
{
|
|
7207
8021
|
"name": "ROLE",
|
|
@@ -7217,6 +8031,10 @@
|
|
|
7217
8031
|
"name": "list",
|
|
7218
8032
|
"description": "List the RBAC roles in your organization",
|
|
7219
8033
|
"options": [
|
|
8034
|
+
{
|
|
8035
|
+
"name": "--yes",
|
|
8036
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8037
|
+
},
|
|
7220
8038
|
{
|
|
7221
8039
|
"name": "--page",
|
|
7222
8040
|
"description": "Page number",
|
|
@@ -7236,6 +8054,12 @@
|
|
|
7236
8054
|
{
|
|
7237
8055
|
"name": "show",
|
|
7238
8056
|
"description": "Show a role by id or name (with its permission keys)",
|
|
8057
|
+
"options": [
|
|
8058
|
+
{
|
|
8059
|
+
"name": "--yes",
|
|
8060
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8061
|
+
}
|
|
8062
|
+
],
|
|
7239
8063
|
"arguments": [
|
|
7240
8064
|
{
|
|
7241
8065
|
"name": "ROLE",
|
|
@@ -7251,6 +8075,10 @@
|
|
|
7251
8075
|
"name": "update",
|
|
7252
8076
|
"description": "Update a role (rename, recolor, or replace its permission keys)",
|
|
7253
8077
|
"options": [
|
|
8078
|
+
{
|
|
8079
|
+
"name": "--yes",
|
|
8080
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8081
|
+
},
|
|
7254
8082
|
{
|
|
7255
8083
|
"name": "--color",
|
|
7256
8084
|
"description": "Color label",
|
|
@@ -7300,6 +8128,10 @@
|
|
|
7300
8128
|
"name": "run",
|
|
7301
8129
|
"description": "Run a command with project/environment secrets injected as env vars. Secrets never touch disk.",
|
|
7302
8130
|
"options": [
|
|
8131
|
+
{
|
|
8132
|
+
"name": "--yes",
|
|
8133
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8134
|
+
},
|
|
7303
8135
|
{
|
|
7304
8136
|
"name": "--project",
|
|
7305
8137
|
"aliases": [
|
|
@@ -7340,10 +8172,15 @@
|
|
|
7340
8172
|
"commands": [
|
|
7341
8173
|
{
|
|
7342
8174
|
"name": "assets",
|
|
8175
|
+
"description": "Encrypted secret files: upload, download, versions, delegation",
|
|
7343
8176
|
"commands": [
|
|
7344
8177
|
{
|
|
7345
8178
|
"name": "archive",
|
|
7346
8179
|
"options": [
|
|
8180
|
+
{
|
|
8181
|
+
"name": "--yes",
|
|
8182
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8183
|
+
},
|
|
7347
8184
|
{
|
|
7348
8185
|
"name": "--project",
|
|
7349
8186
|
"aliases": [
|
|
@@ -7373,6 +8210,10 @@
|
|
|
7373
8210
|
{
|
|
7374
8211
|
"name": "delegate",
|
|
7375
8212
|
"options": [
|
|
8213
|
+
{
|
|
8214
|
+
"name": "--yes",
|
|
8215
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8216
|
+
},
|
|
7376
8217
|
{
|
|
7377
8218
|
"name": "--project",
|
|
7378
8219
|
"aliases": [
|
|
@@ -7398,6 +8239,10 @@
|
|
|
7398
8239
|
"name": "download",
|
|
7399
8240
|
"description": "Download and decrypt a secret file to an explicit path with mode 0600",
|
|
7400
8241
|
"options": [
|
|
8242
|
+
{
|
|
8243
|
+
"name": "--yes",
|
|
8244
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8245
|
+
},
|
|
7401
8246
|
{
|
|
7402
8247
|
"name": "--project",
|
|
7403
8248
|
"aliases": [
|
|
@@ -7449,6 +8294,10 @@
|
|
|
7449
8294
|
"name": "list",
|
|
7450
8295
|
"description": "List encrypted secret files visible to a project (metadata only)",
|
|
7451
8296
|
"options": [
|
|
8297
|
+
{
|
|
8298
|
+
"name": "--yes",
|
|
8299
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8300
|
+
},
|
|
7452
8301
|
{
|
|
7453
8302
|
"name": "--project",
|
|
7454
8303
|
"aliases": [
|
|
@@ -7491,6 +8340,10 @@
|
|
|
7491
8340
|
"name": "purge",
|
|
7492
8341
|
"description": "Permanently delete an archived secret asset and all versions (owner only)",
|
|
7493
8342
|
"options": [
|
|
8343
|
+
{
|
|
8344
|
+
"name": "--yes",
|
|
8345
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8346
|
+
},
|
|
7494
8347
|
{
|
|
7495
8348
|
"name": "--project",
|
|
7496
8349
|
"aliases": [
|
|
@@ -7527,6 +8380,10 @@
|
|
|
7527
8380
|
{
|
|
7528
8381
|
"name": "rollback",
|
|
7529
8382
|
"options": [
|
|
8383
|
+
{
|
|
8384
|
+
"name": "--yes",
|
|
8385
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8386
|
+
},
|
|
7530
8387
|
{
|
|
7531
8388
|
"name": "--project",
|
|
7532
8389
|
"aliases": [
|
|
@@ -7561,12 +8418,22 @@
|
|
|
7561
8418
|
},
|
|
7562
8419
|
{
|
|
7563
8420
|
"name": "shared-list",
|
|
7564
|
-
"description": "List organization-level encrypted secret files and delegated projects"
|
|
8421
|
+
"description": "List organization-level encrypted secret files and delegated projects",
|
|
8422
|
+
"options": [
|
|
8423
|
+
{
|
|
8424
|
+
"name": "--yes",
|
|
8425
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8426
|
+
}
|
|
8427
|
+
]
|
|
7565
8428
|
},
|
|
7566
8429
|
{
|
|
7567
8430
|
"name": "shared-upload",
|
|
7568
8431
|
"description": "Encrypt and upload one organization-level secret file",
|
|
7569
8432
|
"options": [
|
|
8433
|
+
{
|
|
8434
|
+
"name": "--yes",
|
|
8435
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8436
|
+
},
|
|
7570
8437
|
{
|
|
7571
8438
|
"name": "--file",
|
|
7572
8439
|
"required": true,
|
|
@@ -7610,6 +8477,10 @@
|
|
|
7610
8477
|
{
|
|
7611
8478
|
"name": "undelegate",
|
|
7612
8479
|
"options": [
|
|
8480
|
+
{
|
|
8481
|
+
"name": "--yes",
|
|
8482
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8483
|
+
},
|
|
7613
8484
|
{
|
|
7614
8485
|
"name": "--project",
|
|
7615
8486
|
"aliases": [
|
|
@@ -7635,6 +8506,10 @@
|
|
|
7635
8506
|
"name": "upload",
|
|
7636
8507
|
"description": "Encrypt and upload a mobile CI secret file (never prints its contents)",
|
|
7637
8508
|
"options": [
|
|
8509
|
+
{
|
|
8510
|
+
"name": "--yes",
|
|
8511
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8512
|
+
},
|
|
7638
8513
|
{
|
|
7639
8514
|
"name": "--project",
|
|
7640
8515
|
"aliases": [
|
|
@@ -7692,6 +8567,10 @@
|
|
|
7692
8567
|
{
|
|
7693
8568
|
"name": "versions",
|
|
7694
8569
|
"options": [
|
|
8570
|
+
{
|
|
8571
|
+
"name": "--yes",
|
|
8572
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8573
|
+
},
|
|
7695
8574
|
{
|
|
7696
8575
|
"name": "--project",
|
|
7697
8576
|
"aliases": [
|
|
@@ -7720,6 +8599,10 @@
|
|
|
7720
8599
|
"name": "delete",
|
|
7721
8600
|
"description": "Delete a secret from a project environment",
|
|
7722
8601
|
"options": [
|
|
8602
|
+
{
|
|
8603
|
+
"name": "--yes",
|
|
8604
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8605
|
+
},
|
|
7723
8606
|
{
|
|
7724
8607
|
"name": "--project",
|
|
7725
8608
|
"aliases": [
|
|
@@ -7764,6 +8647,10 @@
|
|
|
7764
8647
|
"name": "download",
|
|
7765
8648
|
"description": "Download all secrets of an environment as .env or JSON (to a file or stdout). Values with newlines: use --format json. Prefer `cyi run` to avoid writing plaintext to disk.",
|
|
7766
8649
|
"options": [
|
|
8650
|
+
{
|
|
8651
|
+
"name": "--yes",
|
|
8652
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8653
|
+
},
|
|
7767
8654
|
{
|
|
7768
8655
|
"name": "--project",
|
|
7769
8656
|
"aliases": [
|
|
@@ -7826,6 +8713,10 @@
|
|
|
7826
8713
|
"name": "get",
|
|
7827
8714
|
"description": "Print the value of a single secret (pipeable). Requires the secrets.read permission.",
|
|
7828
8715
|
"options": [
|
|
8716
|
+
{
|
|
8717
|
+
"name": "--yes",
|
|
8718
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8719
|
+
},
|
|
7829
8720
|
{
|
|
7830
8721
|
"name": "--project",
|
|
7831
8722
|
"aliases": [
|
|
@@ -7870,6 +8761,10 @@
|
|
|
7870
8761
|
"name": "import",
|
|
7871
8762
|
"description": "Import many secrets at once (all-or-nothing) from a .env or JSON file",
|
|
7872
8763
|
"options": [
|
|
8764
|
+
{
|
|
8765
|
+
"name": "--yes",
|
|
8766
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8767
|
+
},
|
|
7873
8768
|
{
|
|
7874
8769
|
"name": "--project",
|
|
7875
8770
|
"aliases": [
|
|
@@ -7933,6 +8828,10 @@
|
|
|
7933
8828
|
"name": "list",
|
|
7934
8829
|
"description": "List secret names for a project (optionally filtered by environment). Lists every secret — never truncated to a page — and never prints values.",
|
|
7935
8830
|
"options": [
|
|
8831
|
+
{
|
|
8832
|
+
"name": "--yes",
|
|
8833
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8834
|
+
},
|
|
7936
8835
|
{
|
|
7937
8836
|
"name": "--project",
|
|
7938
8837
|
"aliases": [
|
|
@@ -7978,6 +8877,10 @@
|
|
|
7978
8877
|
"name": "set",
|
|
7979
8878
|
"description": "Set (create or update) a secret for a project environment",
|
|
7980
8879
|
"options": [
|
|
8880
|
+
{
|
|
8881
|
+
"name": "--yes",
|
|
8882
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8883
|
+
},
|
|
7981
8884
|
{
|
|
7982
8885
|
"name": "--project",
|
|
7983
8886
|
"aliases": [
|
|
@@ -8043,6 +8946,10 @@
|
|
|
8043
8946
|
"name": "sync",
|
|
8044
8947
|
"description": "Push the project's vault secrets to its connected GitHub repo Environment secrets (enqueues a background sync). Requires the github.manage permission.",
|
|
8045
8948
|
"options": [
|
|
8949
|
+
{
|
|
8950
|
+
"name": "--yes",
|
|
8951
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8952
|
+
},
|
|
8046
8953
|
{
|
|
8047
8954
|
"name": "--project",
|
|
8048
8955
|
"aliases": [
|
|
@@ -8066,11 +8973,16 @@
|
|
|
8066
8973
|
},
|
|
8067
8974
|
{
|
|
8068
8975
|
"name": "seo",
|
|
8976
|
+
"description": "SEO findings of the watched sites: triage, ignore, promote to ticket",
|
|
8069
8977
|
"commands": [
|
|
8070
8978
|
{
|
|
8071
8979
|
"name": "ignore",
|
|
8072
8980
|
"description": "Ignore an SEO finding: you accept living with it",
|
|
8073
8981
|
"options": [
|
|
8982
|
+
{
|
|
8983
|
+
"name": "--yes",
|
|
8984
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
8985
|
+
},
|
|
8074
8986
|
{
|
|
8075
8987
|
"name": "--note",
|
|
8076
8988
|
"description": "Why you are keeping it (shown alongside the ignored row)",
|
|
@@ -8098,6 +9010,10 @@
|
|
|
8098
9010
|
"name": "list",
|
|
8099
9011
|
"description": "List the SEO findings of your sites (cross-project)",
|
|
8100
9012
|
"options": [
|
|
9013
|
+
{
|
|
9014
|
+
"name": "--yes",
|
|
9015
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9016
|
+
},
|
|
8101
9017
|
{
|
|
8102
9018
|
"name": "--project",
|
|
8103
9019
|
"aliases": [
|
|
@@ -8163,6 +9079,10 @@
|
|
|
8163
9079
|
"name": "pages",
|
|
8164
9080
|
"description": "List the pages the SEO check has visited, with their state",
|
|
8165
9081
|
"options": [
|
|
9082
|
+
{
|
|
9083
|
+
"name": "--yes",
|
|
9084
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9085
|
+
},
|
|
8166
9086
|
{
|
|
8167
9087
|
"name": "--project",
|
|
8168
9088
|
"aliases": [
|
|
@@ -8206,6 +9126,12 @@
|
|
|
8206
9126
|
{
|
|
8207
9127
|
"name": "promote",
|
|
8208
9128
|
"description": "Open a ticket from an SEO finding, evidence included",
|
|
9129
|
+
"options": [
|
|
9130
|
+
{
|
|
9131
|
+
"name": "--yes",
|
|
9132
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9133
|
+
}
|
|
9134
|
+
],
|
|
8209
9135
|
"arguments": [
|
|
8210
9136
|
{
|
|
8211
9137
|
"name": "ID",
|
|
@@ -8220,6 +9146,12 @@
|
|
|
8220
9146
|
{
|
|
8221
9147
|
"name": "reopen",
|
|
8222
9148
|
"description": "Reopen an ignored SEO finding: you changed your mind",
|
|
9149
|
+
"options": [
|
|
9150
|
+
{
|
|
9151
|
+
"name": "--yes",
|
|
9152
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9153
|
+
}
|
|
9154
|
+
],
|
|
8223
9155
|
"arguments": [
|
|
8224
9156
|
{
|
|
8225
9157
|
"name": "ID",
|
|
@@ -8235,6 +9167,10 @@
|
|
|
8235
9167
|
"name": "rescan",
|
|
8236
9168
|
"description": "Check a site now, without waiting for the next scheduled run",
|
|
8237
9169
|
"options": [
|
|
9170
|
+
{
|
|
9171
|
+
"name": "--yes",
|
|
9172
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9173
|
+
},
|
|
8238
9174
|
{
|
|
8239
9175
|
"name": "--site",
|
|
8240
9176
|
"description": "Site id (from `seo-sites list`)",
|
|
@@ -8254,6 +9190,12 @@
|
|
|
8254
9190
|
{
|
|
8255
9191
|
"name": "show",
|
|
8256
9192
|
"description": "Show a single SEO finding, with the evidence behind it",
|
|
9193
|
+
"options": [
|
|
9194
|
+
{
|
|
9195
|
+
"name": "--yes",
|
|
9196
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9197
|
+
}
|
|
9198
|
+
],
|
|
8257
9199
|
"arguments": [
|
|
8258
9200
|
{
|
|
8259
9201
|
"name": "ID",
|
|
@@ -8269,11 +9211,16 @@
|
|
|
8269
9211
|
},
|
|
8270
9212
|
{
|
|
8271
9213
|
"name": "seo-sites",
|
|
9214
|
+
"description": "Sites under SEO check: declare, configure, remove",
|
|
8272
9215
|
"commands": [
|
|
8273
9216
|
{
|
|
8274
9217
|
"name": "create",
|
|
8275
9218
|
"description": "Declare a site to keep an eye on (one per project and environment)",
|
|
8276
9219
|
"options": [
|
|
9220
|
+
{
|
|
9221
|
+
"name": "--yes",
|
|
9222
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9223
|
+
},
|
|
8277
9224
|
{
|
|
8278
9225
|
"name": "--project",
|
|
8279
9226
|
"aliases": [
|
|
@@ -8347,6 +9294,12 @@
|
|
|
8347
9294
|
{
|
|
8348
9295
|
"name": "delete",
|
|
8349
9296
|
"description": "Stop watching a site and remove its pages and findings",
|
|
9297
|
+
"options": [
|
|
9298
|
+
{
|
|
9299
|
+
"name": "--yes",
|
|
9300
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9301
|
+
}
|
|
9302
|
+
],
|
|
8350
9303
|
"arguments": [
|
|
8351
9304
|
{
|
|
8352
9305
|
"name": "ID",
|
|
@@ -8362,6 +9315,10 @@
|
|
|
8362
9315
|
"name": "list",
|
|
8363
9316
|
"description": "List the sites under SEO check",
|
|
8364
9317
|
"options": [
|
|
9318
|
+
{
|
|
9319
|
+
"name": "--yes",
|
|
9320
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9321
|
+
},
|
|
8365
9322
|
{
|
|
8366
9323
|
"name": "--project",
|
|
8367
9324
|
"aliases": [
|
|
@@ -8394,6 +9351,12 @@
|
|
|
8394
9351
|
{
|
|
8395
9352
|
"name": "show",
|
|
8396
9353
|
"description": "Show one site under SEO check: how it is set up, what is open, how the last run went and how fast it is",
|
|
9354
|
+
"options": [
|
|
9355
|
+
{
|
|
9356
|
+
"name": "--yes",
|
|
9357
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9358
|
+
}
|
|
9359
|
+
],
|
|
8397
9360
|
"arguments": [
|
|
8398
9361
|
{
|
|
8399
9362
|
"name": "ID",
|
|
@@ -8410,6 +9373,10 @@
|
|
|
8410
9373
|
"name": "update",
|
|
8411
9374
|
"description": "Change how a site is checked (project and environment are its identity: they never change)",
|
|
8412
9375
|
"options": [
|
|
9376
|
+
{
|
|
9377
|
+
"name": "--yes",
|
|
9378
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9379
|
+
},
|
|
8413
9380
|
{
|
|
8414
9381
|
"name": "--url",
|
|
8415
9382
|
"description": "Public address the visit starts from",
|
|
@@ -8479,6 +9446,10 @@
|
|
|
8479
9446
|
"name": "delete",
|
|
8480
9447
|
"description": "Delete a server and all its metrics (a live agent would re-register it)",
|
|
8481
9448
|
"options": [
|
|
9449
|
+
{
|
|
9450
|
+
"name": "--yes",
|
|
9451
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9452
|
+
},
|
|
8482
9453
|
{
|
|
8483
9454
|
"name": "--confirm",
|
|
8484
9455
|
"description": "Required: confirm the deletion"
|
|
@@ -8499,6 +9470,10 @@
|
|
|
8499
9470
|
"name": "ignored-containers",
|
|
8500
9471
|
"description": "Read or set the container names this server does not treat as services",
|
|
8501
9472
|
"options": [
|
|
9473
|
+
{
|
|
9474
|
+
"name": "--yes",
|
|
9475
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9476
|
+
},
|
|
8502
9477
|
{
|
|
8503
9478
|
"name": "--clear",
|
|
8504
9479
|
"description": "Remove every ignored container name"
|
|
@@ -8531,6 +9506,10 @@
|
|
|
8531
9506
|
"name": "list",
|
|
8532
9507
|
"description": "List the monitored servers in your organization (fleet snapshot)",
|
|
8533
9508
|
"options": [
|
|
9509
|
+
{
|
|
9510
|
+
"name": "--yes",
|
|
9511
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9512
|
+
},
|
|
8534
9513
|
{
|
|
8535
9514
|
"name": "--page",
|
|
8536
9515
|
"description": "Page number",
|
|
@@ -8566,6 +9545,12 @@
|
|
|
8566
9545
|
{
|
|
8567
9546
|
"name": "pause",
|
|
8568
9547
|
"description": "Pause a server (no staleness checks or alerts until resumed)",
|
|
9548
|
+
"options": [
|
|
9549
|
+
{
|
|
9550
|
+
"name": "--yes",
|
|
9551
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9552
|
+
}
|
|
9553
|
+
],
|
|
8569
9554
|
"arguments": [
|
|
8570
9555
|
{
|
|
8571
9556
|
"name": "ID",
|
|
@@ -8581,6 +9566,10 @@
|
|
|
8581
9566
|
"name": "rename",
|
|
8582
9567
|
"description": "Rename a monitored server (display name only)",
|
|
8583
9568
|
"options": [
|
|
9569
|
+
{
|
|
9570
|
+
"name": "--yes",
|
|
9571
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9572
|
+
},
|
|
8584
9573
|
{
|
|
8585
9574
|
"name": "--name",
|
|
8586
9575
|
"description": "New display name",
|
|
@@ -8607,6 +9596,12 @@
|
|
|
8607
9596
|
{
|
|
8608
9597
|
"name": "resume",
|
|
8609
9598
|
"description": "Resume a paused server (back up at the next agent push)",
|
|
9599
|
+
"options": [
|
|
9600
|
+
{
|
|
9601
|
+
"name": "--yes",
|
|
9602
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9603
|
+
}
|
|
9604
|
+
],
|
|
8610
9605
|
"arguments": [
|
|
8611
9606
|
{
|
|
8612
9607
|
"name": "ID",
|
|
@@ -8622,6 +9617,10 @@
|
|
|
8622
9617
|
"name": "revoke",
|
|
8623
9618
|
"description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
|
|
8624
9619
|
"options": [
|
|
9620
|
+
{
|
|
9621
|
+
"name": "--yes",
|
|
9622
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9623
|
+
},
|
|
8625
9624
|
{
|
|
8626
9625
|
"name": "--confirm",
|
|
8627
9626
|
"description": "Required: confirm the revocation"
|
|
@@ -8641,6 +9640,12 @@
|
|
|
8641
9640
|
{
|
|
8642
9641
|
"name": "show",
|
|
8643
9642
|
"description": "Show a monitored server (latest snapshot)",
|
|
9643
|
+
"options": [
|
|
9644
|
+
{
|
|
9645
|
+
"name": "--yes",
|
|
9646
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9647
|
+
}
|
|
9648
|
+
],
|
|
8644
9649
|
"arguments": [
|
|
8645
9650
|
{
|
|
8646
9651
|
"name": "ID",
|
|
@@ -8654,10 +9659,17 @@
|
|
|
8654
9659
|
},
|
|
8655
9660
|
{
|
|
8656
9661
|
"name": "tokens",
|
|
9662
|
+
"description": "Fleet enrollment tokens (server agents authenticate with these)",
|
|
8657
9663
|
"commands": [
|
|
8658
9664
|
{
|
|
8659
9665
|
"name": "create",
|
|
8660
9666
|
"description": "Create a fleet enrollment token (the secret is shown only once)",
|
|
9667
|
+
"options": [
|
|
9668
|
+
{
|
|
9669
|
+
"name": "--yes",
|
|
9670
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9671
|
+
}
|
|
9672
|
+
],
|
|
8661
9673
|
"arguments": [
|
|
8662
9674
|
{
|
|
8663
9675
|
"name": "NAME",
|
|
@@ -8673,6 +9685,10 @@
|
|
|
8673
9685
|
"name": "list",
|
|
8674
9686
|
"description": "List the fleet enrollment tokens (agents authenticate with these)",
|
|
8675
9687
|
"options": [
|
|
9688
|
+
{
|
|
9689
|
+
"name": "--yes",
|
|
9690
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9691
|
+
},
|
|
8676
9692
|
{
|
|
8677
9693
|
"name": "--page",
|
|
8678
9694
|
"description": "Page number",
|
|
@@ -8692,6 +9708,10 @@
|
|
|
8692
9708
|
"name": "revoke",
|
|
8693
9709
|
"description": "Revoke a fleet enrollment token (agents using it stop pushing)",
|
|
8694
9710
|
"options": [
|
|
9711
|
+
{
|
|
9712
|
+
"name": "--yes",
|
|
9713
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9714
|
+
},
|
|
8695
9715
|
{
|
|
8696
9716
|
"name": "--confirm",
|
|
8697
9717
|
"description": "Required: confirm the revocation"
|
|
@@ -8713,6 +9733,12 @@
|
|
|
8713
9733
|
{
|
|
8714
9734
|
"name": "unrevoke",
|
|
8715
9735
|
"description": "Restore a revoked server (its agent can push again)",
|
|
9736
|
+
"options": [
|
|
9737
|
+
{
|
|
9738
|
+
"name": "--yes",
|
|
9739
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9740
|
+
}
|
|
9741
|
+
],
|
|
8716
9742
|
"arguments": [
|
|
8717
9743
|
{
|
|
8718
9744
|
"name": "ID",
|
|
@@ -8728,11 +9754,16 @@
|
|
|
8728
9754
|
},
|
|
8729
9755
|
{
|
|
8730
9756
|
"name": "service-accounts",
|
|
9757
|
+
"description": "Service accounts (AI members, CLI-only) and their secret access",
|
|
8731
9758
|
"commands": [
|
|
8732
9759
|
{
|
|
8733
9760
|
"name": "create",
|
|
8734
9761
|
"description": "Create a service account (AI member, CLI-only)",
|
|
8735
9762
|
"options": [
|
|
9763
|
+
{
|
|
9764
|
+
"name": "--yes",
|
|
9765
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9766
|
+
},
|
|
8736
9767
|
{
|
|
8737
9768
|
"name": "--name",
|
|
8738
9769
|
"description": "Display name",
|
|
@@ -8807,6 +9838,10 @@
|
|
|
8807
9838
|
"name": "delete",
|
|
8808
9839
|
"description": "Delete a service account (revokes its tokens + removes org access; the secrets audit trail is kept)",
|
|
8809
9840
|
"options": [
|
|
9841
|
+
{
|
|
9842
|
+
"name": "--yes",
|
|
9843
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9844
|
+
},
|
|
8810
9845
|
{
|
|
8811
9846
|
"name": "--confirm",
|
|
8812
9847
|
"description": "Required: confirm the deletion"
|
|
@@ -8827,6 +9862,10 @@
|
|
|
8827
9862
|
"name": "list",
|
|
8828
9863
|
"description": "List the service accounts (AI members, CLI-only) in your organization",
|
|
8829
9864
|
"options": [
|
|
9865
|
+
{
|
|
9866
|
+
"name": "--yes",
|
|
9867
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9868
|
+
},
|
|
8830
9869
|
{
|
|
8831
9870
|
"name": "--page",
|
|
8832
9871
|
"description": "Page number",
|
|
@@ -8846,6 +9885,12 @@
|
|
|
8846
9885
|
{
|
|
8847
9886
|
"name": "show",
|
|
8848
9887
|
"description": "Show a service account: identity, how many tokens are active, and the environments it can read secrets in",
|
|
9888
|
+
"options": [
|
|
9889
|
+
{
|
|
9890
|
+
"name": "--yes",
|
|
9891
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9892
|
+
}
|
|
9893
|
+
],
|
|
8849
9894
|
"arguments": [
|
|
8850
9895
|
{
|
|
8851
9896
|
"name": "ID",
|
|
@@ -8860,10 +9905,17 @@
|
|
|
8860
9905
|
},
|
|
8861
9906
|
{
|
|
8862
9907
|
"name": "tokens",
|
|
9908
|
+
"description": "CLI tokens (cyi_u_) of a service account (the secret is shown only once)",
|
|
8863
9909
|
"commands": [
|
|
8864
9910
|
{
|
|
8865
9911
|
"name": "create",
|
|
8866
9912
|
"description": "Create a CLI token (cyi_u_) for a service account (the secret is shown only once)",
|
|
9913
|
+
"options": [
|
|
9914
|
+
{
|
|
9915
|
+
"name": "--yes",
|
|
9916
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9917
|
+
}
|
|
9918
|
+
],
|
|
8867
9919
|
"arguments": [
|
|
8868
9920
|
{
|
|
8869
9921
|
"name": "ACCOUNT",
|
|
@@ -8884,6 +9936,10 @@
|
|
|
8884
9936
|
"name": "list",
|
|
8885
9937
|
"description": "List the CLI tokens of a service account — which ones still work and which are revoked. Never the secret.",
|
|
8886
9938
|
"options": [
|
|
9939
|
+
{
|
|
9940
|
+
"name": "--yes",
|
|
9941
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9942
|
+
},
|
|
8887
9943
|
{
|
|
8888
9944
|
"name": "--page",
|
|
8889
9945
|
"description": "Page number",
|
|
@@ -8911,6 +9967,10 @@
|
|
|
8911
9967
|
"name": "revoke",
|
|
8912
9968
|
"description": "Revoke a service account CLI token (the agent using it loses access)",
|
|
8913
9969
|
"options": [
|
|
9970
|
+
{
|
|
9971
|
+
"name": "--yes",
|
|
9972
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
9973
|
+
},
|
|
8914
9974
|
{
|
|
8915
9975
|
"name": "--confirm",
|
|
8916
9976
|
"description": "Required: confirm the revocation"
|
|
@@ -8938,6 +9998,10 @@
|
|
|
8938
9998
|
"name": "update",
|
|
8939
9999
|
"description": "Update a service account's secret access: the environments it may read secrets in (full replace)",
|
|
8940
10000
|
"options": [
|
|
10001
|
+
{
|
|
10002
|
+
"name": "--yes",
|
|
10003
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10004
|
+
},
|
|
8941
10005
|
{
|
|
8942
10006
|
"name": "--secret-environment",
|
|
8943
10007
|
"description": "Environment code the account may read secrets in (repeatable; replaces the whole list)",
|
|
@@ -8975,6 +10039,10 @@
|
|
|
8975
10039
|
"name": "delete",
|
|
8976
10040
|
"description": "Delete an organization shared secret from EVERY environment at once (irreversible). There is no per-environment deletion.",
|
|
8977
10041
|
"options": [
|
|
10042
|
+
{
|
|
10043
|
+
"name": "--yes",
|
|
10044
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10045
|
+
},
|
|
8978
10046
|
{
|
|
8979
10047
|
"name": "--confirm",
|
|
8980
10048
|
"description": "Required: confirm the deletion across every environment"
|
|
@@ -8994,6 +10062,12 @@
|
|
|
8994
10062
|
{
|
|
8995
10063
|
"name": "list",
|
|
8996
10064
|
"description": "List the organization shared secret names (one row per variable, every page). Never prints values.",
|
|
10065
|
+
"options": [
|
|
10066
|
+
{
|
|
10067
|
+
"name": "--yes",
|
|
10068
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10069
|
+
}
|
|
10070
|
+
],
|
|
8997
10071
|
"examples": [
|
|
8998
10072
|
"closeyourit shared list",
|
|
8999
10073
|
"closeyourit shared list --json"
|
|
@@ -9003,6 +10077,10 @@
|
|
|
9003
10077
|
"name": "set",
|
|
9004
10078
|
"description": "Set (create or update) an organization shared secret for one environment. Projects delegated on that environment read the new value.",
|
|
9005
10079
|
"options": [
|
|
10080
|
+
{
|
|
10081
|
+
"name": "--yes",
|
|
10082
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10083
|
+
},
|
|
9006
10084
|
{
|
|
9007
10085
|
"name": "--environment",
|
|
9008
10086
|
"aliases": [
|
|
@@ -9054,10 +10132,17 @@
|
|
|
9054
10132
|
},
|
|
9055
10133
|
{
|
|
9056
10134
|
"name": "teams",
|
|
10135
|
+
"description": "Teams: people bundled with roles and a group/project scope",
|
|
9057
10136
|
"commands": [
|
|
9058
10137
|
{
|
|
9059
10138
|
"name": "add-member",
|
|
9060
10139
|
"description": "Add a person to a team, keeping the existing members",
|
|
10140
|
+
"options": [
|
|
10141
|
+
{
|
|
10142
|
+
"name": "--yes",
|
|
10143
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10144
|
+
}
|
|
10145
|
+
],
|
|
9061
10146
|
"arguments": [
|
|
9062
10147
|
{
|
|
9063
10148
|
"name": "TEAM",
|
|
@@ -9078,6 +10163,10 @@
|
|
|
9078
10163
|
"name": "create",
|
|
9079
10164
|
"description": "Create a team and (optionally) set its roles, group/project scope and members",
|
|
9080
10165
|
"options": [
|
|
10166
|
+
{
|
|
10167
|
+
"name": "--yes",
|
|
10168
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10169
|
+
},
|
|
9081
10170
|
{
|
|
9082
10171
|
"name": "--color",
|
|
9083
10172
|
"description": "Color label",
|
|
@@ -9144,6 +10233,12 @@
|
|
|
9144
10233
|
{
|
|
9145
10234
|
"name": "delete",
|
|
9146
10235
|
"description": "Delete a team (its members lose the access this team granted)",
|
|
10236
|
+
"options": [
|
|
10237
|
+
{
|
|
10238
|
+
"name": "--yes",
|
|
10239
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10240
|
+
}
|
|
10241
|
+
],
|
|
9147
10242
|
"arguments": [
|
|
9148
10243
|
{
|
|
9149
10244
|
"name": "TEAM",
|
|
@@ -9159,6 +10254,10 @@
|
|
|
9159
10254
|
"name": "list",
|
|
9160
10255
|
"description": "List the teams (people with scope) in your organization",
|
|
9161
10256
|
"options": [
|
|
10257
|
+
{
|
|
10258
|
+
"name": "--yes",
|
|
10259
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10260
|
+
},
|
|
9162
10261
|
{
|
|
9163
10262
|
"name": "--page",
|
|
9164
10263
|
"description": "Page number",
|
|
@@ -9178,6 +10277,12 @@
|
|
|
9178
10277
|
{
|
|
9179
10278
|
"name": "remove-member",
|
|
9180
10279
|
"description": "Remove a person from a team, keeping the other members",
|
|
10280
|
+
"options": [
|
|
10281
|
+
{
|
|
10282
|
+
"name": "--yes",
|
|
10283
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10284
|
+
}
|
|
10285
|
+
],
|
|
9181
10286
|
"arguments": [
|
|
9182
10287
|
{
|
|
9183
10288
|
"name": "TEAM",
|
|
@@ -9197,6 +10302,12 @@
|
|
|
9197
10302
|
{
|
|
9198
10303
|
"name": "show",
|
|
9199
10304
|
"description": "Show a team by id or name (roles, group/project scope, members)",
|
|
10305
|
+
"options": [
|
|
10306
|
+
{
|
|
10307
|
+
"name": "--yes",
|
|
10308
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10309
|
+
}
|
|
10310
|
+
],
|
|
9200
10311
|
"arguments": [
|
|
9201
10312
|
{
|
|
9202
10313
|
"name": "TEAM",
|
|
@@ -9212,6 +10323,10 @@
|
|
|
9212
10323
|
"name": "update",
|
|
9213
10324
|
"description": "Update a team. Each given dimension REPLACES the whole set for that dimension.",
|
|
9214
10325
|
"options": [
|
|
10326
|
+
{
|
|
10327
|
+
"name": "--yes",
|
|
10328
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10329
|
+
},
|
|
9215
10330
|
{
|
|
9216
10331
|
"name": "--color",
|
|
9217
10332
|
"description": "Color label",
|
|
@@ -9295,6 +10410,10 @@
|
|
|
9295
10410
|
"name": "approve",
|
|
9296
10411
|
"description": "Approve a ticket review: move it to the first done status",
|
|
9297
10412
|
"options": [
|
|
10413
|
+
{
|
|
10414
|
+
"name": "--yes",
|
|
10415
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10416
|
+
},
|
|
9298
10417
|
{
|
|
9299
10418
|
"name": "--project",
|
|
9300
10419
|
"aliases": [
|
|
@@ -9325,6 +10444,10 @@
|
|
|
9325
10444
|
"name": "ask",
|
|
9326
10445
|
"description": "Ask a natural-language question about the tickets you can see; the AI answers and cites the tickets it used (may take a few seconds)",
|
|
9327
10446
|
"options": [
|
|
10447
|
+
{
|
|
10448
|
+
"name": "--yes",
|
|
10449
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10450
|
+
},
|
|
9328
10451
|
{
|
|
9329
10452
|
"name": "--timeout",
|
|
9330
10453
|
"description": "Seconds to wait for the answer before giving up",
|
|
@@ -9351,6 +10474,10 @@
|
|
|
9351
10474
|
"name": "assign",
|
|
9352
10475
|
"description": "Assign a ticket to an account, or unassign it (--unassign)",
|
|
9353
10476
|
"options": [
|
|
10477
|
+
{
|
|
10478
|
+
"name": "--yes",
|
|
10479
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10480
|
+
},
|
|
9354
10481
|
{
|
|
9355
10482
|
"name": "--project",
|
|
9356
10483
|
"aliases": [
|
|
@@ -9396,6 +10523,10 @@
|
|
|
9396
10523
|
"name": "attach",
|
|
9397
10524
|
"description": "Attach one or more local files to a ticket",
|
|
9398
10525
|
"options": [
|
|
10526
|
+
{
|
|
10527
|
+
"name": "--yes",
|
|
10528
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10529
|
+
},
|
|
9399
10530
|
{
|
|
9400
10531
|
"name": "--project",
|
|
9401
10532
|
"aliases": [
|
|
@@ -9438,6 +10569,10 @@
|
|
|
9438
10569
|
"name": "attachment-download",
|
|
9439
10570
|
"description": "Download a ticket binary to disk: works for ticket attachments AND files attached to its comments",
|
|
9440
10571
|
"options": [
|
|
10572
|
+
{
|
|
10573
|
+
"name": "--yes",
|
|
10574
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10575
|
+
},
|
|
9441
10576
|
{
|
|
9442
10577
|
"name": "--project",
|
|
9443
10578
|
"aliases": [
|
|
@@ -9494,6 +10629,10 @@
|
|
|
9494
10629
|
"name": "attachments",
|
|
9495
10630
|
"description": "List a ticket's attachments",
|
|
9496
10631
|
"options": [
|
|
10632
|
+
{
|
|
10633
|
+
"name": "--yes",
|
|
10634
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10635
|
+
},
|
|
9497
10636
|
{
|
|
9498
10637
|
"name": "--project",
|
|
9499
10638
|
"aliases": [
|
|
@@ -9525,6 +10664,10 @@
|
|
|
9525
10664
|
"name": "branch",
|
|
9526
10665
|
"description": "Create a GitHub branch from a ticket (name prefixed with the ticket code)",
|
|
9527
10666
|
"options": [
|
|
10667
|
+
{
|
|
10668
|
+
"name": "--yes",
|
|
10669
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10670
|
+
},
|
|
9528
10671
|
{
|
|
9529
10672
|
"name": "--project",
|
|
9530
10673
|
"aliases": [
|
|
@@ -9552,10 +10695,49 @@
|
|
|
9552
10695
|
"closeyourit tickets branch DRFL-3 -p driverone-flutter --json"
|
|
9553
10696
|
]
|
|
9554
10697
|
},
|
|
10698
|
+
{
|
|
10699
|
+
"name": "clarifications",
|
|
10700
|
+
"description": "Show the clarification cycle state of a ticket (rounds, reply, escalation)",
|
|
10701
|
+
"options": [
|
|
10702
|
+
{
|
|
10703
|
+
"name": "--yes",
|
|
10704
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10705
|
+
},
|
|
10706
|
+
{
|
|
10707
|
+
"name": "--project",
|
|
10708
|
+
"aliases": [
|
|
10709
|
+
"-p"
|
|
10710
|
+
],
|
|
10711
|
+
"description": "Project id (UUID) or key",
|
|
10712
|
+
"required": true,
|
|
10713
|
+
"arguments": [
|
|
10714
|
+
{
|
|
10715
|
+
"name": "PROJECT",
|
|
10716
|
+
"required": true
|
|
10717
|
+
}
|
|
10718
|
+
]
|
|
10719
|
+
}
|
|
10720
|
+
],
|
|
10721
|
+
"arguments": [
|
|
10722
|
+
{
|
|
10723
|
+
"name": "ID",
|
|
10724
|
+
"required": true,
|
|
10725
|
+
"description": "Ticket id or code (e.g. DRFL-3)"
|
|
10726
|
+
}
|
|
10727
|
+
],
|
|
10728
|
+
"examples": [
|
|
10729
|
+
"closeyourit tickets clarifications <ticket-id> --project acme-api",
|
|
10730
|
+
"closeyourit tickets clarifications DRFL-3 -p acme-api --json"
|
|
10731
|
+
]
|
|
10732
|
+
},
|
|
9555
10733
|
{
|
|
9556
10734
|
"name": "comment",
|
|
9557
10735
|
"description": "Add a comment to a ticket",
|
|
9558
10736
|
"options": [
|
|
10737
|
+
{
|
|
10738
|
+
"name": "--yes",
|
|
10739
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10740
|
+
},
|
|
9559
10741
|
{
|
|
9560
10742
|
"name": "--project",
|
|
9561
10743
|
"aliases": [
|
|
@@ -9597,6 +10779,10 @@
|
|
|
9597
10779
|
"name": "comment-delete",
|
|
9598
10780
|
"description": "Delete a comment from a ticket (author, or with tickets.comment.delete_any)",
|
|
9599
10781
|
"options": [
|
|
10782
|
+
{
|
|
10783
|
+
"name": "--yes",
|
|
10784
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10785
|
+
},
|
|
9600
10786
|
{
|
|
9601
10787
|
"name": "--project",
|
|
9602
10788
|
"aliases": [
|
|
@@ -9642,6 +10828,10 @@
|
|
|
9642
10828
|
"name": "comments",
|
|
9643
10829
|
"description": "List all comments of a ticket (oldest first), including attached files — download them with tickets attachment-download",
|
|
9644
10830
|
"options": [
|
|
10831
|
+
{
|
|
10832
|
+
"name": "--yes",
|
|
10833
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10834
|
+
},
|
|
9645
10835
|
{
|
|
9646
10836
|
"name": "--project",
|
|
9647
10837
|
"aliases": [
|
|
@@ -9673,6 +10863,10 @@
|
|
|
9673
10863
|
"name": "create",
|
|
9674
10864
|
"description": "Create a ticket (status defaults to open, priority to medium; both take a code or a label)",
|
|
9675
10865
|
"options": [
|
|
10866
|
+
{
|
|
10867
|
+
"name": "--yes",
|
|
10868
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
10869
|
+
},
|
|
9676
10870
|
{
|
|
9677
10871
|
"name": "--project",
|
|
9678
10872
|
"aliases": [
|
|
@@ -9886,6 +11080,10 @@
|
|
|
9886
11080
|
"name": "delete",
|
|
9887
11081
|
"description": "Delete a ticket (irreversible)",
|
|
9888
11082
|
"options": [
|
|
11083
|
+
{
|
|
11084
|
+
"name": "--yes",
|
|
11085
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11086
|
+
},
|
|
9889
11087
|
{
|
|
9890
11088
|
"name": "--project",
|
|
9891
11089
|
"aliases": [
|
|
@@ -9918,11 +11116,16 @@
|
|
|
9918
11116
|
},
|
|
9919
11117
|
{
|
|
9920
11118
|
"name": "dependencies",
|
|
11119
|
+
"description": "Ticket prerequisites: what has to be finished before a ticket can start",
|
|
9921
11120
|
"commands": [
|
|
9922
11121
|
{
|
|
9923
11122
|
"name": "add",
|
|
9924
11123
|
"description": "Add a prerequisite to a ticket: the blocker has to be finished before this ticket can start",
|
|
9925
11124
|
"options": [
|
|
11125
|
+
{
|
|
11126
|
+
"name": "--yes",
|
|
11127
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11128
|
+
},
|
|
9926
11129
|
{
|
|
9927
11130
|
"name": "--project",
|
|
9928
11131
|
"aliases": [
|
|
@@ -9959,6 +11162,10 @@
|
|
|
9959
11162
|
"name": "list",
|
|
9960
11163
|
"description": "List the prerequisites of a ticket: what has to be finished before this one can start",
|
|
9961
11164
|
"options": [
|
|
11165
|
+
{
|
|
11166
|
+
"name": "--yes",
|
|
11167
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11168
|
+
},
|
|
9962
11169
|
{
|
|
9963
11170
|
"name": "--project",
|
|
9964
11171
|
"aliases": [
|
|
@@ -9990,6 +11197,10 @@
|
|
|
9990
11197
|
"name": "remove",
|
|
9991
11198
|
"description": "Remove a prerequisite from a ticket",
|
|
9992
11199
|
"options": [
|
|
11200
|
+
{
|
|
11201
|
+
"name": "--yes",
|
|
11202
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11203
|
+
},
|
|
9993
11204
|
{
|
|
9994
11205
|
"name": "--project",
|
|
9995
11206
|
"aliases": [
|
|
@@ -10027,6 +11238,10 @@
|
|
|
10027
11238
|
"name": "detach",
|
|
10028
11239
|
"description": "Remove an attachment from a ticket (irreversible)",
|
|
10029
11240
|
"options": [
|
|
11241
|
+
{
|
|
11242
|
+
"name": "--yes",
|
|
11243
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11244
|
+
},
|
|
10030
11245
|
{
|
|
10031
11246
|
"name": "--project",
|
|
10032
11247
|
"aliases": [
|
|
@@ -10072,6 +11287,10 @@
|
|
|
10072
11287
|
"name": "eligibility",
|
|
10073
11288
|
"description": "Allow or block a ticket for autonomous agents (requires tickets.edit)",
|
|
10074
11289
|
"options": [
|
|
11290
|
+
{
|
|
11291
|
+
"name": "--yes",
|
|
11292
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11293
|
+
},
|
|
10075
11294
|
{
|
|
10076
11295
|
"name": "--project",
|
|
10077
11296
|
"aliases": [
|
|
@@ -10124,11 +11343,16 @@
|
|
|
10124
11343
|
},
|
|
10125
11344
|
{
|
|
10126
11345
|
"name": "lease",
|
|
11346
|
+
"description": "Working lease on a ticket: claim, renew, release (one worker at a time)",
|
|
10127
11347
|
"commands": [
|
|
10128
11348
|
{
|
|
10129
11349
|
"name": "claim",
|
|
10130
11350
|
"description": "Claim the working lease on a ticket, so nobody else (person or agent) starts it at the same time",
|
|
10131
11351
|
"options": [
|
|
11352
|
+
{
|
|
11353
|
+
"name": "--yes",
|
|
11354
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11355
|
+
},
|
|
10132
11356
|
{
|
|
10133
11357
|
"name": "--project",
|
|
10134
11358
|
"aliases": [
|
|
@@ -10180,6 +11404,10 @@
|
|
|
10180
11404
|
"name": "release",
|
|
10181
11405
|
"description": "Release your own working lease on a ticket, so someone else can claim it",
|
|
10182
11406
|
"options": [
|
|
11407
|
+
{
|
|
11408
|
+
"name": "--yes",
|
|
11409
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11410
|
+
},
|
|
10183
11411
|
{
|
|
10184
11412
|
"name": "--project",
|
|
10185
11413
|
"aliases": [
|
|
@@ -10221,6 +11449,10 @@
|
|
|
10221
11449
|
"name": "renew",
|
|
10222
11450
|
"description": "Extend your own working lease on a ticket before it expires",
|
|
10223
11451
|
"options": [
|
|
11452
|
+
{
|
|
11453
|
+
"name": "--yes",
|
|
11454
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11455
|
+
},
|
|
10224
11456
|
{
|
|
10225
11457
|
"name": "--project",
|
|
10226
11458
|
"aliases": [
|
|
@@ -10274,6 +11506,10 @@
|
|
|
10274
11506
|
"name": "links",
|
|
10275
11507
|
"description": "List the ticket-to-ticket links involving a ticket (duplicate/related)",
|
|
10276
11508
|
"options": [
|
|
11509
|
+
{
|
|
11510
|
+
"name": "--yes",
|
|
11511
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11512
|
+
},
|
|
10277
11513
|
{
|
|
10278
11514
|
"name": "--project",
|
|
10279
11515
|
"aliases": [
|
|
@@ -10305,6 +11541,10 @@
|
|
|
10305
11541
|
"name": "list",
|
|
10306
11542
|
"description": "List tickets for a project",
|
|
10307
11543
|
"options": [
|
|
11544
|
+
{
|
|
11545
|
+
"name": "--yes",
|
|
11546
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11547
|
+
},
|
|
10308
11548
|
{
|
|
10309
11549
|
"name": "--project",
|
|
10310
11550
|
"aliases": [
|
|
@@ -10355,6 +11595,10 @@
|
|
|
10355
11595
|
"name": "milestone",
|
|
10356
11596
|
"description": "Set or clear a ticket milestone (--clear)",
|
|
10357
11597
|
"options": [
|
|
11598
|
+
{
|
|
11599
|
+
"name": "--yes",
|
|
11600
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11601
|
+
},
|
|
10358
11602
|
{
|
|
10359
11603
|
"name": "--project",
|
|
10360
11604
|
"aliases": [
|
|
@@ -10400,6 +11644,10 @@
|
|
|
10400
11644
|
"name": "pr",
|
|
10401
11645
|
"description": "Open a GitHub pull request from a ticket (head = the ticket branch, title prefixed with the code)",
|
|
10402
11646
|
"options": [
|
|
11647
|
+
{
|
|
11648
|
+
"name": "--yes",
|
|
11649
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11650
|
+
},
|
|
10403
11651
|
{
|
|
10404
11652
|
"name": "--project",
|
|
10405
11653
|
"aliases": [
|
|
@@ -10430,6 +11678,12 @@
|
|
|
10430
11678
|
{
|
|
10431
11679
|
"name": "priorities",
|
|
10432
11680
|
"description": "List the organization ticket priorities (id, code, label) — the id feeds `tickets create --priority-id`",
|
|
11681
|
+
"options": [
|
|
11682
|
+
{
|
|
11683
|
+
"name": "--yes",
|
|
11684
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11685
|
+
}
|
|
11686
|
+
],
|
|
10433
11687
|
"examples": [
|
|
10434
11688
|
"closeyourit tickets priorities",
|
|
10435
11689
|
"closeyourit tickets priorities --json"
|
|
@@ -10439,6 +11693,10 @@
|
|
|
10439
11693
|
"name": "reject",
|
|
10440
11694
|
"description": "Reject a ticket review: send it back to work with a reason",
|
|
10441
11695
|
"options": [
|
|
11696
|
+
{
|
|
11697
|
+
"name": "--yes",
|
|
11698
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11699
|
+
},
|
|
10442
11700
|
{
|
|
10443
11701
|
"name": "--project",
|
|
10444
11702
|
"aliases": [
|
|
@@ -10480,6 +11738,10 @@
|
|
|
10480
11738
|
"name": "report",
|
|
10481
11739
|
"description": "Write the work report of a ticket — the long text a comment cannot hold. Each write adds a version, it never overwrites the previous one",
|
|
10482
11740
|
"options": [
|
|
11741
|
+
{
|
|
11742
|
+
"name": "--yes",
|
|
11743
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11744
|
+
},
|
|
10483
11745
|
{
|
|
10484
11746
|
"name": "--project",
|
|
10485
11747
|
"aliases": [
|
|
@@ -10531,6 +11793,10 @@
|
|
|
10531
11793
|
"name": "report-show",
|
|
10532
11794
|
"description": "Show the current work report of a ticket, or a past version with --version",
|
|
10533
11795
|
"options": [
|
|
11796
|
+
{
|
|
11797
|
+
"name": "--yes",
|
|
11798
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11799
|
+
},
|
|
10534
11800
|
{
|
|
10535
11801
|
"name": "--project",
|
|
10536
11802
|
"aliases": [
|
|
@@ -10572,6 +11838,10 @@
|
|
|
10572
11838
|
"name": "report-versions",
|
|
10573
11839
|
"description": "List the versions of the work report of a ticket (newest first)",
|
|
10574
11840
|
"options": [
|
|
11841
|
+
{
|
|
11842
|
+
"name": "--yes",
|
|
11843
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11844
|
+
},
|
|
10575
11845
|
{
|
|
10576
11846
|
"name": "--project",
|
|
10577
11847
|
"aliases": [
|
|
@@ -10613,6 +11883,10 @@
|
|
|
10613
11883
|
"name": "reviewer",
|
|
10614
11884
|
"description": "Set the reviewer of a ticket (requires tickets.assign)",
|
|
10615
11885
|
"options": [
|
|
11886
|
+
{
|
|
11887
|
+
"name": "--yes",
|
|
11888
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11889
|
+
},
|
|
10616
11890
|
{
|
|
10617
11891
|
"name": "--project",
|
|
10618
11892
|
"aliases": [
|
|
@@ -10654,6 +11928,10 @@
|
|
|
10654
11928
|
"name": "show",
|
|
10655
11929
|
"description": "Show a single ticket in full: body (description + Given/When/Then/Expected), comments (with their files) and attachments",
|
|
10656
11930
|
"options": [
|
|
11931
|
+
{
|
|
11932
|
+
"name": "--yes",
|
|
11933
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11934
|
+
},
|
|
10657
11935
|
{
|
|
10658
11936
|
"name": "--project",
|
|
10659
11937
|
"aliases": [
|
|
@@ -10686,6 +11964,10 @@
|
|
|
10686
11964
|
"name": "status",
|
|
10687
11965
|
"description": "Change a ticket status (by code, label or id)",
|
|
10688
11966
|
"options": [
|
|
11967
|
+
{
|
|
11968
|
+
"name": "--yes",
|
|
11969
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
11970
|
+
},
|
|
10689
11971
|
{
|
|
10690
11972
|
"name": "--project",
|
|
10691
11973
|
"aliases": [
|
|
@@ -10727,6 +12009,12 @@
|
|
|
10727
12009
|
{
|
|
10728
12010
|
"name": "statuses",
|
|
10729
12011
|
"description": "List the organization ticket statuses (id, code, label) — the id feeds `tickets create --status-id`",
|
|
12012
|
+
"options": [
|
|
12013
|
+
{
|
|
12014
|
+
"name": "--yes",
|
|
12015
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12016
|
+
}
|
|
12017
|
+
],
|
|
10730
12018
|
"examples": [
|
|
10731
12019
|
"closeyourit tickets statuses",
|
|
10732
12020
|
"closeyourit tickets statuses --json"
|
|
@@ -10736,6 +12024,10 @@
|
|
|
10736
12024
|
"name": "unlink",
|
|
10737
12025
|
"description": "Remove a ticket-to-ticket link (irreversible; requires tickets.edit)",
|
|
10738
12026
|
"options": [
|
|
12027
|
+
{
|
|
12028
|
+
"name": "--yes",
|
|
12029
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12030
|
+
},
|
|
10739
12031
|
{
|
|
10740
12032
|
"name": "--project",
|
|
10741
12033
|
"aliases": [
|
|
@@ -10775,6 +12067,10 @@
|
|
|
10775
12067
|
"name": "unreviewer",
|
|
10776
12068
|
"description": "Remove the reviewer of a ticket (requires tickets.assign)",
|
|
10777
12069
|
"options": [
|
|
12070
|
+
{
|
|
12071
|
+
"name": "--yes",
|
|
12072
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12073
|
+
},
|
|
10778
12074
|
{
|
|
10779
12075
|
"name": "--project",
|
|
10780
12076
|
"aliases": [
|
|
@@ -10805,6 +12101,10 @@
|
|
|
10805
12101
|
"name": "unvote",
|
|
10806
12102
|
"description": "Remove your upvote from a ticket (idempotent)",
|
|
10807
12103
|
"options": [
|
|
12104
|
+
{
|
|
12105
|
+
"name": "--yes",
|
|
12106
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12107
|
+
},
|
|
10808
12108
|
{
|
|
10809
12109
|
"name": "--project",
|
|
10810
12110
|
"aliases": [
|
|
@@ -10835,6 +12135,10 @@
|
|
|
10835
12135
|
"name": "unwatch",
|
|
10836
12136
|
"description": "Stop watching a ticket (idempotent)",
|
|
10837
12137
|
"options": [
|
|
12138
|
+
{
|
|
12139
|
+
"name": "--yes",
|
|
12140
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12141
|
+
},
|
|
10838
12142
|
{
|
|
10839
12143
|
"name": "--project",
|
|
10840
12144
|
"aliases": [
|
|
@@ -10865,6 +12169,10 @@
|
|
|
10865
12169
|
"name": "update",
|
|
10866
12170
|
"description": "Update a ticket, changing only the fields you pass (the others keep their current value; use --clear to empty one, --replace for the raw full replace)",
|
|
10867
12171
|
"options": [
|
|
12172
|
+
{
|
|
12173
|
+
"name": "--yes",
|
|
12174
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12175
|
+
},
|
|
10868
12176
|
{
|
|
10869
12177
|
"name": "--project",
|
|
10870
12178
|
"aliases": [
|
|
@@ -11109,6 +12417,10 @@
|
|
|
11109
12417
|
"name": "vote",
|
|
11110
12418
|
"description": "Upvote a ticket (idempotent)",
|
|
11111
12419
|
"options": [
|
|
12420
|
+
{
|
|
12421
|
+
"name": "--yes",
|
|
12422
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12423
|
+
},
|
|
11112
12424
|
{
|
|
11113
12425
|
"name": "--project",
|
|
11114
12426
|
"aliases": [
|
|
@@ -11139,6 +12451,10 @@
|
|
|
11139
12451
|
"name": "watch",
|
|
11140
12452
|
"description": "Watch a ticket to receive its notifications (idempotent)",
|
|
11141
12453
|
"options": [
|
|
12454
|
+
{
|
|
12455
|
+
"name": "--yes",
|
|
12456
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12457
|
+
},
|
|
11142
12458
|
{
|
|
11143
12459
|
"name": "--project",
|
|
11144
12460
|
"aliases": [
|
|
@@ -11169,6 +12485,10 @@
|
|
|
11169
12485
|
"name": "work-context",
|
|
11170
12486
|
"description": "Show the work context frozen when an automation host claimed the ticket: the references and procedures actually delivered back then, never the project's current guidance",
|
|
11171
12487
|
"options": [
|
|
12488
|
+
{
|
|
12489
|
+
"name": "--yes",
|
|
12490
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12491
|
+
},
|
|
11172
12492
|
{
|
|
11173
12493
|
"name": "--project",
|
|
11174
12494
|
"aliases": [
|
|
@@ -11211,6 +12531,12 @@
|
|
|
11211
12531
|
{
|
|
11212
12532
|
"name": "complete",
|
|
11213
12533
|
"description": "Mark a todo item as done",
|
|
12534
|
+
"options": [
|
|
12535
|
+
{
|
|
12536
|
+
"name": "--yes",
|
|
12537
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12538
|
+
}
|
|
12539
|
+
],
|
|
11214
12540
|
"arguments": [
|
|
11215
12541
|
{
|
|
11216
12542
|
"name": "LISTID",
|
|
@@ -11231,6 +12557,10 @@
|
|
|
11231
12557
|
"name": "create",
|
|
11232
12558
|
"description": "Create a todo list",
|
|
11233
12559
|
"options": [
|
|
12560
|
+
{
|
|
12561
|
+
"name": "--yes",
|
|
12562
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12563
|
+
},
|
|
11234
12564
|
{
|
|
11235
12565
|
"name": "--name",
|
|
11236
12566
|
"description": "List name",
|
|
@@ -11262,6 +12592,10 @@
|
|
|
11262
12592
|
"name": "delete",
|
|
11263
12593
|
"description": "Delete a todo list (irreversible)",
|
|
11264
12594
|
"options": [
|
|
12595
|
+
{
|
|
12596
|
+
"name": "--yes",
|
|
12597
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12598
|
+
},
|
|
11265
12599
|
{
|
|
11266
12600
|
"name": "--confirm",
|
|
11267
12601
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -11280,11 +12614,16 @@
|
|
|
11280
12614
|
},
|
|
11281
12615
|
{
|
|
11282
12616
|
"name": "items",
|
|
12617
|
+
"description": "Items of a todo list: add, list, update, delete",
|
|
11283
12618
|
"commands": [
|
|
11284
12619
|
{
|
|
11285
12620
|
"name": "add",
|
|
11286
12621
|
"description": "Add an item to a todo list",
|
|
11287
12622
|
"options": [
|
|
12623
|
+
{
|
|
12624
|
+
"name": "--yes",
|
|
12625
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12626
|
+
},
|
|
11288
12627
|
{
|
|
11289
12628
|
"name": "--title",
|
|
11290
12629
|
"description": "Item title",
|
|
@@ -11333,6 +12672,10 @@
|
|
|
11333
12672
|
"name": "delete",
|
|
11334
12673
|
"description": "Delete a todo item (irreversible)",
|
|
11335
12674
|
"options": [
|
|
12675
|
+
{
|
|
12676
|
+
"name": "--yes",
|
|
12677
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12678
|
+
},
|
|
11336
12679
|
{
|
|
11337
12680
|
"name": "--confirm",
|
|
11338
12681
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -11358,6 +12701,10 @@
|
|
|
11358
12701
|
"name": "list",
|
|
11359
12702
|
"description": "List the items of one of your todo lists",
|
|
11360
12703
|
"options": [
|
|
12704
|
+
{
|
|
12705
|
+
"name": "--yes",
|
|
12706
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12707
|
+
},
|
|
11361
12708
|
{
|
|
11362
12709
|
"name": "--page",
|
|
11363
12710
|
"description": "Page number",
|
|
@@ -11384,6 +12731,10 @@
|
|
|
11384
12731
|
"name": "update",
|
|
11385
12732
|
"description": "Update a todo item (retitle, relink a ticket, or reposition)",
|
|
11386
12733
|
"options": [
|
|
12734
|
+
{
|
|
12735
|
+
"name": "--yes",
|
|
12736
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12737
|
+
},
|
|
11387
12738
|
{
|
|
11388
12739
|
"name": "--title",
|
|
11389
12740
|
"description": "New title",
|
|
@@ -11438,6 +12789,10 @@
|
|
|
11438
12789
|
"name": "list",
|
|
11439
12790
|
"description": "List your own todo lists",
|
|
11440
12791
|
"options": [
|
|
12792
|
+
{
|
|
12793
|
+
"name": "--yes",
|
|
12794
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12795
|
+
},
|
|
11441
12796
|
{
|
|
11442
12797
|
"name": "--page",
|
|
11443
12798
|
"description": "Page number",
|
|
@@ -11458,6 +12813,10 @@
|
|
|
11458
12813
|
"name": "reorder",
|
|
11459
12814
|
"description": "Reorder your todo lists (pass --list once per id, in the desired order)",
|
|
11460
12815
|
"options": [
|
|
12816
|
+
{
|
|
12817
|
+
"name": "--yes",
|
|
12818
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12819
|
+
},
|
|
11461
12820
|
{
|
|
11462
12821
|
"name": "--list",
|
|
11463
12822
|
"description": "List id, in order (repeatable)",
|
|
@@ -11478,6 +12837,10 @@
|
|
|
11478
12837
|
"name": "share",
|
|
11479
12838
|
"description": "Set who a todo list is shared with (replaces the set; omit --account to unshare all)",
|
|
11480
12839
|
"options": [
|
|
12840
|
+
{
|
|
12841
|
+
"name": "--yes",
|
|
12842
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12843
|
+
},
|
|
11481
12844
|
{
|
|
11482
12845
|
"name": "--account",
|
|
11483
12846
|
"description": "Recipient account id (repeatable)",
|
|
@@ -11505,6 +12868,10 @@
|
|
|
11505
12868
|
"name": "shared",
|
|
11506
12869
|
"description": "List todo lists shared with you (read-only)",
|
|
11507
12870
|
"options": [
|
|
12871
|
+
{
|
|
12872
|
+
"name": "--yes",
|
|
12873
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12874
|
+
},
|
|
11508
12875
|
{
|
|
11509
12876
|
"name": "--page",
|
|
11510
12877
|
"description": "Page number",
|
|
@@ -11524,6 +12891,12 @@
|
|
|
11524
12891
|
{
|
|
11525
12892
|
"name": "shared-show",
|
|
11526
12893
|
"description": "Show a todo list shared with you (read-only)",
|
|
12894
|
+
"options": [
|
|
12895
|
+
{
|
|
12896
|
+
"name": "--yes",
|
|
12897
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12898
|
+
}
|
|
12899
|
+
],
|
|
11527
12900
|
"arguments": [
|
|
11528
12901
|
{
|
|
11529
12902
|
"name": "ID",
|
|
@@ -11538,6 +12911,12 @@
|
|
|
11538
12911
|
{
|
|
11539
12912
|
"name": "shares",
|
|
11540
12913
|
"description": "List the members a todo list is shared with (read-only)",
|
|
12914
|
+
"options": [
|
|
12915
|
+
{
|
|
12916
|
+
"name": "--yes",
|
|
12917
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12918
|
+
}
|
|
12919
|
+
],
|
|
11541
12920
|
"arguments": [
|
|
11542
12921
|
{
|
|
11543
12922
|
"name": "LISTID",
|
|
@@ -11552,6 +12931,12 @@
|
|
|
11552
12931
|
{
|
|
11553
12932
|
"name": "show",
|
|
11554
12933
|
"description": "Show one of your todo lists",
|
|
12934
|
+
"options": [
|
|
12935
|
+
{
|
|
12936
|
+
"name": "--yes",
|
|
12937
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12938
|
+
}
|
|
12939
|
+
],
|
|
11555
12940
|
"arguments": [
|
|
11556
12941
|
{
|
|
11557
12942
|
"name": "ID",
|
|
@@ -11566,6 +12951,12 @@
|
|
|
11566
12951
|
{
|
|
11567
12952
|
"name": "uncomplete",
|
|
11568
12953
|
"description": "Reopen a todo item (mark it not done)",
|
|
12954
|
+
"options": [
|
|
12955
|
+
{
|
|
12956
|
+
"name": "--yes",
|
|
12957
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12958
|
+
}
|
|
12959
|
+
],
|
|
11569
12960
|
"arguments": [
|
|
11570
12961
|
{
|
|
11571
12962
|
"name": "LISTID",
|
|
@@ -11586,6 +12977,10 @@
|
|
|
11586
12977
|
"name": "update",
|
|
11587
12978
|
"description": "Update a todo list (rename or recolor)",
|
|
11588
12979
|
"options": [
|
|
12980
|
+
{
|
|
12981
|
+
"name": "--yes",
|
|
12982
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
12983
|
+
},
|
|
11589
12984
|
{
|
|
11590
12985
|
"name": "--name",
|
|
11591
12986
|
"description": "New name",
|
|
@@ -11629,6 +13024,10 @@
|
|
|
11629
13024
|
"name": "create",
|
|
11630
13025
|
"description": "Create an ingest token (the secret is shown only once)",
|
|
11631
13026
|
"options": [
|
|
13027
|
+
{
|
|
13028
|
+
"name": "--yes",
|
|
13029
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13030
|
+
},
|
|
11632
13031
|
{
|
|
11633
13032
|
"name": "--project",
|
|
11634
13033
|
"aliases": [
|
|
@@ -11674,6 +13073,10 @@
|
|
|
11674
13073
|
"name": "list",
|
|
11675
13074
|
"description": "List ingest tokens for a project",
|
|
11676
13075
|
"options": [
|
|
13076
|
+
{
|
|
13077
|
+
"name": "--yes",
|
|
13078
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13079
|
+
},
|
|
11677
13080
|
{
|
|
11678
13081
|
"name": "--project",
|
|
11679
13082
|
"aliases": [
|
|
@@ -11698,6 +13101,10 @@
|
|
|
11698
13101
|
"name": "provision",
|
|
11699
13102
|
"description": "Generate an ingest token and deliver it without revealing the secret",
|
|
11700
13103
|
"options": [
|
|
13104
|
+
{
|
|
13105
|
+
"name": "--yes",
|
|
13106
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13107
|
+
},
|
|
11701
13108
|
{
|
|
11702
13109
|
"name": "--project",
|
|
11703
13110
|
"aliases": [
|
|
@@ -11806,11 +13213,16 @@
|
|
|
11806
13213
|
},
|
|
11807
13214
|
{
|
|
11808
13215
|
"name": "provisions",
|
|
13216
|
+
"description": "GitHub provisioning of an ingest token: status and retry (never the secret)",
|
|
11809
13217
|
"commands": [
|
|
11810
13218
|
{
|
|
11811
13219
|
"name": "retry",
|
|
11812
13220
|
"description": "Retry GitHub synchronization without regenerating or revealing the token",
|
|
11813
13221
|
"options": [
|
|
13222
|
+
{
|
|
13223
|
+
"name": "--yes",
|
|
13224
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13225
|
+
},
|
|
11814
13226
|
{
|
|
11815
13227
|
"name": "--project",
|
|
11816
13228
|
"aliases": [
|
|
@@ -11838,6 +13250,10 @@
|
|
|
11838
13250
|
"name": "show",
|
|
11839
13251
|
"description": "Show secret-free token provision status",
|
|
11840
13252
|
"options": [
|
|
13253
|
+
{
|
|
13254
|
+
"name": "--yes",
|
|
13255
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13256
|
+
},
|
|
11841
13257
|
{
|
|
11842
13258
|
"name": "--project",
|
|
11843
13259
|
"aliases": [
|
|
@@ -11867,6 +13283,10 @@
|
|
|
11867
13283
|
"name": "revoke",
|
|
11868
13284
|
"description": "Revoke an ingest token",
|
|
11869
13285
|
"options": [
|
|
13286
|
+
{
|
|
13287
|
+
"name": "--yes",
|
|
13288
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13289
|
+
},
|
|
11870
13290
|
{
|
|
11871
13291
|
"name": "--project",
|
|
11872
13292
|
"aliases": [
|
|
@@ -11897,6 +13317,10 @@
|
|
|
11897
13317
|
"name": "rotate",
|
|
11898
13318
|
"description": "Rotate an ingest token (the new secret is shown only once)",
|
|
11899
13319
|
"options": [
|
|
13320
|
+
{
|
|
13321
|
+
"name": "--yes",
|
|
13322
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13323
|
+
},
|
|
11900
13324
|
{
|
|
11901
13325
|
"name": "--project",
|
|
11902
13326
|
"aliases": [
|
|
@@ -11933,6 +13357,10 @@
|
|
|
11933
13357
|
"name": "create",
|
|
11934
13358
|
"description": "Create an uptime monitor group (org-level container)",
|
|
11935
13359
|
"options": [
|
|
13360
|
+
{
|
|
13361
|
+
"name": "--yes",
|
|
13362
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13363
|
+
},
|
|
11936
13364
|
{
|
|
11937
13365
|
"name": "--name",
|
|
11938
13366
|
"description": "Group name",
|
|
@@ -11984,6 +13412,10 @@
|
|
|
11984
13412
|
"name": "delete",
|
|
11985
13413
|
"description": "Delete an uptime monitor group (irreversible)",
|
|
11986
13414
|
"options": [
|
|
13415
|
+
{
|
|
13416
|
+
"name": "--yes",
|
|
13417
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13418
|
+
},
|
|
11987
13419
|
{
|
|
11988
13420
|
"name": "--confirm",
|
|
11989
13421
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -12004,6 +13436,10 @@
|
|
|
12004
13436
|
"name": "list",
|
|
12005
13437
|
"description": "List the uptime monitor groups in your organization",
|
|
12006
13438
|
"options": [
|
|
13439
|
+
{
|
|
13440
|
+
"name": "--yes",
|
|
13441
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13442
|
+
},
|
|
12007
13443
|
{
|
|
12008
13444
|
"name": "--page",
|
|
12009
13445
|
"description": "Page number",
|
|
@@ -12023,6 +13459,12 @@
|
|
|
12023
13459
|
{
|
|
12024
13460
|
"name": "publish",
|
|
12025
13461
|
"description": "Publish the public status page for an uptime group",
|
|
13462
|
+
"options": [
|
|
13463
|
+
{
|
|
13464
|
+
"name": "--yes",
|
|
13465
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13466
|
+
}
|
|
13467
|
+
],
|
|
12026
13468
|
"arguments": [
|
|
12027
13469
|
{
|
|
12028
13470
|
"name": "ID",
|
|
@@ -12037,6 +13479,12 @@
|
|
|
12037
13479
|
{
|
|
12038
13480
|
"name": "show",
|
|
12039
13481
|
"description": "Show an uptime monitor group",
|
|
13482
|
+
"options": [
|
|
13483
|
+
{
|
|
13484
|
+
"name": "--yes",
|
|
13485
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13486
|
+
}
|
|
13487
|
+
],
|
|
12040
13488
|
"arguments": [
|
|
12041
13489
|
{
|
|
12042
13490
|
"name": "ID",
|
|
@@ -12051,6 +13499,12 @@
|
|
|
12051
13499
|
{
|
|
12052
13500
|
"name": "unpublish",
|
|
12053
13501
|
"description": "Unpublish (retract) the public status page for an uptime group",
|
|
13502
|
+
"options": [
|
|
13503
|
+
{
|
|
13504
|
+
"name": "--yes",
|
|
13505
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13506
|
+
}
|
|
13507
|
+
],
|
|
12054
13508
|
"arguments": [
|
|
12055
13509
|
{
|
|
12056
13510
|
"name": "ID",
|
|
@@ -12066,6 +13520,10 @@
|
|
|
12066
13520
|
"name": "update",
|
|
12067
13521
|
"description": "Update an uptime monitor group (only the provided fields)",
|
|
12068
13522
|
"options": [
|
|
13523
|
+
{
|
|
13524
|
+
"name": "--yes",
|
|
13525
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13526
|
+
},
|
|
12069
13527
|
{
|
|
12070
13528
|
"name": "--name",
|
|
12071
13529
|
"description": "Group name",
|
|
@@ -12120,6 +13578,109 @@
|
|
|
12120
13578
|
}
|
|
12121
13579
|
]
|
|
12122
13580
|
},
|
|
13581
|
+
{
|
|
13582
|
+
"name": "usage",
|
|
13583
|
+
"description": "Usage the product reported as actually executed (routes, jobs, custom keys)",
|
|
13584
|
+
"commands": [
|
|
13585
|
+
{
|
|
13586
|
+
"name": "list",
|
|
13587
|
+
"description": "List the usage symbols the product reported as actually executed (routes as Controller#action, jobs, custom keys)",
|
|
13588
|
+
"options": [
|
|
13589
|
+
{
|
|
13590
|
+
"name": "--yes",
|
|
13591
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13592
|
+
},
|
|
13593
|
+
{
|
|
13594
|
+
"name": "--project",
|
|
13595
|
+
"aliases": [
|
|
13596
|
+
"-p"
|
|
13597
|
+
],
|
|
13598
|
+
"description": "Project id (UUID) or key",
|
|
13599
|
+
"required": true,
|
|
13600
|
+
"arguments": [
|
|
13601
|
+
{
|
|
13602
|
+
"name": "PROJECT",
|
|
13603
|
+
"required": true
|
|
13604
|
+
}
|
|
13605
|
+
]
|
|
13606
|
+
},
|
|
13607
|
+
{
|
|
13608
|
+
"name": "--kind",
|
|
13609
|
+
"description": "Only this kind (route, job, custom)",
|
|
13610
|
+
"arguments": [
|
|
13611
|
+
{
|
|
13612
|
+
"name": "KIND",
|
|
13613
|
+
"required": true
|
|
13614
|
+
}
|
|
13615
|
+
]
|
|
13616
|
+
},
|
|
13617
|
+
{
|
|
13618
|
+
"name": "--environment",
|
|
13619
|
+
"description": "Only this environment",
|
|
13620
|
+
"arguments": [
|
|
13621
|
+
{
|
|
13622
|
+
"name": "ENVIRONMENT",
|
|
13623
|
+
"required": true
|
|
13624
|
+
}
|
|
13625
|
+
]
|
|
13626
|
+
},
|
|
13627
|
+
{
|
|
13628
|
+
"name": "--page",
|
|
13629
|
+
"description": "Page number",
|
|
13630
|
+
"arguments": [
|
|
13631
|
+
{
|
|
13632
|
+
"name": "PAGE",
|
|
13633
|
+
"required": true
|
|
13634
|
+
}
|
|
13635
|
+
]
|
|
13636
|
+
}
|
|
13637
|
+
],
|
|
13638
|
+
"examples": [
|
|
13639
|
+
"closeyourit usage list --project CYRA",
|
|
13640
|
+
"closeyourit usage list -p CYRA --kind route --environment production",
|
|
13641
|
+
"closeyourit usage list -p CYRA --json"
|
|
13642
|
+
]
|
|
13643
|
+
},
|
|
13644
|
+
{
|
|
13645
|
+
"name": "reporters",
|
|
13646
|
+
"description": "List the usage reporters: which SDK is sending usage of each kind, and since when",
|
|
13647
|
+
"options": [
|
|
13648
|
+
{
|
|
13649
|
+
"name": "--yes",
|
|
13650
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13651
|
+
},
|
|
13652
|
+
{
|
|
13653
|
+
"name": "--project",
|
|
13654
|
+
"aliases": [
|
|
13655
|
+
"-p"
|
|
13656
|
+
],
|
|
13657
|
+
"description": "Project id (UUID) or key",
|
|
13658
|
+
"required": true,
|
|
13659
|
+
"arguments": [
|
|
13660
|
+
{
|
|
13661
|
+
"name": "PROJECT",
|
|
13662
|
+
"required": true
|
|
13663
|
+
}
|
|
13664
|
+
]
|
|
13665
|
+
},
|
|
13666
|
+
{
|
|
13667
|
+
"name": "--kind",
|
|
13668
|
+
"description": "Only this kind (route, job, custom)",
|
|
13669
|
+
"arguments": [
|
|
13670
|
+
{
|
|
13671
|
+
"name": "KIND",
|
|
13672
|
+
"required": true
|
|
13673
|
+
}
|
|
13674
|
+
]
|
|
13675
|
+
}
|
|
13676
|
+
],
|
|
13677
|
+
"examples": [
|
|
13678
|
+
"closeyourit usage reporters --project CYRA",
|
|
13679
|
+
"closeyourit usage reporters -p CYRA --kind route"
|
|
13680
|
+
]
|
|
13681
|
+
}
|
|
13682
|
+
]
|
|
13683
|
+
},
|
|
12123
13684
|
{
|
|
12124
13685
|
"name": "vault",
|
|
12125
13686
|
"description": "Vault review: the secret changes waiting for a second approval",
|
|
@@ -12131,6 +13692,12 @@
|
|
|
12131
13692
|
{
|
|
12132
13693
|
"name": "approve",
|
|
12133
13694
|
"description": "Approve a pending secret change request: the change it carries is applied to the vault. Whoever asked for it cannot approve it (four-eyes), and a service account never can.",
|
|
13695
|
+
"options": [
|
|
13696
|
+
{
|
|
13697
|
+
"name": "--yes",
|
|
13698
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13699
|
+
}
|
|
13700
|
+
],
|
|
12134
13701
|
"arguments": [
|
|
12135
13702
|
{
|
|
12136
13703
|
"name": "ID",
|
|
@@ -12146,6 +13713,12 @@
|
|
|
12146
13713
|
{
|
|
12147
13714
|
"name": "list",
|
|
12148
13715
|
"description": "List the secret changes waiting for a second approval, across every visible project. Shows the name and the intent, never the proposed value.",
|
|
13716
|
+
"options": [
|
|
13717
|
+
{
|
|
13718
|
+
"name": "--yes",
|
|
13719
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13720
|
+
}
|
|
13721
|
+
],
|
|
12149
13722
|
"examples": [
|
|
12150
13723
|
"closeyourit vault requests list",
|
|
12151
13724
|
"closeyourit vault requests list --json"
|
|
@@ -12155,6 +13728,10 @@
|
|
|
12155
13728
|
"name": "reject",
|
|
12156
13729
|
"description": "Reject a pending secret change request with a reason. Nothing changes in the vault: the request freezes as rejected and the reason reaches whoever asked.",
|
|
12157
13730
|
"options": [
|
|
13731
|
+
{
|
|
13732
|
+
"name": "--yes",
|
|
13733
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13734
|
+
},
|
|
12158
13735
|
{
|
|
12159
13736
|
"name": "--reason",
|
|
12160
13737
|
"aliases": [
|
|
@@ -12188,6 +13765,7 @@
|
|
|
12188
13765
|
},
|
|
12189
13766
|
{
|
|
12190
13767
|
"name": "vulnerabilities",
|
|
13768
|
+
"description": "Dependency vulnerabilities and runtime support: triage, ignore, promote to ticket",
|
|
12191
13769
|
"commands": [
|
|
12192
13770
|
{
|
|
12193
13771
|
"name": "ignore",
|
|
@@ -12196,6 +13774,10 @@
|
|
|
12196
13774
|
"vulns:ignore"
|
|
12197
13775
|
],
|
|
12198
13776
|
"options": [
|
|
13777
|
+
{
|
|
13778
|
+
"name": "--yes",
|
|
13779
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13780
|
+
},
|
|
12199
13781
|
{
|
|
12200
13782
|
"name": "--note",
|
|
12201
13783
|
"description": "Why you are keeping it (shown alongside the ignored row)",
|
|
@@ -12226,6 +13808,10 @@
|
|
|
12226
13808
|
"vulns:list"
|
|
12227
13809
|
],
|
|
12228
13810
|
"options": [
|
|
13811
|
+
{
|
|
13812
|
+
"name": "--yes",
|
|
13813
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13814
|
+
},
|
|
12229
13815
|
{
|
|
12230
13816
|
"name": "--project",
|
|
12231
13817
|
"aliases": [
|
|
@@ -12293,6 +13879,12 @@
|
|
|
12293
13879
|
"aliases": [
|
|
12294
13880
|
"vulns:promote"
|
|
12295
13881
|
],
|
|
13882
|
+
"options": [
|
|
13883
|
+
{
|
|
13884
|
+
"name": "--yes",
|
|
13885
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13886
|
+
}
|
|
13887
|
+
],
|
|
12296
13888
|
"arguments": [
|
|
12297
13889
|
{
|
|
12298
13890
|
"name": "ID",
|
|
@@ -12310,6 +13902,12 @@
|
|
|
12310
13902
|
"aliases": [
|
|
12311
13903
|
"vulns:reopen"
|
|
12312
13904
|
],
|
|
13905
|
+
"options": [
|
|
13906
|
+
{
|
|
13907
|
+
"name": "--yes",
|
|
13908
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13909
|
+
}
|
|
13910
|
+
],
|
|
12313
13911
|
"arguments": [
|
|
12314
13912
|
{
|
|
12315
13913
|
"name": "ID",
|
|
@@ -12328,6 +13926,10 @@
|
|
|
12328
13926
|
"vulns:rescan"
|
|
12329
13927
|
],
|
|
12330
13928
|
"options": [
|
|
13929
|
+
{
|
|
13930
|
+
"name": "--yes",
|
|
13931
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13932
|
+
},
|
|
12331
13933
|
{
|
|
12332
13934
|
"name": "--project",
|
|
12333
13935
|
"aliases": [
|
|
@@ -12354,6 +13956,10 @@
|
|
|
12354
13956
|
"vulns:runtimes"
|
|
12355
13957
|
],
|
|
12356
13958
|
"options": [
|
|
13959
|
+
{
|
|
13960
|
+
"name": "--yes",
|
|
13961
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
13962
|
+
},
|
|
12357
13963
|
{
|
|
12358
13964
|
"name": "--project",
|
|
12359
13965
|
"aliases": [
|
|
@@ -12389,6 +13995,12 @@
|
|
|
12389
13995
|
"aliases": [
|
|
12390
13996
|
"vulns:show"
|
|
12391
13997
|
],
|
|
13998
|
+
"options": [
|
|
13999
|
+
{
|
|
14000
|
+
"name": "--yes",
|
|
14001
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14002
|
+
}
|
|
14003
|
+
],
|
|
12392
14004
|
"arguments": [
|
|
12393
14005
|
{
|
|
12394
14006
|
"name": "ID",
|
|
@@ -12405,6 +14017,12 @@
|
|
|
12405
14017
|
{
|
|
12406
14018
|
"name": "whoami",
|
|
12407
14019
|
"description": "Show the authenticated account, organization, token prefix and permissions",
|
|
14020
|
+
"options": [
|
|
14021
|
+
{
|
|
14022
|
+
"name": "--yes",
|
|
14023
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14024
|
+
}
|
|
14025
|
+
],
|
|
12408
14026
|
"examples": [
|
|
12409
14027
|
"closeyourit whoami",
|
|
12410
14028
|
"closeyourit whoami --json"
|
|
@@ -12418,6 +14036,10 @@
|
|
|
12418
14036
|
"name": "create",
|
|
12419
14037
|
"description": "Create a workload action (non-dev activity: fair, meeting, call…) on one of your teams. Add the people with `workload participant add`.",
|
|
12420
14038
|
"options": [
|
|
14039
|
+
{
|
|
14040
|
+
"name": "--yes",
|
|
14041
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14042
|
+
},
|
|
12421
14043
|
{
|
|
12422
14044
|
"name": "--team",
|
|
12423
14045
|
"description": "Team id (UUID) or name — the action belongs to it and cannot be moved later",
|
|
@@ -12507,6 +14129,10 @@
|
|
|
12507
14129
|
"name": "delete",
|
|
12508
14130
|
"description": "Delete a workload action (irreversible; a linked ticket survives and only loses the link)",
|
|
12509
14131
|
"options": [
|
|
14132
|
+
{
|
|
14133
|
+
"name": "--yes",
|
|
14134
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14135
|
+
},
|
|
12510
14136
|
{
|
|
12511
14137
|
"name": "--confirm",
|
|
12512
14138
|
"description": "Required: confirm the irreversible deletion"
|
|
@@ -12527,6 +14153,10 @@
|
|
|
12527
14153
|
"name": "list",
|
|
12528
14154
|
"description": "List the workload actions of the teams you belong to (newest first)",
|
|
12529
14155
|
"options": [
|
|
14156
|
+
{
|
|
14157
|
+
"name": "--yes",
|
|
14158
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14159
|
+
},
|
|
12530
14160
|
{
|
|
12531
14161
|
"name": "--page",
|
|
12532
14162
|
"description": "Page number",
|
|
@@ -12550,6 +14180,12 @@
|
|
|
12550
14180
|
{
|
|
12551
14181
|
"name": "add",
|
|
12552
14182
|
"description": "Add someone to a workload action (they must belong to the team that owns it)",
|
|
14183
|
+
"options": [
|
|
14184
|
+
{
|
|
14185
|
+
"name": "--yes",
|
|
14186
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14187
|
+
}
|
|
14188
|
+
],
|
|
12553
14189
|
"arguments": [
|
|
12554
14190
|
{
|
|
12555
14191
|
"name": "ACTION",
|
|
@@ -12569,6 +14205,12 @@
|
|
|
12569
14205
|
{
|
|
12570
14206
|
"name": "remove",
|
|
12571
14207
|
"description": "Remove someone from a workload action (idempotent: removing who is not there succeeds)",
|
|
14208
|
+
"options": [
|
|
14209
|
+
{
|
|
14210
|
+
"name": "--yes",
|
|
14211
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14212
|
+
}
|
|
14213
|
+
],
|
|
12572
14214
|
"arguments": [
|
|
12573
14215
|
{
|
|
12574
14216
|
"name": "ACTION",
|
|
@@ -12591,6 +14233,10 @@
|
|
|
12591
14233
|
"name": "promote",
|
|
12592
14234
|
"description": "Generate a ticket from a workload action and link it back (the action keeps existing; an already linked action is refused)",
|
|
12593
14235
|
"options": [
|
|
14236
|
+
{
|
|
14237
|
+
"name": "--yes",
|
|
14238
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14239
|
+
},
|
|
12594
14240
|
{
|
|
12595
14241
|
"name": "--project",
|
|
12596
14242
|
"aliases": [
|
|
@@ -12677,6 +14323,12 @@
|
|
|
12677
14323
|
{
|
|
12678
14324
|
"name": "show",
|
|
12679
14325
|
"description": "Show one workload action (an action of another team answers 404, never 403)",
|
|
14326
|
+
"options": [
|
|
14327
|
+
{
|
|
14328
|
+
"name": "--yes",
|
|
14329
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14330
|
+
}
|
|
14331
|
+
],
|
|
12680
14332
|
"arguments": [
|
|
12681
14333
|
{
|
|
12682
14334
|
"name": "ID",
|
|
@@ -12692,6 +14344,10 @@
|
|
|
12692
14344
|
"name": "update",
|
|
12693
14345
|
"description": "Update a workload action (only the passed fields change). The team never changes: moving an action would change who can see it.",
|
|
12694
14346
|
"options": [
|
|
14347
|
+
{
|
|
14348
|
+
"name": "--yes",
|
|
14349
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
14350
|
+
},
|
|
12695
14351
|
{
|
|
12696
14352
|
"name": "--title",
|
|
12697
14353
|
"description": "New title",
|