@bussolabs/closeyourit-cli 0.24.1 → 0.24.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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.24.2",
7
7
  "description": "CLI for CloseYourIt — manage org, errors, tokens and tickets with your user token",
8
8
  "license": {
9
9
  "name": "MIT",
@@ -60,10 +60,17 @@
60
60
  "commands": [
61
61
  {
62
62
  "name": "tokens",
63
+ "description": "The automator tokens themselves: create, list, revoke (the secret is shown only once)",
63
64
  "commands": [
64
65
  {
65
66
  "name": "create",
66
67
  "description": "Create an org automator token (cyi_a_ — the secret is shown only once)",
68
+ "options": [
69
+ {
70
+ "name": "--yes",
71
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
72
+ }
73
+ ],
67
74
  "arguments": [
68
75
  {
69
76
  "name": "NAME",
@@ -79,6 +86,10 @@
79
86
  "name": "list",
80
87
  "description": "List the org automator tokens (closeyourit-automator authenticates with these)",
81
88
  "options": [
89
+ {
90
+ "name": "--yes",
91
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
92
+ },
82
93
  {
83
94
  "name": "--page",
84
95
  "description": "Page number",
@@ -98,6 +109,10 @@
98
109
  "name": "revoke",
99
110
  "description": "Revoke an org automator token (the automator using it stops syncing)",
100
111
  "options": [
112
+ {
113
+ "name": "--yes",
114
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
115
+ },
101
116
  {
102
117
  "name": "--confirm",
103
118
  "description": "Required: confirm the revocation"
@@ -120,14 +135,20 @@
120
135
  },
121
136
  {
122
137
  "name": "alerts",
138
+ "description": "Alert rules, external delivery channels and your own notifications",
123
139
  "commands": [
124
140
  {
125
141
  "name": "channels",
142
+ "description": "External delivery channels for alerts (webhook, Telegram)",
126
143
  "commands": [
127
144
  {
128
145
  "name": "create",
129
146
  "description": "Create an external alert channel (webhook or Telegram)",
130
147
  "options": [
148
+ {
149
+ "name": "--yes",
150
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
151
+ },
131
152
  {
132
153
  "name": "--kind",
133
154
  "description": "Channel kind",
@@ -200,6 +221,10 @@
200
221
  "name": "delete",
201
222
  "description": "Delete an external alert channel (rules keep delivering in-app/email)",
202
223
  "options": [
224
+ {
225
+ "name": "--yes",
226
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
227
+ },
203
228
  {
204
229
  "name": "--confirm",
205
230
  "description": "Required: confirm the deletion"
@@ -220,6 +245,10 @@
220
245
  "name": "list",
221
246
  "description": "List the external alert channels (webhook / Telegram)",
222
247
  "options": [
248
+ {
249
+ "name": "--yes",
250
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
251
+ },
223
252
  {
224
253
  "name": "--page",
225
254
  "description": "Page number",
@@ -241,6 +270,10 @@
241
270
  "name": "create",
242
271
  "description": "Create an alert rule in your organization",
243
272
  "options": [
273
+ {
274
+ "name": "--yes",
275
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
276
+ },
244
277
  {
245
278
  "name": "--event-type",
246
279
  "description": "Event that triggers the rule",
@@ -389,6 +422,10 @@
389
422
  "name": "delete",
390
423
  "description": "Delete an alert rule",
391
424
  "options": [
425
+ {
426
+ "name": "--yes",
427
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
428
+ },
392
429
  {
393
430
  "name": "--confirm",
394
431
  "description": "Required: confirm the deletion"
@@ -409,6 +446,10 @@
409
446
  "name": "list",
410
447
  "description": "List the alert rules in your organization",
411
448
  "options": [
449
+ {
450
+ "name": "--yes",
451
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
452
+ },
412
453
  {
413
454
  "name": "--page",
414
455
  "description": "Page number",
@@ -427,11 +468,16 @@
427
468
  },
428
469
  {
429
470
  "name": "notifications",
471
+ "description": "Your in-app notification inbox: list, mark read, delete",
430
472
  "commands": [
431
473
  {
432
474
  "name": "delete",
433
475
  "description": "Delete one of your notifications (irreversible)",
434
476
  "options": [
477
+ {
478
+ "name": "--yes",
479
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
480
+ },
435
481
  {
436
482
  "name": "--confirm",
437
483
  "description": "Required: confirm the irreversible deletion"
@@ -452,6 +498,10 @@
452
498
  "name": "list",
453
499
  "description": "List your in-app alert notifications (your own inbox)",
454
500
  "options": [
501
+ {
502
+ "name": "--yes",
503
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
504
+ },
455
505
  {
456
506
  "name": "--page",
457
507
  "description": "Page number",
@@ -471,6 +521,12 @@
471
521
  {
472
522
  "name": "read",
473
523
  "description": "Mark a single notification as read (idempotent)",
524
+ "options": [
525
+ {
526
+ "name": "--yes",
527
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
528
+ }
529
+ ],
474
530
  "arguments": [
475
531
  {
476
532
  "name": "ID",
@@ -485,6 +541,12 @@
485
541
  {
486
542
  "name": "read-all",
487
543
  "description": "Mark all your unread notifications as read",
544
+ "options": [
545
+ {
546
+ "name": "--yes",
547
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
548
+ }
549
+ ],
488
550
  "examples": [
489
551
  "closeyourit alerts notifications read-all"
490
552
  ]
@@ -493,10 +555,17 @@
493
555
  },
494
556
  {
495
557
  "name": "preferences",
558
+ "description": "Your personal alert preferences, per organization",
496
559
  "commands": [
497
560
  {
498
561
  "name": "show",
499
562
  "description": "Show your personal alert preferences (per organization)",
563
+ "options": [
564
+ {
565
+ "name": "--yes",
566
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
567
+ }
568
+ ],
500
569
  "examples": [
501
570
  "closeyourit alerts preferences show"
502
571
  ]
@@ -505,6 +574,10 @@
505
574
  "name": "update",
506
575
  "description": "Update your personal alert preferences (send only the fields you want to change)",
507
576
  "options": [
577
+ {
578
+ "name": "--yes",
579
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
580
+ },
508
581
  {
509
582
  "name": "--in-app-enabled",
510
583
  "description": "Deliver notifications in-app"
@@ -588,6 +661,12 @@
588
661
  {
589
662
  "name": "show",
590
663
  "description": "Show a single alert rule",
664
+ "options": [
665
+ {
666
+ "name": "--yes",
667
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
668
+ }
669
+ ],
591
670
  "arguments": [
592
671
  {
593
672
  "name": "ID",
@@ -603,6 +682,10 @@
603
682
  "name": "update",
604
683
  "description": "Update an alert rule (send only the fields you want to change)",
605
684
  "options": [
685
+ {
686
+ "name": "--yes",
687
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
688
+ },
606
689
  {
607
690
  "name": "--name",
608
691
  "description": "Rule name",
@@ -764,11 +847,16 @@
764
847
  "commands": [
765
848
  {
766
849
  "name": "goals",
850
+ "description": "Conversion goals of a project: create, list, delete",
767
851
  "commands": [
768
852
  {
769
853
  "name": "create",
770
854
  "description": "Create a conversion goal on a project",
771
855
  "options": [
856
+ {
857
+ "name": "--yes",
858
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
859
+ },
772
860
  {
773
861
  "name": "--project",
774
862
  "aliases": [
@@ -839,6 +927,10 @@
839
927
  "name": "delete",
840
928
  "description": "Delete a conversion goal (irreversible)",
841
929
  "options": [
930
+ {
931
+ "name": "--yes",
932
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
933
+ },
842
934
  {
843
935
  "name": "--project",
844
936
  "aliases": [
@@ -873,6 +965,10 @@
873
965
  "name": "list",
874
966
  "description": "List the conversion goals of a project",
875
967
  "options": [
968
+ {
969
+ "name": "--yes",
970
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
971
+ },
876
972
  {
877
973
  "name": "--project",
878
974
  "aliases": [
@@ -898,6 +994,10 @@
898
994
  "name": "share",
899
995
  "description": "Publish a public shareable link to the analytics dashboard (optional password)",
900
996
  "options": [
997
+ {
998
+ "name": "--yes",
999
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1000
+ },
901
1001
  {
902
1002
  "name": "--project",
903
1003
  "aliases": [
@@ -932,6 +1032,10 @@
932
1032
  "name": "show",
933
1033
  "description": "Show the web analytics snapshot for a project (traffic, top pages, goals)",
934
1034
  "options": [
1035
+ {
1036
+ "name": "--yes",
1037
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1038
+ },
935
1039
  {
936
1040
  "name": "--project",
937
1041
  "aliases": [
@@ -982,6 +1086,10 @@
982
1086
  "name": "unshare",
983
1087
  "description": "Revoke the public analytics dashboard link",
984
1088
  "options": [
1089
+ {
1090
+ "name": "--yes",
1091
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1092
+ },
985
1093
  {
986
1094
  "name": "--project",
987
1095
  "aliases": [
@@ -1015,6 +1123,10 @@
1015
1123
  "name": "ask",
1016
1124
  "description": "Ask the assistant a question about your own data; it reads what you are allowed to see and answers (may take a while)",
1017
1125
  "options": [
1126
+ {
1127
+ "name": "--yes",
1128
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1129
+ },
1018
1130
  {
1019
1131
  "name": "--conversation",
1020
1132
  "aliases": [
@@ -1059,6 +1171,10 @@
1059
1171
  "name": "create",
1060
1172
  "description": "Open an empty conversation with the assistant (ask questions into it with `assistant ask --conversation`)",
1061
1173
  "options": [
1174
+ {
1175
+ "name": "--yes",
1176
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1177
+ },
1062
1178
  {
1063
1179
  "name": "--title",
1064
1180
  "description": "Conversation title (defaults to the first question asked)",
@@ -1079,6 +1195,10 @@
1079
1195
  "name": "delete",
1080
1196
  "description": "Delete a conversation with the assistant, questions and answers included (irreversible)",
1081
1197
  "options": [
1198
+ {
1199
+ "name": "--yes",
1200
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1201
+ },
1082
1202
  {
1083
1203
  "name": "--confirm",
1084
1204
  "description": "Required: confirm the irreversible deletion"
@@ -1099,6 +1219,10 @@
1099
1219
  "name": "list",
1100
1220
  "description": "List your conversations with the assistant (most recently active first)",
1101
1221
  "options": [
1222
+ {
1223
+ "name": "--yes",
1224
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1225
+ },
1102
1226
  {
1103
1227
  "name": "--per",
1104
1228
  "description": "Page size",
@@ -1128,6 +1252,12 @@
1128
1252
  {
1129
1253
  "name": "show",
1130
1254
  "description": "Read one conversation with the assistant: its questions, its answers and what they were based on",
1255
+ "options": [
1256
+ {
1257
+ "name": "--yes",
1258
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
1259
+ }
1260
+ ],
1131
1261
  "arguments": [
1132
1262
  {
1133
1263
  "name": "ID",
@@ -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",
@@ -3107,6 +3439,12 @@
3107
3439
  {
3108
3440
  "name": "ask",
3109
3441
  "description": "Ask a natural-language question; the server AI answers from the knowledge base and cites the pages it used (may take a few seconds)",
3442
+ "options": [
3443
+ {
3444
+ "name": "--yes",
3445
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3446
+ }
3447
+ ],
3110
3448
  "arguments": [
3111
3449
  {
3112
3450
  "name": "QUESTION",
@@ -3122,6 +3460,10 @@
3122
3460
  "name": "attach",
3123
3461
  "description": "Attach one or more local files to a knowledge page",
3124
3462
  "options": [
3463
+ {
3464
+ "name": "--yes",
3465
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3466
+ },
3125
3467
  {
3126
3468
  "name": "--file",
3127
3469
  "description": "Path to a local file to upload (repeatable)",
@@ -3150,6 +3492,10 @@
3150
3492
  "name": "attachment-download",
3151
3493
  "description": "Download a knowledge page's attachment to disk",
3152
3494
  "options": [
3495
+ {
3496
+ "name": "--yes",
3497
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3498
+ },
3153
3499
  {
3154
3500
  "name": "--out",
3155
3501
  "description": "Output directory",
@@ -3191,6 +3537,12 @@
3191
3537
  {
3192
3538
  "name": "attachments",
3193
3539
  "description": "List a knowledge page's attachments",
3540
+ "options": [
3541
+ {
3542
+ "name": "--yes",
3543
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3544
+ }
3545
+ ],
3194
3546
  "arguments": [
3195
3547
  {
3196
3548
  "name": "ID",
@@ -3211,6 +3563,10 @@
3211
3563
  "name": "add-page",
3212
3564
  "description": "Add a knowledge page to a book, optionally at a given position in the summary",
3213
3565
  "options": [
3566
+ {
3567
+ "name": "--yes",
3568
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3569
+ },
3214
3570
  {
3215
3571
  "name": "--page",
3216
3572
  "description": "Id of the knowledge page to add (an id, not a page number; alias: --page-id)",
@@ -3250,6 +3606,10 @@
3250
3606
  "name": "list",
3251
3607
  "description": "List knowledge books (ordered collections of pages) across the projects you can see",
3252
3608
  "options": [
3609
+ {
3610
+ "name": "--yes",
3611
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3612
+ },
3253
3613
  {
3254
3614
  "name": "--project",
3255
3615
  "aliases": [
@@ -3304,6 +3664,12 @@
3304
3664
  {
3305
3665
  "name": "show",
3306
3666
  "description": "Show a knowledge book: its metadata, then the summary of the pages it collects",
3667
+ "options": [
3668
+ {
3669
+ "name": "--yes",
3670
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3671
+ }
3672
+ ],
3307
3673
  "arguments": [
3308
3674
  {
3309
3675
  "name": "ID",
@@ -3322,6 +3688,10 @@
3322
3688
  "name": "consolidate",
3323
3689
  "description": "Mark an accepted page as written to the versioned docs, recording its path",
3324
3690
  "options": [
3691
+ {
3692
+ "name": "--yes",
3693
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3694
+ },
3325
3695
  {
3326
3696
  "name": "--path",
3327
3697
  "description": "Path of the document inside the knowledge-base repo",
@@ -3350,6 +3720,10 @@
3350
3720
  "name": "create",
3351
3721
  "description": "Create a knowledge page in one or more projects (and groups)",
3352
3722
  "options": [
3723
+ {
3724
+ "name": "--yes",
3725
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3726
+ },
3353
3727
  {
3354
3728
  "name": "--project",
3355
3729
  "aliases": [
@@ -3481,6 +3855,10 @@
3481
3855
  "name": "delete",
3482
3856
  "description": "Delete a knowledge page (irreversible)",
3483
3857
  "options": [
3858
+ {
3859
+ "name": "--yes",
3860
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3861
+ },
3484
3862
  {
3485
3863
  "name": "--confirm",
3486
3864
  "description": "Required: confirm the irreversible deletion"
@@ -3501,6 +3879,10 @@
3501
3879
  "name": "detach",
3502
3880
  "description": "Remove an attachment from a knowledge page (irreversible)",
3503
3881
  "options": [
3882
+ {
3883
+ "name": "--yes",
3884
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3885
+ },
3504
3886
  {
3505
3887
  "name": "--attachment",
3506
3888
  "description": "Attachment id to remove",
@@ -3532,6 +3914,10 @@
3532
3914
  "name": "list",
3533
3915
  "description": "List knowledge pages across the projects you can see",
3534
3916
  "options": [
3917
+ {
3918
+ "name": "--yes",
3919
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
3920
+ },
3535
3921
  {
3536
3922
  "name": "--project",
3537
3923
  "aliases": [
@@ -3608,6 +3994,10 @@
3608
3994
  "name": "publish",
3609
3995
  "description": "Idempotently create or update a Knowledge page by publication key.\n\nExactly one of --body or --body-file is required.",
3610
3996
  "options": [
3997
+ {
3998
+ "name": "--yes",
3999
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4000
+ },
3611
4001
  {
3612
4002
  "name": "--project",
3613
4003
  "aliases": [
@@ -3684,6 +4074,10 @@
3684
4074
  "name": "related",
3685
4075
  "description": "List the pages to read next: the ones this page links to (and that link to it), plus close matches by meaning",
3686
4076
  "options": [
4077
+ {
4078
+ "name": "--yes",
4079
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4080
+ },
3687
4081
  {
3688
4082
  "name": "--question",
3689
4083
  "description": "Keep only the pages relevant to this question",
@@ -3716,6 +4110,10 @@
3716
4110
  "name": "search",
3717
4111
  "description": "Search knowledge pages (semantic when available, ILIKE fallback on the title otherwise)",
3718
4112
  "options": [
4113
+ {
4114
+ "name": "--yes",
4115
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4116
+ },
3719
4117
  {
3720
4118
  "name": "--project",
3721
4119
  "aliases": [
@@ -3781,6 +4179,10 @@
3781
4179
  "name": "show",
3782
4180
  "description": "Show a single knowledge page: metadata header then the raw markdown body",
3783
4181
  "options": [
4182
+ {
4183
+ "name": "--yes",
4184
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4185
+ },
3784
4186
  {
3785
4187
  "name": "--related",
3786
4188
  "description": "Also list the pages to read next"
@@ -3813,6 +4215,10 @@
3813
4215
  "name": "update",
3814
4216
  "description": "Update a knowledge page (only the fields you pass; the others keep their current value)",
3815
4217
  "options": [
4218
+ {
4219
+ "name": "--yes",
4220
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4221
+ },
3816
4222
  {
3817
4223
  "name": "--title",
3818
4224
  "description": "New title (max 255 characters)",
@@ -3938,6 +4344,10 @@
3938
4344
  "name": "login",
3939
4345
  "description": "Authenticate via the device flow and store your CLI token",
3940
4346
  "options": [
4347
+ {
4348
+ "name": "--yes",
4349
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4350
+ },
3941
4351
  {
3942
4352
  "name": "--api-url",
3943
4353
  "description": "Backend base URL to authenticate against (persisted)",
@@ -3957,6 +4367,12 @@
3957
4367
  {
3958
4368
  "name": "logout",
3959
4369
  "description": "Clear the locally stored token and identity",
4370
+ "options": [
4371
+ {
4372
+ "name": "--yes",
4373
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4374
+ }
4375
+ ],
3960
4376
  "examples": [
3961
4377
  "closeyourit logout"
3962
4378
  ]
@@ -3969,6 +4385,10 @@
3969
4385
  "name": "link",
3970
4386
  "description": "Manually link a log entry to an error group or a ticket",
3971
4387
  "options": [
4388
+ {
4389
+ "name": "--yes",
4390
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4391
+ },
3972
4392
  {
3973
4393
  "name": "--to",
3974
4394
  "description": "Target to link: \"Errors::Group:<uuid>\" or \"Ticketing::Ticket:<uuid>\"",
@@ -3997,6 +4417,10 @@
3997
4417
  "name": "list",
3998
4418
  "description": "List structured log entries (cross-app stream)",
3999
4419
  "options": [
4420
+ {
4421
+ "name": "--yes",
4422
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4423
+ },
4000
4424
  {
4001
4425
  "name": "--project",
4002
4426
  "aliases": [
@@ -4060,6 +4484,12 @@
4060
4484
  {
4061
4485
  "name": "show",
4062
4486
  "description": "Show a single log entry (attributes, trace id, correlation)",
4487
+ "options": [
4488
+ {
4489
+ "name": "--yes",
4490
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4491
+ }
4492
+ ],
4063
4493
  "arguments": [
4064
4494
  {
4065
4495
  "name": "ID",
@@ -4075,6 +4505,10 @@
4075
4505
  "name": "unlink",
4076
4506
  "description": "Remove a manual log↔target link (irreversible)",
4077
4507
  "options": [
4508
+ {
4509
+ "name": "--yes",
4510
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4511
+ },
4078
4512
  {
4079
4513
  "name": "--confirm",
4080
4514
  "description": "Required: confirm the irreversible deletion"
@@ -4104,11 +4538,16 @@
4104
4538
  "commands": [
4105
4539
  {
4106
4540
  "name": "categories",
4541
+ "description": "Feature groups (categories): how the rows of a product matrix are organized",
4107
4542
  "commands": [
4108
4543
  {
4109
4544
  "name": "create",
4110
4545
  "description": "Create a feature group (category) in a product matrix",
4111
4546
  "options": [
4547
+ {
4548
+ "name": "--yes",
4549
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4550
+ },
4112
4551
  {
4113
4552
  "name": "--name",
4114
4553
  "description": "Category name (unique within the product)",
@@ -4147,6 +4586,10 @@
4147
4586
  "name": "delete",
4148
4587
  "description": "Delete a feature group (only when empty: move or delete its features first)",
4149
4588
  "options": [
4589
+ {
4590
+ "name": "--yes",
4591
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4592
+ },
4150
4593
  {
4151
4594
  "name": "--confirm",
4152
4595
  "description": "Required: confirm the deletion"
@@ -4172,6 +4615,10 @@
4172
4615
  "name": "list",
4173
4616
  "description": "List the feature groups (categories) of a product matrix",
4174
4617
  "options": [
4618
+ {
4619
+ "name": "--yes",
4620
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4621
+ },
4175
4622
  {
4176
4623
  "name": "--page",
4177
4624
  "description": "Page number",
@@ -4198,6 +4645,10 @@
4198
4645
  "name": "update",
4199
4646
  "description": "Update a feature group (rename or reorder); unpassed fields keep their value",
4200
4647
  "options": [
4648
+ {
4649
+ "name": "--yes",
4650
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4651
+ },
4201
4652
  {
4202
4653
  "name": "--name",
4203
4654
  "description": "New name",
@@ -4240,11 +4691,16 @@
4240
4691
  },
4241
4692
  {
4242
4693
  "name": "cells",
4694
+ "description": "Matrix cells: how far a feature is on a platform, and since which version",
4243
4695
  "commands": [
4244
4696
  {
4245
4697
  "name": "clear",
4246
4698
  "description": "Clear a matrix cell: the crossing goes back to \"not set\"",
4247
4699
  "options": [
4700
+ {
4701
+ "name": "--yes",
4702
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4703
+ },
4248
4704
  {
4249
4705
  "name": "--confirm",
4250
4706
  "description": "Required: confirm clearing the cell"
@@ -4275,6 +4731,10 @@
4275
4731
  "name": "set",
4276
4732
  "description": "Write a matrix cell: how far along a feature is on a platform, and since which version",
4277
4733
  "options": [
4734
+ {
4735
+ "name": "--yes",
4736
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4737
+ },
4278
4738
  {
4279
4739
  "name": "--status",
4280
4740
  "description": "Status code (see: matrix statuses) or id",
@@ -4323,11 +4783,16 @@
4323
4783
  },
4324
4784
  {
4325
4785
  "name": "features",
4786
+ "description": "Features: the rows of a product matrix",
4326
4787
  "commands": [
4327
4788
  {
4328
4789
  "name": "create",
4329
4790
  "description": "Create a feature (a row of the matrix) inside a category",
4330
4791
  "options": [
4792
+ {
4793
+ "name": "--yes",
4794
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4795
+ },
4331
4796
  {
4332
4797
  "name": "--category",
4333
4798
  "description": "Category id (UUID) or name",
@@ -4397,6 +4862,10 @@
4397
4862
  "name": "delete",
4398
4863
  "description": "Delete a feature and every cell written for it (irreversible)",
4399
4864
  "options": [
4865
+ {
4866
+ "name": "--yes",
4867
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4868
+ },
4400
4869
  {
4401
4870
  "name": "--confirm",
4402
4871
  "description": "Required: confirm the deletion"
@@ -4422,6 +4891,10 @@
4422
4891
  "name": "list",
4423
4892
  "description": "List the features of a product matrix",
4424
4893
  "options": [
4894
+ {
4895
+ "name": "--yes",
4896
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4897
+ },
4425
4898
  {
4426
4899
  "name": "--page",
4427
4900
  "description": "Page number",
@@ -4458,6 +4931,12 @@
4458
4931
  {
4459
4932
  "name": "show",
4460
4933
  "description": "Show one feature and the cells written for it",
4934
+ "options": [
4935
+ {
4936
+ "name": "--yes",
4937
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4938
+ }
4939
+ ],
4461
4940
  "arguments": [
4462
4941
  {
4463
4942
  "name": "PRODUCT",
@@ -4478,6 +4957,10 @@
4478
4957
  "name": "update",
4479
4958
  "description": "Update a feature (rename, move to another category, …); unpassed fields keep their value",
4480
4959
  "options": [
4960
+ {
4961
+ "name": "--yes",
4962
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
4963
+ },
4481
4964
  {
4482
4965
  "name": "--name",
4483
4966
  "description": "New name",
@@ -4552,6 +5035,10 @@
4552
5035
  "name": "list",
4553
5036
  "description": "List the products (groups) whose feature matrix you can see",
4554
5037
  "options": [
5038
+ {
5039
+ "name": "--yes",
5040
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5041
+ },
4555
5042
  {
4556
5043
  "name": "--page",
4557
5044
  "description": "Page number",
@@ -4571,6 +5058,12 @@
4571
5058
  {
4572
5059
  "name": "show",
4573
5060
  "description": "Show a product feature matrix: features in rows, platforms in columns",
5061
+ "options": [
5062
+ {
5063
+ "name": "--yes",
5064
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5065
+ }
5066
+ ],
4574
5067
  "arguments": [
4575
5068
  {
4576
5069
  "name": "PRODUCT",
@@ -4586,6 +5079,12 @@
4586
5079
  {
4587
5080
  "name": "statuses",
4588
5081
  "description": "List the cell statuses of your organization (the codes accepted by matrix cells set)",
5082
+ "options": [
5083
+ {
5084
+ "name": "--yes",
5085
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5086
+ }
5087
+ ],
4589
5088
  "examples": [
4590
5089
  "closeyourit matrix statuses",
4591
5090
  "closeyourit matrix statuses --json"
@@ -4595,11 +5094,16 @@
4595
5094
  },
4596
5095
  {
4597
5096
  "name": "members",
5097
+ "description": "Organization members: profile, role, access scope",
4598
5098
  "commands": [
4599
5099
  {
4600
5100
  "name": "list",
4601
5101
  "description": "List the members of your organization (to resolve emails to account ids)",
4602
5102
  "options": [
5103
+ {
5104
+ "name": "--yes",
5105
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5106
+ },
4603
5107
  {
4604
5108
  "name": "--page",
4605
5109
  "description": "Page number",
@@ -4620,6 +5124,10 @@
4620
5124
  "name": "remove",
4621
5125
  "description": "Remove a member from your organization (irreversible; requires members.manage)",
4622
5126
  "options": [
5127
+ {
5128
+ "name": "--yes",
5129
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5130
+ },
4623
5131
  {
4624
5132
  "name": "--confirm",
4625
5133
  "description": "Required: confirm the irreversible removal"
@@ -4640,6 +5148,10 @@
4640
5148
  "name": "set-access",
4641
5149
  "description": "Set a member's access: group/project scope, direct roles, and permission overrides",
4642
5150
  "options": [
5151
+ {
5152
+ "name": "--yes",
5153
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5154
+ },
4643
5155
  {
4644
5156
  "name": "--group",
4645
5157
  "description": "Group id or name to grant access to (repeatable; omit to clear group access)",
@@ -4699,6 +5211,10 @@
4699
5211
  "name": "set-role",
4700
5212
  "description": "Change a member's organization role",
4701
5213
  "options": [
5214
+ {
5215
+ "name": "--yes",
5216
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5217
+ },
4702
5218
  {
4703
5219
  "name": "--role",
4704
5220
  "description": "Organization role",
@@ -4733,6 +5249,10 @@
4733
5249
  "name": "update",
4734
5250
  "description": "Update a member's profile: name, email, handle (requires members.edit)",
4735
5251
  "options": [
5252
+ {
5253
+ "name": "--yes",
5254
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5255
+ },
4736
5256
  {
4737
5257
  "name": "--name",
4738
5258
  "description": "New display name",
@@ -4786,6 +5306,10 @@
4786
5306
  "name": "bulk-triage",
4787
5307
  "description": "Resolve, ignore or reopen several metric groups in one call",
4788
5308
  "options": [
5309
+ {
5310
+ "name": "--yes",
5311
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5312
+ },
4789
5313
  {
4790
5314
  "name": "--project",
4791
5315
  "aliases": [
@@ -4837,6 +5361,10 @@
4837
5361
  "name": "list",
4838
5362
  "description": "List performance metric groups (slow queries/methods) for a project",
4839
5363
  "options": [
5364
+ {
5365
+ "name": "--yes",
5366
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5367
+ },
4840
5368
  {
4841
5369
  "name": "--project",
4842
5370
  "aliases": [
@@ -4881,6 +5409,10 @@
4881
5409
  "name": "promote",
4882
5410
  "description": "Promote a metric group (slow query/method) to a ticket",
4883
5411
  "options": [
5412
+ {
5413
+ "name": "--yes",
5414
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5415
+ },
4884
5416
  {
4885
5417
  "name": "--project",
4886
5418
  "aliases": [
@@ -4911,6 +5443,10 @@
4911
5443
  "name": "show",
4912
5444
  "description": "Show a single metric group",
4913
5445
  "options": [
5446
+ {
5447
+ "name": "--yes",
5448
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5449
+ },
4914
5450
  {
4915
5451
  "name": "--project",
4916
5452
  "aliases": [
@@ -4941,11 +5477,16 @@
4941
5477
  },
4942
5478
  {
4943
5479
  "name": "milestones",
5480
+ "description": "Project milestones: dated goals a ticket can be assigned to",
4944
5481
  "commands": [
4945
5482
  {
4946
5483
  "name": "create",
4947
5484
  "description": "Create a milestone for a project",
4948
5485
  "options": [
5486
+ {
5487
+ "name": "--yes",
5488
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5489
+ },
4949
5490
  {
4950
5491
  "name": "--project",
4951
5492
  "aliases": [
@@ -5016,6 +5557,10 @@
5016
5557
  "name": "delete",
5017
5558
  "description": "Delete a milestone (irreversible)",
5018
5559
  "options": [
5560
+ {
5561
+ "name": "--yes",
5562
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5563
+ },
5019
5564
  {
5020
5565
  "name": "--project",
5021
5566
  "aliases": [
@@ -5050,6 +5595,10 @@
5050
5595
  "name": "list",
5051
5596
  "description": "List the milestones for a project",
5052
5597
  "options": [
5598
+ {
5599
+ "name": "--yes",
5600
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5601
+ },
5053
5602
  {
5054
5603
  "name": "--project",
5055
5604
  "aliases": [
@@ -5084,6 +5633,10 @@
5084
5633
  "name": "show",
5085
5634
  "description": "Show a single milestone",
5086
5635
  "options": [
5636
+ {
5637
+ "name": "--yes",
5638
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5639
+ },
5087
5640
  {
5088
5641
  "name": "--project",
5089
5642
  "aliases": [
@@ -5114,6 +5667,10 @@
5114
5667
  "name": "update",
5115
5668
  "description": "Update a milestone (send only the fields you want to change)",
5116
5669
  "options": [
5670
+ {
5671
+ "name": "--yes",
5672
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5673
+ },
5117
5674
  {
5118
5675
  "name": "--project",
5119
5676
  "aliases": [
@@ -5189,14 +5746,20 @@
5189
5746
  },
5190
5747
  {
5191
5748
  "name": "monitors",
5749
+ "description": "Uptime monitors of a project: checks, public status page, incidents",
5192
5750
  "commands": [
5193
5751
  {
5194
5752
  "name": "announcements",
5753
+ "description": "Announcement banner shown on a monitor's public status page",
5195
5754
  "commands": [
5196
5755
  {
5197
5756
  "name": "clear",
5198
5757
  "description": "Remove the status page announcement banner for a monitor",
5199
5758
  "options": [
5759
+ {
5760
+ "name": "--yes",
5761
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5762
+ },
5200
5763
  {
5201
5764
  "name": "--project",
5202
5765
  "aliases": [
@@ -5231,6 +5794,10 @@
5231
5794
  "name": "set",
5232
5795
  "description": "Upsert the status page announcement banner for a monitor",
5233
5796
  "options": [
5797
+ {
5798
+ "name": "--yes",
5799
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5800
+ },
5234
5801
  {
5235
5802
  "name": "--project",
5236
5803
  "aliases": [
@@ -5311,6 +5878,10 @@
5311
5878
  "name": "show",
5312
5879
  "description": "Show the status page announcement banner for a monitor (null if none)",
5313
5880
  "options": [
5881
+ {
5882
+ "name": "--yes",
5883
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5884
+ },
5314
5885
  {
5315
5886
  "name": "--project",
5316
5887
  "aliases": [
@@ -5343,6 +5914,10 @@
5343
5914
  "name": "create",
5344
5915
  "description": "Create an uptime monitor for a project (one per environment)",
5345
5916
  "options": [
5917
+ {
5918
+ "name": "--yes",
5919
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
5920
+ },
5346
5921
  {
5347
5922
  "name": "--project",
5348
5923
  "aliases": [
@@ -5458,6 +6033,10 @@
5458
6033
  "name": "delete",
5459
6034
  "description": "Delete an uptime monitor (irreversible)",
5460
6035
  "options": [
6036
+ {
6037
+ "name": "--yes",
6038
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6039
+ },
5461
6040
  {
5462
6041
  "name": "--project",
5463
6042
  "aliases": [
@@ -5490,11 +6069,16 @@
5490
6069
  },
5491
6070
  {
5492
6071
  "name": "incidents",
6072
+ "description": "Uptime incidents: group them and narrate them step by step",
5493
6073
  "commands": [
5494
6074
  {
5495
6075
  "name": "delete",
5496
6076
  "description": "Delete an uptime incident (and its grouped windows; irreversible)",
5497
6077
  "options": [
6078
+ {
6079
+ "name": "--yes",
6080
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6081
+ },
5498
6082
  {
5499
6083
  "name": "--project",
5500
6084
  "aliases": [
@@ -5534,6 +6118,10 @@
5534
6118
  "name": "group",
5535
6119
  "description": "Unify incidents of a monitor and post the first narration step",
5536
6120
  "options": [
6121
+ {
6122
+ "name": "--yes",
6123
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6124
+ },
5537
6125
  {
5538
6126
  "name": "--project",
5539
6127
  "aliases": [
@@ -5603,6 +6191,10 @@
5603
6191
  "name": "ungroup",
5604
6192
  "description": "Dissolve an incident grouping (grouped windows become separate again)",
5605
6193
  "options": [
6194
+ {
6195
+ "name": "--yes",
6196
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6197
+ },
5606
6198
  {
5607
6199
  "name": "--project",
5608
6200
  "aliases": [
@@ -5649,6 +6241,10 @@
5649
6241
  "name": "update-add",
5650
6242
  "description": "Add a timeline step to a narrated incident",
5651
6243
  "options": [
6244
+ {
6245
+ "name": "--yes",
6246
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6247
+ },
5652
6248
  {
5653
6249
  "name": "--project",
5654
6250
  "aliases": [
@@ -5712,6 +6308,10 @@
5712
6308
  "name": "update-delete",
5713
6309
  "description": "Delete a timeline step from a narrated incident (irreversible)",
5714
6310
  "options": [
6311
+ {
6312
+ "name": "--yes",
6313
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6314
+ },
5715
6315
  {
5716
6316
  "name": "--project",
5717
6317
  "aliases": [
@@ -5758,6 +6358,10 @@
5758
6358
  "name": "list",
5759
6359
  "description": "List the uptime monitors for a project",
5760
6360
  "options": [
6361
+ {
6362
+ "name": "--yes",
6363
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6364
+ },
5761
6365
  {
5762
6366
  "name": "--project",
5763
6367
  "aliases": [
@@ -5792,6 +6396,10 @@
5792
6396
  "name": "pause",
5793
6397
  "description": "Pause an uptime monitor (stops scheduling checks)",
5794
6398
  "options": [
6399
+ {
6400
+ "name": "--yes",
6401
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6402
+ },
5795
6403
  {
5796
6404
  "name": "--project",
5797
6405
  "aliases": [
@@ -5822,6 +6430,10 @@
5822
6430
  "name": "publish",
5823
6431
  "description": "Publish the public status page for a monitor (opt-in)",
5824
6432
  "options": [
6433
+ {
6434
+ "name": "--yes",
6435
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6436
+ },
5825
6437
  {
5826
6438
  "name": "--project",
5827
6439
  "aliases": [
@@ -5852,6 +6464,10 @@
5852
6464
  "name": "resume",
5853
6465
  "description": "Resume a paused uptime monitor (re-enables scheduling)",
5854
6466
  "options": [
6467
+ {
6468
+ "name": "--yes",
6469
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6470
+ },
5855
6471
  {
5856
6472
  "name": "--project",
5857
6473
  "aliases": [
@@ -5882,6 +6498,10 @@
5882
6498
  "name": "show",
5883
6499
  "description": "Show a single uptime monitor",
5884
6500
  "options": [
6501
+ {
6502
+ "name": "--yes",
6503
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6504
+ },
5885
6505
  {
5886
6506
  "name": "--project",
5887
6507
  "aliases": [
@@ -5912,6 +6532,10 @@
5912
6532
  "name": "unpublish",
5913
6533
  "description": "Unpublish the public status page for a monitor",
5914
6534
  "options": [
6535
+ {
6536
+ "name": "--yes",
6537
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6538
+ },
5915
6539
  {
5916
6540
  "name": "--project",
5917
6541
  "aliases": [
@@ -5942,6 +6566,10 @@
5942
6566
  "name": "update",
5943
6567
  "description": "Update an uptime monitor (URL, method, interval, expected status, timeout)",
5944
6568
  "options": [
6569
+ {
6570
+ "name": "--yes",
6571
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6572
+ },
5945
6573
  {
5946
6574
  "name": "--project",
5947
6575
  "aliases": [
@@ -6053,10 +6681,17 @@
6053
6681
  },
6054
6682
  {
6055
6683
  "name": "org",
6684
+ "description": "Organization settings (show and update)",
6056
6685
  "commands": [
6057
6686
  {
6058
6687
  "name": "show",
6059
6688
  "description": "Show your organization settings",
6689
+ "options": [
6690
+ {
6691
+ "name": "--yes",
6692
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6693
+ }
6694
+ ],
6060
6695
  "examples": [
6061
6696
  "closeyourit org show",
6062
6697
  "closeyourit org show --json"
@@ -6066,6 +6701,10 @@
6066
6701
  "name": "update",
6067
6702
  "description": "Update your organization settings (requires organization.manage)",
6068
6703
  "options": [
6704
+ {
6705
+ "name": "--yes",
6706
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6707
+ },
6069
6708
  {
6070
6709
  "name": "--name",
6071
6710
  "description": "New organization name",
@@ -6137,6 +6776,12 @@
6137
6776
  {
6138
6777
  "name": "delete",
6139
6778
  "description": "Delete a personal secret from the current organization",
6779
+ "options": [
6780
+ {
6781
+ "name": "--yes",
6782
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6783
+ }
6784
+ ],
6140
6785
  "arguments": [
6141
6786
  {
6142
6787
  "name": "NAME",
@@ -6152,6 +6797,10 @@
6152
6797
  "name": "download",
6153
6798
  "description": "Download all your personal secrets as .env or JSON (to a file or stdout). Values with newlines: use --format json. Prefer `cyi personal run` to avoid writing plaintext to disk.",
6154
6799
  "options": [
6800
+ {
6801
+ "name": "--yes",
6802
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6803
+ },
6155
6804
  {
6156
6805
  "name": "--format",
6157
6806
  "description": "Output format",
@@ -6185,6 +6834,12 @@
6185
6834
  {
6186
6835
  "name": "get",
6187
6836
  "description": "Print the value of a single personal secret (pipeable).",
6837
+ "options": [
6838
+ {
6839
+ "name": "--yes",
6840
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6841
+ }
6842
+ ],
6188
6843
  "arguments": [
6189
6844
  {
6190
6845
  "name": "NAME",
@@ -6200,6 +6855,10 @@
6200
6855
  "name": "import",
6201
6856
  "description": "Import many personal secrets at once (all-or-nothing) from a .env or JSON file",
6202
6857
  "options": [
6858
+ {
6859
+ "name": "--yes",
6860
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6861
+ },
6203
6862
  {
6204
6863
  "name": "--from-file",
6205
6864
  "description": "Path to a .env or JSON file (default: read from stdin)",
@@ -6234,6 +6893,12 @@
6234
6893
  {
6235
6894
  "name": "list",
6236
6895
  "description": "List your personal secret names for the current organization. Never prints values.",
6896
+ "options": [
6897
+ {
6898
+ "name": "--yes",
6899
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6900
+ }
6901
+ ],
6237
6902
  "examples": [
6238
6903
  "closeyourit personal list",
6239
6904
  "closeyourit personal list --json"
@@ -6242,6 +6907,12 @@
6242
6907
  {
6243
6908
  "name": "run",
6244
6909
  "description": "Run a command with your personal secrets injected as env vars. Secrets never touch disk.",
6910
+ "options": [
6911
+ {
6912
+ "name": "--yes",
6913
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6914
+ }
6915
+ ],
6245
6916
  "examples": [
6246
6917
  "closeyourit personal run -- bundle exec rails server",
6247
6918
  "closeyourit personal run -- printenv OPENAI_API_KEY"
@@ -6251,6 +6922,10 @@
6251
6922
  "name": "set",
6252
6923
  "description": "Set (create or update) a personal secret for the current organization",
6253
6924
  "options": [
6925
+ {
6926
+ "name": "--yes",
6927
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6928
+ },
6254
6929
  {
6255
6930
  "name": "--value",
6256
6931
  "description": "Secret value (use when the arg is just NAME)",
@@ -6288,11 +6963,16 @@
6288
6963
  },
6289
6964
  {
6290
6965
  "name": "platforms",
6966
+ "description": "Platforms (devices/systems) your projects and tickets run on",
6291
6967
  "commands": [
6292
6968
  {
6293
6969
  "name": "create",
6294
6970
  "description": "Create a platform (a device/system your projects run on)",
6295
6971
  "options": [
6972
+ {
6973
+ "name": "--yes",
6974
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
6975
+ },
6296
6976
  {
6297
6977
  "name": "--label",
6298
6978
  "description": "Human-readable label",
@@ -6350,6 +7030,10 @@
6350
7030
  "name": "delete",
6351
7031
  "description": "Delete a platform (blocked if any project or ticket still references it)",
6352
7032
  "options": [
7033
+ {
7034
+ "name": "--yes",
7035
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7036
+ },
6353
7037
  {
6354
7038
  "name": "--confirm",
6355
7039
  "description": "Required: confirm the deletion"
@@ -6370,6 +7054,10 @@
6370
7054
  "name": "list",
6371
7055
  "description": "List the platforms (devices/systems) in your organization",
6372
7056
  "options": [
7057
+ {
7058
+ "name": "--yes",
7059
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7060
+ },
6373
7061
  {
6374
7062
  "name": "--page",
6375
7063
  "description": "Page number",
@@ -6390,6 +7078,10 @@
6390
7078
  "name": "update",
6391
7079
  "description": "Update a platform (relabel, recolor, reorder, activate/deactivate, toggle uptime support)",
6392
7080
  "options": [
7081
+ {
7082
+ "name": "--yes",
7083
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7084
+ },
6393
7085
  {
6394
7086
  "name": "--code",
6395
7087
  "description": "New code",
@@ -6463,6 +7155,10 @@
6463
7155
  "name": "create",
6464
7156
  "description": "Create a project (optionally inside a group)",
6465
7157
  "options": [
7158
+ {
7159
+ "name": "--yes",
7160
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7161
+ },
6466
7162
  {
6467
7163
  "name": "--color",
6468
7164
  "description": "Color label",
@@ -6533,6 +7229,10 @@
6533
7229
  "name": "delete",
6534
7230
  "description": "Delete a project (irreversible)",
6535
7231
  "options": [
7232
+ {
7233
+ "name": "--yes",
7234
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7235
+ },
6536
7236
  {
6537
7237
  "name": "--project",
6538
7238
  "aliases": [
@@ -6560,6 +7260,10 @@
6560
7260
  "name": "github",
6561
7261
  "description": "Show a project GitHub integration (repo link + tag→release binding rules)",
6562
7262
  "options": [
7263
+ {
7264
+ "name": "--yes",
7265
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7266
+ },
6563
7267
  {
6564
7268
  "name": "--project",
6565
7269
  "aliases": [
@@ -6585,6 +7289,10 @@
6585
7289
  "name": "github-connect",
6586
7290
  "description": "Connect a project to a repository available to the organization GitHub App",
6587
7291
  "options": [
7292
+ {
7293
+ "name": "--yes",
7294
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7295
+ },
6588
7296
  {
6589
7297
  "name": "--project",
6590
7298
  "aliases": [
@@ -6619,6 +7327,10 @@
6619
7327
  "name": "github-map",
6620
7328
  "description": "List the project → GitHub repository mapping for local automation",
6621
7329
  "options": [
7330
+ {
7331
+ "name": "--yes",
7332
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7333
+ },
6622
7334
  {
6623
7335
  "name": "--connected-only",
6624
7336
  "description": "Show only projects connected to a GitHub repository"
@@ -6634,6 +7346,10 @@
6634
7346
  "name": "github-update",
6635
7347
  "description": "Update a project GitHub binding rules (environment mapping + sync/binding/autoclose flags); only the passed fields change",
6636
7348
  "options": [
7349
+ {
7350
+ "name": "--yes",
7351
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7352
+ },
6637
7353
  {
6638
7354
  "name": "--project",
6639
7355
  "aliases": [
@@ -6716,6 +7432,10 @@
6716
7432
  "name": "link-server",
6717
7433
  "description": "Link a server host to one of the project declared environments (uptime monitoring)",
6718
7434
  "options": [
7435
+ {
7436
+ "name": "--yes",
7437
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7438
+ },
6719
7439
  {
6720
7440
  "name": "--project",
6721
7441
  "aliases": [
@@ -6761,6 +7481,10 @@
6761
7481
  "name": "list",
6762
7482
  "description": "List the projects visible to you",
6763
7483
  "options": [
7484
+ {
7485
+ "name": "--yes",
7486
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7487
+ },
6764
7488
  {
6765
7489
  "name": "--page",
6766
7490
  "description": "Page number",
@@ -6781,6 +7505,10 @@
6781
7505
  "name": "set-environment-capabilities",
6782
7506
  "description": "Override the servers/uptime/secrets capabilities of a project environment (inherit = follow the environment default)",
6783
7507
  "options": [
7508
+ {
7509
+ "name": "--yes",
7510
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7511
+ },
6784
7512
  {
6785
7513
  "name": "--project",
6786
7514
  "aliases": [
@@ -6864,6 +7592,10 @@
6864
7592
  "name": "set-environments",
6865
7593
  "description": "Declare the environments a project receives data from (replaces the current set)",
6866
7594
  "options": [
7595
+ {
7596
+ "name": "--yes",
7597
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7598
+ },
6867
7599
  {
6868
7600
  "name": "--project",
6869
7601
  "aliases": [
@@ -6908,6 +7640,10 @@
6908
7640
  "name": "set-platforms",
6909
7641
  "description": "Declare the platforms of a project (replaces the current set)",
6910
7642
  "options": [
7643
+ {
7644
+ "name": "--yes",
7645
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7646
+ },
6911
7647
  {
6912
7648
  "name": "--project",
6913
7649
  "aliases": [
@@ -6950,11 +7686,16 @@
6950
7686
  },
6951
7687
  {
6952
7688
  "name": "settings",
7689
+ "description": "Per-project settings: log/analytics retention and feature flags",
6953
7690
  "commands": [
6954
7691
  {
6955
7692
  "name": "show",
6956
7693
  "description": "Show a project settings (log/analytics retention + feature flags)",
6957
7694
  "options": [
7695
+ {
7696
+ "name": "--yes",
7697
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7698
+ },
6958
7699
  {
6959
7700
  "name": "--project",
6960
7701
  "aliases": [
@@ -6979,6 +7720,10 @@
6979
7720
  "name": "update",
6980
7721
  "description": "Update a project settings (log/analytics retention + feature flags); only the passed fields change",
6981
7722
  "options": [
7723
+ {
7724
+ "name": "--yes",
7725
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7726
+ },
6982
7727
  {
6983
7728
  "name": "--project",
6984
7729
  "aliases": [
@@ -7033,6 +7778,12 @@
7033
7778
  {
7034
7779
  "name": "show",
7035
7780
  "description": "Show a single project by id or key, with its declared environments and their capabilities",
7781
+ "options": [
7782
+ {
7783
+ "name": "--yes",
7784
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7785
+ }
7786
+ ],
7036
7787
  "arguments": [
7037
7788
  {
7038
7789
  "name": "ID",
@@ -7049,6 +7800,10 @@
7049
7800
  "name": "unlink-server",
7050
7801
  "description": "Unlink a server host from the project (removes the host↔environment link)",
7051
7802
  "options": [
7803
+ {
7804
+ "name": "--yes",
7805
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7806
+ },
7052
7807
  {
7053
7808
  "name": "--project",
7054
7809
  "aliases": [
@@ -7083,6 +7838,10 @@
7083
7838
  "name": "update",
7084
7839
  "description": "Update a project (name, key, color, description, group, feature flags)",
7085
7840
  "options": [
7841
+ {
7842
+ "name": "--yes",
7843
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7844
+ },
7086
7845
  {
7087
7846
  "name": "--project",
7088
7847
  "aliases": [
@@ -7168,6 +7927,10 @@
7168
7927
  "name": "list",
7169
7928
  "description": "List the releases of a project (tracked from CI)",
7170
7929
  "options": [
7930
+ {
7931
+ "name": "--yes",
7932
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7933
+ },
7171
7934
  {
7172
7935
  "name": "--project",
7173
7936
  "aliases": [
@@ -7202,11 +7965,16 @@
7202
7965
  },
7203
7966
  {
7204
7967
  "name": "roles",
7968
+ "description": "RBAC roles: named bundles of permission keys",
7205
7969
  "commands": [
7206
7970
  {
7207
7971
  "name": "create",
7208
7972
  "description": "Create an RBAC role (a named bundle of permission keys)",
7209
7973
  "options": [
7974
+ {
7975
+ "name": "--yes",
7976
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
7977
+ },
7210
7978
  {
7211
7979
  "name": "--color",
7212
7980
  "description": "Color label",
@@ -7242,6 +8010,12 @@
7242
8010
  {
7243
8011
  "name": "delete",
7244
8012
  "description": "Delete a role (its assignments to teams and accounts are removed)",
8013
+ "options": [
8014
+ {
8015
+ "name": "--yes",
8016
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8017
+ }
8018
+ ],
7245
8019
  "arguments": [
7246
8020
  {
7247
8021
  "name": "ROLE",
@@ -7257,6 +8031,10 @@
7257
8031
  "name": "list",
7258
8032
  "description": "List the RBAC roles in your organization",
7259
8033
  "options": [
8034
+ {
8035
+ "name": "--yes",
8036
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8037
+ },
7260
8038
  {
7261
8039
  "name": "--page",
7262
8040
  "description": "Page number",
@@ -7276,6 +8054,12 @@
7276
8054
  {
7277
8055
  "name": "show",
7278
8056
  "description": "Show a role by id or name (with its permission keys)",
8057
+ "options": [
8058
+ {
8059
+ "name": "--yes",
8060
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8061
+ }
8062
+ ],
7279
8063
  "arguments": [
7280
8064
  {
7281
8065
  "name": "ROLE",
@@ -7291,6 +8075,10 @@
7291
8075
  "name": "update",
7292
8076
  "description": "Update a role (rename, recolor, or replace its permission keys)",
7293
8077
  "options": [
8078
+ {
8079
+ "name": "--yes",
8080
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8081
+ },
7294
8082
  {
7295
8083
  "name": "--color",
7296
8084
  "description": "Color label",
@@ -7340,6 +8128,10 @@
7340
8128
  "name": "run",
7341
8129
  "description": "Run a command with project/environment secrets injected as env vars. Secrets never touch disk.",
7342
8130
  "options": [
8131
+ {
8132
+ "name": "--yes",
8133
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8134
+ },
7343
8135
  {
7344
8136
  "name": "--project",
7345
8137
  "aliases": [
@@ -7380,10 +8172,15 @@
7380
8172
  "commands": [
7381
8173
  {
7382
8174
  "name": "assets",
8175
+ "description": "Encrypted secret files: upload, download, versions, delegation",
7383
8176
  "commands": [
7384
8177
  {
7385
8178
  "name": "archive",
7386
8179
  "options": [
8180
+ {
8181
+ "name": "--yes",
8182
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8183
+ },
7387
8184
  {
7388
8185
  "name": "--project",
7389
8186
  "aliases": [
@@ -7413,6 +8210,10 @@
7413
8210
  {
7414
8211
  "name": "delegate",
7415
8212
  "options": [
8213
+ {
8214
+ "name": "--yes",
8215
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8216
+ },
7416
8217
  {
7417
8218
  "name": "--project",
7418
8219
  "aliases": [
@@ -7438,6 +8239,10 @@
7438
8239
  "name": "download",
7439
8240
  "description": "Download and decrypt a secret file to an explicit path with mode 0600",
7440
8241
  "options": [
8242
+ {
8243
+ "name": "--yes",
8244
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8245
+ },
7441
8246
  {
7442
8247
  "name": "--project",
7443
8248
  "aliases": [
@@ -7489,6 +8294,10 @@
7489
8294
  "name": "list",
7490
8295
  "description": "List encrypted secret files visible to a project (metadata only)",
7491
8296
  "options": [
8297
+ {
8298
+ "name": "--yes",
8299
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8300
+ },
7492
8301
  {
7493
8302
  "name": "--project",
7494
8303
  "aliases": [
@@ -7531,6 +8340,10 @@
7531
8340
  "name": "purge",
7532
8341
  "description": "Permanently delete an archived secret asset and all versions (owner only)",
7533
8342
  "options": [
8343
+ {
8344
+ "name": "--yes",
8345
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8346
+ },
7534
8347
  {
7535
8348
  "name": "--project",
7536
8349
  "aliases": [
@@ -7567,6 +8380,10 @@
7567
8380
  {
7568
8381
  "name": "rollback",
7569
8382
  "options": [
8383
+ {
8384
+ "name": "--yes",
8385
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8386
+ },
7570
8387
  {
7571
8388
  "name": "--project",
7572
8389
  "aliases": [
@@ -7601,12 +8418,22 @@
7601
8418
  },
7602
8419
  {
7603
8420
  "name": "shared-list",
7604
- "description": "List organization-level encrypted secret files and delegated projects"
8421
+ "description": "List organization-level encrypted secret files and delegated projects",
8422
+ "options": [
8423
+ {
8424
+ "name": "--yes",
8425
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8426
+ }
8427
+ ]
7605
8428
  },
7606
8429
  {
7607
8430
  "name": "shared-upload",
7608
8431
  "description": "Encrypt and upload one organization-level secret file",
7609
8432
  "options": [
8433
+ {
8434
+ "name": "--yes",
8435
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8436
+ },
7610
8437
  {
7611
8438
  "name": "--file",
7612
8439
  "required": true,
@@ -7650,6 +8477,10 @@
7650
8477
  {
7651
8478
  "name": "undelegate",
7652
8479
  "options": [
8480
+ {
8481
+ "name": "--yes",
8482
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8483
+ },
7653
8484
  {
7654
8485
  "name": "--project",
7655
8486
  "aliases": [
@@ -7675,6 +8506,10 @@
7675
8506
  "name": "upload",
7676
8507
  "description": "Encrypt and upload a mobile CI secret file (never prints its contents)",
7677
8508
  "options": [
8509
+ {
8510
+ "name": "--yes",
8511
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8512
+ },
7678
8513
  {
7679
8514
  "name": "--project",
7680
8515
  "aliases": [
@@ -7732,6 +8567,10 @@
7732
8567
  {
7733
8568
  "name": "versions",
7734
8569
  "options": [
8570
+ {
8571
+ "name": "--yes",
8572
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8573
+ },
7735
8574
  {
7736
8575
  "name": "--project",
7737
8576
  "aliases": [
@@ -7760,6 +8599,10 @@
7760
8599
  "name": "delete",
7761
8600
  "description": "Delete a secret from a project environment",
7762
8601
  "options": [
8602
+ {
8603
+ "name": "--yes",
8604
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8605
+ },
7763
8606
  {
7764
8607
  "name": "--project",
7765
8608
  "aliases": [
@@ -7804,6 +8647,10 @@
7804
8647
  "name": "download",
7805
8648
  "description": "Download all secrets of an environment as .env or JSON (to a file or stdout). Values with newlines: use --format json. Prefer `cyi run` to avoid writing plaintext to disk.",
7806
8649
  "options": [
8650
+ {
8651
+ "name": "--yes",
8652
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8653
+ },
7807
8654
  {
7808
8655
  "name": "--project",
7809
8656
  "aliases": [
@@ -7866,6 +8713,10 @@
7866
8713
  "name": "get",
7867
8714
  "description": "Print the value of a single secret (pipeable). Requires the secrets.read permission.",
7868
8715
  "options": [
8716
+ {
8717
+ "name": "--yes",
8718
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8719
+ },
7869
8720
  {
7870
8721
  "name": "--project",
7871
8722
  "aliases": [
@@ -7910,6 +8761,10 @@
7910
8761
  "name": "import",
7911
8762
  "description": "Import many secrets at once (all-or-nothing) from a .env or JSON file",
7912
8763
  "options": [
8764
+ {
8765
+ "name": "--yes",
8766
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8767
+ },
7913
8768
  {
7914
8769
  "name": "--project",
7915
8770
  "aliases": [
@@ -7973,6 +8828,10 @@
7973
8828
  "name": "list",
7974
8829
  "description": "List secret names for a project (optionally filtered by environment). Lists every secret — never truncated to a page — and never prints values.",
7975
8830
  "options": [
8831
+ {
8832
+ "name": "--yes",
8833
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8834
+ },
7976
8835
  {
7977
8836
  "name": "--project",
7978
8837
  "aliases": [
@@ -8018,6 +8877,10 @@
8018
8877
  "name": "set",
8019
8878
  "description": "Set (create or update) a secret for a project environment",
8020
8879
  "options": [
8880
+ {
8881
+ "name": "--yes",
8882
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8883
+ },
8021
8884
  {
8022
8885
  "name": "--project",
8023
8886
  "aliases": [
@@ -8083,6 +8946,10 @@
8083
8946
  "name": "sync",
8084
8947
  "description": "Push the project's vault secrets to its connected GitHub repo Environment secrets (enqueues a background sync). Requires the github.manage permission.",
8085
8948
  "options": [
8949
+ {
8950
+ "name": "--yes",
8951
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8952
+ },
8086
8953
  {
8087
8954
  "name": "--project",
8088
8955
  "aliases": [
@@ -8106,11 +8973,16 @@
8106
8973
  },
8107
8974
  {
8108
8975
  "name": "seo",
8976
+ "description": "SEO findings of the watched sites: triage, ignore, promote to ticket",
8109
8977
  "commands": [
8110
8978
  {
8111
8979
  "name": "ignore",
8112
8980
  "description": "Ignore an SEO finding: you accept living with it",
8113
8981
  "options": [
8982
+ {
8983
+ "name": "--yes",
8984
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
8985
+ },
8114
8986
  {
8115
8987
  "name": "--note",
8116
8988
  "description": "Why you are keeping it (shown alongside the ignored row)",
@@ -8138,6 +9010,10 @@
8138
9010
  "name": "list",
8139
9011
  "description": "List the SEO findings of your sites (cross-project)",
8140
9012
  "options": [
9013
+ {
9014
+ "name": "--yes",
9015
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9016
+ },
8141
9017
  {
8142
9018
  "name": "--project",
8143
9019
  "aliases": [
@@ -8203,6 +9079,10 @@
8203
9079
  "name": "pages",
8204
9080
  "description": "List the pages the SEO check has visited, with their state",
8205
9081
  "options": [
9082
+ {
9083
+ "name": "--yes",
9084
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9085
+ },
8206
9086
  {
8207
9087
  "name": "--project",
8208
9088
  "aliases": [
@@ -8246,6 +9126,12 @@
8246
9126
  {
8247
9127
  "name": "promote",
8248
9128
  "description": "Open a ticket from an SEO finding, evidence included",
9129
+ "options": [
9130
+ {
9131
+ "name": "--yes",
9132
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9133
+ }
9134
+ ],
8249
9135
  "arguments": [
8250
9136
  {
8251
9137
  "name": "ID",
@@ -8260,6 +9146,12 @@
8260
9146
  {
8261
9147
  "name": "reopen",
8262
9148
  "description": "Reopen an ignored SEO finding: you changed your mind",
9149
+ "options": [
9150
+ {
9151
+ "name": "--yes",
9152
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9153
+ }
9154
+ ],
8263
9155
  "arguments": [
8264
9156
  {
8265
9157
  "name": "ID",
@@ -8275,6 +9167,10 @@
8275
9167
  "name": "rescan",
8276
9168
  "description": "Check a site now, without waiting for the next scheduled run",
8277
9169
  "options": [
9170
+ {
9171
+ "name": "--yes",
9172
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9173
+ },
8278
9174
  {
8279
9175
  "name": "--site",
8280
9176
  "description": "Site id (from `seo-sites list`)",
@@ -8294,6 +9190,12 @@
8294
9190
  {
8295
9191
  "name": "show",
8296
9192
  "description": "Show a single SEO finding, with the evidence behind it",
9193
+ "options": [
9194
+ {
9195
+ "name": "--yes",
9196
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9197
+ }
9198
+ ],
8297
9199
  "arguments": [
8298
9200
  {
8299
9201
  "name": "ID",
@@ -8309,11 +9211,16 @@
8309
9211
  },
8310
9212
  {
8311
9213
  "name": "seo-sites",
9214
+ "description": "Sites under SEO check: declare, configure, remove",
8312
9215
  "commands": [
8313
9216
  {
8314
9217
  "name": "create",
8315
9218
  "description": "Declare a site to keep an eye on (one per project and environment)",
8316
9219
  "options": [
9220
+ {
9221
+ "name": "--yes",
9222
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9223
+ },
8317
9224
  {
8318
9225
  "name": "--project",
8319
9226
  "aliases": [
@@ -8387,6 +9294,12 @@
8387
9294
  {
8388
9295
  "name": "delete",
8389
9296
  "description": "Stop watching a site and remove its pages and findings",
9297
+ "options": [
9298
+ {
9299
+ "name": "--yes",
9300
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9301
+ }
9302
+ ],
8390
9303
  "arguments": [
8391
9304
  {
8392
9305
  "name": "ID",
@@ -8402,6 +9315,10 @@
8402
9315
  "name": "list",
8403
9316
  "description": "List the sites under SEO check",
8404
9317
  "options": [
9318
+ {
9319
+ "name": "--yes",
9320
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9321
+ },
8405
9322
  {
8406
9323
  "name": "--project",
8407
9324
  "aliases": [
@@ -8434,6 +9351,12 @@
8434
9351
  {
8435
9352
  "name": "show",
8436
9353
  "description": "Show one site under SEO check: how it is set up, what is open, how the last run went and how fast it is",
9354
+ "options": [
9355
+ {
9356
+ "name": "--yes",
9357
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9358
+ }
9359
+ ],
8437
9360
  "arguments": [
8438
9361
  {
8439
9362
  "name": "ID",
@@ -8450,6 +9373,10 @@
8450
9373
  "name": "update",
8451
9374
  "description": "Change how a site is checked (project and environment are its identity: they never change)",
8452
9375
  "options": [
9376
+ {
9377
+ "name": "--yes",
9378
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9379
+ },
8453
9380
  {
8454
9381
  "name": "--url",
8455
9382
  "description": "Public address the visit starts from",
@@ -8519,6 +9446,10 @@
8519
9446
  "name": "delete",
8520
9447
  "description": "Delete a server and all its metrics (a live agent would re-register it)",
8521
9448
  "options": [
9449
+ {
9450
+ "name": "--yes",
9451
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9452
+ },
8522
9453
  {
8523
9454
  "name": "--confirm",
8524
9455
  "description": "Required: confirm the deletion"
@@ -8539,6 +9470,10 @@
8539
9470
  "name": "ignored-containers",
8540
9471
  "description": "Read or set the container names this server does not treat as services",
8541
9472
  "options": [
9473
+ {
9474
+ "name": "--yes",
9475
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9476
+ },
8542
9477
  {
8543
9478
  "name": "--clear",
8544
9479
  "description": "Remove every ignored container name"
@@ -8571,6 +9506,10 @@
8571
9506
  "name": "list",
8572
9507
  "description": "List the monitored servers in your organization (fleet snapshot)",
8573
9508
  "options": [
9509
+ {
9510
+ "name": "--yes",
9511
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9512
+ },
8574
9513
  {
8575
9514
  "name": "--page",
8576
9515
  "description": "Page number",
@@ -8606,6 +9545,12 @@
8606
9545
  {
8607
9546
  "name": "pause",
8608
9547
  "description": "Pause a server (no staleness checks or alerts until resumed)",
9548
+ "options": [
9549
+ {
9550
+ "name": "--yes",
9551
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9552
+ }
9553
+ ],
8609
9554
  "arguments": [
8610
9555
  {
8611
9556
  "name": "ID",
@@ -8621,6 +9566,10 @@
8621
9566
  "name": "rename",
8622
9567
  "description": "Rename a monitored server (display name only)",
8623
9568
  "options": [
9569
+ {
9570
+ "name": "--yes",
9571
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9572
+ },
8624
9573
  {
8625
9574
  "name": "--name",
8626
9575
  "description": "New display name",
@@ -8647,6 +9596,12 @@
8647
9596
  {
8648
9597
  "name": "resume",
8649
9598
  "description": "Resume a paused server (back up at the next agent push)",
9599
+ "options": [
9600
+ {
9601
+ "name": "--yes",
9602
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9603
+ }
9604
+ ],
8650
9605
  "arguments": [
8651
9606
  {
8652
9607
  "name": "ID",
@@ -8662,6 +9617,10 @@
8662
9617
  "name": "revoke",
8663
9618
  "description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
8664
9619
  "options": [
9620
+ {
9621
+ "name": "--yes",
9622
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9623
+ },
8665
9624
  {
8666
9625
  "name": "--confirm",
8667
9626
  "description": "Required: confirm the revocation"
@@ -8681,6 +9640,12 @@
8681
9640
  {
8682
9641
  "name": "show",
8683
9642
  "description": "Show a monitored server (latest snapshot)",
9643
+ "options": [
9644
+ {
9645
+ "name": "--yes",
9646
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9647
+ }
9648
+ ],
8684
9649
  "arguments": [
8685
9650
  {
8686
9651
  "name": "ID",
@@ -8694,10 +9659,17 @@
8694
9659
  },
8695
9660
  {
8696
9661
  "name": "tokens",
9662
+ "description": "Fleet enrollment tokens (server agents authenticate with these)",
8697
9663
  "commands": [
8698
9664
  {
8699
9665
  "name": "create",
8700
9666
  "description": "Create a fleet enrollment token (the secret is shown only once)",
9667
+ "options": [
9668
+ {
9669
+ "name": "--yes",
9670
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9671
+ }
9672
+ ],
8701
9673
  "arguments": [
8702
9674
  {
8703
9675
  "name": "NAME",
@@ -8713,6 +9685,10 @@
8713
9685
  "name": "list",
8714
9686
  "description": "List the fleet enrollment tokens (agents authenticate with these)",
8715
9687
  "options": [
9688
+ {
9689
+ "name": "--yes",
9690
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9691
+ },
8716
9692
  {
8717
9693
  "name": "--page",
8718
9694
  "description": "Page number",
@@ -8732,6 +9708,10 @@
8732
9708
  "name": "revoke",
8733
9709
  "description": "Revoke a fleet enrollment token (agents using it stop pushing)",
8734
9710
  "options": [
9711
+ {
9712
+ "name": "--yes",
9713
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9714
+ },
8735
9715
  {
8736
9716
  "name": "--confirm",
8737
9717
  "description": "Required: confirm the revocation"
@@ -8753,6 +9733,12 @@
8753
9733
  {
8754
9734
  "name": "unrevoke",
8755
9735
  "description": "Restore a revoked server (its agent can push again)",
9736
+ "options": [
9737
+ {
9738
+ "name": "--yes",
9739
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9740
+ }
9741
+ ],
8756
9742
  "arguments": [
8757
9743
  {
8758
9744
  "name": "ID",
@@ -8768,11 +9754,16 @@
8768
9754
  },
8769
9755
  {
8770
9756
  "name": "service-accounts",
9757
+ "description": "Service accounts (AI members, CLI-only) and their secret access",
8771
9758
  "commands": [
8772
9759
  {
8773
9760
  "name": "create",
8774
9761
  "description": "Create a service account (AI member, CLI-only)",
8775
9762
  "options": [
9763
+ {
9764
+ "name": "--yes",
9765
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9766
+ },
8776
9767
  {
8777
9768
  "name": "--name",
8778
9769
  "description": "Display name",
@@ -8847,6 +9838,10 @@
8847
9838
  "name": "delete",
8848
9839
  "description": "Delete a service account (revokes its tokens + removes org access; the secrets audit trail is kept)",
8849
9840
  "options": [
9841
+ {
9842
+ "name": "--yes",
9843
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9844
+ },
8850
9845
  {
8851
9846
  "name": "--confirm",
8852
9847
  "description": "Required: confirm the deletion"
@@ -8867,6 +9862,10 @@
8867
9862
  "name": "list",
8868
9863
  "description": "List the service accounts (AI members, CLI-only) in your organization",
8869
9864
  "options": [
9865
+ {
9866
+ "name": "--yes",
9867
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9868
+ },
8870
9869
  {
8871
9870
  "name": "--page",
8872
9871
  "description": "Page number",
@@ -8886,6 +9885,12 @@
8886
9885
  {
8887
9886
  "name": "show",
8888
9887
  "description": "Show a service account: identity, how many tokens are active, and the environments it can read secrets in",
9888
+ "options": [
9889
+ {
9890
+ "name": "--yes",
9891
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9892
+ }
9893
+ ],
8889
9894
  "arguments": [
8890
9895
  {
8891
9896
  "name": "ID",
@@ -8900,10 +9905,17 @@
8900
9905
  },
8901
9906
  {
8902
9907
  "name": "tokens",
9908
+ "description": "CLI tokens (cyi_u_) of a service account (the secret is shown only once)",
8903
9909
  "commands": [
8904
9910
  {
8905
9911
  "name": "create",
8906
9912
  "description": "Create a CLI token (cyi_u_) for a service account (the secret is shown only once)",
9913
+ "options": [
9914
+ {
9915
+ "name": "--yes",
9916
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9917
+ }
9918
+ ],
8907
9919
  "arguments": [
8908
9920
  {
8909
9921
  "name": "ACCOUNT",
@@ -8924,6 +9936,10 @@
8924
9936
  "name": "list",
8925
9937
  "description": "List the CLI tokens of a service account — which ones still work and which are revoked. Never the secret.",
8926
9938
  "options": [
9939
+ {
9940
+ "name": "--yes",
9941
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9942
+ },
8927
9943
  {
8928
9944
  "name": "--page",
8929
9945
  "description": "Page number",
@@ -8951,6 +9967,10 @@
8951
9967
  "name": "revoke",
8952
9968
  "description": "Revoke a service account CLI token (the agent using it loses access)",
8953
9969
  "options": [
9970
+ {
9971
+ "name": "--yes",
9972
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
9973
+ },
8954
9974
  {
8955
9975
  "name": "--confirm",
8956
9976
  "description": "Required: confirm the revocation"
@@ -8978,6 +9998,10 @@
8978
9998
  "name": "update",
8979
9999
  "description": "Update a service account's secret access: the environments it may read secrets in (full replace)",
8980
10000
  "options": [
10001
+ {
10002
+ "name": "--yes",
10003
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10004
+ },
8981
10005
  {
8982
10006
  "name": "--secret-environment",
8983
10007
  "description": "Environment code the account may read secrets in (repeatable; replaces the whole list)",
@@ -9015,6 +10039,10 @@
9015
10039
  "name": "delete",
9016
10040
  "description": "Delete an organization shared secret from EVERY environment at once (irreversible). There is no per-environment deletion.",
9017
10041
  "options": [
10042
+ {
10043
+ "name": "--yes",
10044
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10045
+ },
9018
10046
  {
9019
10047
  "name": "--confirm",
9020
10048
  "description": "Required: confirm the deletion across every environment"
@@ -9034,6 +10062,12 @@
9034
10062
  {
9035
10063
  "name": "list",
9036
10064
  "description": "List the organization shared secret names (one row per variable, every page). Never prints values.",
10065
+ "options": [
10066
+ {
10067
+ "name": "--yes",
10068
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10069
+ }
10070
+ ],
9037
10071
  "examples": [
9038
10072
  "closeyourit shared list",
9039
10073
  "closeyourit shared list --json"
@@ -9043,6 +10077,10 @@
9043
10077
  "name": "set",
9044
10078
  "description": "Set (create or update) an organization shared secret for one environment. Projects delegated on that environment read the new value.",
9045
10079
  "options": [
10080
+ {
10081
+ "name": "--yes",
10082
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10083
+ },
9046
10084
  {
9047
10085
  "name": "--environment",
9048
10086
  "aliases": [
@@ -9094,10 +10132,17 @@
9094
10132
  },
9095
10133
  {
9096
10134
  "name": "teams",
10135
+ "description": "Teams: people bundled with roles and a group/project scope",
9097
10136
  "commands": [
9098
10137
  {
9099
10138
  "name": "add-member",
9100
10139
  "description": "Add a person to a team, keeping the existing members",
10140
+ "options": [
10141
+ {
10142
+ "name": "--yes",
10143
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10144
+ }
10145
+ ],
9101
10146
  "arguments": [
9102
10147
  {
9103
10148
  "name": "TEAM",
@@ -9118,6 +10163,10 @@
9118
10163
  "name": "create",
9119
10164
  "description": "Create a team and (optionally) set its roles, group/project scope and members",
9120
10165
  "options": [
10166
+ {
10167
+ "name": "--yes",
10168
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10169
+ },
9121
10170
  {
9122
10171
  "name": "--color",
9123
10172
  "description": "Color label",
@@ -9184,6 +10233,12 @@
9184
10233
  {
9185
10234
  "name": "delete",
9186
10235
  "description": "Delete a team (its members lose the access this team granted)",
10236
+ "options": [
10237
+ {
10238
+ "name": "--yes",
10239
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10240
+ }
10241
+ ],
9187
10242
  "arguments": [
9188
10243
  {
9189
10244
  "name": "TEAM",
@@ -9199,6 +10254,10 @@
9199
10254
  "name": "list",
9200
10255
  "description": "List the teams (people with scope) in your organization",
9201
10256
  "options": [
10257
+ {
10258
+ "name": "--yes",
10259
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10260
+ },
9202
10261
  {
9203
10262
  "name": "--page",
9204
10263
  "description": "Page number",
@@ -9218,6 +10277,12 @@
9218
10277
  {
9219
10278
  "name": "remove-member",
9220
10279
  "description": "Remove a person from a team, keeping the other members",
10280
+ "options": [
10281
+ {
10282
+ "name": "--yes",
10283
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10284
+ }
10285
+ ],
9221
10286
  "arguments": [
9222
10287
  {
9223
10288
  "name": "TEAM",
@@ -9237,6 +10302,12 @@
9237
10302
  {
9238
10303
  "name": "show",
9239
10304
  "description": "Show a team by id or name (roles, group/project scope, members)",
10305
+ "options": [
10306
+ {
10307
+ "name": "--yes",
10308
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10309
+ }
10310
+ ],
9240
10311
  "arguments": [
9241
10312
  {
9242
10313
  "name": "TEAM",
@@ -9252,6 +10323,10 @@
9252
10323
  "name": "update",
9253
10324
  "description": "Update a team. Each given dimension REPLACES the whole set for that dimension.",
9254
10325
  "options": [
10326
+ {
10327
+ "name": "--yes",
10328
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10329
+ },
9255
10330
  {
9256
10331
  "name": "--color",
9257
10332
  "description": "Color label",
@@ -9335,6 +10410,10 @@
9335
10410
  "name": "approve",
9336
10411
  "description": "Approve a ticket review: move it to the first done status",
9337
10412
  "options": [
10413
+ {
10414
+ "name": "--yes",
10415
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10416
+ },
9338
10417
  {
9339
10418
  "name": "--project",
9340
10419
  "aliases": [
@@ -9365,6 +10444,10 @@
9365
10444
  "name": "ask",
9366
10445
  "description": "Ask a natural-language question about the tickets you can see; the AI answers and cites the tickets it used (may take a few seconds)",
9367
10446
  "options": [
10447
+ {
10448
+ "name": "--yes",
10449
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10450
+ },
9368
10451
  {
9369
10452
  "name": "--timeout",
9370
10453
  "description": "Seconds to wait for the answer before giving up",
@@ -9391,6 +10474,10 @@
9391
10474
  "name": "assign",
9392
10475
  "description": "Assign a ticket to an account, or unassign it (--unassign)",
9393
10476
  "options": [
10477
+ {
10478
+ "name": "--yes",
10479
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10480
+ },
9394
10481
  {
9395
10482
  "name": "--project",
9396
10483
  "aliases": [
@@ -9436,6 +10523,10 @@
9436
10523
  "name": "attach",
9437
10524
  "description": "Attach one or more local files to a ticket",
9438
10525
  "options": [
10526
+ {
10527
+ "name": "--yes",
10528
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10529
+ },
9439
10530
  {
9440
10531
  "name": "--project",
9441
10532
  "aliases": [
@@ -9478,6 +10569,10 @@
9478
10569
  "name": "attachment-download",
9479
10570
  "description": "Download a ticket binary to disk: works for ticket attachments AND files attached to its comments",
9480
10571
  "options": [
10572
+ {
10573
+ "name": "--yes",
10574
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10575
+ },
9481
10576
  {
9482
10577
  "name": "--project",
9483
10578
  "aliases": [
@@ -9534,6 +10629,10 @@
9534
10629
  "name": "attachments",
9535
10630
  "description": "List a ticket's attachments",
9536
10631
  "options": [
10632
+ {
10633
+ "name": "--yes",
10634
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10635
+ },
9537
10636
  {
9538
10637
  "name": "--project",
9539
10638
  "aliases": [
@@ -9565,6 +10664,10 @@
9565
10664
  "name": "branch",
9566
10665
  "description": "Create a GitHub branch from a ticket (name prefixed with the ticket code)",
9567
10666
  "options": [
10667
+ {
10668
+ "name": "--yes",
10669
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10670
+ },
9568
10671
  {
9569
10672
  "name": "--project",
9570
10673
  "aliases": [
@@ -9596,6 +10699,10 @@
9596
10699
  "name": "clarifications",
9597
10700
  "description": "Show the clarification cycle state of a ticket (rounds, reply, escalation)",
9598
10701
  "options": [
10702
+ {
10703
+ "name": "--yes",
10704
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10705
+ },
9599
10706
  {
9600
10707
  "name": "--project",
9601
10708
  "aliases": [
@@ -9627,6 +10734,10 @@
9627
10734
  "name": "comment",
9628
10735
  "description": "Add a comment to a ticket",
9629
10736
  "options": [
10737
+ {
10738
+ "name": "--yes",
10739
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10740
+ },
9630
10741
  {
9631
10742
  "name": "--project",
9632
10743
  "aliases": [
@@ -9668,6 +10779,10 @@
9668
10779
  "name": "comment-delete",
9669
10780
  "description": "Delete a comment from a ticket (author, or with tickets.comment.delete_any)",
9670
10781
  "options": [
10782
+ {
10783
+ "name": "--yes",
10784
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10785
+ },
9671
10786
  {
9672
10787
  "name": "--project",
9673
10788
  "aliases": [
@@ -9713,6 +10828,10 @@
9713
10828
  "name": "comments",
9714
10829
  "description": "List all comments of a ticket (oldest first), including attached files — download them with tickets attachment-download",
9715
10830
  "options": [
10831
+ {
10832
+ "name": "--yes",
10833
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10834
+ },
9716
10835
  {
9717
10836
  "name": "--project",
9718
10837
  "aliases": [
@@ -9744,6 +10863,10 @@
9744
10863
  "name": "create",
9745
10864
  "description": "Create a ticket (status defaults to open, priority to medium; both take a code or a label)",
9746
10865
  "options": [
10866
+ {
10867
+ "name": "--yes",
10868
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
10869
+ },
9747
10870
  {
9748
10871
  "name": "--project",
9749
10872
  "aliases": [
@@ -9957,6 +11080,10 @@
9957
11080
  "name": "delete",
9958
11081
  "description": "Delete a ticket (irreversible)",
9959
11082
  "options": [
11083
+ {
11084
+ "name": "--yes",
11085
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11086
+ },
9960
11087
  {
9961
11088
  "name": "--project",
9962
11089
  "aliases": [
@@ -9989,11 +11116,16 @@
9989
11116
  },
9990
11117
  {
9991
11118
  "name": "dependencies",
11119
+ "description": "Ticket prerequisites: what has to be finished before a ticket can start",
9992
11120
  "commands": [
9993
11121
  {
9994
11122
  "name": "add",
9995
11123
  "description": "Add a prerequisite to a ticket: the blocker has to be finished before this ticket can start",
9996
11124
  "options": [
11125
+ {
11126
+ "name": "--yes",
11127
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11128
+ },
9997
11129
  {
9998
11130
  "name": "--project",
9999
11131
  "aliases": [
@@ -10030,6 +11162,10 @@
10030
11162
  "name": "list",
10031
11163
  "description": "List the prerequisites of a ticket: what has to be finished before this one can start",
10032
11164
  "options": [
11165
+ {
11166
+ "name": "--yes",
11167
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11168
+ },
10033
11169
  {
10034
11170
  "name": "--project",
10035
11171
  "aliases": [
@@ -10061,6 +11197,10 @@
10061
11197
  "name": "remove",
10062
11198
  "description": "Remove a prerequisite from a ticket",
10063
11199
  "options": [
11200
+ {
11201
+ "name": "--yes",
11202
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11203
+ },
10064
11204
  {
10065
11205
  "name": "--project",
10066
11206
  "aliases": [
@@ -10098,6 +11238,10 @@
10098
11238
  "name": "detach",
10099
11239
  "description": "Remove an attachment from a ticket (irreversible)",
10100
11240
  "options": [
11241
+ {
11242
+ "name": "--yes",
11243
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11244
+ },
10101
11245
  {
10102
11246
  "name": "--project",
10103
11247
  "aliases": [
@@ -10143,6 +11287,10 @@
10143
11287
  "name": "eligibility",
10144
11288
  "description": "Allow or block a ticket for autonomous agents (requires tickets.edit)",
10145
11289
  "options": [
11290
+ {
11291
+ "name": "--yes",
11292
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11293
+ },
10146
11294
  {
10147
11295
  "name": "--project",
10148
11296
  "aliases": [
@@ -10195,11 +11343,16 @@
10195
11343
  },
10196
11344
  {
10197
11345
  "name": "lease",
11346
+ "description": "Working lease on a ticket: claim, renew, release (one worker at a time)",
10198
11347
  "commands": [
10199
11348
  {
10200
11349
  "name": "claim",
10201
11350
  "description": "Claim the working lease on a ticket, so nobody else (person or agent) starts it at the same time",
10202
11351
  "options": [
11352
+ {
11353
+ "name": "--yes",
11354
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11355
+ },
10203
11356
  {
10204
11357
  "name": "--project",
10205
11358
  "aliases": [
@@ -10251,6 +11404,10 @@
10251
11404
  "name": "release",
10252
11405
  "description": "Release your own working lease on a ticket, so someone else can claim it",
10253
11406
  "options": [
11407
+ {
11408
+ "name": "--yes",
11409
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11410
+ },
10254
11411
  {
10255
11412
  "name": "--project",
10256
11413
  "aliases": [
@@ -10292,6 +11449,10 @@
10292
11449
  "name": "renew",
10293
11450
  "description": "Extend your own working lease on a ticket before it expires",
10294
11451
  "options": [
11452
+ {
11453
+ "name": "--yes",
11454
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11455
+ },
10295
11456
  {
10296
11457
  "name": "--project",
10297
11458
  "aliases": [
@@ -10345,6 +11506,10 @@
10345
11506
  "name": "links",
10346
11507
  "description": "List the ticket-to-ticket links involving a ticket (duplicate/related)",
10347
11508
  "options": [
11509
+ {
11510
+ "name": "--yes",
11511
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11512
+ },
10348
11513
  {
10349
11514
  "name": "--project",
10350
11515
  "aliases": [
@@ -10376,6 +11541,10 @@
10376
11541
  "name": "list",
10377
11542
  "description": "List tickets for a project",
10378
11543
  "options": [
11544
+ {
11545
+ "name": "--yes",
11546
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11547
+ },
10379
11548
  {
10380
11549
  "name": "--project",
10381
11550
  "aliases": [
@@ -10426,6 +11595,10 @@
10426
11595
  "name": "milestone",
10427
11596
  "description": "Set or clear a ticket milestone (--clear)",
10428
11597
  "options": [
11598
+ {
11599
+ "name": "--yes",
11600
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11601
+ },
10429
11602
  {
10430
11603
  "name": "--project",
10431
11604
  "aliases": [
@@ -10471,6 +11644,10 @@
10471
11644
  "name": "pr",
10472
11645
  "description": "Open a GitHub pull request from a ticket (head = the ticket branch, title prefixed with the code)",
10473
11646
  "options": [
11647
+ {
11648
+ "name": "--yes",
11649
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11650
+ },
10474
11651
  {
10475
11652
  "name": "--project",
10476
11653
  "aliases": [
@@ -10501,6 +11678,12 @@
10501
11678
  {
10502
11679
  "name": "priorities",
10503
11680
  "description": "List the organization ticket priorities (id, code, label) — the id feeds `tickets create --priority-id`",
11681
+ "options": [
11682
+ {
11683
+ "name": "--yes",
11684
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11685
+ }
11686
+ ],
10504
11687
  "examples": [
10505
11688
  "closeyourit tickets priorities",
10506
11689
  "closeyourit tickets priorities --json"
@@ -10510,6 +11693,10 @@
10510
11693
  "name": "reject",
10511
11694
  "description": "Reject a ticket review: send it back to work with a reason",
10512
11695
  "options": [
11696
+ {
11697
+ "name": "--yes",
11698
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11699
+ },
10513
11700
  {
10514
11701
  "name": "--project",
10515
11702
  "aliases": [
@@ -10551,6 +11738,10 @@
10551
11738
  "name": "report",
10552
11739
  "description": "Write the work report of a ticket — the long text a comment cannot hold. Each write adds a version, it never overwrites the previous one",
10553
11740
  "options": [
11741
+ {
11742
+ "name": "--yes",
11743
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11744
+ },
10554
11745
  {
10555
11746
  "name": "--project",
10556
11747
  "aliases": [
@@ -10602,6 +11793,10 @@
10602
11793
  "name": "report-show",
10603
11794
  "description": "Show the current work report of a ticket, or a past version with --version",
10604
11795
  "options": [
11796
+ {
11797
+ "name": "--yes",
11798
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11799
+ },
10605
11800
  {
10606
11801
  "name": "--project",
10607
11802
  "aliases": [
@@ -10643,6 +11838,10 @@
10643
11838
  "name": "report-versions",
10644
11839
  "description": "List the versions of the work report of a ticket (newest first)",
10645
11840
  "options": [
11841
+ {
11842
+ "name": "--yes",
11843
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11844
+ },
10646
11845
  {
10647
11846
  "name": "--project",
10648
11847
  "aliases": [
@@ -10684,6 +11883,10 @@
10684
11883
  "name": "reviewer",
10685
11884
  "description": "Set the reviewer of a ticket (requires tickets.assign)",
10686
11885
  "options": [
11886
+ {
11887
+ "name": "--yes",
11888
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11889
+ },
10687
11890
  {
10688
11891
  "name": "--project",
10689
11892
  "aliases": [
@@ -10725,6 +11928,10 @@
10725
11928
  "name": "show",
10726
11929
  "description": "Show a single ticket in full: body (description + Given/When/Then/Expected), comments (with their files) and attachments",
10727
11930
  "options": [
11931
+ {
11932
+ "name": "--yes",
11933
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11934
+ },
10728
11935
  {
10729
11936
  "name": "--project",
10730
11937
  "aliases": [
@@ -10757,6 +11964,10 @@
10757
11964
  "name": "status",
10758
11965
  "description": "Change a ticket status (by code, label or id)",
10759
11966
  "options": [
11967
+ {
11968
+ "name": "--yes",
11969
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
11970
+ },
10760
11971
  {
10761
11972
  "name": "--project",
10762
11973
  "aliases": [
@@ -10798,6 +12009,12 @@
10798
12009
  {
10799
12010
  "name": "statuses",
10800
12011
  "description": "List the organization ticket statuses (id, code, label) — the id feeds `tickets create --status-id`",
12012
+ "options": [
12013
+ {
12014
+ "name": "--yes",
12015
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12016
+ }
12017
+ ],
10801
12018
  "examples": [
10802
12019
  "closeyourit tickets statuses",
10803
12020
  "closeyourit tickets statuses --json"
@@ -10807,6 +12024,10 @@
10807
12024
  "name": "unlink",
10808
12025
  "description": "Remove a ticket-to-ticket link (irreversible; requires tickets.edit)",
10809
12026
  "options": [
12027
+ {
12028
+ "name": "--yes",
12029
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12030
+ },
10810
12031
  {
10811
12032
  "name": "--project",
10812
12033
  "aliases": [
@@ -10846,6 +12067,10 @@
10846
12067
  "name": "unreviewer",
10847
12068
  "description": "Remove the reviewer of a ticket (requires tickets.assign)",
10848
12069
  "options": [
12070
+ {
12071
+ "name": "--yes",
12072
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12073
+ },
10849
12074
  {
10850
12075
  "name": "--project",
10851
12076
  "aliases": [
@@ -10876,6 +12101,10 @@
10876
12101
  "name": "unvote",
10877
12102
  "description": "Remove your upvote from a ticket (idempotent)",
10878
12103
  "options": [
12104
+ {
12105
+ "name": "--yes",
12106
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12107
+ },
10879
12108
  {
10880
12109
  "name": "--project",
10881
12110
  "aliases": [
@@ -10906,6 +12135,10 @@
10906
12135
  "name": "unwatch",
10907
12136
  "description": "Stop watching a ticket (idempotent)",
10908
12137
  "options": [
12138
+ {
12139
+ "name": "--yes",
12140
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12141
+ },
10909
12142
  {
10910
12143
  "name": "--project",
10911
12144
  "aliases": [
@@ -10936,6 +12169,10 @@
10936
12169
  "name": "update",
10937
12170
  "description": "Update a ticket, changing only the fields you pass (the others keep their current value; use --clear to empty one, --replace for the raw full replace)",
10938
12171
  "options": [
12172
+ {
12173
+ "name": "--yes",
12174
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12175
+ },
10939
12176
  {
10940
12177
  "name": "--project",
10941
12178
  "aliases": [
@@ -11180,6 +12417,10 @@
11180
12417
  "name": "vote",
11181
12418
  "description": "Upvote a ticket (idempotent)",
11182
12419
  "options": [
12420
+ {
12421
+ "name": "--yes",
12422
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12423
+ },
11183
12424
  {
11184
12425
  "name": "--project",
11185
12426
  "aliases": [
@@ -11210,6 +12451,10 @@
11210
12451
  "name": "watch",
11211
12452
  "description": "Watch a ticket to receive its notifications (idempotent)",
11212
12453
  "options": [
12454
+ {
12455
+ "name": "--yes",
12456
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12457
+ },
11213
12458
  {
11214
12459
  "name": "--project",
11215
12460
  "aliases": [
@@ -11240,6 +12485,10 @@
11240
12485
  "name": "work-context",
11241
12486
  "description": "Show the work context frozen when an automation host claimed the ticket: the references and procedures actually delivered back then, never the project's current guidance",
11242
12487
  "options": [
12488
+ {
12489
+ "name": "--yes",
12490
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12491
+ },
11243
12492
  {
11244
12493
  "name": "--project",
11245
12494
  "aliases": [
@@ -11282,6 +12531,12 @@
11282
12531
  {
11283
12532
  "name": "complete",
11284
12533
  "description": "Mark a todo item as done",
12534
+ "options": [
12535
+ {
12536
+ "name": "--yes",
12537
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12538
+ }
12539
+ ],
11285
12540
  "arguments": [
11286
12541
  {
11287
12542
  "name": "LISTID",
@@ -11302,6 +12557,10 @@
11302
12557
  "name": "create",
11303
12558
  "description": "Create a todo list",
11304
12559
  "options": [
12560
+ {
12561
+ "name": "--yes",
12562
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12563
+ },
11305
12564
  {
11306
12565
  "name": "--name",
11307
12566
  "description": "List name",
@@ -11333,6 +12592,10 @@
11333
12592
  "name": "delete",
11334
12593
  "description": "Delete a todo list (irreversible)",
11335
12594
  "options": [
12595
+ {
12596
+ "name": "--yes",
12597
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12598
+ },
11336
12599
  {
11337
12600
  "name": "--confirm",
11338
12601
  "description": "Required: confirm the irreversible deletion"
@@ -11351,11 +12614,16 @@
11351
12614
  },
11352
12615
  {
11353
12616
  "name": "items",
12617
+ "description": "Items of a todo list: add, list, update, delete",
11354
12618
  "commands": [
11355
12619
  {
11356
12620
  "name": "add",
11357
12621
  "description": "Add an item to a todo list",
11358
12622
  "options": [
12623
+ {
12624
+ "name": "--yes",
12625
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12626
+ },
11359
12627
  {
11360
12628
  "name": "--title",
11361
12629
  "description": "Item title",
@@ -11404,6 +12672,10 @@
11404
12672
  "name": "delete",
11405
12673
  "description": "Delete a todo item (irreversible)",
11406
12674
  "options": [
12675
+ {
12676
+ "name": "--yes",
12677
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12678
+ },
11407
12679
  {
11408
12680
  "name": "--confirm",
11409
12681
  "description": "Required: confirm the irreversible deletion"
@@ -11429,6 +12701,10 @@
11429
12701
  "name": "list",
11430
12702
  "description": "List the items of one of your todo lists",
11431
12703
  "options": [
12704
+ {
12705
+ "name": "--yes",
12706
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12707
+ },
11432
12708
  {
11433
12709
  "name": "--page",
11434
12710
  "description": "Page number",
@@ -11455,6 +12731,10 @@
11455
12731
  "name": "update",
11456
12732
  "description": "Update a todo item (retitle, relink a ticket, or reposition)",
11457
12733
  "options": [
12734
+ {
12735
+ "name": "--yes",
12736
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12737
+ },
11458
12738
  {
11459
12739
  "name": "--title",
11460
12740
  "description": "New title",
@@ -11509,6 +12789,10 @@
11509
12789
  "name": "list",
11510
12790
  "description": "List your own todo lists",
11511
12791
  "options": [
12792
+ {
12793
+ "name": "--yes",
12794
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12795
+ },
11512
12796
  {
11513
12797
  "name": "--page",
11514
12798
  "description": "Page number",
@@ -11529,6 +12813,10 @@
11529
12813
  "name": "reorder",
11530
12814
  "description": "Reorder your todo lists (pass --list once per id, in the desired order)",
11531
12815
  "options": [
12816
+ {
12817
+ "name": "--yes",
12818
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12819
+ },
11532
12820
  {
11533
12821
  "name": "--list",
11534
12822
  "description": "List id, in order (repeatable)",
@@ -11549,6 +12837,10 @@
11549
12837
  "name": "share",
11550
12838
  "description": "Set who a todo list is shared with (replaces the set; omit --account to unshare all)",
11551
12839
  "options": [
12840
+ {
12841
+ "name": "--yes",
12842
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12843
+ },
11552
12844
  {
11553
12845
  "name": "--account",
11554
12846
  "description": "Recipient account id (repeatable)",
@@ -11576,6 +12868,10 @@
11576
12868
  "name": "shared",
11577
12869
  "description": "List todo lists shared with you (read-only)",
11578
12870
  "options": [
12871
+ {
12872
+ "name": "--yes",
12873
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12874
+ },
11579
12875
  {
11580
12876
  "name": "--page",
11581
12877
  "description": "Page number",
@@ -11595,6 +12891,12 @@
11595
12891
  {
11596
12892
  "name": "shared-show",
11597
12893
  "description": "Show a todo list shared with you (read-only)",
12894
+ "options": [
12895
+ {
12896
+ "name": "--yes",
12897
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12898
+ }
12899
+ ],
11598
12900
  "arguments": [
11599
12901
  {
11600
12902
  "name": "ID",
@@ -11609,6 +12911,12 @@
11609
12911
  {
11610
12912
  "name": "shares",
11611
12913
  "description": "List the members a todo list is shared with (read-only)",
12914
+ "options": [
12915
+ {
12916
+ "name": "--yes",
12917
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12918
+ }
12919
+ ],
11612
12920
  "arguments": [
11613
12921
  {
11614
12922
  "name": "LISTID",
@@ -11623,6 +12931,12 @@
11623
12931
  {
11624
12932
  "name": "show",
11625
12933
  "description": "Show one of your todo lists",
12934
+ "options": [
12935
+ {
12936
+ "name": "--yes",
12937
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12938
+ }
12939
+ ],
11626
12940
  "arguments": [
11627
12941
  {
11628
12942
  "name": "ID",
@@ -11637,6 +12951,12 @@
11637
12951
  {
11638
12952
  "name": "uncomplete",
11639
12953
  "description": "Reopen a todo item (mark it not done)",
12954
+ "options": [
12955
+ {
12956
+ "name": "--yes",
12957
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12958
+ }
12959
+ ],
11640
12960
  "arguments": [
11641
12961
  {
11642
12962
  "name": "LISTID",
@@ -11657,6 +12977,10 @@
11657
12977
  "name": "update",
11658
12978
  "description": "Update a todo list (rename or recolor)",
11659
12979
  "options": [
12980
+ {
12981
+ "name": "--yes",
12982
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
12983
+ },
11660
12984
  {
11661
12985
  "name": "--name",
11662
12986
  "description": "New name",
@@ -11700,6 +13024,10 @@
11700
13024
  "name": "create",
11701
13025
  "description": "Create an ingest token (the secret is shown only once)",
11702
13026
  "options": [
13027
+ {
13028
+ "name": "--yes",
13029
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13030
+ },
11703
13031
  {
11704
13032
  "name": "--project",
11705
13033
  "aliases": [
@@ -11745,6 +13073,10 @@
11745
13073
  "name": "list",
11746
13074
  "description": "List ingest tokens for a project",
11747
13075
  "options": [
13076
+ {
13077
+ "name": "--yes",
13078
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13079
+ },
11748
13080
  {
11749
13081
  "name": "--project",
11750
13082
  "aliases": [
@@ -11769,6 +13101,10 @@
11769
13101
  "name": "provision",
11770
13102
  "description": "Generate an ingest token and deliver it without revealing the secret",
11771
13103
  "options": [
13104
+ {
13105
+ "name": "--yes",
13106
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13107
+ },
11772
13108
  {
11773
13109
  "name": "--project",
11774
13110
  "aliases": [
@@ -11877,11 +13213,16 @@
11877
13213
  },
11878
13214
  {
11879
13215
  "name": "provisions",
13216
+ "description": "GitHub provisioning of an ingest token: status and retry (never the secret)",
11880
13217
  "commands": [
11881
13218
  {
11882
13219
  "name": "retry",
11883
13220
  "description": "Retry GitHub synchronization without regenerating or revealing the token",
11884
13221
  "options": [
13222
+ {
13223
+ "name": "--yes",
13224
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13225
+ },
11885
13226
  {
11886
13227
  "name": "--project",
11887
13228
  "aliases": [
@@ -11909,6 +13250,10 @@
11909
13250
  "name": "show",
11910
13251
  "description": "Show secret-free token provision status",
11911
13252
  "options": [
13253
+ {
13254
+ "name": "--yes",
13255
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13256
+ },
11912
13257
  {
11913
13258
  "name": "--project",
11914
13259
  "aliases": [
@@ -11938,6 +13283,10 @@
11938
13283
  "name": "revoke",
11939
13284
  "description": "Revoke an ingest token",
11940
13285
  "options": [
13286
+ {
13287
+ "name": "--yes",
13288
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13289
+ },
11941
13290
  {
11942
13291
  "name": "--project",
11943
13292
  "aliases": [
@@ -11968,6 +13317,10 @@
11968
13317
  "name": "rotate",
11969
13318
  "description": "Rotate an ingest token (the new secret is shown only once)",
11970
13319
  "options": [
13320
+ {
13321
+ "name": "--yes",
13322
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13323
+ },
11971
13324
  {
11972
13325
  "name": "--project",
11973
13326
  "aliases": [
@@ -12004,6 +13357,10 @@
12004
13357
  "name": "create",
12005
13358
  "description": "Create an uptime monitor group (org-level container)",
12006
13359
  "options": [
13360
+ {
13361
+ "name": "--yes",
13362
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13363
+ },
12007
13364
  {
12008
13365
  "name": "--name",
12009
13366
  "description": "Group name",
@@ -12055,6 +13412,10 @@
12055
13412
  "name": "delete",
12056
13413
  "description": "Delete an uptime monitor group (irreversible)",
12057
13414
  "options": [
13415
+ {
13416
+ "name": "--yes",
13417
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13418
+ },
12058
13419
  {
12059
13420
  "name": "--confirm",
12060
13421
  "description": "Required: confirm the irreversible deletion"
@@ -12075,6 +13436,10 @@
12075
13436
  "name": "list",
12076
13437
  "description": "List the uptime monitor groups in your organization",
12077
13438
  "options": [
13439
+ {
13440
+ "name": "--yes",
13441
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13442
+ },
12078
13443
  {
12079
13444
  "name": "--page",
12080
13445
  "description": "Page number",
@@ -12094,6 +13459,12 @@
12094
13459
  {
12095
13460
  "name": "publish",
12096
13461
  "description": "Publish the public status page for an uptime group",
13462
+ "options": [
13463
+ {
13464
+ "name": "--yes",
13465
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13466
+ }
13467
+ ],
12097
13468
  "arguments": [
12098
13469
  {
12099
13470
  "name": "ID",
@@ -12108,6 +13479,12 @@
12108
13479
  {
12109
13480
  "name": "show",
12110
13481
  "description": "Show an uptime monitor group",
13482
+ "options": [
13483
+ {
13484
+ "name": "--yes",
13485
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13486
+ }
13487
+ ],
12111
13488
  "arguments": [
12112
13489
  {
12113
13490
  "name": "ID",
@@ -12122,6 +13499,12 @@
12122
13499
  {
12123
13500
  "name": "unpublish",
12124
13501
  "description": "Unpublish (retract) the public status page for an uptime group",
13502
+ "options": [
13503
+ {
13504
+ "name": "--yes",
13505
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13506
+ }
13507
+ ],
12125
13508
  "arguments": [
12126
13509
  {
12127
13510
  "name": "ID",
@@ -12137,6 +13520,10 @@
12137
13520
  "name": "update",
12138
13521
  "description": "Update an uptime monitor group (only the provided fields)",
12139
13522
  "options": [
13523
+ {
13524
+ "name": "--yes",
13525
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13526
+ },
12140
13527
  {
12141
13528
  "name": "--name",
12142
13529
  "description": "Group name",
@@ -12193,11 +13580,16 @@
12193
13580
  },
12194
13581
  {
12195
13582
  "name": "usage",
13583
+ "description": "Usage the product reported as actually executed (routes, jobs, custom keys)",
12196
13584
  "commands": [
12197
13585
  {
12198
13586
  "name": "list",
12199
13587
  "description": "List the usage symbols the product reported as actually executed (routes as Controller#action, jobs, custom keys)",
12200
13588
  "options": [
13589
+ {
13590
+ "name": "--yes",
13591
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13592
+ },
12201
13593
  {
12202
13594
  "name": "--project",
12203
13595
  "aliases": [
@@ -12253,6 +13645,10 @@
12253
13645
  "name": "reporters",
12254
13646
  "description": "List the usage reporters: which SDK is sending usage of each kind, and since when",
12255
13647
  "options": [
13648
+ {
13649
+ "name": "--yes",
13650
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13651
+ },
12256
13652
  {
12257
13653
  "name": "--project",
12258
13654
  "aliases": [
@@ -12296,6 +13692,12 @@
12296
13692
  {
12297
13693
  "name": "approve",
12298
13694
  "description": "Approve a pending secret change request: the change it carries is applied to the vault. Whoever asked for it cannot approve it (four-eyes), and a service account never can.",
13695
+ "options": [
13696
+ {
13697
+ "name": "--yes",
13698
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13699
+ }
13700
+ ],
12299
13701
  "arguments": [
12300
13702
  {
12301
13703
  "name": "ID",
@@ -12311,6 +13713,12 @@
12311
13713
  {
12312
13714
  "name": "list",
12313
13715
  "description": "List the secret changes waiting for a second approval, across every visible project. Shows the name and the intent, never the proposed value.",
13716
+ "options": [
13717
+ {
13718
+ "name": "--yes",
13719
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13720
+ }
13721
+ ],
12314
13722
  "examples": [
12315
13723
  "closeyourit vault requests list",
12316
13724
  "closeyourit vault requests list --json"
@@ -12320,6 +13728,10 @@
12320
13728
  "name": "reject",
12321
13729
  "description": "Reject a pending secret change request with a reason. Nothing changes in the vault: the request freezes as rejected and the reason reaches whoever asked.",
12322
13730
  "options": [
13731
+ {
13732
+ "name": "--yes",
13733
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13734
+ },
12323
13735
  {
12324
13736
  "name": "--reason",
12325
13737
  "aliases": [
@@ -12353,6 +13765,7 @@
12353
13765
  },
12354
13766
  {
12355
13767
  "name": "vulnerabilities",
13768
+ "description": "Dependency vulnerabilities and runtime support: triage, ignore, promote to ticket",
12356
13769
  "commands": [
12357
13770
  {
12358
13771
  "name": "ignore",
@@ -12361,6 +13774,10 @@
12361
13774
  "vulns:ignore"
12362
13775
  ],
12363
13776
  "options": [
13777
+ {
13778
+ "name": "--yes",
13779
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13780
+ },
12364
13781
  {
12365
13782
  "name": "--note",
12366
13783
  "description": "Why you are keeping it (shown alongside the ignored row)",
@@ -12391,6 +13808,10 @@
12391
13808
  "vulns:list"
12392
13809
  ],
12393
13810
  "options": [
13811
+ {
13812
+ "name": "--yes",
13813
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13814
+ },
12394
13815
  {
12395
13816
  "name": "--project",
12396
13817
  "aliases": [
@@ -12458,6 +13879,12 @@
12458
13879
  "aliases": [
12459
13880
  "vulns:promote"
12460
13881
  ],
13882
+ "options": [
13883
+ {
13884
+ "name": "--yes",
13885
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13886
+ }
13887
+ ],
12461
13888
  "arguments": [
12462
13889
  {
12463
13890
  "name": "ID",
@@ -12475,6 +13902,12 @@
12475
13902
  "aliases": [
12476
13903
  "vulns:reopen"
12477
13904
  ],
13905
+ "options": [
13906
+ {
13907
+ "name": "--yes",
13908
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13909
+ }
13910
+ ],
12478
13911
  "arguments": [
12479
13912
  {
12480
13913
  "name": "ID",
@@ -12493,6 +13926,10 @@
12493
13926
  "vulns:rescan"
12494
13927
  ],
12495
13928
  "options": [
13929
+ {
13930
+ "name": "--yes",
13931
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13932
+ },
12496
13933
  {
12497
13934
  "name": "--project",
12498
13935
  "aliases": [
@@ -12519,6 +13956,10 @@
12519
13956
  "vulns:runtimes"
12520
13957
  ],
12521
13958
  "options": [
13959
+ {
13960
+ "name": "--yes",
13961
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
13962
+ },
12522
13963
  {
12523
13964
  "name": "--project",
12524
13965
  "aliases": [
@@ -12554,6 +13995,12 @@
12554
13995
  "aliases": [
12555
13996
  "vulns:show"
12556
13997
  ],
13998
+ "options": [
13999
+ {
14000
+ "name": "--yes",
14001
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14002
+ }
14003
+ ],
12557
14004
  "arguments": [
12558
14005
  {
12559
14006
  "name": "ID",
@@ -12570,6 +14017,12 @@
12570
14017
  {
12571
14018
  "name": "whoami",
12572
14019
  "description": "Show the authenticated account, organization, token prefix and permissions",
14020
+ "options": [
14021
+ {
14022
+ "name": "--yes",
14023
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14024
+ }
14025
+ ],
12573
14026
  "examples": [
12574
14027
  "closeyourit whoami",
12575
14028
  "closeyourit whoami --json"
@@ -12583,6 +14036,10 @@
12583
14036
  "name": "create",
12584
14037
  "description": "Create a workload action (non-dev activity: fair, meeting, call…) on one of your teams. Add the people with `workload participant add`.",
12585
14038
  "options": [
14039
+ {
14040
+ "name": "--yes",
14041
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14042
+ },
12586
14043
  {
12587
14044
  "name": "--team",
12588
14045
  "description": "Team id (UUID) or name — the action belongs to it and cannot be moved later",
@@ -12672,6 +14129,10 @@
12672
14129
  "name": "delete",
12673
14130
  "description": "Delete a workload action (irreversible; a linked ticket survives and only loses the link)",
12674
14131
  "options": [
14132
+ {
14133
+ "name": "--yes",
14134
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14135
+ },
12675
14136
  {
12676
14137
  "name": "--confirm",
12677
14138
  "description": "Required: confirm the irreversible deletion"
@@ -12692,6 +14153,10 @@
12692
14153
  "name": "list",
12693
14154
  "description": "List the workload actions of the teams you belong to (newest first)",
12694
14155
  "options": [
14156
+ {
14157
+ "name": "--yes",
14158
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14159
+ },
12695
14160
  {
12696
14161
  "name": "--page",
12697
14162
  "description": "Page number",
@@ -12715,6 +14180,12 @@
12715
14180
  {
12716
14181
  "name": "add",
12717
14182
  "description": "Add someone to a workload action (they must belong to the team that owns it)",
14183
+ "options": [
14184
+ {
14185
+ "name": "--yes",
14186
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14187
+ }
14188
+ ],
12718
14189
  "arguments": [
12719
14190
  {
12720
14191
  "name": "ACTION",
@@ -12734,6 +14205,12 @@
12734
14205
  {
12735
14206
  "name": "remove",
12736
14207
  "description": "Remove someone from a workload action (idempotent: removing who is not there succeeds)",
14208
+ "options": [
14209
+ {
14210
+ "name": "--yes",
14211
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14212
+ }
14213
+ ],
12737
14214
  "arguments": [
12738
14215
  {
12739
14216
  "name": "ACTION",
@@ -12756,6 +14233,10 @@
12756
14233
  "name": "promote",
12757
14234
  "description": "Generate a ticket from a workload action and link it back (the action keeps existing; an already linked action is refused)",
12758
14235
  "options": [
14236
+ {
14237
+ "name": "--yes",
14238
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14239
+ },
12759
14240
  {
12760
14241
  "name": "--project",
12761
14242
  "aliases": [
@@ -12842,6 +14323,12 @@
12842
14323
  {
12843
14324
  "name": "show",
12844
14325
  "description": "Show one workload action (an action of another team answers 404, never 403)",
14326
+ "options": [
14327
+ {
14328
+ "name": "--yes",
14329
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14330
+ }
14331
+ ],
12845
14332
  "arguments": [
12846
14333
  {
12847
14334
  "name": "ID",
@@ -12857,6 +14344,10 @@
12857
14344
  "name": "update",
12858
14345
  "description": "Update a workload action (only the passed fields change). The team never changes: moving an action would change who can see it.",
12859
14346
  "options": [
14347
+ {
14348
+ "name": "--yes",
14349
+ "description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
14350
+ },
12860
14351
  {
12861
14352
  "name": "--title",
12862
14353
  "description": "New title",