@bussolabs/closeyourit-cli 0.24.1 → 0.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/opencli.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "opencli": "0.1",
4
4
  "info": {
5
5
  "title": "closeyourit",
6
- "version": "0.24.1",
6
+ "version": "0.25.0",
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",
@@ -1145,11 +1275,16 @@
1145
1275
  },
1146
1276
  {
1147
1277
  "name": "coverage",
1278
+ "description": "Test coverage published by the CI (last snapshot per branch)",
1148
1279
  "commands": [
1149
1280
  {
1150
1281
  "name": "show",
1151
1282
  "description": "Show the coverage extract the CI published for a project (last snapshot per branch, never the history)",
1152
1283
  "options": [
1284
+ {
1285
+ "name": "--yes",
1286
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1287
+ },
1153
1288
  {
1154
1289
  "name": "--project",
1155
1290
  "aliases": [
@@ -1191,6 +1326,10 @@
1191
1326
  "name": "list",
1192
1327
  "description": "List cron / heartbeat monitors across your visible projects",
1193
1328
  "options": [
1329
+ {
1330
+ "name": "--yes",
1331
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1332
+ },
1194
1333
  {
1195
1334
  "name": "--page",
1196
1335
  "description": "Page number",
@@ -1239,6 +1378,12 @@
1239
1378
  {
1240
1379
  "name": "show",
1241
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
+ ],
1242
1387
  "arguments": [
1243
1388
  {
1244
1389
  "name": "ID",
@@ -1254,11 +1399,16 @@
1254
1399
  },
1255
1400
  {
1256
1401
  "name": "environments",
1402
+ "description": "Environments (production, staging, …) shared by projects, tokens and monitors",
1257
1403
  "commands": [
1258
1404
  {
1259
1405
  "name": "create",
1260
1406
  "description": "Create an environment (production, staging, …) in your organization",
1261
1407
  "options": [
1408
+ {
1409
+ "name": "--yes",
1410
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1411
+ },
1262
1412
  {
1263
1413
  "name": "--label",
1264
1414
  "description": "Human-readable label",
@@ -1324,6 +1474,10 @@
1324
1474
  "name": "delete",
1325
1475
  "description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
1326
1476
  "options": [
1477
+ {
1478
+ "name": "--yes",
1479
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1480
+ },
1327
1481
  {
1328
1482
  "name": "--confirm",
1329
1483
  "description": "Required: confirm the deletion"
@@ -1344,6 +1498,10 @@
1344
1498
  "name": "list",
1345
1499
  "description": "List the environments (production, staging, …) in your organization",
1346
1500
  "options": [
1501
+ {
1502
+ "name": "--yes",
1503
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1504
+ },
1347
1505
  {
1348
1506
  "name": "--page",
1349
1507
  "description": "Page number",
@@ -1364,6 +1522,10 @@
1364
1522
  "name": "update",
1365
1523
  "description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
1366
1524
  "options": [
1525
+ {
1526
+ "name": "--yes",
1527
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1528
+ },
1367
1529
  {
1368
1530
  "name": "--code",
1369
1531
  "description": "New code (lowercase)",
@@ -1445,6 +1607,10 @@
1445
1607
  "name": "assign",
1446
1608
  "description": "Put an error group in someone's hands, or take it out (--unassign)",
1447
1609
  "options": [
1610
+ {
1611
+ "name": "--yes",
1612
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1613
+ },
1448
1614
  {
1449
1615
  "name": "--project",
1450
1616
  "aliases": [
@@ -1490,6 +1656,10 @@
1490
1656
  "name": "bulk-triage",
1491
1657
  "description": "Resolve, ignore or reopen several error groups in one call",
1492
1658
  "options": [
1659
+ {
1660
+ "name": "--yes",
1661
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1662
+ },
1493
1663
  {
1494
1664
  "name": "--project",
1495
1665
  "aliases": [
@@ -1541,6 +1711,10 @@
1541
1711
  "name": "delete",
1542
1712
  "description": "Delete an error group and every occurrence it holds (irreversible)",
1543
1713
  "options": [
1714
+ {
1715
+ "name": "--yes",
1716
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1717
+ },
1544
1718
  {
1545
1719
  "name": "--project",
1546
1720
  "aliases": [
@@ -1579,6 +1753,10 @@
1579
1753
  "name": "create",
1580
1754
  "description": "Add a grouping rule: occurrences that match it are grouped under one key",
1581
1755
  "options": [
1756
+ {
1757
+ "name": "--yes",
1758
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1759
+ },
1582
1760
  {
1583
1761
  "name": "--project",
1584
1762
  "aliases": [
@@ -1672,6 +1850,10 @@
1672
1850
  "name": "delete",
1673
1851
  "description": "Delete a grouping rule (the groups it already made stay where they are)",
1674
1852
  "options": [
1853
+ {
1854
+ "name": "--yes",
1855
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1856
+ },
1675
1857
  {
1676
1858
  "name": "--project",
1677
1859
  "aliases": [
@@ -1706,6 +1888,10 @@
1706
1888
  "name": "list",
1707
1889
  "description": "List the custom grouping rules of a project, in the order they are applied",
1708
1890
  "options": [
1891
+ {
1892
+ "name": "--yes",
1893
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1894
+ },
1709
1895
  {
1710
1896
  "name": "--project",
1711
1897
  "aliases": [
@@ -1739,6 +1925,10 @@
1739
1925
  "name": "update",
1740
1926
  "description": "Change a grouping rule: what it matches, where it sends, when it runs, or turn it off",
1741
1927
  "options": [
1928
+ {
1929
+ "name": "--yes",
1930
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1931
+ },
1742
1932
  {
1743
1933
  "name": "--project",
1744
1934
  "aliases": [
@@ -1838,6 +2028,10 @@
1838
2028
  "name": "list",
1839
2029
  "description": "List error groups for a project",
1840
2030
  "options": [
2031
+ {
2032
+ "name": "--yes",
2033
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2034
+ },
1841
2035
  {
1842
2036
  "name": "--project",
1843
2037
  "aliases": [
@@ -1882,6 +2076,10 @@
1882
2076
  "name": "merge",
1883
2077
  "description": "Merge error groups into one: the occurrences move, the absorbed groups disappear (irreversible)",
1884
2078
  "options": [
2079
+ {
2080
+ "name": "--yes",
2081
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2082
+ },
1885
2083
  {
1886
2084
  "name": "--project",
1887
2085
  "aliases": [
@@ -1927,6 +2125,10 @@
1927
2125
  "name": "mute",
1928
2126
  "description": "Mute an error group",
1929
2127
  "options": [
2128
+ {
2129
+ "name": "--yes",
2130
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2131
+ },
1930
2132
  {
1931
2133
  "name": "--project",
1932
2134
  "aliases": [
@@ -1957,6 +2159,10 @@
1957
2159
  "name": "promote",
1958
2160
  "description": "Promote an error group to a ticket",
1959
2161
  "options": [
2162
+ {
2163
+ "name": "--yes",
2164
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2165
+ },
1960
2166
  {
1961
2167
  "name": "--project",
1962
2168
  "aliases": [
@@ -1987,6 +2193,10 @@
1987
2193
  "name": "reopen",
1988
2194
  "description": "Reopen a resolved error group",
1989
2195
  "options": [
2196
+ {
2197
+ "name": "--yes",
2198
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2199
+ },
1990
2200
  {
1991
2201
  "name": "--project",
1992
2202
  "aliases": [
@@ -2017,6 +2227,10 @@
2017
2227
  "name": "resolve",
2018
2228
  "description": "Mark an error group as resolved",
2019
2229
  "options": [
2230
+ {
2231
+ "name": "--yes",
2232
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2233
+ },
2020
2234
  {
2021
2235
  "name": "--project",
2022
2236
  "aliases": [
@@ -2047,6 +2261,10 @@
2047
2261
  "name": "show",
2048
2262
  "description": "Show a single error group",
2049
2263
  "options": [
2264
+ {
2265
+ "name": "--yes",
2266
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2267
+ },
2050
2268
  {
2051
2269
  "name": "--project",
2052
2270
  "aliases": [
@@ -2077,6 +2295,10 @@
2077
2295
  "name": "split",
2078
2296
  "description": "Split an error group: pull some occurrences out into a new one",
2079
2297
  "options": [
2298
+ {
2299
+ "name": "--yes",
2300
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2301
+ },
2080
2302
  {
2081
2303
  "name": "--project",
2082
2304
  "aliases": [
@@ -2118,6 +2340,10 @@
2118
2340
  "name": "unmute",
2119
2341
  "description": "Unmute an error group",
2120
2342
  "options": [
2343
+ {
2344
+ "name": "--yes",
2345
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2346
+ },
2121
2347
  {
2122
2348
  "name": "--project",
2123
2349
  "aliases": [
@@ -2148,11 +2374,16 @@
2148
2374
  },
2149
2375
  {
2150
2376
  "name": "groups",
2377
+ "description": "Groups: containers of related projects (macro-projects)",
2151
2378
  "commands": [
2152
2379
  {
2153
2380
  "name": "create",
2154
2381
  "description": "Create a group (a container of related projects, e.g. \"DriverOne\")",
2155
2382
  "options": [
2383
+ {
2384
+ "name": "--yes",
2385
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2386
+ },
2156
2387
  {
2157
2388
  "name": "--color",
2158
2389
  "description": "Color label",
@@ -2180,6 +2411,10 @@
2180
2411
  "name": "delete",
2181
2412
  "description": "Delete a group (its projects are detached, not deleted)",
2182
2413
  "options": [
2414
+ {
2415
+ "name": "--yes",
2416
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2417
+ },
2183
2418
  {
2184
2419
  "name": "--confirm",
2185
2420
  "description": "Required: confirm the deletion"
@@ -2200,6 +2435,10 @@
2200
2435
  "name": "list",
2201
2436
  "description": "List the groups (macro-projects) in your organization",
2202
2437
  "options": [
2438
+ {
2439
+ "name": "--yes",
2440
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2441
+ },
2203
2442
  {
2204
2443
  "name": "--page",
2205
2444
  "description": "Page number",
@@ -2220,6 +2459,10 @@
2220
2459
  "name": "update",
2221
2460
  "description": "Update a group (rename, recolor)",
2222
2461
  "options": [
2462
+ {
2463
+ "name": "--yes",
2464
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2465
+ },
2223
2466
  {
2224
2467
  "name": "--name",
2225
2468
  "description": "New name",
@@ -2263,6 +2506,10 @@
2263
2506
  "name": "show",
2264
2507
  "description": "Show a project's effective guidance: the references and procedures resolved by the backend (the CLI never recomposes inheritance)",
2265
2508
  "options": [
2509
+ {
2510
+ "name": "--yes",
2511
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2512
+ },
2266
2513
  {
2267
2514
  "name": "--project",
2268
2515
  "aliases": [
@@ -2294,6 +2541,10 @@
2294
2541
  "name": "archive",
2295
2542
  "description": "Archive an idea (open → archived; author always allowed, others need ideas.edit)",
2296
2543
  "options": [
2544
+ {
2545
+ "name": "--yes",
2546
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2547
+ },
2297
2548
  {
2298
2549
  "name": "--project",
2299
2550
  "aliases": [
@@ -2324,6 +2575,10 @@
2324
2575
  "name": "case",
2325
2576
  "description": "Add a case (example/scenario) to an idea (only open ideas accept cases)",
2326
2577
  "options": [
2578
+ {
2579
+ "name": "--yes",
2580
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2581
+ },
2327
2582
  {
2328
2583
  "name": "--project",
2329
2584
  "aliases": [
@@ -2375,6 +2630,10 @@
2375
2630
  "name": "case-delete",
2376
2631
  "description": "Delete a case from an open idea (author always allowed, others need ideas.edit)",
2377
2632
  "options": [
2633
+ {
2634
+ "name": "--yes",
2635
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2636
+ },
2378
2637
  {
2379
2638
  "name": "--project",
2380
2639
  "aliases": [
@@ -2414,6 +2673,10 @@
2414
2673
  "name": "case-update",
2415
2674
  "description": "Update a case (example/scenario) of an idea (title and/or description)",
2416
2675
  "options": [
2676
+ {
2677
+ "name": "--yes",
2678
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2679
+ },
2417
2680
  {
2418
2681
  "name": "--project",
2419
2682
  "aliases": [
@@ -2470,6 +2733,10 @@
2470
2733
  "name": "comment",
2471
2734
  "description": "Add a comment to an idea (only open ideas accept comments)",
2472
2735
  "options": [
2736
+ {
2737
+ "name": "--yes",
2738
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2739
+ },
2473
2740
  {
2474
2741
  "name": "--project",
2475
2742
  "aliases": [
@@ -2511,6 +2778,10 @@
2511
2778
  "name": "comment-delete",
2512
2779
  "description": "Delete a comment from an open idea (author, or with ideas.comment.delete_any)",
2513
2780
  "options": [
2781
+ {
2782
+ "name": "--yes",
2783
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2784
+ },
2514
2785
  {
2515
2786
  "name": "--project",
2516
2787
  "aliases": [
@@ -2556,6 +2827,10 @@
2556
2827
  "name": "comments",
2557
2828
  "description": "List all comments of an idea (oldest first)",
2558
2829
  "options": [
2830
+ {
2831
+ "name": "--yes",
2832
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2833
+ },
2559
2834
  {
2560
2835
  "name": "--project",
2561
2836
  "aliases": [
@@ -2587,6 +2862,10 @@
2587
2862
  "name": "convert",
2588
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.",
2589
2864
  "options": [
2865
+ {
2866
+ "name": "--yes",
2867
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2868
+ },
2590
2869
  {
2591
2870
  "name": "--project",
2592
2871
  "aliases": [
@@ -2674,6 +2953,10 @@
2674
2953
  "name": "create",
2675
2954
  "description": "Propose an idea for a project",
2676
2955
  "options": [
2956
+ {
2957
+ "name": "--yes",
2958
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
2959
+ },
2677
2960
  {
2678
2961
  "name": "--project",
2679
2962
  "aliases": [
@@ -2739,6 +3022,10 @@
2739
3022
  "name": "delete",
2740
3023
  "description": "Delete an idea (author always allowed; others need ideas.delete)",
2741
3024
  "options": [
3025
+ {
3026
+ "name": "--yes",
3027
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3028
+ },
2742
3029
  {
2743
3030
  "name": "--project",
2744
3031
  "aliases": [
@@ -2773,6 +3060,10 @@
2773
3060
  "name": "list",
2774
3061
  "description": "List ideas for a project (sorted by votes)",
2775
3062
  "options": [
3063
+ {
3064
+ "name": "--yes",
3065
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3066
+ },
2776
3067
  {
2777
3068
  "name": "--project",
2778
3069
  "aliases": [
@@ -2827,6 +3118,10 @@
2827
3118
  "name": "show",
2828
3119
  "description": "Show an idea (fields + problem, solution, stakeholders)",
2829
3120
  "options": [
3121
+ {
3122
+ "name": "--yes",
3123
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3124
+ },
2830
3125
  {
2831
3126
  "name": "--project",
2832
3127
  "aliases": [
@@ -2857,6 +3152,10 @@
2857
3152
  "name": "unarchive",
2858
3153
  "description": "Reopen an archived idea (archived → open; author always allowed, others need ideas.edit)",
2859
3154
  "options": [
3155
+ {
3156
+ "name": "--yes",
3157
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3158
+ },
2860
3159
  {
2861
3160
  "name": "--project",
2862
3161
  "aliases": [
@@ -2887,6 +3186,10 @@
2887
3186
  "name": "unvote",
2888
3187
  "description": "Remove your upvote from an idea (idempotent)",
2889
3188
  "options": [
3189
+ {
3190
+ "name": "--yes",
3191
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3192
+ },
2890
3193
  {
2891
3194
  "name": "--project",
2892
3195
  "aliases": [
@@ -2917,6 +3220,10 @@
2917
3220
  "name": "update",
2918
3221
  "description": "Update an idea (full replace of title/problem/solution — omitted fields are cleared)",
2919
3222
  "options": [
3223
+ {
3224
+ "name": "--yes",
3225
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3226
+ },
2920
3227
  {
2921
3228
  "name": "--project",
2922
3229
  "aliases": [
@@ -2987,6 +3294,10 @@
2987
3294
  "name": "vote",
2988
3295
  "description": "Upvote an idea (idempotent; only open ideas accept votes)",
2989
3296
  "options": [
3297
+ {
3298
+ "name": "--yes",
3299
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3300
+ },
2990
3301
  {
2991
3302
  "name": "--project",
2992
3303
  "aliases": [
@@ -3017,11 +3328,16 @@
3017
3328
  },
3018
3329
  {
3019
3330
  "name": "invitations",
3331
+ "description": "Invitations to join the organization: create, resend, revoke",
3020
3332
  "commands": [
3021
3333
  {
3022
3334
  "name": "create",
3023
3335
  "description": "Invite a person to the organization. Prints the acceptance link.",
3024
3336
  "options": [
3337
+ {
3338
+ "name": "--yes",
3339
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3340
+ },
3025
3341
  {
3026
3342
  "name": "--role",
3027
3343
  "description": "Membership role",
@@ -3054,6 +3370,10 @@
3054
3370
  "name": "list",
3055
3371
  "description": "List the pending/accepted invitations of your organization",
3056
3372
  "options": [
3373
+ {
3374
+ "name": "--yes",
3375
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3376
+ },
3057
3377
  {
3058
3378
  "name": "--page",
3059
3379
  "description": "Page number",
@@ -3073,6 +3393,12 @@
3073
3393
  {
3074
3394
  "name": "resend",
3075
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
+ ],
3076
3402
  "arguments": [
3077
3403
  {
3078
3404
  "name": "ID",
@@ -3087,6 +3413,12 @@
3087
3413
  {
3088
3414
  "name": "revoke",
3089
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
+ ],
3090
3422
  "arguments": [
3091
3423
  {
3092
3424
  "name": "ID",
@@ -3104,9 +3436,36 @@
3104
3436
  "name": "kb",
3105
3437
  "description": "Knowledge base: pages (notes/decisions/guides), semantic search and AI ask",
3106
3438
  "commands": [
3439
+ {
3440
+ "name": "approve",
3441
+ "description": "Accept a page waiting for review: it enters search, answers and related panels",
3442
+ "options": [
3443
+ {
3444
+ "name": "--yes",
3445
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3446
+ }
3447
+ ],
3448
+ "arguments": [
3449
+ {
3450
+ "name": "ID",
3451
+ "required": true,
3452
+ "description": "Knowledge page id"
3453
+ }
3454
+ ],
3455
+ "examples": [
3456
+ "closeyourit kb approve <page-id>",
3457
+ "closeyourit kb approve <page-id> --json"
3458
+ ]
3459
+ },
3107
3460
  {
3108
3461
  "name": "ask",
3109
3462
  "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)",
3463
+ "options": [
3464
+ {
3465
+ "name": "--yes",
3466
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3467
+ }
3468
+ ],
3110
3469
  "arguments": [
3111
3470
  {
3112
3471
  "name": "QUESTION",
@@ -3122,6 +3481,10 @@
3122
3481
  "name": "attach",
3123
3482
  "description": "Attach one or more local files to a knowledge page",
3124
3483
  "options": [
3484
+ {
3485
+ "name": "--yes",
3486
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3487
+ },
3125
3488
  {
3126
3489
  "name": "--file",
3127
3490
  "description": "Path to a local file to upload (repeatable)",
@@ -3150,6 +3513,10 @@
3150
3513
  "name": "attachment-download",
3151
3514
  "description": "Download a knowledge page's attachment to disk",
3152
3515
  "options": [
3516
+ {
3517
+ "name": "--yes",
3518
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3519
+ },
3153
3520
  {
3154
3521
  "name": "--out",
3155
3522
  "description": "Output directory",
@@ -3191,6 +3558,12 @@
3191
3558
  {
3192
3559
  "name": "attachments",
3193
3560
  "description": "List a knowledge page's attachments",
3561
+ "options": [
3562
+ {
3563
+ "name": "--yes",
3564
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3565
+ }
3566
+ ],
3194
3567
  "arguments": [
3195
3568
  {
3196
3569
  "name": "ID",
@@ -3211,6 +3584,10 @@
3211
3584
  "name": "add-page",
3212
3585
  "description": "Add a knowledge page to a book, optionally at a given position in the summary",
3213
3586
  "options": [
3587
+ {
3588
+ "name": "--yes",
3589
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3590
+ },
3214
3591
  {
3215
3592
  "name": "--page",
3216
3593
  "description": "Id of the knowledge page to add (an id, not a page number; alias: --page-id)",
@@ -3250,6 +3627,10 @@
3250
3627
  "name": "list",
3251
3628
  "description": "List knowledge books (ordered collections of pages) across the projects you can see",
3252
3629
  "options": [
3630
+ {
3631
+ "name": "--yes",
3632
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3633
+ },
3253
3634
  {
3254
3635
  "name": "--project",
3255
3636
  "aliases": [
@@ -3304,6 +3685,12 @@
3304
3685
  {
3305
3686
  "name": "show",
3306
3687
  "description": "Show a knowledge book: its metadata, then the summary of the pages it collects",
3688
+ "options": [
3689
+ {
3690
+ "name": "--yes",
3691
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3692
+ }
3693
+ ],
3307
3694
  "arguments": [
3308
3695
  {
3309
3696
  "name": "ID",
@@ -3322,6 +3709,10 @@
3322
3709
  "name": "consolidate",
3323
3710
  "description": "Mark an accepted page as written to the versioned docs, recording its path",
3324
3711
  "options": [
3712
+ {
3713
+ "name": "--yes",
3714
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3715
+ },
3325
3716
  {
3326
3717
  "name": "--path",
3327
3718
  "description": "Path of the document inside the knowledge-base repo",
@@ -3350,6 +3741,10 @@
3350
3741
  "name": "create",
3351
3742
  "description": "Create a knowledge page in one or more projects (and groups)",
3352
3743
  "options": [
3744
+ {
3745
+ "name": "--yes",
3746
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3747
+ },
3353
3748
  {
3354
3749
  "name": "--project",
3355
3750
  "aliases": [
@@ -3481,6 +3876,10 @@
3481
3876
  "name": "delete",
3482
3877
  "description": "Delete a knowledge page (irreversible)",
3483
3878
  "options": [
3879
+ {
3880
+ "name": "--yes",
3881
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3882
+ },
3484
3883
  {
3485
3884
  "name": "--confirm",
3486
3885
  "description": "Required: confirm the irreversible deletion"
@@ -3501,6 +3900,10 @@
3501
3900
  "name": "detach",
3502
3901
  "description": "Remove an attachment from a knowledge page (irreversible)",
3503
3902
  "options": [
3903
+ {
3904
+ "name": "--yes",
3905
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3906
+ },
3504
3907
  {
3505
3908
  "name": "--attachment",
3506
3909
  "description": "Attachment id to remove",
@@ -3532,6 +3935,10 @@
3532
3935
  "name": "list",
3533
3936
  "description": "List knowledge pages across the projects you can see",
3534
3937
  "options": [
3938
+ {
3939
+ "name": "--yes",
3940
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3941
+ },
3535
3942
  {
3536
3943
  "name": "--project",
3537
3944
  "aliases": [
@@ -3608,6 +4015,10 @@
3608
4015
  "name": "publish",
3609
4016
  "description": "Idempotently create or update a Knowledge page by publication key.\n\nExactly one of --body or --body-file is required.",
3610
4017
  "options": [
4018
+ {
4019
+ "name": "--yes",
4020
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4021
+ },
3611
4022
  {
3612
4023
  "name": "--project",
3613
4024
  "aliases": [
@@ -3680,10 +4091,35 @@
3680
4091
  "closeyourit kb publish -p CYCL --publication-key docs:release --title \"Release guide\" --kind guide --body-file ./release.md"
3681
4092
  ]
3682
4093
  },
4094
+ {
4095
+ "name": "reject",
4096
+ "description": "Discard a page waiting for review: it stays archived as rejected, out of search and answers",
4097
+ "options": [
4098
+ {
4099
+ "name": "--yes",
4100
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4101
+ }
4102
+ ],
4103
+ "arguments": [
4104
+ {
4105
+ "name": "ID",
4106
+ "required": true,
4107
+ "description": "Knowledge page id"
4108
+ }
4109
+ ],
4110
+ "examples": [
4111
+ "closeyourit kb reject <page-id>",
4112
+ "closeyourit kb reject <page-id> --json"
4113
+ ]
4114
+ },
3683
4115
  {
3684
4116
  "name": "related",
3685
4117
  "description": "List the pages to read next: the ones this page links to (and that link to it), plus close matches by meaning",
3686
4118
  "options": [
4119
+ {
4120
+ "name": "--yes",
4121
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4122
+ },
3687
4123
  {
3688
4124
  "name": "--question",
3689
4125
  "description": "Keep only the pages relevant to this question",
@@ -3716,6 +4152,10 @@
3716
4152
  "name": "search",
3717
4153
  "description": "Search knowledge pages (semantic when available, ILIKE fallback on the title otherwise)",
3718
4154
  "options": [
4155
+ {
4156
+ "name": "--yes",
4157
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4158
+ },
3719
4159
  {
3720
4160
  "name": "--project",
3721
4161
  "aliases": [
@@ -3781,6 +4221,10 @@
3781
4221
  "name": "show",
3782
4222
  "description": "Show a single knowledge page: metadata header then the raw markdown body",
3783
4223
  "options": [
4224
+ {
4225
+ "name": "--yes",
4226
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4227
+ },
3784
4228
  {
3785
4229
  "name": "--related",
3786
4230
  "description": "Also list the pages to read next"
@@ -3813,6 +4257,10 @@
3813
4257
  "name": "update",
3814
4258
  "description": "Update a knowledge page (only the fields you pass; the others keep their current value)",
3815
4259
  "options": [
4260
+ {
4261
+ "name": "--yes",
4262
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4263
+ },
3816
4264
  {
3817
4265
  "name": "--title",
3818
4266
  "description": "New title (max 255 characters)",
@@ -3938,6 +4386,10 @@
3938
4386
  "name": "login",
3939
4387
  "description": "Authenticate via the device flow and store your CLI token",
3940
4388
  "options": [
4389
+ {
4390
+ "name": "--yes",
4391
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4392
+ },
3941
4393
  {
3942
4394
  "name": "--api-url",
3943
4395
  "description": "Backend base URL to authenticate against (persisted)",
@@ -3957,6 +4409,12 @@
3957
4409
  {
3958
4410
  "name": "logout",
3959
4411
  "description": "Clear the locally stored token and identity",
4412
+ "options": [
4413
+ {
4414
+ "name": "--yes",
4415
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4416
+ }
4417
+ ],
3960
4418
  "examples": [
3961
4419
  "closeyourit logout"
3962
4420
  ]
@@ -3969,6 +4427,10 @@
3969
4427
  "name": "link",
3970
4428
  "description": "Manually link a log entry to an error group or a ticket",
3971
4429
  "options": [
4430
+ {
4431
+ "name": "--yes",
4432
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4433
+ },
3972
4434
  {
3973
4435
  "name": "--to",
3974
4436
  "description": "Target to link: \"Errors::Group:<uuid>\" or \"Ticketing::Ticket:<uuid>\"",
@@ -3997,6 +4459,10 @@
3997
4459
  "name": "list",
3998
4460
  "description": "List structured log entries (cross-app stream)",
3999
4461
  "options": [
4462
+ {
4463
+ "name": "--yes",
4464
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4465
+ },
4000
4466
  {
4001
4467
  "name": "--project",
4002
4468
  "aliases": [
@@ -4060,6 +4526,12 @@
4060
4526
  {
4061
4527
  "name": "show",
4062
4528
  "description": "Show a single log entry (attributes, trace id, correlation)",
4529
+ "options": [
4530
+ {
4531
+ "name": "--yes",
4532
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4533
+ }
4534
+ ],
4063
4535
  "arguments": [
4064
4536
  {
4065
4537
  "name": "ID",
@@ -4075,6 +4547,10 @@
4075
4547
  "name": "unlink",
4076
4548
  "description": "Remove a manual log↔target link (irreversible)",
4077
4549
  "options": [
4550
+ {
4551
+ "name": "--yes",
4552
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4553
+ },
4078
4554
  {
4079
4555
  "name": "--confirm",
4080
4556
  "description": "Required: confirm the irreversible deletion"
@@ -4104,11 +4580,16 @@
4104
4580
  "commands": [
4105
4581
  {
4106
4582
  "name": "categories",
4583
+ "description": "Feature groups (categories): how the rows of a product matrix are organized",
4107
4584
  "commands": [
4108
4585
  {
4109
4586
  "name": "create",
4110
4587
  "description": "Create a feature group (category) in a product matrix",
4111
4588
  "options": [
4589
+ {
4590
+ "name": "--yes",
4591
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4592
+ },
4112
4593
  {
4113
4594
  "name": "--name",
4114
4595
  "description": "Category name (unique within the product)",
@@ -4147,6 +4628,10 @@
4147
4628
  "name": "delete",
4148
4629
  "description": "Delete a feature group (only when empty: move or delete its features first)",
4149
4630
  "options": [
4631
+ {
4632
+ "name": "--yes",
4633
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4634
+ },
4150
4635
  {
4151
4636
  "name": "--confirm",
4152
4637
  "description": "Required: confirm the deletion"
@@ -4172,6 +4657,10 @@
4172
4657
  "name": "list",
4173
4658
  "description": "List the feature groups (categories) of a product matrix",
4174
4659
  "options": [
4660
+ {
4661
+ "name": "--yes",
4662
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4663
+ },
4175
4664
  {
4176
4665
  "name": "--page",
4177
4666
  "description": "Page number",
@@ -4198,6 +4687,10 @@
4198
4687
  "name": "update",
4199
4688
  "description": "Update a feature group (rename or reorder); unpassed fields keep their value",
4200
4689
  "options": [
4690
+ {
4691
+ "name": "--yes",
4692
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4693
+ },
4201
4694
  {
4202
4695
  "name": "--name",
4203
4696
  "description": "New name",
@@ -4240,11 +4733,16 @@
4240
4733
  },
4241
4734
  {
4242
4735
  "name": "cells",
4736
+ "description": "Matrix cells: how far a feature is on a platform, and since which version",
4243
4737
  "commands": [
4244
4738
  {
4245
4739
  "name": "clear",
4246
4740
  "description": "Clear a matrix cell: the crossing goes back to \"not set\"",
4247
4741
  "options": [
4742
+ {
4743
+ "name": "--yes",
4744
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4745
+ },
4248
4746
  {
4249
4747
  "name": "--confirm",
4250
4748
  "description": "Required: confirm clearing the cell"
@@ -4275,6 +4773,10 @@
4275
4773
  "name": "set",
4276
4774
  "description": "Write a matrix cell: how far along a feature is on a platform, and since which version",
4277
4775
  "options": [
4776
+ {
4777
+ "name": "--yes",
4778
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4779
+ },
4278
4780
  {
4279
4781
  "name": "--status",
4280
4782
  "description": "Status code (see: matrix statuses) or id",
@@ -4323,11 +4825,16 @@
4323
4825
  },
4324
4826
  {
4325
4827
  "name": "features",
4828
+ "description": "Features: the rows of a product matrix",
4326
4829
  "commands": [
4327
4830
  {
4328
4831
  "name": "create",
4329
4832
  "description": "Create a feature (a row of the matrix) inside a category",
4330
4833
  "options": [
4834
+ {
4835
+ "name": "--yes",
4836
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4837
+ },
4331
4838
  {
4332
4839
  "name": "--category",
4333
4840
  "description": "Category id (UUID) or name",
@@ -4397,6 +4904,10 @@
4397
4904
  "name": "delete",
4398
4905
  "description": "Delete a feature and every cell written for it (irreversible)",
4399
4906
  "options": [
4907
+ {
4908
+ "name": "--yes",
4909
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4910
+ },
4400
4911
  {
4401
4912
  "name": "--confirm",
4402
4913
  "description": "Required: confirm the deletion"
@@ -4422,6 +4933,10 @@
4422
4933
  "name": "list",
4423
4934
  "description": "List the features of a product matrix",
4424
4935
  "options": [
4936
+ {
4937
+ "name": "--yes",
4938
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4939
+ },
4425
4940
  {
4426
4941
  "name": "--page",
4427
4942
  "description": "Page number",
@@ -4458,6 +4973,12 @@
4458
4973
  {
4459
4974
  "name": "show",
4460
4975
  "description": "Show one feature and the cells written for it",
4976
+ "options": [
4977
+ {
4978
+ "name": "--yes",
4979
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4980
+ }
4981
+ ],
4461
4982
  "arguments": [
4462
4983
  {
4463
4984
  "name": "PRODUCT",
@@ -4478,6 +4999,10 @@
4478
4999
  "name": "update",
4479
5000
  "description": "Update a feature (rename, move to another category, …); unpassed fields keep their value",
4480
5001
  "options": [
5002
+ {
5003
+ "name": "--yes",
5004
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5005
+ },
4481
5006
  {
4482
5007
  "name": "--name",
4483
5008
  "description": "New name",
@@ -4552,6 +5077,10 @@
4552
5077
  "name": "list",
4553
5078
  "description": "List the products (groups) whose feature matrix you can see",
4554
5079
  "options": [
5080
+ {
5081
+ "name": "--yes",
5082
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5083
+ },
4555
5084
  {
4556
5085
  "name": "--page",
4557
5086
  "description": "Page number",
@@ -4571,6 +5100,12 @@
4571
5100
  {
4572
5101
  "name": "show",
4573
5102
  "description": "Show a product feature matrix: features in rows, platforms in columns",
5103
+ "options": [
5104
+ {
5105
+ "name": "--yes",
5106
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5107
+ }
5108
+ ],
4574
5109
  "arguments": [
4575
5110
  {
4576
5111
  "name": "PRODUCT",
@@ -4586,6 +5121,12 @@
4586
5121
  {
4587
5122
  "name": "statuses",
4588
5123
  "description": "List the cell statuses of your organization (the codes accepted by matrix cells set)",
5124
+ "options": [
5125
+ {
5126
+ "name": "--yes",
5127
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5128
+ }
5129
+ ],
4589
5130
  "examples": [
4590
5131
  "closeyourit matrix statuses",
4591
5132
  "closeyourit matrix statuses --json"
@@ -4595,11 +5136,16 @@
4595
5136
  },
4596
5137
  {
4597
5138
  "name": "members",
5139
+ "description": "Organization members: profile, role, access scope",
4598
5140
  "commands": [
4599
5141
  {
4600
5142
  "name": "list",
4601
5143
  "description": "List the members of your organization (to resolve emails to account ids)",
4602
5144
  "options": [
5145
+ {
5146
+ "name": "--yes",
5147
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5148
+ },
4603
5149
  {
4604
5150
  "name": "--page",
4605
5151
  "description": "Page number",
@@ -4620,6 +5166,10 @@
4620
5166
  "name": "remove",
4621
5167
  "description": "Remove a member from your organization (irreversible; requires members.manage)",
4622
5168
  "options": [
5169
+ {
5170
+ "name": "--yes",
5171
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5172
+ },
4623
5173
  {
4624
5174
  "name": "--confirm",
4625
5175
  "description": "Required: confirm the irreversible removal"
@@ -4640,6 +5190,10 @@
4640
5190
  "name": "set-access",
4641
5191
  "description": "Set a member's access: group/project scope, direct roles, and permission overrides",
4642
5192
  "options": [
5193
+ {
5194
+ "name": "--yes",
5195
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5196
+ },
4643
5197
  {
4644
5198
  "name": "--group",
4645
5199
  "description": "Group id or name to grant access to (repeatable; omit to clear group access)",
@@ -4699,6 +5253,10 @@
4699
5253
  "name": "set-role",
4700
5254
  "description": "Change a member's organization role",
4701
5255
  "options": [
5256
+ {
5257
+ "name": "--yes",
5258
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5259
+ },
4702
5260
  {
4703
5261
  "name": "--role",
4704
5262
  "description": "Organization role",
@@ -4733,6 +5291,10 @@
4733
5291
  "name": "update",
4734
5292
  "description": "Update a member's profile: name, email, handle (requires members.edit)",
4735
5293
  "options": [
5294
+ {
5295
+ "name": "--yes",
5296
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5297
+ },
4736
5298
  {
4737
5299
  "name": "--name",
4738
5300
  "description": "New display name",
@@ -4786,6 +5348,10 @@
4786
5348
  "name": "bulk-triage",
4787
5349
  "description": "Resolve, ignore or reopen several metric groups in one call",
4788
5350
  "options": [
5351
+ {
5352
+ "name": "--yes",
5353
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5354
+ },
4789
5355
  {
4790
5356
  "name": "--project",
4791
5357
  "aliases": [
@@ -4837,6 +5403,10 @@
4837
5403
  "name": "list",
4838
5404
  "description": "List performance metric groups (slow queries/methods) for a project",
4839
5405
  "options": [
5406
+ {
5407
+ "name": "--yes",
5408
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5409
+ },
4840
5410
  {
4841
5411
  "name": "--project",
4842
5412
  "aliases": [
@@ -4881,6 +5451,10 @@
4881
5451
  "name": "promote",
4882
5452
  "description": "Promote a metric group (slow query/method) to a ticket",
4883
5453
  "options": [
5454
+ {
5455
+ "name": "--yes",
5456
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5457
+ },
4884
5458
  {
4885
5459
  "name": "--project",
4886
5460
  "aliases": [
@@ -4911,6 +5485,10 @@
4911
5485
  "name": "show",
4912
5486
  "description": "Show a single metric group",
4913
5487
  "options": [
5488
+ {
5489
+ "name": "--yes",
5490
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5491
+ },
4914
5492
  {
4915
5493
  "name": "--project",
4916
5494
  "aliases": [
@@ -4941,11 +5519,16 @@
4941
5519
  },
4942
5520
  {
4943
5521
  "name": "milestones",
5522
+ "description": "Project milestones: dated goals a ticket can be assigned to",
4944
5523
  "commands": [
4945
5524
  {
4946
5525
  "name": "create",
4947
5526
  "description": "Create a milestone for a project",
4948
5527
  "options": [
5528
+ {
5529
+ "name": "--yes",
5530
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5531
+ },
4949
5532
  {
4950
5533
  "name": "--project",
4951
5534
  "aliases": [
@@ -5016,6 +5599,10 @@
5016
5599
  "name": "delete",
5017
5600
  "description": "Delete a milestone (irreversible)",
5018
5601
  "options": [
5602
+ {
5603
+ "name": "--yes",
5604
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5605
+ },
5019
5606
  {
5020
5607
  "name": "--project",
5021
5608
  "aliases": [
@@ -5050,6 +5637,10 @@
5050
5637
  "name": "list",
5051
5638
  "description": "List the milestones for a project",
5052
5639
  "options": [
5640
+ {
5641
+ "name": "--yes",
5642
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5643
+ },
5053
5644
  {
5054
5645
  "name": "--project",
5055
5646
  "aliases": [
@@ -5084,6 +5675,10 @@
5084
5675
  "name": "show",
5085
5676
  "description": "Show a single milestone",
5086
5677
  "options": [
5678
+ {
5679
+ "name": "--yes",
5680
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5681
+ },
5087
5682
  {
5088
5683
  "name": "--project",
5089
5684
  "aliases": [
@@ -5114,6 +5709,10 @@
5114
5709
  "name": "update",
5115
5710
  "description": "Update a milestone (send only the fields you want to change)",
5116
5711
  "options": [
5712
+ {
5713
+ "name": "--yes",
5714
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5715
+ },
5117
5716
  {
5118
5717
  "name": "--project",
5119
5718
  "aliases": [
@@ -5189,14 +5788,20 @@
5189
5788
  },
5190
5789
  {
5191
5790
  "name": "monitors",
5791
+ "description": "Uptime monitors of a project: checks, public status page, incidents",
5192
5792
  "commands": [
5193
5793
  {
5194
5794
  "name": "announcements",
5795
+ "description": "Announcement banner shown on a monitor's public status page",
5195
5796
  "commands": [
5196
5797
  {
5197
5798
  "name": "clear",
5198
5799
  "description": "Remove the status page announcement banner for a monitor",
5199
5800
  "options": [
5801
+ {
5802
+ "name": "--yes",
5803
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5804
+ },
5200
5805
  {
5201
5806
  "name": "--project",
5202
5807
  "aliases": [
@@ -5231,6 +5836,10 @@
5231
5836
  "name": "set",
5232
5837
  "description": "Upsert the status page announcement banner for a monitor",
5233
5838
  "options": [
5839
+ {
5840
+ "name": "--yes",
5841
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5842
+ },
5234
5843
  {
5235
5844
  "name": "--project",
5236
5845
  "aliases": [
@@ -5311,6 +5920,10 @@
5311
5920
  "name": "show",
5312
5921
  "description": "Show the status page announcement banner for a monitor (null if none)",
5313
5922
  "options": [
5923
+ {
5924
+ "name": "--yes",
5925
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5926
+ },
5314
5927
  {
5315
5928
  "name": "--project",
5316
5929
  "aliases": [
@@ -5343,6 +5956,10 @@
5343
5956
  "name": "create",
5344
5957
  "description": "Create an uptime monitor for a project (one per environment)",
5345
5958
  "options": [
5959
+ {
5960
+ "name": "--yes",
5961
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5962
+ },
5346
5963
  {
5347
5964
  "name": "--project",
5348
5965
  "aliases": [
@@ -5458,6 +6075,10 @@
5458
6075
  "name": "delete",
5459
6076
  "description": "Delete an uptime monitor (irreversible)",
5460
6077
  "options": [
6078
+ {
6079
+ "name": "--yes",
6080
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6081
+ },
5461
6082
  {
5462
6083
  "name": "--project",
5463
6084
  "aliases": [
@@ -5490,11 +6111,16 @@
5490
6111
  },
5491
6112
  {
5492
6113
  "name": "incidents",
6114
+ "description": "Uptime incidents: group them and narrate them step by step",
5493
6115
  "commands": [
5494
6116
  {
5495
6117
  "name": "delete",
5496
6118
  "description": "Delete an uptime incident (and its grouped windows; irreversible)",
5497
6119
  "options": [
6120
+ {
6121
+ "name": "--yes",
6122
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6123
+ },
5498
6124
  {
5499
6125
  "name": "--project",
5500
6126
  "aliases": [
@@ -5534,6 +6160,10 @@
5534
6160
  "name": "group",
5535
6161
  "description": "Unify incidents of a monitor and post the first narration step",
5536
6162
  "options": [
6163
+ {
6164
+ "name": "--yes",
6165
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6166
+ },
5537
6167
  {
5538
6168
  "name": "--project",
5539
6169
  "aliases": [
@@ -5603,6 +6233,10 @@
5603
6233
  "name": "ungroup",
5604
6234
  "description": "Dissolve an incident grouping (grouped windows become separate again)",
5605
6235
  "options": [
6236
+ {
6237
+ "name": "--yes",
6238
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6239
+ },
5606
6240
  {
5607
6241
  "name": "--project",
5608
6242
  "aliases": [
@@ -5649,6 +6283,10 @@
5649
6283
  "name": "update-add",
5650
6284
  "description": "Add a timeline step to a narrated incident",
5651
6285
  "options": [
6286
+ {
6287
+ "name": "--yes",
6288
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6289
+ },
5652
6290
  {
5653
6291
  "name": "--project",
5654
6292
  "aliases": [
@@ -5712,6 +6350,10 @@
5712
6350
  "name": "update-delete",
5713
6351
  "description": "Delete a timeline step from a narrated incident (irreversible)",
5714
6352
  "options": [
6353
+ {
6354
+ "name": "--yes",
6355
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6356
+ },
5715
6357
  {
5716
6358
  "name": "--project",
5717
6359
  "aliases": [
@@ -5758,6 +6400,10 @@
5758
6400
  "name": "list",
5759
6401
  "description": "List the uptime monitors for a project",
5760
6402
  "options": [
6403
+ {
6404
+ "name": "--yes",
6405
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6406
+ },
5761
6407
  {
5762
6408
  "name": "--project",
5763
6409
  "aliases": [
@@ -5792,6 +6438,10 @@
5792
6438
  "name": "pause",
5793
6439
  "description": "Pause an uptime monitor (stops scheduling checks)",
5794
6440
  "options": [
6441
+ {
6442
+ "name": "--yes",
6443
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6444
+ },
5795
6445
  {
5796
6446
  "name": "--project",
5797
6447
  "aliases": [
@@ -5822,6 +6472,10 @@
5822
6472
  "name": "publish",
5823
6473
  "description": "Publish the public status page for a monitor (opt-in)",
5824
6474
  "options": [
6475
+ {
6476
+ "name": "--yes",
6477
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6478
+ },
5825
6479
  {
5826
6480
  "name": "--project",
5827
6481
  "aliases": [
@@ -5852,6 +6506,10 @@
5852
6506
  "name": "resume",
5853
6507
  "description": "Resume a paused uptime monitor (re-enables scheduling)",
5854
6508
  "options": [
6509
+ {
6510
+ "name": "--yes",
6511
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6512
+ },
5855
6513
  {
5856
6514
  "name": "--project",
5857
6515
  "aliases": [
@@ -5882,6 +6540,10 @@
5882
6540
  "name": "show",
5883
6541
  "description": "Show a single uptime monitor",
5884
6542
  "options": [
6543
+ {
6544
+ "name": "--yes",
6545
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6546
+ },
5885
6547
  {
5886
6548
  "name": "--project",
5887
6549
  "aliases": [
@@ -5912,6 +6574,10 @@
5912
6574
  "name": "unpublish",
5913
6575
  "description": "Unpublish the public status page for a monitor",
5914
6576
  "options": [
6577
+ {
6578
+ "name": "--yes",
6579
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6580
+ },
5915
6581
  {
5916
6582
  "name": "--project",
5917
6583
  "aliases": [
@@ -5942,6 +6608,10 @@
5942
6608
  "name": "update",
5943
6609
  "description": "Update an uptime monitor (URL, method, interval, expected status, timeout)",
5944
6610
  "options": [
6611
+ {
6612
+ "name": "--yes",
6613
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6614
+ },
5945
6615
  {
5946
6616
  "name": "--project",
5947
6617
  "aliases": [
@@ -6053,10 +6723,17 @@
6053
6723
  },
6054
6724
  {
6055
6725
  "name": "org",
6726
+ "description": "Organization settings (show and update)",
6056
6727
  "commands": [
6057
6728
  {
6058
6729
  "name": "show",
6059
6730
  "description": "Show your organization settings",
6731
+ "options": [
6732
+ {
6733
+ "name": "--yes",
6734
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6735
+ }
6736
+ ],
6060
6737
  "examples": [
6061
6738
  "closeyourit org show",
6062
6739
  "closeyourit org show --json"
@@ -6066,6 +6743,10 @@
6066
6743
  "name": "update",
6067
6744
  "description": "Update your organization settings (requires organization.manage)",
6068
6745
  "options": [
6746
+ {
6747
+ "name": "--yes",
6748
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6749
+ },
6069
6750
  {
6070
6751
  "name": "--name",
6071
6752
  "description": "New organization name",
@@ -6137,6 +6818,12 @@
6137
6818
  {
6138
6819
  "name": "delete",
6139
6820
  "description": "Delete a personal secret from the current organization",
6821
+ "options": [
6822
+ {
6823
+ "name": "--yes",
6824
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6825
+ }
6826
+ ],
6140
6827
  "arguments": [
6141
6828
  {
6142
6829
  "name": "NAME",
@@ -6152,6 +6839,10 @@
6152
6839
  "name": "download",
6153
6840
  "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.",
6154
6841
  "options": [
6842
+ {
6843
+ "name": "--yes",
6844
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6845
+ },
6155
6846
  {
6156
6847
  "name": "--format",
6157
6848
  "description": "Output format",
@@ -6185,6 +6876,12 @@
6185
6876
  {
6186
6877
  "name": "get",
6187
6878
  "description": "Print the value of a single personal secret (pipeable).",
6879
+ "options": [
6880
+ {
6881
+ "name": "--yes",
6882
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6883
+ }
6884
+ ],
6188
6885
  "arguments": [
6189
6886
  {
6190
6887
  "name": "NAME",
@@ -6200,6 +6897,10 @@
6200
6897
  "name": "import",
6201
6898
  "description": "Import many personal secrets at once (all-or-nothing) from a .env or JSON file",
6202
6899
  "options": [
6900
+ {
6901
+ "name": "--yes",
6902
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6903
+ },
6203
6904
  {
6204
6905
  "name": "--from-file",
6205
6906
  "description": "Path to a .env or JSON file (default: read from stdin)",
@@ -6234,6 +6935,12 @@
6234
6935
  {
6235
6936
  "name": "list",
6236
6937
  "description": "List your personal secret names for the current organization. Never prints values.",
6938
+ "options": [
6939
+ {
6940
+ "name": "--yes",
6941
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6942
+ }
6943
+ ],
6237
6944
  "examples": [
6238
6945
  "closeyourit personal list",
6239
6946
  "closeyourit personal list --json"
@@ -6242,6 +6949,12 @@
6242
6949
  {
6243
6950
  "name": "run",
6244
6951
  "description": "Run a command with your personal secrets injected as env vars. Secrets never touch disk.",
6952
+ "options": [
6953
+ {
6954
+ "name": "--yes",
6955
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6956
+ }
6957
+ ],
6245
6958
  "examples": [
6246
6959
  "closeyourit personal run -- bundle exec rails server",
6247
6960
  "closeyourit personal run -- printenv OPENAI_API_KEY"
@@ -6251,6 +6964,10 @@
6251
6964
  "name": "set",
6252
6965
  "description": "Set (create or update) a personal secret for the current organization",
6253
6966
  "options": [
6967
+ {
6968
+ "name": "--yes",
6969
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6970
+ },
6254
6971
  {
6255
6972
  "name": "--value",
6256
6973
  "description": "Secret value (use when the arg is just NAME)",
@@ -6288,11 +7005,16 @@
6288
7005
  },
6289
7006
  {
6290
7007
  "name": "platforms",
7008
+ "description": "Platforms (devices/systems) your projects and tickets run on",
6291
7009
  "commands": [
6292
7010
  {
6293
7011
  "name": "create",
6294
7012
  "description": "Create a platform (a device/system your projects run on)",
6295
7013
  "options": [
7014
+ {
7015
+ "name": "--yes",
7016
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7017
+ },
6296
7018
  {
6297
7019
  "name": "--label",
6298
7020
  "description": "Human-readable label",
@@ -6350,6 +7072,10 @@
6350
7072
  "name": "delete",
6351
7073
  "description": "Delete a platform (blocked if any project or ticket still references it)",
6352
7074
  "options": [
7075
+ {
7076
+ "name": "--yes",
7077
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7078
+ },
6353
7079
  {
6354
7080
  "name": "--confirm",
6355
7081
  "description": "Required: confirm the deletion"
@@ -6370,6 +7096,10 @@
6370
7096
  "name": "list",
6371
7097
  "description": "List the platforms (devices/systems) in your organization",
6372
7098
  "options": [
7099
+ {
7100
+ "name": "--yes",
7101
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7102
+ },
6373
7103
  {
6374
7104
  "name": "--page",
6375
7105
  "description": "Page number",
@@ -6390,6 +7120,10 @@
6390
7120
  "name": "update",
6391
7121
  "description": "Update a platform (relabel, recolor, reorder, activate/deactivate, toggle uptime support)",
6392
7122
  "options": [
7123
+ {
7124
+ "name": "--yes",
7125
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7126
+ },
6393
7127
  {
6394
7128
  "name": "--code",
6395
7129
  "description": "New code",
@@ -6463,6 +7197,10 @@
6463
7197
  "name": "create",
6464
7198
  "description": "Create a project (optionally inside a group)",
6465
7199
  "options": [
7200
+ {
7201
+ "name": "--yes",
7202
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7203
+ },
6466
7204
  {
6467
7205
  "name": "--color",
6468
7206
  "description": "Color label",
@@ -6533,6 +7271,10 @@
6533
7271
  "name": "delete",
6534
7272
  "description": "Delete a project (irreversible)",
6535
7273
  "options": [
7274
+ {
7275
+ "name": "--yes",
7276
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7277
+ },
6536
7278
  {
6537
7279
  "name": "--project",
6538
7280
  "aliases": [
@@ -6560,6 +7302,10 @@
6560
7302
  "name": "github",
6561
7303
  "description": "Show a project GitHub integration (repo link + tag→release binding rules)",
6562
7304
  "options": [
7305
+ {
7306
+ "name": "--yes",
7307
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7308
+ },
6563
7309
  {
6564
7310
  "name": "--project",
6565
7311
  "aliases": [
@@ -6585,6 +7331,10 @@
6585
7331
  "name": "github-connect",
6586
7332
  "description": "Connect a project to a repository available to the organization GitHub App",
6587
7333
  "options": [
7334
+ {
7335
+ "name": "--yes",
7336
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7337
+ },
6588
7338
  {
6589
7339
  "name": "--project",
6590
7340
  "aliases": [
@@ -6619,6 +7369,10 @@
6619
7369
  "name": "github-map",
6620
7370
  "description": "List the project → GitHub repository mapping for local automation",
6621
7371
  "options": [
7372
+ {
7373
+ "name": "--yes",
7374
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7375
+ },
6622
7376
  {
6623
7377
  "name": "--connected-only",
6624
7378
  "description": "Show only projects connected to a GitHub repository"
@@ -6634,6 +7388,10 @@
6634
7388
  "name": "github-update",
6635
7389
  "description": "Update a project GitHub binding rules (environment mapping + sync/binding/autoclose flags); only the passed fields change",
6636
7390
  "options": [
7391
+ {
7392
+ "name": "--yes",
7393
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7394
+ },
6637
7395
  {
6638
7396
  "name": "--project",
6639
7397
  "aliases": [
@@ -6716,6 +7474,10 @@
6716
7474
  "name": "link-server",
6717
7475
  "description": "Link a server host to one of the project declared environments (uptime monitoring)",
6718
7476
  "options": [
7477
+ {
7478
+ "name": "--yes",
7479
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7480
+ },
6719
7481
  {
6720
7482
  "name": "--project",
6721
7483
  "aliases": [
@@ -6761,6 +7523,10 @@
6761
7523
  "name": "list",
6762
7524
  "description": "List the projects visible to you",
6763
7525
  "options": [
7526
+ {
7527
+ "name": "--yes",
7528
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7529
+ },
6764
7530
  {
6765
7531
  "name": "--page",
6766
7532
  "description": "Page number",
@@ -6781,6 +7547,10 @@
6781
7547
  "name": "set-environment-capabilities",
6782
7548
  "description": "Override the servers/uptime/secrets capabilities of a project environment (inherit = follow the environment default)",
6783
7549
  "options": [
7550
+ {
7551
+ "name": "--yes",
7552
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7553
+ },
6784
7554
  {
6785
7555
  "name": "--project",
6786
7556
  "aliases": [
@@ -6864,6 +7634,10 @@
6864
7634
  "name": "set-environments",
6865
7635
  "description": "Declare the environments a project receives data from (replaces the current set)",
6866
7636
  "options": [
7637
+ {
7638
+ "name": "--yes",
7639
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7640
+ },
6867
7641
  {
6868
7642
  "name": "--project",
6869
7643
  "aliases": [
@@ -6908,6 +7682,10 @@
6908
7682
  "name": "set-platforms",
6909
7683
  "description": "Declare the platforms of a project (replaces the current set)",
6910
7684
  "options": [
7685
+ {
7686
+ "name": "--yes",
7687
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7688
+ },
6911
7689
  {
6912
7690
  "name": "--project",
6913
7691
  "aliases": [
@@ -6950,11 +7728,16 @@
6950
7728
  },
6951
7729
  {
6952
7730
  "name": "settings",
7731
+ "description": "Per-project settings: log/analytics retention and feature flags",
6953
7732
  "commands": [
6954
7733
  {
6955
7734
  "name": "show",
6956
7735
  "description": "Show a project settings (log/analytics retention + feature flags)",
6957
7736
  "options": [
7737
+ {
7738
+ "name": "--yes",
7739
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7740
+ },
6958
7741
  {
6959
7742
  "name": "--project",
6960
7743
  "aliases": [
@@ -6979,6 +7762,10 @@
6979
7762
  "name": "update",
6980
7763
  "description": "Update a project settings (log/analytics retention + feature flags); only the passed fields change",
6981
7764
  "options": [
7765
+ {
7766
+ "name": "--yes",
7767
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7768
+ },
6982
7769
  {
6983
7770
  "name": "--project",
6984
7771
  "aliases": [
@@ -7033,6 +7820,12 @@
7033
7820
  {
7034
7821
  "name": "show",
7035
7822
  "description": "Show a single project by id or key, with its declared environments and their capabilities",
7823
+ "options": [
7824
+ {
7825
+ "name": "--yes",
7826
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7827
+ }
7828
+ ],
7036
7829
  "arguments": [
7037
7830
  {
7038
7831
  "name": "ID",
@@ -7049,6 +7842,10 @@
7049
7842
  "name": "unlink-server",
7050
7843
  "description": "Unlink a server host from the project (removes the host↔environment link)",
7051
7844
  "options": [
7845
+ {
7846
+ "name": "--yes",
7847
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7848
+ },
7052
7849
  {
7053
7850
  "name": "--project",
7054
7851
  "aliases": [
@@ -7083,6 +7880,10 @@
7083
7880
  "name": "update",
7084
7881
  "description": "Update a project (name, key, color, description, group, feature flags)",
7085
7882
  "options": [
7883
+ {
7884
+ "name": "--yes",
7885
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7886
+ },
7086
7887
  {
7087
7888
  "name": "--project",
7088
7889
  "aliases": [
@@ -7168,6 +7969,10 @@
7168
7969
  "name": "list",
7169
7970
  "description": "List the releases of a project (tracked from CI)",
7170
7971
  "options": [
7972
+ {
7973
+ "name": "--yes",
7974
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7975
+ },
7171
7976
  {
7172
7977
  "name": "--project",
7173
7978
  "aliases": [
@@ -7202,11 +8007,16 @@
7202
8007
  },
7203
8008
  {
7204
8009
  "name": "roles",
8010
+ "description": "RBAC roles: named bundles of permission keys",
7205
8011
  "commands": [
7206
8012
  {
7207
8013
  "name": "create",
7208
8014
  "description": "Create an RBAC role (a named bundle of permission keys)",
7209
8015
  "options": [
8016
+ {
8017
+ "name": "--yes",
8018
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8019
+ },
7210
8020
  {
7211
8021
  "name": "--color",
7212
8022
  "description": "Color label",
@@ -7242,6 +8052,12 @@
7242
8052
  {
7243
8053
  "name": "delete",
7244
8054
  "description": "Delete a role (its assignments to teams and accounts are removed)",
8055
+ "options": [
8056
+ {
8057
+ "name": "--yes",
8058
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8059
+ }
8060
+ ],
7245
8061
  "arguments": [
7246
8062
  {
7247
8063
  "name": "ROLE",
@@ -7257,6 +8073,10 @@
7257
8073
  "name": "list",
7258
8074
  "description": "List the RBAC roles in your organization",
7259
8075
  "options": [
8076
+ {
8077
+ "name": "--yes",
8078
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8079
+ },
7260
8080
  {
7261
8081
  "name": "--page",
7262
8082
  "description": "Page number",
@@ -7276,6 +8096,12 @@
7276
8096
  {
7277
8097
  "name": "show",
7278
8098
  "description": "Show a role by id or name (with its permission keys)",
8099
+ "options": [
8100
+ {
8101
+ "name": "--yes",
8102
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8103
+ }
8104
+ ],
7279
8105
  "arguments": [
7280
8106
  {
7281
8107
  "name": "ROLE",
@@ -7291,6 +8117,10 @@
7291
8117
  "name": "update",
7292
8118
  "description": "Update a role (rename, recolor, or replace its permission keys)",
7293
8119
  "options": [
8120
+ {
8121
+ "name": "--yes",
8122
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8123
+ },
7294
8124
  {
7295
8125
  "name": "--color",
7296
8126
  "description": "Color label",
@@ -7340,6 +8170,10 @@
7340
8170
  "name": "run",
7341
8171
  "description": "Run a command with project/environment secrets injected as env vars. Secrets never touch disk.",
7342
8172
  "options": [
8173
+ {
8174
+ "name": "--yes",
8175
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8176
+ },
7343
8177
  {
7344
8178
  "name": "--project",
7345
8179
  "aliases": [
@@ -7380,10 +8214,15 @@
7380
8214
  "commands": [
7381
8215
  {
7382
8216
  "name": "assets",
8217
+ "description": "Encrypted secret files: upload, download, versions, delegation",
7383
8218
  "commands": [
7384
8219
  {
7385
8220
  "name": "archive",
7386
8221
  "options": [
8222
+ {
8223
+ "name": "--yes",
8224
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8225
+ },
7387
8226
  {
7388
8227
  "name": "--project",
7389
8228
  "aliases": [
@@ -7413,6 +8252,10 @@
7413
8252
  {
7414
8253
  "name": "delegate",
7415
8254
  "options": [
8255
+ {
8256
+ "name": "--yes",
8257
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8258
+ },
7416
8259
  {
7417
8260
  "name": "--project",
7418
8261
  "aliases": [
@@ -7438,6 +8281,10 @@
7438
8281
  "name": "download",
7439
8282
  "description": "Download and decrypt a secret file to an explicit path with mode 0600",
7440
8283
  "options": [
8284
+ {
8285
+ "name": "--yes",
8286
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8287
+ },
7441
8288
  {
7442
8289
  "name": "--project",
7443
8290
  "aliases": [
@@ -7489,6 +8336,10 @@
7489
8336
  "name": "list",
7490
8337
  "description": "List encrypted secret files visible to a project (metadata only)",
7491
8338
  "options": [
8339
+ {
8340
+ "name": "--yes",
8341
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8342
+ },
7492
8343
  {
7493
8344
  "name": "--project",
7494
8345
  "aliases": [
@@ -7531,6 +8382,10 @@
7531
8382
  "name": "purge",
7532
8383
  "description": "Permanently delete an archived secret asset and all versions (owner only)",
7533
8384
  "options": [
8385
+ {
8386
+ "name": "--yes",
8387
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8388
+ },
7534
8389
  {
7535
8390
  "name": "--project",
7536
8391
  "aliases": [
@@ -7567,6 +8422,10 @@
7567
8422
  {
7568
8423
  "name": "rollback",
7569
8424
  "options": [
8425
+ {
8426
+ "name": "--yes",
8427
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8428
+ },
7570
8429
  {
7571
8430
  "name": "--project",
7572
8431
  "aliases": [
@@ -7601,12 +8460,22 @@
7601
8460
  },
7602
8461
  {
7603
8462
  "name": "shared-list",
7604
- "description": "List organization-level encrypted secret files and delegated projects"
8463
+ "description": "List organization-level encrypted secret files and delegated projects",
8464
+ "options": [
8465
+ {
8466
+ "name": "--yes",
8467
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8468
+ }
8469
+ ]
7605
8470
  },
7606
8471
  {
7607
8472
  "name": "shared-upload",
7608
8473
  "description": "Encrypt and upload one organization-level secret file",
7609
8474
  "options": [
8475
+ {
8476
+ "name": "--yes",
8477
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8478
+ },
7610
8479
  {
7611
8480
  "name": "--file",
7612
8481
  "required": true,
@@ -7650,6 +8519,10 @@
7650
8519
  {
7651
8520
  "name": "undelegate",
7652
8521
  "options": [
8522
+ {
8523
+ "name": "--yes",
8524
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8525
+ },
7653
8526
  {
7654
8527
  "name": "--project",
7655
8528
  "aliases": [
@@ -7675,6 +8548,10 @@
7675
8548
  "name": "upload",
7676
8549
  "description": "Encrypt and upload a mobile CI secret file (never prints its contents)",
7677
8550
  "options": [
8551
+ {
8552
+ "name": "--yes",
8553
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8554
+ },
7678
8555
  {
7679
8556
  "name": "--project",
7680
8557
  "aliases": [
@@ -7732,6 +8609,10 @@
7732
8609
  {
7733
8610
  "name": "versions",
7734
8611
  "options": [
8612
+ {
8613
+ "name": "--yes",
8614
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8615
+ },
7735
8616
  {
7736
8617
  "name": "--project",
7737
8618
  "aliases": [
@@ -7760,6 +8641,10 @@
7760
8641
  "name": "delete",
7761
8642
  "description": "Delete a secret from a project environment",
7762
8643
  "options": [
8644
+ {
8645
+ "name": "--yes",
8646
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8647
+ },
7763
8648
  {
7764
8649
  "name": "--project",
7765
8650
  "aliases": [
@@ -7804,6 +8689,10 @@
7804
8689
  "name": "download",
7805
8690
  "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.",
7806
8691
  "options": [
8692
+ {
8693
+ "name": "--yes",
8694
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8695
+ },
7807
8696
  {
7808
8697
  "name": "--project",
7809
8698
  "aliases": [
@@ -7866,6 +8755,10 @@
7866
8755
  "name": "get",
7867
8756
  "description": "Print the value of a single secret (pipeable). Requires the secrets.read permission.",
7868
8757
  "options": [
8758
+ {
8759
+ "name": "--yes",
8760
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8761
+ },
7869
8762
  {
7870
8763
  "name": "--project",
7871
8764
  "aliases": [
@@ -7910,6 +8803,10 @@
7910
8803
  "name": "import",
7911
8804
  "description": "Import many secrets at once (all-or-nothing) from a .env or JSON file",
7912
8805
  "options": [
8806
+ {
8807
+ "name": "--yes",
8808
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8809
+ },
7913
8810
  {
7914
8811
  "name": "--project",
7915
8812
  "aliases": [
@@ -7973,6 +8870,10 @@
7973
8870
  "name": "list",
7974
8871
  "description": "List secret names for a project (optionally filtered by environment). Lists every secret — never truncated to a page — and never prints values.",
7975
8872
  "options": [
8873
+ {
8874
+ "name": "--yes",
8875
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8876
+ },
7976
8877
  {
7977
8878
  "name": "--project",
7978
8879
  "aliases": [
@@ -8018,6 +8919,10 @@
8018
8919
  "name": "set",
8019
8920
  "description": "Set (create or update) a secret for a project environment",
8020
8921
  "options": [
8922
+ {
8923
+ "name": "--yes",
8924
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8925
+ },
8021
8926
  {
8022
8927
  "name": "--project",
8023
8928
  "aliases": [
@@ -8083,6 +8988,10 @@
8083
8988
  "name": "sync",
8084
8989
  "description": "Push the project's vault secrets to its connected GitHub repo Environment secrets (enqueues a background sync). Requires the github.manage permission.",
8085
8990
  "options": [
8991
+ {
8992
+ "name": "--yes",
8993
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8994
+ },
8086
8995
  {
8087
8996
  "name": "--project",
8088
8997
  "aliases": [
@@ -8106,11 +9015,16 @@
8106
9015
  },
8107
9016
  {
8108
9017
  "name": "seo",
9018
+ "description": "SEO findings of the watched sites: triage, ignore, promote to ticket",
8109
9019
  "commands": [
8110
9020
  {
8111
9021
  "name": "ignore",
8112
9022
  "description": "Ignore an SEO finding: you accept living with it",
8113
9023
  "options": [
9024
+ {
9025
+ "name": "--yes",
9026
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9027
+ },
8114
9028
  {
8115
9029
  "name": "--note",
8116
9030
  "description": "Why you are keeping it (shown alongside the ignored row)",
@@ -8138,6 +9052,10 @@
8138
9052
  "name": "list",
8139
9053
  "description": "List the SEO findings of your sites (cross-project)",
8140
9054
  "options": [
9055
+ {
9056
+ "name": "--yes",
9057
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9058
+ },
8141
9059
  {
8142
9060
  "name": "--project",
8143
9061
  "aliases": [
@@ -8203,6 +9121,10 @@
8203
9121
  "name": "pages",
8204
9122
  "description": "List the pages the SEO check has visited, with their state",
8205
9123
  "options": [
9124
+ {
9125
+ "name": "--yes",
9126
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9127
+ },
8206
9128
  {
8207
9129
  "name": "--project",
8208
9130
  "aliases": [
@@ -8246,6 +9168,12 @@
8246
9168
  {
8247
9169
  "name": "promote",
8248
9170
  "description": "Open a ticket from an SEO finding, evidence included",
9171
+ "options": [
9172
+ {
9173
+ "name": "--yes",
9174
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9175
+ }
9176
+ ],
8249
9177
  "arguments": [
8250
9178
  {
8251
9179
  "name": "ID",
@@ -8260,6 +9188,12 @@
8260
9188
  {
8261
9189
  "name": "reopen",
8262
9190
  "description": "Reopen an ignored SEO finding: you changed your mind",
9191
+ "options": [
9192
+ {
9193
+ "name": "--yes",
9194
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9195
+ }
9196
+ ],
8263
9197
  "arguments": [
8264
9198
  {
8265
9199
  "name": "ID",
@@ -8275,6 +9209,10 @@
8275
9209
  "name": "rescan",
8276
9210
  "description": "Check a site now, without waiting for the next scheduled run",
8277
9211
  "options": [
9212
+ {
9213
+ "name": "--yes",
9214
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9215
+ },
8278
9216
  {
8279
9217
  "name": "--site",
8280
9218
  "description": "Site id (from `seo-sites list`)",
@@ -8294,6 +9232,12 @@
8294
9232
  {
8295
9233
  "name": "show",
8296
9234
  "description": "Show a single SEO finding, with the evidence behind it",
9235
+ "options": [
9236
+ {
9237
+ "name": "--yes",
9238
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9239
+ }
9240
+ ],
8297
9241
  "arguments": [
8298
9242
  {
8299
9243
  "name": "ID",
@@ -8309,11 +9253,16 @@
8309
9253
  },
8310
9254
  {
8311
9255
  "name": "seo-sites",
9256
+ "description": "Sites under SEO check: declare, configure, remove",
8312
9257
  "commands": [
8313
9258
  {
8314
9259
  "name": "create",
8315
9260
  "description": "Declare a site to keep an eye on (one per project and environment)",
8316
9261
  "options": [
9262
+ {
9263
+ "name": "--yes",
9264
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9265
+ },
8317
9266
  {
8318
9267
  "name": "--project",
8319
9268
  "aliases": [
@@ -8387,6 +9336,12 @@
8387
9336
  {
8388
9337
  "name": "delete",
8389
9338
  "description": "Stop watching a site and remove its pages and findings",
9339
+ "options": [
9340
+ {
9341
+ "name": "--yes",
9342
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9343
+ }
9344
+ ],
8390
9345
  "arguments": [
8391
9346
  {
8392
9347
  "name": "ID",
@@ -8402,6 +9357,10 @@
8402
9357
  "name": "list",
8403
9358
  "description": "List the sites under SEO check",
8404
9359
  "options": [
9360
+ {
9361
+ "name": "--yes",
9362
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9363
+ },
8405
9364
  {
8406
9365
  "name": "--project",
8407
9366
  "aliases": [
@@ -8434,6 +9393,12 @@
8434
9393
  {
8435
9394
  "name": "show",
8436
9395
  "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",
9396
+ "options": [
9397
+ {
9398
+ "name": "--yes",
9399
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9400
+ }
9401
+ ],
8437
9402
  "arguments": [
8438
9403
  {
8439
9404
  "name": "ID",
@@ -8450,6 +9415,10 @@
8450
9415
  "name": "update",
8451
9416
  "description": "Change how a site is checked (project and environment are its identity: they never change)",
8452
9417
  "options": [
9418
+ {
9419
+ "name": "--yes",
9420
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9421
+ },
8453
9422
  {
8454
9423
  "name": "--url",
8455
9424
  "description": "Public address the visit starts from",
@@ -8519,6 +9488,10 @@
8519
9488
  "name": "delete",
8520
9489
  "description": "Delete a server and all its metrics (a live agent would re-register it)",
8521
9490
  "options": [
9491
+ {
9492
+ "name": "--yes",
9493
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9494
+ },
8522
9495
  {
8523
9496
  "name": "--confirm",
8524
9497
  "description": "Required: confirm the deletion"
@@ -8539,6 +9512,10 @@
8539
9512
  "name": "ignored-containers",
8540
9513
  "description": "Read or set the container names this server does not treat as services",
8541
9514
  "options": [
9515
+ {
9516
+ "name": "--yes",
9517
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9518
+ },
8542
9519
  {
8543
9520
  "name": "--clear",
8544
9521
  "description": "Remove every ignored container name"
@@ -8571,6 +9548,10 @@
8571
9548
  "name": "list",
8572
9549
  "description": "List the monitored servers in your organization (fleet snapshot)",
8573
9550
  "options": [
9551
+ {
9552
+ "name": "--yes",
9553
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9554
+ },
8574
9555
  {
8575
9556
  "name": "--page",
8576
9557
  "description": "Page number",
@@ -8606,6 +9587,12 @@
8606
9587
  {
8607
9588
  "name": "pause",
8608
9589
  "description": "Pause a server (no staleness checks or alerts until resumed)",
9590
+ "options": [
9591
+ {
9592
+ "name": "--yes",
9593
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9594
+ }
9595
+ ],
8609
9596
  "arguments": [
8610
9597
  {
8611
9598
  "name": "ID",
@@ -8621,6 +9608,10 @@
8621
9608
  "name": "rename",
8622
9609
  "description": "Rename a monitored server (display name only)",
8623
9610
  "options": [
9611
+ {
9612
+ "name": "--yes",
9613
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9614
+ },
8624
9615
  {
8625
9616
  "name": "--name",
8626
9617
  "description": "New display name",
@@ -8647,6 +9638,12 @@
8647
9638
  {
8648
9639
  "name": "resume",
8649
9640
  "description": "Resume a paused server (back up at the next agent push)",
9641
+ "options": [
9642
+ {
9643
+ "name": "--yes",
9644
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9645
+ }
9646
+ ],
8650
9647
  "arguments": [
8651
9648
  {
8652
9649
  "name": "ID",
@@ -8662,6 +9659,10 @@
8662
9659
  "name": "revoke",
8663
9660
  "description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
8664
9661
  "options": [
9662
+ {
9663
+ "name": "--yes",
9664
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9665
+ },
8665
9666
  {
8666
9667
  "name": "--confirm",
8667
9668
  "description": "Required: confirm the revocation"
@@ -8681,6 +9682,12 @@
8681
9682
  {
8682
9683
  "name": "show",
8683
9684
  "description": "Show a monitored server (latest snapshot)",
9685
+ "options": [
9686
+ {
9687
+ "name": "--yes",
9688
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9689
+ }
9690
+ ],
8684
9691
  "arguments": [
8685
9692
  {
8686
9693
  "name": "ID",
@@ -8694,10 +9701,17 @@
8694
9701
  },
8695
9702
  {
8696
9703
  "name": "tokens",
9704
+ "description": "Fleet enrollment tokens (server agents authenticate with these)",
8697
9705
  "commands": [
8698
9706
  {
8699
9707
  "name": "create",
8700
9708
  "description": "Create a fleet enrollment token (the secret is shown only once)",
9709
+ "options": [
9710
+ {
9711
+ "name": "--yes",
9712
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9713
+ }
9714
+ ],
8701
9715
  "arguments": [
8702
9716
  {
8703
9717
  "name": "NAME",
@@ -8713,6 +9727,10 @@
8713
9727
  "name": "list",
8714
9728
  "description": "List the fleet enrollment tokens (agents authenticate with these)",
8715
9729
  "options": [
9730
+ {
9731
+ "name": "--yes",
9732
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9733
+ },
8716
9734
  {
8717
9735
  "name": "--page",
8718
9736
  "description": "Page number",
@@ -8732,6 +9750,10 @@
8732
9750
  "name": "revoke",
8733
9751
  "description": "Revoke a fleet enrollment token (agents using it stop pushing)",
8734
9752
  "options": [
9753
+ {
9754
+ "name": "--yes",
9755
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9756
+ },
8735
9757
  {
8736
9758
  "name": "--confirm",
8737
9759
  "description": "Required: confirm the revocation"
@@ -8753,6 +9775,12 @@
8753
9775
  {
8754
9776
  "name": "unrevoke",
8755
9777
  "description": "Restore a revoked server (its agent can push again)",
9778
+ "options": [
9779
+ {
9780
+ "name": "--yes",
9781
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9782
+ }
9783
+ ],
8756
9784
  "arguments": [
8757
9785
  {
8758
9786
  "name": "ID",
@@ -8768,11 +9796,16 @@
8768
9796
  },
8769
9797
  {
8770
9798
  "name": "service-accounts",
9799
+ "description": "Service accounts (AI members, CLI-only) and their secret access",
8771
9800
  "commands": [
8772
9801
  {
8773
9802
  "name": "create",
8774
9803
  "description": "Create a service account (AI member, CLI-only)",
8775
9804
  "options": [
9805
+ {
9806
+ "name": "--yes",
9807
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9808
+ },
8776
9809
  {
8777
9810
  "name": "--name",
8778
9811
  "description": "Display name",
@@ -8847,6 +9880,10 @@
8847
9880
  "name": "delete",
8848
9881
  "description": "Delete a service account (revokes its tokens + removes org access; the secrets audit trail is kept)",
8849
9882
  "options": [
9883
+ {
9884
+ "name": "--yes",
9885
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9886
+ },
8850
9887
  {
8851
9888
  "name": "--confirm",
8852
9889
  "description": "Required: confirm the deletion"
@@ -8867,6 +9904,10 @@
8867
9904
  "name": "list",
8868
9905
  "description": "List the service accounts (AI members, CLI-only) in your organization",
8869
9906
  "options": [
9907
+ {
9908
+ "name": "--yes",
9909
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9910
+ },
8870
9911
  {
8871
9912
  "name": "--page",
8872
9913
  "description": "Page number",
@@ -8886,6 +9927,12 @@
8886
9927
  {
8887
9928
  "name": "show",
8888
9929
  "description": "Show a service account: identity, how many tokens are active, and the environments it can read secrets in",
9930
+ "options": [
9931
+ {
9932
+ "name": "--yes",
9933
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9934
+ }
9935
+ ],
8889
9936
  "arguments": [
8890
9937
  {
8891
9938
  "name": "ID",
@@ -8900,10 +9947,17 @@
8900
9947
  },
8901
9948
  {
8902
9949
  "name": "tokens",
9950
+ "description": "CLI tokens (cyi_u_) of a service account (the secret is shown only once)",
8903
9951
  "commands": [
8904
9952
  {
8905
9953
  "name": "create",
8906
9954
  "description": "Create a CLI token (cyi_u_) for a service account (the secret is shown only once)",
9955
+ "options": [
9956
+ {
9957
+ "name": "--yes",
9958
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9959
+ }
9960
+ ],
8907
9961
  "arguments": [
8908
9962
  {
8909
9963
  "name": "ACCOUNT",
@@ -8924,6 +9978,10 @@
8924
9978
  "name": "list",
8925
9979
  "description": "List the CLI tokens of a service account — which ones still work and which are revoked. Never the secret.",
8926
9980
  "options": [
9981
+ {
9982
+ "name": "--yes",
9983
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9984
+ },
8927
9985
  {
8928
9986
  "name": "--page",
8929
9987
  "description": "Page number",
@@ -8951,6 +10009,10 @@
8951
10009
  "name": "revoke",
8952
10010
  "description": "Revoke a service account CLI token (the agent using it loses access)",
8953
10011
  "options": [
10012
+ {
10013
+ "name": "--yes",
10014
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10015
+ },
8954
10016
  {
8955
10017
  "name": "--confirm",
8956
10018
  "description": "Required: confirm the revocation"
@@ -8978,6 +10040,10 @@
8978
10040
  "name": "update",
8979
10041
  "description": "Update a service account's secret access: the environments it may read secrets in (full replace)",
8980
10042
  "options": [
10043
+ {
10044
+ "name": "--yes",
10045
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10046
+ },
8981
10047
  {
8982
10048
  "name": "--secret-environment",
8983
10049
  "description": "Environment code the account may read secrets in (repeatable; replaces the whole list)",
@@ -9015,6 +10081,10 @@
9015
10081
  "name": "delete",
9016
10082
  "description": "Delete an organization shared secret from EVERY environment at once (irreversible). There is no per-environment deletion.",
9017
10083
  "options": [
10084
+ {
10085
+ "name": "--yes",
10086
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10087
+ },
9018
10088
  {
9019
10089
  "name": "--confirm",
9020
10090
  "description": "Required: confirm the deletion across every environment"
@@ -9034,6 +10104,12 @@
9034
10104
  {
9035
10105
  "name": "list",
9036
10106
  "description": "List the organization shared secret names (one row per variable, every page). Never prints values.",
10107
+ "options": [
10108
+ {
10109
+ "name": "--yes",
10110
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10111
+ }
10112
+ ],
9037
10113
  "examples": [
9038
10114
  "closeyourit shared list",
9039
10115
  "closeyourit shared list --json"
@@ -9043,6 +10119,10 @@
9043
10119
  "name": "set",
9044
10120
  "description": "Set (create or update) an organization shared secret for one environment. Projects delegated on that environment read the new value.",
9045
10121
  "options": [
10122
+ {
10123
+ "name": "--yes",
10124
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10125
+ },
9046
10126
  {
9047
10127
  "name": "--environment",
9048
10128
  "aliases": [
@@ -9094,10 +10174,17 @@
9094
10174
  },
9095
10175
  {
9096
10176
  "name": "teams",
10177
+ "description": "Teams: people bundled with roles and a group/project scope",
9097
10178
  "commands": [
9098
10179
  {
9099
10180
  "name": "add-member",
9100
10181
  "description": "Add a person to a team, keeping the existing members",
10182
+ "options": [
10183
+ {
10184
+ "name": "--yes",
10185
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10186
+ }
10187
+ ],
9101
10188
  "arguments": [
9102
10189
  {
9103
10190
  "name": "TEAM",
@@ -9118,6 +10205,10 @@
9118
10205
  "name": "create",
9119
10206
  "description": "Create a team and (optionally) set its roles, group/project scope and members",
9120
10207
  "options": [
10208
+ {
10209
+ "name": "--yes",
10210
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10211
+ },
9121
10212
  {
9122
10213
  "name": "--color",
9123
10214
  "description": "Color label",
@@ -9184,6 +10275,12 @@
9184
10275
  {
9185
10276
  "name": "delete",
9186
10277
  "description": "Delete a team (its members lose the access this team granted)",
10278
+ "options": [
10279
+ {
10280
+ "name": "--yes",
10281
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10282
+ }
10283
+ ],
9187
10284
  "arguments": [
9188
10285
  {
9189
10286
  "name": "TEAM",
@@ -9199,6 +10296,10 @@
9199
10296
  "name": "list",
9200
10297
  "description": "List the teams (people with scope) in your organization",
9201
10298
  "options": [
10299
+ {
10300
+ "name": "--yes",
10301
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10302
+ },
9202
10303
  {
9203
10304
  "name": "--page",
9204
10305
  "description": "Page number",
@@ -9218,6 +10319,12 @@
9218
10319
  {
9219
10320
  "name": "remove-member",
9220
10321
  "description": "Remove a person from a team, keeping the other members",
10322
+ "options": [
10323
+ {
10324
+ "name": "--yes",
10325
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10326
+ }
10327
+ ],
9221
10328
  "arguments": [
9222
10329
  {
9223
10330
  "name": "TEAM",
@@ -9237,6 +10344,12 @@
9237
10344
  {
9238
10345
  "name": "show",
9239
10346
  "description": "Show a team by id or name (roles, group/project scope, members)",
10347
+ "options": [
10348
+ {
10349
+ "name": "--yes",
10350
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10351
+ }
10352
+ ],
9240
10353
  "arguments": [
9241
10354
  {
9242
10355
  "name": "TEAM",
@@ -9252,6 +10365,10 @@
9252
10365
  "name": "update",
9253
10366
  "description": "Update a team. Each given dimension REPLACES the whole set for that dimension.",
9254
10367
  "options": [
10368
+ {
10369
+ "name": "--yes",
10370
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10371
+ },
9255
10372
  {
9256
10373
  "name": "--color",
9257
10374
  "description": "Color label",
@@ -9335,6 +10452,10 @@
9335
10452
  "name": "approve",
9336
10453
  "description": "Approve a ticket review: move it to the first done status",
9337
10454
  "options": [
10455
+ {
10456
+ "name": "--yes",
10457
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10458
+ },
9338
10459
  {
9339
10460
  "name": "--project",
9340
10461
  "aliases": [
@@ -9365,6 +10486,10 @@
9365
10486
  "name": "ask",
9366
10487
  "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)",
9367
10488
  "options": [
10489
+ {
10490
+ "name": "--yes",
10491
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10492
+ },
9368
10493
  {
9369
10494
  "name": "--timeout",
9370
10495
  "description": "Seconds to wait for the answer before giving up",
@@ -9391,6 +10516,10 @@
9391
10516
  "name": "assign",
9392
10517
  "description": "Assign a ticket to an account, or unassign it (--unassign)",
9393
10518
  "options": [
10519
+ {
10520
+ "name": "--yes",
10521
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10522
+ },
9394
10523
  {
9395
10524
  "name": "--project",
9396
10525
  "aliases": [
@@ -9436,6 +10565,10 @@
9436
10565
  "name": "attach",
9437
10566
  "description": "Attach one or more local files to a ticket",
9438
10567
  "options": [
10568
+ {
10569
+ "name": "--yes",
10570
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10571
+ },
9439
10572
  {
9440
10573
  "name": "--project",
9441
10574
  "aliases": [
@@ -9478,6 +10611,10 @@
9478
10611
  "name": "attachment-download",
9479
10612
  "description": "Download a ticket binary to disk: works for ticket attachments AND files attached to its comments",
9480
10613
  "options": [
10614
+ {
10615
+ "name": "--yes",
10616
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10617
+ },
9481
10618
  {
9482
10619
  "name": "--project",
9483
10620
  "aliases": [
@@ -9534,6 +10671,10 @@
9534
10671
  "name": "attachments",
9535
10672
  "description": "List a ticket's attachments",
9536
10673
  "options": [
10674
+ {
10675
+ "name": "--yes",
10676
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10677
+ },
9537
10678
  {
9538
10679
  "name": "--project",
9539
10680
  "aliases": [
@@ -9565,6 +10706,10 @@
9565
10706
  "name": "branch",
9566
10707
  "description": "Create a GitHub branch from a ticket (name prefixed with the ticket code)",
9567
10708
  "options": [
10709
+ {
10710
+ "name": "--yes",
10711
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10712
+ },
9568
10713
  {
9569
10714
  "name": "--project",
9570
10715
  "aliases": [
@@ -9596,6 +10741,10 @@
9596
10741
  "name": "clarifications",
9597
10742
  "description": "Show the clarification cycle state of a ticket (rounds, reply, escalation)",
9598
10743
  "options": [
10744
+ {
10745
+ "name": "--yes",
10746
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10747
+ },
9599
10748
  {
9600
10749
  "name": "--project",
9601
10750
  "aliases": [
@@ -9627,6 +10776,10 @@
9627
10776
  "name": "comment",
9628
10777
  "description": "Add a comment to a ticket",
9629
10778
  "options": [
10779
+ {
10780
+ "name": "--yes",
10781
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10782
+ },
9630
10783
  {
9631
10784
  "name": "--project",
9632
10785
  "aliases": [
@@ -9668,6 +10821,10 @@
9668
10821
  "name": "comment-delete",
9669
10822
  "description": "Delete a comment from a ticket (author, or with tickets.comment.delete_any)",
9670
10823
  "options": [
10824
+ {
10825
+ "name": "--yes",
10826
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10827
+ },
9671
10828
  {
9672
10829
  "name": "--project",
9673
10830
  "aliases": [
@@ -9713,6 +10870,10 @@
9713
10870
  "name": "comments",
9714
10871
  "description": "List all comments of a ticket (oldest first), including attached files — download them with tickets attachment-download",
9715
10872
  "options": [
10873
+ {
10874
+ "name": "--yes",
10875
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10876
+ },
9716
10877
  {
9717
10878
  "name": "--project",
9718
10879
  "aliases": [
@@ -9744,6 +10905,10 @@
9744
10905
  "name": "create",
9745
10906
  "description": "Create a ticket (status defaults to open, priority to medium; both take a code or a label)",
9746
10907
  "options": [
10908
+ {
10909
+ "name": "--yes",
10910
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10911
+ },
9747
10912
  {
9748
10913
  "name": "--project",
9749
10914
  "aliases": [
@@ -9957,6 +11122,10 @@
9957
11122
  "name": "delete",
9958
11123
  "description": "Delete a ticket (irreversible)",
9959
11124
  "options": [
11125
+ {
11126
+ "name": "--yes",
11127
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11128
+ },
9960
11129
  {
9961
11130
  "name": "--project",
9962
11131
  "aliases": [
@@ -9989,11 +11158,16 @@
9989
11158
  },
9990
11159
  {
9991
11160
  "name": "dependencies",
11161
+ "description": "Ticket prerequisites: what has to be finished before a ticket can start",
9992
11162
  "commands": [
9993
11163
  {
9994
11164
  "name": "add",
9995
11165
  "description": "Add a prerequisite to a ticket: the blocker has to be finished before this ticket can start",
9996
11166
  "options": [
11167
+ {
11168
+ "name": "--yes",
11169
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11170
+ },
9997
11171
  {
9998
11172
  "name": "--project",
9999
11173
  "aliases": [
@@ -10030,6 +11204,10 @@
10030
11204
  "name": "list",
10031
11205
  "description": "List the prerequisites of a ticket: what has to be finished before this one can start",
10032
11206
  "options": [
11207
+ {
11208
+ "name": "--yes",
11209
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11210
+ },
10033
11211
  {
10034
11212
  "name": "--project",
10035
11213
  "aliases": [
@@ -10061,6 +11239,10 @@
10061
11239
  "name": "remove",
10062
11240
  "description": "Remove a prerequisite from a ticket",
10063
11241
  "options": [
11242
+ {
11243
+ "name": "--yes",
11244
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11245
+ },
10064
11246
  {
10065
11247
  "name": "--project",
10066
11248
  "aliases": [
@@ -10098,6 +11280,10 @@
10098
11280
  "name": "detach",
10099
11281
  "description": "Remove an attachment from a ticket (irreversible)",
10100
11282
  "options": [
11283
+ {
11284
+ "name": "--yes",
11285
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11286
+ },
10101
11287
  {
10102
11288
  "name": "--project",
10103
11289
  "aliases": [
@@ -10143,6 +11329,10 @@
10143
11329
  "name": "eligibility",
10144
11330
  "description": "Allow or block a ticket for autonomous agents (requires tickets.edit)",
10145
11331
  "options": [
11332
+ {
11333
+ "name": "--yes",
11334
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11335
+ },
10146
11336
  {
10147
11337
  "name": "--project",
10148
11338
  "aliases": [
@@ -10195,11 +11385,16 @@
10195
11385
  },
10196
11386
  {
10197
11387
  "name": "lease",
11388
+ "description": "Working lease on a ticket: claim, renew, release (one worker at a time)",
10198
11389
  "commands": [
10199
11390
  {
10200
11391
  "name": "claim",
10201
11392
  "description": "Claim the working lease on a ticket, so nobody else (person or agent) starts it at the same time",
10202
11393
  "options": [
11394
+ {
11395
+ "name": "--yes",
11396
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11397
+ },
10203
11398
  {
10204
11399
  "name": "--project",
10205
11400
  "aliases": [
@@ -10251,6 +11446,10 @@
10251
11446
  "name": "release",
10252
11447
  "description": "Release your own working lease on a ticket, so someone else can claim it",
10253
11448
  "options": [
11449
+ {
11450
+ "name": "--yes",
11451
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11452
+ },
10254
11453
  {
10255
11454
  "name": "--project",
10256
11455
  "aliases": [
@@ -10292,6 +11491,10 @@
10292
11491
  "name": "renew",
10293
11492
  "description": "Extend your own working lease on a ticket before it expires",
10294
11493
  "options": [
11494
+ {
11495
+ "name": "--yes",
11496
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11497
+ },
10295
11498
  {
10296
11499
  "name": "--project",
10297
11500
  "aliases": [
@@ -10345,6 +11548,10 @@
10345
11548
  "name": "links",
10346
11549
  "description": "List the ticket-to-ticket links involving a ticket (duplicate/related)",
10347
11550
  "options": [
11551
+ {
11552
+ "name": "--yes",
11553
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11554
+ },
10348
11555
  {
10349
11556
  "name": "--project",
10350
11557
  "aliases": [
@@ -10376,6 +11583,10 @@
10376
11583
  "name": "list",
10377
11584
  "description": "List tickets for a project",
10378
11585
  "options": [
11586
+ {
11587
+ "name": "--yes",
11588
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11589
+ },
10379
11590
  {
10380
11591
  "name": "--project",
10381
11592
  "aliases": [
@@ -10426,6 +11637,10 @@
10426
11637
  "name": "milestone",
10427
11638
  "description": "Set or clear a ticket milestone (--clear)",
10428
11639
  "options": [
11640
+ {
11641
+ "name": "--yes",
11642
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11643
+ },
10429
11644
  {
10430
11645
  "name": "--project",
10431
11646
  "aliases": [
@@ -10471,6 +11686,10 @@
10471
11686
  "name": "pr",
10472
11687
  "description": "Open a GitHub pull request from a ticket (head = the ticket branch, title prefixed with the code)",
10473
11688
  "options": [
11689
+ {
11690
+ "name": "--yes",
11691
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11692
+ },
10474
11693
  {
10475
11694
  "name": "--project",
10476
11695
  "aliases": [
@@ -10501,6 +11720,12 @@
10501
11720
  {
10502
11721
  "name": "priorities",
10503
11722
  "description": "List the organization ticket priorities (id, code, label) — the id feeds `tickets create --priority-id`",
11723
+ "options": [
11724
+ {
11725
+ "name": "--yes",
11726
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11727
+ }
11728
+ ],
10504
11729
  "examples": [
10505
11730
  "closeyourit tickets priorities",
10506
11731
  "closeyourit tickets priorities --json"
@@ -10510,6 +11735,10 @@
10510
11735
  "name": "reject",
10511
11736
  "description": "Reject a ticket review: send it back to work with a reason",
10512
11737
  "options": [
11738
+ {
11739
+ "name": "--yes",
11740
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11741
+ },
10513
11742
  {
10514
11743
  "name": "--project",
10515
11744
  "aliases": [
@@ -10551,6 +11780,10 @@
10551
11780
  "name": "report",
10552
11781
  "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",
10553
11782
  "options": [
11783
+ {
11784
+ "name": "--yes",
11785
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11786
+ },
10554
11787
  {
10555
11788
  "name": "--project",
10556
11789
  "aliases": [
@@ -10602,6 +11835,10 @@
10602
11835
  "name": "report-show",
10603
11836
  "description": "Show the current work report of a ticket, or a past version with --version",
10604
11837
  "options": [
11838
+ {
11839
+ "name": "--yes",
11840
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11841
+ },
10605
11842
  {
10606
11843
  "name": "--project",
10607
11844
  "aliases": [
@@ -10643,6 +11880,10 @@
10643
11880
  "name": "report-versions",
10644
11881
  "description": "List the versions of the work report of a ticket (newest first)",
10645
11882
  "options": [
11883
+ {
11884
+ "name": "--yes",
11885
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11886
+ },
10646
11887
  {
10647
11888
  "name": "--project",
10648
11889
  "aliases": [
@@ -10684,6 +11925,10 @@
10684
11925
  "name": "reviewer",
10685
11926
  "description": "Set the reviewer of a ticket (requires tickets.assign)",
10686
11927
  "options": [
11928
+ {
11929
+ "name": "--yes",
11930
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11931
+ },
10687
11932
  {
10688
11933
  "name": "--project",
10689
11934
  "aliases": [
@@ -10725,6 +11970,10 @@
10725
11970
  "name": "show",
10726
11971
  "description": "Show a single ticket in full: body (description + Given/When/Then/Expected), comments (with their files) and attachments",
10727
11972
  "options": [
11973
+ {
11974
+ "name": "--yes",
11975
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11976
+ },
10728
11977
  {
10729
11978
  "name": "--project",
10730
11979
  "aliases": [
@@ -10757,6 +12006,10 @@
10757
12006
  "name": "status",
10758
12007
  "description": "Change a ticket status (by code, label or id)",
10759
12008
  "options": [
12009
+ {
12010
+ "name": "--yes",
12011
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12012
+ },
10760
12013
  {
10761
12014
  "name": "--project",
10762
12015
  "aliases": [
@@ -10798,6 +12051,12 @@
10798
12051
  {
10799
12052
  "name": "statuses",
10800
12053
  "description": "List the organization ticket statuses (id, code, label) — the id feeds `tickets create --status-id`",
12054
+ "options": [
12055
+ {
12056
+ "name": "--yes",
12057
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12058
+ }
12059
+ ],
10801
12060
  "examples": [
10802
12061
  "closeyourit tickets statuses",
10803
12062
  "closeyourit tickets statuses --json"
@@ -10807,6 +12066,10 @@
10807
12066
  "name": "unlink",
10808
12067
  "description": "Remove a ticket-to-ticket link (irreversible; requires tickets.edit)",
10809
12068
  "options": [
12069
+ {
12070
+ "name": "--yes",
12071
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12072
+ },
10810
12073
  {
10811
12074
  "name": "--project",
10812
12075
  "aliases": [
@@ -10846,6 +12109,10 @@
10846
12109
  "name": "unreviewer",
10847
12110
  "description": "Remove the reviewer of a ticket (requires tickets.assign)",
10848
12111
  "options": [
12112
+ {
12113
+ "name": "--yes",
12114
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12115
+ },
10849
12116
  {
10850
12117
  "name": "--project",
10851
12118
  "aliases": [
@@ -10876,6 +12143,10 @@
10876
12143
  "name": "unvote",
10877
12144
  "description": "Remove your upvote from a ticket (idempotent)",
10878
12145
  "options": [
12146
+ {
12147
+ "name": "--yes",
12148
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12149
+ },
10879
12150
  {
10880
12151
  "name": "--project",
10881
12152
  "aliases": [
@@ -10906,6 +12177,10 @@
10906
12177
  "name": "unwatch",
10907
12178
  "description": "Stop watching a ticket (idempotent)",
10908
12179
  "options": [
12180
+ {
12181
+ "name": "--yes",
12182
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12183
+ },
10909
12184
  {
10910
12185
  "name": "--project",
10911
12186
  "aliases": [
@@ -10936,6 +12211,10 @@
10936
12211
  "name": "update",
10937
12212
  "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)",
10938
12213
  "options": [
12214
+ {
12215
+ "name": "--yes",
12216
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12217
+ },
10939
12218
  {
10940
12219
  "name": "--project",
10941
12220
  "aliases": [
@@ -11180,6 +12459,10 @@
11180
12459
  "name": "vote",
11181
12460
  "description": "Upvote a ticket (idempotent)",
11182
12461
  "options": [
12462
+ {
12463
+ "name": "--yes",
12464
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12465
+ },
11183
12466
  {
11184
12467
  "name": "--project",
11185
12468
  "aliases": [
@@ -11210,6 +12493,10 @@
11210
12493
  "name": "watch",
11211
12494
  "description": "Watch a ticket to receive its notifications (idempotent)",
11212
12495
  "options": [
12496
+ {
12497
+ "name": "--yes",
12498
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12499
+ },
11213
12500
  {
11214
12501
  "name": "--project",
11215
12502
  "aliases": [
@@ -11240,6 +12527,10 @@
11240
12527
  "name": "work-context",
11241
12528
  "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",
11242
12529
  "options": [
12530
+ {
12531
+ "name": "--yes",
12532
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12533
+ },
11243
12534
  {
11244
12535
  "name": "--project",
11245
12536
  "aliases": [
@@ -11282,6 +12573,12 @@
11282
12573
  {
11283
12574
  "name": "complete",
11284
12575
  "description": "Mark a todo item as done",
12576
+ "options": [
12577
+ {
12578
+ "name": "--yes",
12579
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12580
+ }
12581
+ ],
11285
12582
  "arguments": [
11286
12583
  {
11287
12584
  "name": "LISTID",
@@ -11302,6 +12599,10 @@
11302
12599
  "name": "create",
11303
12600
  "description": "Create a todo list",
11304
12601
  "options": [
12602
+ {
12603
+ "name": "--yes",
12604
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12605
+ },
11305
12606
  {
11306
12607
  "name": "--name",
11307
12608
  "description": "List name",
@@ -11333,6 +12634,10 @@
11333
12634
  "name": "delete",
11334
12635
  "description": "Delete a todo list (irreversible)",
11335
12636
  "options": [
12637
+ {
12638
+ "name": "--yes",
12639
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12640
+ },
11336
12641
  {
11337
12642
  "name": "--confirm",
11338
12643
  "description": "Required: confirm the irreversible deletion"
@@ -11351,11 +12656,16 @@
11351
12656
  },
11352
12657
  {
11353
12658
  "name": "items",
12659
+ "description": "Items of a todo list: add, list, update, delete",
11354
12660
  "commands": [
11355
12661
  {
11356
12662
  "name": "add",
11357
12663
  "description": "Add an item to a todo list",
11358
12664
  "options": [
12665
+ {
12666
+ "name": "--yes",
12667
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12668
+ },
11359
12669
  {
11360
12670
  "name": "--title",
11361
12671
  "description": "Item title",
@@ -11404,6 +12714,10 @@
11404
12714
  "name": "delete",
11405
12715
  "description": "Delete a todo item (irreversible)",
11406
12716
  "options": [
12717
+ {
12718
+ "name": "--yes",
12719
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12720
+ },
11407
12721
  {
11408
12722
  "name": "--confirm",
11409
12723
  "description": "Required: confirm the irreversible deletion"
@@ -11429,6 +12743,10 @@
11429
12743
  "name": "list",
11430
12744
  "description": "List the items of one of your todo lists",
11431
12745
  "options": [
12746
+ {
12747
+ "name": "--yes",
12748
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12749
+ },
11432
12750
  {
11433
12751
  "name": "--page",
11434
12752
  "description": "Page number",
@@ -11455,6 +12773,10 @@
11455
12773
  "name": "update",
11456
12774
  "description": "Update a todo item (retitle, relink a ticket, or reposition)",
11457
12775
  "options": [
12776
+ {
12777
+ "name": "--yes",
12778
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12779
+ },
11458
12780
  {
11459
12781
  "name": "--title",
11460
12782
  "description": "New title",
@@ -11509,6 +12831,10 @@
11509
12831
  "name": "list",
11510
12832
  "description": "List your own todo lists",
11511
12833
  "options": [
12834
+ {
12835
+ "name": "--yes",
12836
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12837
+ },
11512
12838
  {
11513
12839
  "name": "--page",
11514
12840
  "description": "Page number",
@@ -11529,6 +12855,10 @@
11529
12855
  "name": "reorder",
11530
12856
  "description": "Reorder your todo lists (pass --list once per id, in the desired order)",
11531
12857
  "options": [
12858
+ {
12859
+ "name": "--yes",
12860
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12861
+ },
11532
12862
  {
11533
12863
  "name": "--list",
11534
12864
  "description": "List id, in order (repeatable)",
@@ -11549,6 +12879,10 @@
11549
12879
  "name": "share",
11550
12880
  "description": "Set who a todo list is shared with (replaces the set; omit --account to unshare all)",
11551
12881
  "options": [
12882
+ {
12883
+ "name": "--yes",
12884
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12885
+ },
11552
12886
  {
11553
12887
  "name": "--account",
11554
12888
  "description": "Recipient account id (repeatable)",
@@ -11576,6 +12910,10 @@
11576
12910
  "name": "shared",
11577
12911
  "description": "List todo lists shared with you (read-only)",
11578
12912
  "options": [
12913
+ {
12914
+ "name": "--yes",
12915
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12916
+ },
11579
12917
  {
11580
12918
  "name": "--page",
11581
12919
  "description": "Page number",
@@ -11595,6 +12933,12 @@
11595
12933
  {
11596
12934
  "name": "shared-show",
11597
12935
  "description": "Show a todo list shared with you (read-only)",
12936
+ "options": [
12937
+ {
12938
+ "name": "--yes",
12939
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12940
+ }
12941
+ ],
11598
12942
  "arguments": [
11599
12943
  {
11600
12944
  "name": "ID",
@@ -11609,6 +12953,12 @@
11609
12953
  {
11610
12954
  "name": "shares",
11611
12955
  "description": "List the members a todo list is shared with (read-only)",
12956
+ "options": [
12957
+ {
12958
+ "name": "--yes",
12959
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12960
+ }
12961
+ ],
11612
12962
  "arguments": [
11613
12963
  {
11614
12964
  "name": "LISTID",
@@ -11623,6 +12973,12 @@
11623
12973
  {
11624
12974
  "name": "show",
11625
12975
  "description": "Show one of your todo lists",
12976
+ "options": [
12977
+ {
12978
+ "name": "--yes",
12979
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12980
+ }
12981
+ ],
11626
12982
  "arguments": [
11627
12983
  {
11628
12984
  "name": "ID",
@@ -11637,6 +12993,12 @@
11637
12993
  {
11638
12994
  "name": "uncomplete",
11639
12995
  "description": "Reopen a todo item (mark it not done)",
12996
+ "options": [
12997
+ {
12998
+ "name": "--yes",
12999
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13000
+ }
13001
+ ],
11640
13002
  "arguments": [
11641
13003
  {
11642
13004
  "name": "LISTID",
@@ -11657,6 +13019,10 @@
11657
13019
  "name": "update",
11658
13020
  "description": "Update a todo list (rename or recolor)",
11659
13021
  "options": [
13022
+ {
13023
+ "name": "--yes",
13024
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13025
+ },
11660
13026
  {
11661
13027
  "name": "--name",
11662
13028
  "description": "New name",
@@ -11700,6 +13066,10 @@
11700
13066
  "name": "create",
11701
13067
  "description": "Create an ingest token (the secret is shown only once)",
11702
13068
  "options": [
13069
+ {
13070
+ "name": "--yes",
13071
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13072
+ },
11703
13073
  {
11704
13074
  "name": "--project",
11705
13075
  "aliases": [
@@ -11745,6 +13115,10 @@
11745
13115
  "name": "list",
11746
13116
  "description": "List ingest tokens for a project",
11747
13117
  "options": [
13118
+ {
13119
+ "name": "--yes",
13120
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13121
+ },
11748
13122
  {
11749
13123
  "name": "--project",
11750
13124
  "aliases": [
@@ -11769,6 +13143,10 @@
11769
13143
  "name": "provision",
11770
13144
  "description": "Generate an ingest token and deliver it without revealing the secret",
11771
13145
  "options": [
13146
+ {
13147
+ "name": "--yes",
13148
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13149
+ },
11772
13150
  {
11773
13151
  "name": "--project",
11774
13152
  "aliases": [
@@ -11877,11 +13255,16 @@
11877
13255
  },
11878
13256
  {
11879
13257
  "name": "provisions",
13258
+ "description": "GitHub provisioning of an ingest token: status and retry (never the secret)",
11880
13259
  "commands": [
11881
13260
  {
11882
13261
  "name": "retry",
11883
13262
  "description": "Retry GitHub synchronization without regenerating or revealing the token",
11884
13263
  "options": [
13264
+ {
13265
+ "name": "--yes",
13266
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13267
+ },
11885
13268
  {
11886
13269
  "name": "--project",
11887
13270
  "aliases": [
@@ -11909,6 +13292,10 @@
11909
13292
  "name": "show",
11910
13293
  "description": "Show secret-free token provision status",
11911
13294
  "options": [
13295
+ {
13296
+ "name": "--yes",
13297
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13298
+ },
11912
13299
  {
11913
13300
  "name": "--project",
11914
13301
  "aliases": [
@@ -11938,6 +13325,10 @@
11938
13325
  "name": "revoke",
11939
13326
  "description": "Revoke an ingest token",
11940
13327
  "options": [
13328
+ {
13329
+ "name": "--yes",
13330
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13331
+ },
11941
13332
  {
11942
13333
  "name": "--project",
11943
13334
  "aliases": [
@@ -11968,6 +13359,10 @@
11968
13359
  "name": "rotate",
11969
13360
  "description": "Rotate an ingest token (the new secret is shown only once)",
11970
13361
  "options": [
13362
+ {
13363
+ "name": "--yes",
13364
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13365
+ },
11971
13366
  {
11972
13367
  "name": "--project",
11973
13368
  "aliases": [
@@ -12004,6 +13399,10 @@
12004
13399
  "name": "create",
12005
13400
  "description": "Create an uptime monitor group (org-level container)",
12006
13401
  "options": [
13402
+ {
13403
+ "name": "--yes",
13404
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13405
+ },
12007
13406
  {
12008
13407
  "name": "--name",
12009
13408
  "description": "Group name",
@@ -12055,6 +13454,10 @@
12055
13454
  "name": "delete",
12056
13455
  "description": "Delete an uptime monitor group (irreversible)",
12057
13456
  "options": [
13457
+ {
13458
+ "name": "--yes",
13459
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13460
+ },
12058
13461
  {
12059
13462
  "name": "--confirm",
12060
13463
  "description": "Required: confirm the irreversible deletion"
@@ -12075,6 +13478,10 @@
12075
13478
  "name": "list",
12076
13479
  "description": "List the uptime monitor groups in your organization",
12077
13480
  "options": [
13481
+ {
13482
+ "name": "--yes",
13483
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13484
+ },
12078
13485
  {
12079
13486
  "name": "--page",
12080
13487
  "description": "Page number",
@@ -12094,6 +13501,12 @@
12094
13501
  {
12095
13502
  "name": "publish",
12096
13503
  "description": "Publish the public status page for an uptime group",
13504
+ "options": [
13505
+ {
13506
+ "name": "--yes",
13507
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13508
+ }
13509
+ ],
12097
13510
  "arguments": [
12098
13511
  {
12099
13512
  "name": "ID",
@@ -12108,6 +13521,12 @@
12108
13521
  {
12109
13522
  "name": "show",
12110
13523
  "description": "Show an uptime monitor group",
13524
+ "options": [
13525
+ {
13526
+ "name": "--yes",
13527
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13528
+ }
13529
+ ],
12111
13530
  "arguments": [
12112
13531
  {
12113
13532
  "name": "ID",
@@ -12122,6 +13541,12 @@
12122
13541
  {
12123
13542
  "name": "unpublish",
12124
13543
  "description": "Unpublish (retract) the public status page for an uptime group",
13544
+ "options": [
13545
+ {
13546
+ "name": "--yes",
13547
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13548
+ }
13549
+ ],
12125
13550
  "arguments": [
12126
13551
  {
12127
13552
  "name": "ID",
@@ -12137,6 +13562,10 @@
12137
13562
  "name": "update",
12138
13563
  "description": "Update an uptime monitor group (only the provided fields)",
12139
13564
  "options": [
13565
+ {
13566
+ "name": "--yes",
13567
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13568
+ },
12140
13569
  {
12141
13570
  "name": "--name",
12142
13571
  "description": "Group name",
@@ -12193,11 +13622,16 @@
12193
13622
  },
12194
13623
  {
12195
13624
  "name": "usage",
13625
+ "description": "Usage the product reported as actually executed (routes, jobs, custom keys)",
12196
13626
  "commands": [
12197
13627
  {
12198
13628
  "name": "list",
12199
13629
  "description": "List the usage symbols the product reported as actually executed (routes as Controller#action, jobs, custom keys)",
12200
13630
  "options": [
13631
+ {
13632
+ "name": "--yes",
13633
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13634
+ },
12201
13635
  {
12202
13636
  "name": "--project",
12203
13637
  "aliases": [
@@ -12253,6 +13687,10 @@
12253
13687
  "name": "reporters",
12254
13688
  "description": "List the usage reporters: which SDK is sending usage of each kind, and since when",
12255
13689
  "options": [
13690
+ {
13691
+ "name": "--yes",
13692
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13693
+ },
12256
13694
  {
12257
13695
  "name": "--project",
12258
13696
  "aliases": [
@@ -12296,6 +13734,12 @@
12296
13734
  {
12297
13735
  "name": "approve",
12298
13736
  "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.",
13737
+ "options": [
13738
+ {
13739
+ "name": "--yes",
13740
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13741
+ }
13742
+ ],
12299
13743
  "arguments": [
12300
13744
  {
12301
13745
  "name": "ID",
@@ -12311,6 +13755,12 @@
12311
13755
  {
12312
13756
  "name": "list",
12313
13757
  "description": "List the secret changes waiting for a second approval, across every visible project. Shows the name and the intent, never the proposed value.",
13758
+ "options": [
13759
+ {
13760
+ "name": "--yes",
13761
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13762
+ }
13763
+ ],
12314
13764
  "examples": [
12315
13765
  "closeyourit vault requests list",
12316
13766
  "closeyourit vault requests list --json"
@@ -12320,6 +13770,10 @@
12320
13770
  "name": "reject",
12321
13771
  "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.",
12322
13772
  "options": [
13773
+ {
13774
+ "name": "--yes",
13775
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13776
+ },
12323
13777
  {
12324
13778
  "name": "--reason",
12325
13779
  "aliases": [
@@ -12353,6 +13807,7 @@
12353
13807
  },
12354
13808
  {
12355
13809
  "name": "vulnerabilities",
13810
+ "description": "Dependency vulnerabilities and runtime support: triage, ignore, promote to ticket",
12356
13811
  "commands": [
12357
13812
  {
12358
13813
  "name": "ignore",
@@ -12361,6 +13816,10 @@
12361
13816
  "vulns:ignore"
12362
13817
  ],
12363
13818
  "options": [
13819
+ {
13820
+ "name": "--yes",
13821
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13822
+ },
12364
13823
  {
12365
13824
  "name": "--note",
12366
13825
  "description": "Why you are keeping it (shown alongside the ignored row)",
@@ -12391,6 +13850,10 @@
12391
13850
  "vulns:list"
12392
13851
  ],
12393
13852
  "options": [
13853
+ {
13854
+ "name": "--yes",
13855
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13856
+ },
12394
13857
  {
12395
13858
  "name": "--project",
12396
13859
  "aliases": [
@@ -12458,6 +13921,12 @@
12458
13921
  "aliases": [
12459
13922
  "vulns:promote"
12460
13923
  ],
13924
+ "options": [
13925
+ {
13926
+ "name": "--yes",
13927
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13928
+ }
13929
+ ],
12461
13930
  "arguments": [
12462
13931
  {
12463
13932
  "name": "ID",
@@ -12475,6 +13944,12 @@
12475
13944
  "aliases": [
12476
13945
  "vulns:reopen"
12477
13946
  ],
13947
+ "options": [
13948
+ {
13949
+ "name": "--yes",
13950
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13951
+ }
13952
+ ],
12478
13953
  "arguments": [
12479
13954
  {
12480
13955
  "name": "ID",
@@ -12493,6 +13968,10 @@
12493
13968
  "vulns:rescan"
12494
13969
  ],
12495
13970
  "options": [
13971
+ {
13972
+ "name": "--yes",
13973
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13974
+ },
12496
13975
  {
12497
13976
  "name": "--project",
12498
13977
  "aliases": [
@@ -12519,6 +13998,10 @@
12519
13998
  "vulns:runtimes"
12520
13999
  ],
12521
14000
  "options": [
14001
+ {
14002
+ "name": "--yes",
14003
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14004
+ },
12522
14005
  {
12523
14006
  "name": "--project",
12524
14007
  "aliases": [
@@ -12554,6 +14037,12 @@
12554
14037
  "aliases": [
12555
14038
  "vulns:show"
12556
14039
  ],
14040
+ "options": [
14041
+ {
14042
+ "name": "--yes",
14043
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14044
+ }
14045
+ ],
12557
14046
  "arguments": [
12558
14047
  {
12559
14048
  "name": "ID",
@@ -12570,6 +14059,12 @@
12570
14059
  {
12571
14060
  "name": "whoami",
12572
14061
  "description": "Show the authenticated account, organization, token prefix and permissions",
14062
+ "options": [
14063
+ {
14064
+ "name": "--yes",
14065
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14066
+ }
14067
+ ],
12573
14068
  "examples": [
12574
14069
  "closeyourit whoami",
12575
14070
  "closeyourit whoami --json"
@@ -12583,6 +14078,10 @@
12583
14078
  "name": "create",
12584
14079
  "description": "Create a workload action (non-dev activity: fair, meeting, call…) on one of your teams. Add the people with `workload participant add`.",
12585
14080
  "options": [
14081
+ {
14082
+ "name": "--yes",
14083
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14084
+ },
12586
14085
  {
12587
14086
  "name": "--team",
12588
14087
  "description": "Team id (UUID) or name — the action belongs to it and cannot be moved later",
@@ -12672,6 +14171,10 @@
12672
14171
  "name": "delete",
12673
14172
  "description": "Delete a workload action (irreversible; a linked ticket survives and only loses the link)",
12674
14173
  "options": [
14174
+ {
14175
+ "name": "--yes",
14176
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14177
+ },
12675
14178
  {
12676
14179
  "name": "--confirm",
12677
14180
  "description": "Required: confirm the irreversible deletion"
@@ -12692,6 +14195,10 @@
12692
14195
  "name": "list",
12693
14196
  "description": "List the workload actions of the teams you belong to (newest first)",
12694
14197
  "options": [
14198
+ {
14199
+ "name": "--yes",
14200
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14201
+ },
12695
14202
  {
12696
14203
  "name": "--page",
12697
14204
  "description": "Page number",
@@ -12715,6 +14222,12 @@
12715
14222
  {
12716
14223
  "name": "add",
12717
14224
  "description": "Add someone to a workload action (they must belong to the team that owns it)",
14225
+ "options": [
14226
+ {
14227
+ "name": "--yes",
14228
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14229
+ }
14230
+ ],
12718
14231
  "arguments": [
12719
14232
  {
12720
14233
  "name": "ACTION",
@@ -12734,6 +14247,12 @@
12734
14247
  {
12735
14248
  "name": "remove",
12736
14249
  "description": "Remove someone from a workload action (idempotent: removing who is not there succeeds)",
14250
+ "options": [
14251
+ {
14252
+ "name": "--yes",
14253
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14254
+ }
14255
+ ],
12737
14256
  "arguments": [
12738
14257
  {
12739
14258
  "name": "ACTION",
@@ -12756,6 +14275,10 @@
12756
14275
  "name": "promote",
12757
14276
  "description": "Generate a ticket from a workload action and link it back (the action keeps existing; an already linked action is refused)",
12758
14277
  "options": [
14278
+ {
14279
+ "name": "--yes",
14280
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14281
+ },
12759
14282
  {
12760
14283
  "name": "--project",
12761
14284
  "aliases": [
@@ -12842,6 +14365,12 @@
12842
14365
  {
12843
14366
  "name": "show",
12844
14367
  "description": "Show one workload action (an action of another team answers 404, never 403)",
14368
+ "options": [
14369
+ {
14370
+ "name": "--yes",
14371
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14372
+ }
14373
+ ],
12845
14374
  "arguments": [
12846
14375
  {
12847
14376
  "name": "ID",
@@ -12857,6 +14386,10 @@
12857
14386
  "name": "update",
12858
14387
  "description": "Update a workload action (only the passed fields change). The team never changes: moving an action would change who can see it.",
12859
14388
  "options": [
14389
+ {
14390
+ "name": "--yes",
14391
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14392
+ },
12860
14393
  {
12861
14394
  "name": "--title",
12862
14395
  "description": "New title",