agent-first-mail 0.2.0

Let your AI agent work your inbox — email pulled into plain files it reads, sorts, and drafts on your machine, with nothing sent until you confirm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
<!-- Generated. Do not edit by hand. -->

# afmail CLI Reference

> Regenerate with `scripts/projects/agent-first-mail/generate-cli-doc.sh` (runs `afmail --help --recursive --output markdown`).

# afmail - Agent-First Mail: local-first email case workspace for agents.

Agent-First Mail: local-first email case workspace for agents.

### Interface Policy

- Files are the read interface; CLI is for effects.
- One workspace represents one mailbox account.
- Message commands use `afmail message ACTION MESSAGE_ID ...`.
- Case commands use `afmail case ACTION CASE_REF ...`.
- Active and archived cases are readable with `afmail case show REF` and
 `afmail archive case show REF`.
- stdout carries structured Agent-First Data events; stderr is not a protocol channel.

### Workspace Shape

```text
.afmail/messages/        raw .eml plus durable remote sidecars
messages/               rebuildable parsed message cache
.afmail/logs/events.jsonl append-only audit log
.afmail/transactions/    transient local write transaction sentinels
.afmail/workspace.progress.json latest push/pull runtime snapshot
templates/               user-editable generated Markdown templates
triage/message_*.md      active unprocessed message views
spam/*.md                generated spam review views
trash/*.md               generated trash review views
deleted/*.md             generated remote-deleted review views
cases/<group>/<case_uid>-<name>/case.md generated case entry view
cases/<group>/<case_uid>-<name>/data/ canonical case state
cases/<group>/<case_uid>-<name>/views/ generated case detail views
archive/cases/<case_uid>-<name>/ archived case workspaces
archive/notifications/<archive_uid>-<name>/archive.md generated archive entry view
archive/notifications/<archive_uid>-<name>/data/ canonical archive state
archive/notifications/<archive_uid>-<name>/views/ generated archive detail views
```

### Examples

```text
afmail init
afmail init email-a
afmail skill status
afmail skill install --agent codex --scope project
afmail status
afmail doctor
afmail pull
afmail pull sent archive
afmail remote folders
afmail case create --name 应用反馈-肥料登记 --message message_inbox_607146690_21 --group open --reason "new feedback thread"
afmail case show c20260603001
afmail case add c20260603001 message_inbox_607146690_22 --reason "follow-up belongs to same feedback case"
afmail archive message create --name 服务通知 --message message_inbox_607146690_23 --summary "billing notification" --reason "billing notification"
afmail archive message show a20260603001
afmail archive message restore a20260603001 message_inbox_607146690_23 --reason "needs triage again"
afmail message spam message_inbox_607146690_23 --reason "phishing attempt"
afmail message trash message_inbox_607146690_24 --reason "duplicate no longer needed"
afmail render refresh
afmail doctor repair --confirm
afmail case move c20260603001 waiting
afmail case archive c20260603001 --reason "feedback handled"
afmail archive case restore c20260603001 --group open --reason "customer replied"
afmail case tag c20260603001 legal --reason "legal review needed"
afmail case draft reply c20260603001 message_inbox_607146690_22
afmail case draft attach c20260603001 reply-message_inbox_607146690_22.md ./screenshot.png
afmail case draft change c20260603001 reply-message_inbox_607146690_22.md --body "Thanks, I will check this."
afmail case draft validate c20260603001 reply-message_inbox_607146690_22.md
afmail case draft send c20260603001 reply-message_inbox_607146690_22.md
afmail case draft remove c20260603001 reply-message_inbox_607146690_22.md --reason "mistaken draft"
afmail push list
afmail push
afmail push --confirm
afmail purge
afmail purge spam --older-than-days 30
afmail purge deleted
afmail log list --limit 20
afmail message show message_inbox_607146690_21
afmail message attachment fetch message_inbox_607146690_21 2
```

### Exit Codes

- `0`: command completed successfully
- `1`: runtime/store/protocol error
- `2`: invalid CLI arguments

```text
Agent-First Mail: local-first email case workspace for agents.

### Interface Policy

- Files are the read interface; CLI is for effects.
- One workspace represents one mailbox account.
- Message commands use `afmail message ACTION MESSAGE_ID ...`.
- Case commands use `afmail case ACTION CASE_REF ...`.
- Active and archived cases are readable with `afmail case show REF` and
 `afmail archive case show REF`.
- stdout carries structured Agent-First Data events; stderr is not a protocol channel.

### Workspace Shape

```text
.afmail/messages/        raw .eml plus durable remote sidecars
messages/               rebuildable parsed message cache
.afmail/logs/events.jsonl append-only audit log
.afmail/transactions/    transient local write transaction sentinels
.afmail/workspace.progress.json latest push/pull runtime snapshot
templates/               user-editable generated Markdown templates
triage/message_*.md      active unprocessed message views
spam/*.md                generated spam review views
trash/*.md               generated trash review views
deleted/*.md             generated remote-deleted review views
cases/<group>/<case_uid>-<name>/case.md generated case entry view
cases/<group>/<case_uid>-<name>/data/ canonical case state
cases/<group>/<case_uid>-<name>/views/ generated case detail views
archive/cases/<case_uid>-<name>/ archived case workspaces
archive/notifications/<archive_uid>-<name>/archive.md generated archive entry view
archive/notifications/<archive_uid>-<name>/data/ canonical archive state
archive/notifications/<archive_uid>-<name>/views/ generated archive detail views
```

### Examples

```text
afmail init
afmail init email-a
afmail skill status
afmail skill install --agent codex --scope project
afmail status
afmail doctor
afmail pull
afmail pull sent archive
afmail remote folders
afmail case create --name 应用反馈-肥料登记 --message message_inbox_607146690_21 --group open --reason "new feedback thread"
afmail case show c20260603001
afmail case add c20260603001 message_inbox_607146690_22 --reason "follow-up belongs to same feedback case"
afmail archive message create --name 服务通知 --message message_inbox_607146690_23 --summary "billing notification" --reason "billing notification"
afmail archive message show a20260603001
afmail archive message restore a20260603001 message_inbox_607146690_23 --reason "needs triage again"
afmail message spam message_inbox_607146690_23 --reason "phishing attempt"
afmail message trash message_inbox_607146690_24 --reason "duplicate no longer needed"
afmail render refresh
afmail doctor repair --confirm
afmail case move c20260603001 waiting
afmail case archive c20260603001 --reason "feedback handled"
afmail archive case restore c20260603001 --group open --reason "customer replied"
afmail case tag c20260603001 legal --reason "legal review needed"
afmail case draft reply c20260603001 message_inbox_607146690_22
afmail case draft attach c20260603001 reply-message_inbox_607146690_22.md ./screenshot.png
afmail case draft change c20260603001 reply-message_inbox_607146690_22.md --body "Thanks, I will check this."
afmail case draft validate c20260603001 reply-message_inbox_607146690_22.md
afmail case draft send c20260603001 reply-message_inbox_607146690_22.md
afmail case draft remove c20260603001 reply-message_inbox_607146690_22.md --reason "mistaken draft"
afmail push list
afmail push
afmail push --confirm
afmail purge
afmail purge spam --older-than-days 30
afmail purge deleted
afmail log list --limit 20
afmail message show message_inbox_607146690_21
afmail message attachment fetch message_inbox_607146690_21 2
```

### Exit Codes

- `0`: command completed successfully
- `1`: runtime/store/protocol error
- `2`: invalid CLI arguments

Usage: afmail [OPTIONS] [COMMAND]

Commands:
  init     Initialize the current directory or a child path as an afmail workspace
  pull     Read configured IMAP mailbox ids into local message files without changing remote mail
  config   Read or update local afmail configuration
  remote   Inspect remote IMAP state for configuring mailboxes
  push     Push queued local work or manage the local push queue
  status   Report workspace health, counts, and latest pull/push progress
  doctor   Check afmail workspace consistency without inspecting Git
  purge    Permanently delete old local spam, trash, and remote-deleted records
  skill    Manage the Agent-First Mail skill for Codex, Claude Code, and opencode
  triage   Inspect the triage queue
  message  Operate on any local message id
  case     Create a case or operate on an existing case ref
  archive  Inspect and manage archived cases and direct-message archive categories
  render   Rebuild generated read views from local workspace state
  log      Inspect the workspace audit log
  help     Print this message or the help of the given subcommand(s)

Options:
      --output <OUTPUT>
          Output format: json (default), yaml, plain

          [default: json]

      --log <LOG>
          Log categories (comma-separated): startup, request, progress, retry

      --verbose
          Enable all log categories

  -V, --version
          Print structured version event

  -h, --help
          Print help. Add --recursive to expand every nested subcommand; add --output json|yaml|markdown to render this help in another format.
```

## afmail init - Initialize the current directory or a child path as an afmail workspace

```text
Initialize the current directory or a child path as an afmail workspace

Usage: init [PATH]

Arguments:
  [PATH]
          Optional workspace path to initialize under the current directory

Options:
  -h, --help
          Print help
```

## afmail pull - Read configured IMAP mailbox ids into local message files without changing remote mail

```text
Read configured IMAP mailbox ids into local message files without changing remote mail

Usage: pull [IDS]...

Arguments:
  [IDS]...
          Configured mailbox ids to pull. With none, pulls actions.pull.default_mailbox_ids

Options:
  -h, --help
          Print help
```

## afmail config - Read or update local afmail configuration

```text
Read or update local afmail configuration

Usage: config <COMMAND>

Commands:
  show  Show local .afmail/config.json
  get   Get one config key
  set   Set one config key. Multiple values become an array for array keys
  help  Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail config show - Show local .afmail/config.json

```text
Show local .afmail/config.json

Usage: show

Options:
  -h, --help
          Print help
```

### afmail config get - Get one config key

```text
Get one config key

Usage: get <KEY>

Arguments:
  <KEY>


Options:
  -h, --help
          Print help
```

### afmail config set - Set one config key. Multiple values become an array for array keys

```text
Set one config key. Multiple values become an array for array keys

Usage: set <KEY> [VALUES]...

Arguments:
  <KEY>


  [VALUES]...


Options:
  -h, --help
          Print help
```

## afmail remote - Inspect remote IMAP state for configuring mailboxes

```text
Inspect remote IMAP state for configuring mailboxes

Usage: remote <COMMAND>

Commands:
  test     Test IMAP login using local config
  folders  List IMAP folders/mailboxes
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail remote test - Test IMAP login using local config

```text
Test IMAP login using local config

Usage: test

Options:
  -h, --help
          Print help
```

### afmail remote folders - List IMAP folders/mailboxes

```text
List IMAP folders/mailboxes

Usage: folders

Options:
  -h, --help
          Print help
```

## afmail push - Push queued local work or manage the local push queue

```text
Push queued local work or manage the local push queue

Usage: push [OPTIONS] [COMMAND]

Commands:
  list  List queued local push items
  help  Print this message or the help of the given subcommand(s)

Options:
      --dry-run
          Show planned push actions without IMAP/SMTP writes. This is the default

      --confirm
          Apply queued IMAP/SMTP effects

  -h, --help
          Print help
```

### afmail push list - List queued local push items

```text
List queued local push items

Usage: list

Options:
  -h, --help
          Print help
```

## afmail status - Report workspace health, counts, and latest pull/push progress

```text
Report workspace health, counts, and latest pull/push progress

Usage: status

Options:
  -h, --help
          Print help
```

## afmail doctor - Check afmail workspace consistency without inspecting Git

```text
Check afmail workspace consistency without inspecting Git

Usage: doctor [COMMAND]

Commands:
  repair  Repair only unambiguous afmail-generated state
  help    Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail doctor repair - Repair only unambiguous afmail-generated state

```text
Repair only unambiguous afmail-generated state

Usage: repair [OPTIONS]

Options:
      --confirm
          Apply repair actions. Without this flag, repair is refused

  -h, --help
          Print help
```

## afmail purge - Permanently delete old local spam, trash, and remote-deleted records

```text
Permanently delete old local spam, trash, and remote-deleted records

Usage: purge [OPTIONS] [COMMAND]

Commands:
  spam     Permanently delete old local spam records
  trash    Permanently delete old local trash records
  deleted  Permanently delete old local records whose remote message disappeared
  help     Print this message or the help of the given subcommand(s)

Options:
      --older-than-days <DAYS>
          Only purge messages in a discard state at least this many days ago. Defaults to 30

  -h, --help
          Print help
```

### afmail purge spam - Permanently delete old local spam records

```text
Permanently delete old local spam records

Usage: spam [OPTIONS]

Options:
      --older-than-days <DAYS>
          Only purge messages marked spam at least this many days ago. Defaults to 30

  -h, --help
          Print help
```

### afmail purge trash - Permanently delete old local trash records

```text
Permanently delete old local trash records

Usage: trash [OPTIONS]

Options:
      --older-than-days <DAYS>
          Only purge messages marked trash at least this many days ago. Defaults to 30

  -h, --help
          Print help
```

### afmail purge deleted - Permanently delete old local records whose remote message disappeared

```text
Permanently delete old local records whose remote message disappeared

Usage: deleted [OPTIONS]

Options:
      --older-than-days <DAYS>
          Only purge messages marked remote-deleted at least this many days ago. Defaults to 30

  -h, --help
          Print help
```

## afmail skill - Manage the Agent-First Mail skill for Codex, Claude Code, and opencode

```text
Manage the Agent-First Mail skill for Codex, Claude Code, and opencode

Usage: skill <COMMAND>

Commands:
  status     Show whether the Agent-First Mail skill is installed and valid
  install    Install the Agent-First Mail skill
  uninstall  Remove an afmail-managed Agent-First Mail skill
  help       Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail skill status - Show whether the Agent-First Mail skill is installed and valid

```text
Show whether the Agent-First Mail skill is installed and valid

Usage: status [OPTIONS]

Options:
      --agent <AGENT>
          Agent to manage. Defaults to all personal skill targets

          Possible values:
          - all:         Manage every agent that supports the requested scope
          - codex:       Manage the Codex skill under $CODEX_HOME/skills or .agents/skills
          - claude-code: Manage the Claude Code skill under ~/.claude/skills or .claude/skills
          - opencode:    Manage the opencode skill under ~/.config/opencode/skills or .opencode/skills

          [default: all]

      --scope <SCOPE>
          Skill scope. Project scope installs under the current project's skill directory

          Possible values:
          - personal: Install under the user-level skills directory
          - project:  Install under the current project's skills directory

          [default: personal]

      --skills-dir <SKILLS_DIR>
          Directory that contains skill folders. Requires an explicit single --agent

  -h, --help
          Print help (see a summary with '-h')
```

### afmail skill install - Install the Agent-First Mail skill

```text
Install the Agent-First Mail skill

Usage: install [OPTIONS]

Options:
      --agent <AGENT>
          Agent to manage. Defaults to all personal skill targets

          Possible values:
          - all:         Manage every agent that supports the requested scope
          - codex:       Manage the Codex skill under $CODEX_HOME/skills or .agents/skills
          - claude-code: Manage the Claude Code skill under ~/.claude/skills or .claude/skills
          - opencode:    Manage the opencode skill under ~/.config/opencode/skills or .opencode/skills

          [default: all]

      --scope <SCOPE>
          Skill scope. Project scope installs under the current project's skill directory

          Possible values:
          - personal: Install under the user-level skills directory
          - project:  Install under the current project's skills directory

          [default: personal]

      --skills-dir <SKILLS_DIR>
          Directory that contains skill folders. Requires an explicit single --agent

      --force
          Overwrite or remove an unmanaged Agent-First Mail skill at the target path

  -h, --help
          Print help (see a summary with '-h')
```

### afmail skill uninstall - Remove an afmail-managed Agent-First Mail skill

```text
Remove an afmail-managed Agent-First Mail skill

Usage: uninstall [OPTIONS]

Options:
      --agent <AGENT>
          Agent to manage. Defaults to all personal skill targets

          Possible values:
          - all:         Manage every agent that supports the requested scope
          - codex:       Manage the Codex skill under $CODEX_HOME/skills or .agents/skills
          - claude-code: Manage the Claude Code skill under ~/.claude/skills or .claude/skills
          - opencode:    Manage the opencode skill under ~/.config/opencode/skills or .opencode/skills

          [default: all]

      --scope <SCOPE>
          Skill scope. Project scope installs under the current project's skill directory

          Possible values:
          - personal: Install under the user-level skills directory
          - project:  Install under the current project's skills directory

          [default: personal]

      --skills-dir <SKILLS_DIR>
          Directory that contains skill folders. Requires an explicit single --agent

      --force
          Overwrite or remove an unmanaged Agent-First Mail skill at the target path

  -h, --help
          Print help (see a summary with '-h')
```

## afmail triage - Inspect the triage queue

```text
Inspect the triage queue

Usage: triage <COMMAND>

Commands:
  list  List compact untriaged message locators
  help  Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail triage list - List compact untriaged message locators

```text
List compact untriaged message locators

Usage: list

Options:
  -h, --help
          Print help
```

## afmail message - Operate on any local message id

```text
Operate on any local message id

Usage: message <COMMAND>

Commands:
  show        Show the full local message metadata, body text, and attachment metadata
  spam        Mark junk/phishing/malware/suspicious mail locally, show it under spam/, and queue a Junk move
  trash       Explicitly discard this message locally, show it under trash/, and queue a Trash move
  restore     Restore a message from spam, trash, or direct archive back to triage
  attachment  Fetch an attachment for this message
  help        Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail message show - Show the full local message metadata, body text, and attachment metadata

```text
Show the full local message metadata, body text, and attachment metadata

Usage: show <MESSAGE_ID>

Arguments:
  <MESSAGE_ID>
          Message id, for example message_inbox_607146690_22

Options:
  -h, --help
          Print help
```

### afmail message spam - Mark junk/phishing/malware/suspicious mail locally, show it under spam/, and queue a Junk move

```text
Mark junk/phishing/malware/suspicious mail locally, show it under spam/, and queue a Junk move

Usage: spam [OPTIONS] <MESSAGE_ID>

Arguments:
  <MESSAGE_ID>
          Message id, for example message_inbox_607146690_22

Options:
      --reason <REASON>
          Why this disposition is correct; required by default

  -h, --help
          Print help
```

### afmail message trash - Explicitly discard this message locally, show it under trash/, and queue a Trash move

```text
Explicitly discard this message locally, show it under trash/, and queue a Trash move

Usage: trash [OPTIONS] <MESSAGE_ID>

Arguments:
  <MESSAGE_ID>
          Message id, for example message_inbox_607146690_22

Options:
      --reason <REASON>
          Why this disposition is correct; required by default

  -h, --help
          Print help
```

### afmail message restore - Restore a message from spam, trash, or direct archive back to triage

```text
Restore a message from spam, trash, or direct archive back to triage

Usage: restore [OPTIONS] <MESSAGE_ID>

Arguments:
  <MESSAGE_ID>
          Message id, for example message_inbox_607146690_22

Options:
      --reason <REASON>
          Why this restore is correct; required by default

  -h, --help
          Print help
```

### afmail message attachment - Fetch an attachment for this message

```text
Fetch an attachment for this message

Usage: attachment <COMMAND>

Commands:
  fetch  Fetch one attachment by MIME part id, or all attachments when omitted
  help   Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

#### afmail message attachment fetch - Fetch one attachment by MIME part id, or all attachments when omitted

```text
Fetch one attachment by MIME part id, or all attachments when omitted

Usage: fetch <MESSAGE_ID> [PART_ID]

Arguments:
  <MESSAGE_ID>
          Message id, for example message_inbox_607146690_22

  [PART_ID]


Options:
  -h, --help
          Print help
```

## afmail case - Create a case or operate on an existing case ref

```text
Create a case or operate on an existing case ref

Usage: case <COMMAND>

Commands:
  create   Create a new case and return its stable UID/ref
  list     List compact active case locators
  show     Show a case's case.md (active or archived) without changing workspace state
  add      Add a message to this existing case
  move     Move this case to another group
  rename   Rename this active case's human-readable name without changing its UID
  notes    Show or edit active case notes
  archive  Archive this active case
  reopen   Reopen this case as active work without changing its tags
  tag      Add a case organization tag
  untag    Remove a case organization tag
  draft    Create, edit, validate, queue, or remove local case drafts
  merge    Merge another case into this case
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail case create - Create a new case and return its stable UID/ref

```text
Create a new case and return its stable UID/ref

Usage: create [OPTIONS] --name <NAME>

Options:
      --name <NAME>
          Human-readable case name used in case.md and the directory suffix

      --group <GROUP>
          Destination group. Defaults to the configured default group

      --message <MESSAGE>
          Optional first message to add to the case

      --summary <SUMMARY>
          Short summary for the first message

      --reason <REASON>
          Why this case is being created

  -h, --help
          Print help
```

### afmail case list - List compact active case locators

```text
List compact active case locators

Usage: list

Options:
  -h, --help
          Print help
```

### afmail case show - Show a case's case.md (active or archived) without changing workspace state

```text
Show a case's case.md (active or archived) without changing workspace state

Usage: show <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
  -h, --help
          Print help
```

### afmail case add - Add a message to this existing case

```text
Add a message to this existing case

Usage: add [OPTIONS] <CASE_REF> <MESSAGE_ID>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <MESSAGE_ID>
          Message id to add

Options:
      --summary <SUMMARY>
          Short summary for this message in the case

      --reason <REASON>
          Why this message belongs in this case; required by default

  -h, --help
          Print help
```

### afmail case move - Move this case to another group

```text
Move this case to another group

Usage: move <CASE_REF> <GROUP>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <GROUP>
          Destination group

Options:
  -h, --help
          Print help
```

### afmail case rename - Rename this active case's human-readable name without changing its UID

```text
Rename this active case's human-readable name without changing its UID

Usage: rename [OPTIONS] --name <NAME> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --name <NAME>
          New human-readable case name

      --reason <REASON>
          Why this name better represents the case; required by default

  -h, --help
          Print help
```

### afmail case notes - Show or edit active case notes

```text
Show or edit active case notes

Usage: notes <COMMAND>

Commands:
  show     Show notes markdown
  append   Append text to notes markdown
  replace  Replace notes markdown with text
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

#### afmail case notes show - Show notes markdown

```text
Show notes markdown

Usage: show <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
  -h, --help
          Print help
```

#### afmail case notes append - Append text to notes markdown

```text
Append text to notes markdown

Usage: append --text <TEXT> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --text <TEXT>
          Markdown text to append

  -h, --help
          Print help
```

#### afmail case notes replace - Replace notes markdown with text

```text
Replace notes markdown with text

Usage: replace --text <TEXT> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --text <TEXT>
          Markdown text to write

  -h, --help
          Print help
```

### afmail case archive - Archive this active case

```text
Archive this active case

Usage: archive [OPTIONS] <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --reason <REASON>
          Why this case is ready to archive; required by default

  -h, --help
          Print help
```

### afmail case reopen - Reopen this case as active work without changing its tags

```text
Reopen this case as active work without changing its tags

Usage: reopen [OPTIONS] <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --reason <REASON>
          Why this case should be reopened; required by default

  -h, --help
          Print help
```

### afmail case tag - Add a case organization tag

```text
Add a case organization tag

Usage: tag [OPTIONS] <CASE_REF> <TAG>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <TAG>
          Case organization tag

Options:
      --reason <REASON>
          Why this tag is useful; required by default

  -h, --help
          Print help
```

### afmail case untag - Remove a case organization tag

```text
Remove a case organization tag

Usage: untag [OPTIONS] <CASE_REF> <TAG>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <TAG>
          Case organization tag

Options:
      --reason <REASON>
          Why this tag should be removed; required by default

  -h, --help
          Print help
```

### afmail case draft - Create, edit, validate, queue, or remove local case drafts

```text
Create, edit, validate, queue, or remove local case drafts

Usage: draft <COMMAND>

Commands:
  new       Scaffold a new outbound draft (not a reply) in this case
  reply     Scaffold a reply draft to a message, prefilled and quoting the original
  change    Change an existing editable draft in place
  show      Show an existing draft in a review-friendly JSON shape
  validate  Validate a draft under the case drafts directory
  save      Queue this draft to be saved to the remote Drafts mailbox
  send      Queue this draft to be sent and recorded in the case after push succeeds
  attach    Copy or reference a file and add it to a draft's attachments
  remove    Remove a local draft and any queued outbound item for it
  help      Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

#### afmail case draft new - Scaffold a new outbound draft (not a reply) in this case

```text
Scaffold a new outbound draft (not a reply) in this case

Usage: new [OPTIONS] --to <TO> --subject <SUBJECT> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --to <TO>
          Recipient address. Repeatable

      --cc <CC>
          Cc address. Repeatable

      --subject <SUBJECT>
          Draft subject

      --body <BODY>
          Draft body text

      --body-file <BODY_FILE>
          Path to a file whose contents become the draft body

  -h, --help
          Print help
```

#### afmail case draft reply - Scaffold a reply draft to a message, prefilled and quoting the original

```text
Scaffold a reply draft to a message, prefilled and quoting the original

Usage: reply [OPTIONS] <CASE_REF> <MESSAGE_ID>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <MESSAGE_ID>
          Message id in this case to reply to

Options:
      --body <BODY>
          Draft body text. Replaces the default reply template when provided

      --body-file <BODY_FILE>
          Path to a file whose contents become the draft body

      --all
          Reply to all original recipients (To and Cc), not just the sender

  -h, --help
          Print help
```

#### afmail case draft change - Change an existing editable draft in place

```text
Change an existing editable draft in place

Usage: change [OPTIONS] <CASE_REF> <DRAFT_NAME>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <DRAFT_NAME>
          Draft markdown file under the case drafts directory

Options:
      --subject <SUBJECT>
          Replacement subject

      --to <TO>
          Replacement To list. Repeatable; when provided it replaces all To recipients

      --cc <CC>
          Replacement Cc list. Repeatable; when provided it replaces all Cc recipients

      --clear-cc
          Clear all Cc recipients

      --body <BODY>
          Replacement draft body text

      --body-file <BODY_FILE>
          Path to a file whose contents replace the draft body

  -h, --help
          Print help
```

#### afmail case draft show - Show an existing draft in a review-friendly JSON shape

```text
Show an existing draft in a review-friendly JSON shape

Usage: show <CASE_REF> <DRAFT_NAME>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <DRAFT_NAME>
          Draft markdown file under the case drafts directory

Options:
  -h, --help
          Print help
```

#### afmail case draft validate - Validate a draft under the case drafts directory

```text
Validate a draft under the case drafts directory

Usage: validate <CASE_REF> <DRAFT_NAME>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <DRAFT_NAME>
          Draft markdown file under the case drafts directory

Options:
  -h, --help
          Print help
```

#### afmail case draft save - Queue this draft to be saved to the remote Drafts mailbox

```text
Queue this draft to be saved to the remote Drafts mailbox

Usage: save <CASE_REF> <DRAFT_NAME>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <DRAFT_NAME>
          Draft markdown file under the case drafts directory

Options:
  -h, --help
          Print help
```

#### afmail case draft send - Queue this draft to be sent and recorded in the case after push succeeds

```text
Queue this draft to be sent and recorded in the case after push succeeds

Usage: send <CASE_REF> <DRAFT_NAME>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <DRAFT_NAME>
          Draft markdown file under the case drafts directory

Options:
  -h, --help
          Print help
```

#### afmail case draft attach - Copy or reference a file and add it to a draft's attachments

```text
Copy or reference a file and add it to a draft's attachments

Usage: attach <CASE_REF> <DRAFT_NAME> <PATH>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <DRAFT_NAME>
          Draft markdown file under the case drafts directory

  <PATH>
          Local file path to attach

Options:
  -h, --help
          Print help
```

#### afmail case draft remove - Remove a local draft and any queued outbound item for it

```text
Remove a local draft and any queued outbound item for it

Usage: remove [OPTIONS] <CASE_REF> <DRAFT_NAME>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

  <DRAFT_NAME>
          Draft markdown file under the case drafts directory

Options:
      --reason <REASON>
          Why this draft should be removed; required by default

  -h, --help
          Print help
```

### afmail case merge - Merge another case into this case

```text
Merge another case into this case

Usage: merge [OPTIONS] <CASE_REF> <OTHER_CASE_REF>

Arguments:
  <CASE_REF>
          Primary case ref

  <OTHER_CASE_REF>
          Case ref to merge into the primary case

Options:
      --reason <REASON>
          Why these cases should be merged; required by default

  -h, --help
          Print help
```

## afmail archive - Inspect and manage archived cases and direct-message archive categories

```text
Inspect and manage archived cases and direct-message archive categories

Usage: archive <COMMAND>

Commands:
  list     List compact archived cases and/or direct-message archive categories
  message  Operate on a direct-message archive category
  case     Operate on an archived case
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail archive list - List compact archived cases and/or direct-message archive categories

```text
List compact archived cases and/or direct-message archive categories

Usage: list [COMMAND]

Commands:
  cases     List compact archived cases
  messages  List compact direct-message archive categories
  help      Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

#### afmail archive list cases - List compact archived cases

```text
List compact archived cases

Usage: cases

Options:
  -h, --help
          Print help
```

#### afmail archive list messages - List compact direct-message archive categories

```text
List compact direct-message archive categories

Usage: messages

Options:
  -h, --help
          Print help
```

### afmail archive message - Operate on a direct-message archive category

```text
Operate on a direct-message archive category

Usage: message <COMMAND>

Commands:
  create       Create a direct-message archive category and optionally file one message
  add          File an existing message into this direct-message archive category
  show         Show archive category index and entries
  restore      Restore a direct archived message to triage
  move         Move a direct archived message to another archive category
  rename       Rename this archive category's human-readable name without changing its UID
  set-summary  Set or replace one direct archive entry summary
  notes        Show or edit archive category notes
  help         Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

#### afmail archive message create - Create a direct-message archive category and optionally file one message

```text
Create a direct-message archive category and optionally file one message

Usage: create [OPTIONS] --name <NAME>

Options:
      --name <NAME>
          Human-readable archive category name used in metadata and the directory suffix

      --message <MESSAGE>
          Optional message to immediately file into the new archive category

      --summary <SUMMARY>
          Required when --message is supplied

      --reason <REASON>
          Why this archive category is being created

  -h, --help
          Print help
```

#### afmail archive message add - File an existing message into this direct-message archive category

```text
File an existing message into this direct-message archive category

Usage: add [OPTIONS] --summary <SUMMARY> <ARCHIVE_REF> <MESSAGE_ID>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

  <MESSAGE_ID>
          Message id to file

Options:
      --summary <SUMMARY>
          Human/agent-authored summary for this archive entry

      --reason <REASON>
          Why this disposition is correct; required by default

  -h, --help
          Print help
```

#### afmail archive message show - Show archive category index and entries

```text
Show archive category index and entries

Usage: show <ARCHIVE_REF>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

Options:
  -h, --help
          Print help
```

#### afmail archive message restore - Restore a direct archived message to triage

```text
Restore a direct archived message to triage

Usage: restore [OPTIONS] <ARCHIVE_REF> <MESSAGE_ID>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

  <MESSAGE_ID>


Options:
      --reason <REASON>
          Why this message needs active triage again; required by default

  -h, --help
          Print help
```

#### afmail archive message move - Move a direct archived message to another archive category

```text
Move a direct archived message to another archive category

Usage: move [OPTIONS] <ARCHIVE_REF> <MESSAGE_ID> <NEW_ARCHIVE_REF>

Arguments:
  <ARCHIVE_REF>
          Source direct-message archive category ref

  <MESSAGE_ID>


  <NEW_ARCHIVE_REF>
          Destination archive category ref

Options:
      --reason <REASON>
          Why this category is better; required by default

  -h, --help
          Print help
```

#### afmail archive message rename - Rename this archive category's human-readable name without changing its UID

```text
Rename this archive category's human-readable name without changing its UID

Usage: rename [OPTIONS] --name <NAME> <ARCHIVE_REF>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

Options:
      --name <NAME>
          New human-readable archive name

      --reason <REASON>
          Why this name better represents the category; required by default

  -h, --help
          Print help
```

#### afmail archive message set-summary - Set or replace one direct archive entry summary

```text
Set or replace one direct archive entry summary

Usage: set-summary [OPTIONS] --summary <SUMMARY> <ARCHIVE_REF> <MESSAGE_ID>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

  <MESSAGE_ID>


Options:
      --summary <SUMMARY>


      --reason <REASON>
          Why this summary is useful; required by default

  -h, --help
          Print help
```

#### afmail archive message notes - Show or edit archive category notes

```text
Show or edit archive category notes

Usage: notes <COMMAND>

Commands:
  show     Show notes markdown
  append   Append text to notes markdown
  replace  Replace notes markdown with text
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

##### afmail archive message notes show - Show notes markdown

```text
Show notes markdown

Usage: show <ARCHIVE_REF>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

Options:
  -h, --help
          Print help
```

##### afmail archive message notes append - Append text to notes markdown

```text
Append text to notes markdown

Usage: append --text <TEXT> <ARCHIVE_REF>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

Options:
      --text <TEXT>
          Markdown text to append

  -h, --help
          Print help
```

##### afmail archive message notes replace - Replace notes markdown with text

```text
Replace notes markdown with text

Usage: replace --text <TEXT> <ARCHIVE_REF>

Arguments:
  <ARCHIVE_REF>
          Direct-message archive category ref: aYYYYMMDDNNN or aYYYYMMDDNNN-any-suffix

Options:
      --text <TEXT>
          Markdown text to write

  -h, --help
          Print help
```

### afmail archive case - Operate on an archived case

```text
Operate on an archived case

Usage: case <COMMAND>

Commands:
  show     Show the archived case
  restore  Restore an archived case to an active case group
  rename   Rename this archived case's human-readable name without changing its UID
  notes    Show or edit archived case notes
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

#### afmail archive case show - Show the archived case

```text
Show the archived case

Usage: show <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
  -h, --help
          Print help
```

#### afmail archive case restore - Restore an archived case to an active case group

```text
Restore an archived case to an active case group

Usage: restore [OPTIONS] --group <GROUP> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --group <GROUP>
          Active case group to restore into

      --reason <REASON>
          Why this case needs active attention again; required by default

  -h, --help
          Print help
```

#### afmail archive case rename - Rename this archived case's human-readable name without changing its UID

```text
Rename this archived case's human-readable name without changing its UID

Usage: rename [OPTIONS] --name <NAME> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --name <NAME>
          New human-readable case name

      --reason <REASON>
          Why this name better represents the case; required by default

  -h, --help
          Print help
```

#### afmail archive case notes - Show or edit archived case notes

```text
Show or edit archived case notes

Usage: notes <COMMAND>

Commands:
  show     Show notes markdown
  append   Append text to notes markdown
  replace  Replace notes markdown with text
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

##### afmail archive case notes show - Show notes markdown

```text
Show notes markdown

Usage: show <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
  -h, --help
          Print help
```

##### afmail archive case notes append - Append text to notes markdown

```text
Append text to notes markdown

Usage: append --text <TEXT> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --text <TEXT>
          Markdown text to append

  -h, --help
          Print help
```

##### afmail archive case notes replace - Replace notes markdown with text

```text
Replace notes markdown with text

Usage: replace --text <TEXT> <CASE_REF>

Arguments:
  <CASE_REF>
          Case ref: cYYYYMMDDNNN or cYYYYMMDDNNN-any-suffix

Options:
      --text <TEXT>
          Markdown text to write

  -h, --help
          Print help
```

## afmail render - Rebuild generated read views from local workspace state

```text
Rebuild generated read views from local workspace state

Usage: render <COMMAND>

Commands:
  refresh    Rebuild generated case and direct-message archive read views
  templates  Export built-in language templates, keeping existing files unless forced
  help       Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail render refresh - Rebuild generated case and direct-message archive read views

```text
Rebuild generated case and direct-message archive read views

Usage: refresh

Options:
  -h, --help
          Print help
```

### afmail render templates - Export built-in language templates, keeping existing files unless forced

```text
Export built-in language templates, keeping existing files unless forced

Usage: templates [OPTIONS]

Options:
      --force
          Overwrite existing workspace templates with built-in defaults

  -h, --help
          Print help
```

## afmail log - Inspect the workspace audit log

```text
Inspect the workspace audit log

Usage: log <COMMAND>

Commands:
  list     List recent audit events
  tail     Tail recent audit events as JSON data
  message  List events for one message id
  case     List events for one case id
  archive  List events for one archive category
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help
          Print help
```

### afmail log list - List recent audit events

```text
List recent audit events

Usage: list [OPTIONS]

Options:
      --limit <LIMIT>
          Maximum number of events to return

          [default: 50]

  -h, --help
          Print help
```

### afmail log tail - Tail recent audit events as JSON data

```text
Tail recent audit events as JSON data

Usage: tail

Options:
  -h, --help
          Print help
```

### afmail log message - List events for one message id

```text
List events for one message id

Usage: message <MESSAGE_ID>

Arguments:
  <MESSAGE_ID>


Options:
  -h, --help
          Print help
```

### afmail log case - List events for one case id

```text
List events for one case id

Usage: case <CASE_UID>

Arguments:
  <CASE_UID>


Options:
  -h, --help
          Print help
```

### afmail log archive - List events for one archive category

```text
List events for one archive category

Usage: archive <ARCHIVE_UID>

Arguments:
  <ARCHIVE_UID>


Options:
  -h, --help
          Print help
```