decapod 0.47.21

Decapod is the daemonless, local-first control plane that agents call on demand to align intent, enforce boundaries, and produce proof-backed completion across concurrent multi-agent work. 🦀
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
1950
1951
1952
1953
1954
1955
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.47.21]https://github.com/DecapodLabs/decapod/compare/v0.47.20...v0.47.21 - 2026-05-03

### Other

- soften expected gate failure output

## [0.47.20]https://github.com/DecapodLabs/decapod/compare/v0.47.19...v0.47.20 - 2026-05-03

### Added

- Add enhanced prompts for init
- Add language prompt to init questions

### Other

- Merge pull request #512 from DecapodLabs/agent/docs/readme-portability
- surface project context in agent entrypoints
- Add config.toml explanation in README
- Remove RPC instructions, keep init simple
- Document init questions and scaffold RPC flow
- Add Kilo to universal agent contract
- Simplify to lighter agent sentence
- Simplify integrations to comma-separated sentence
- Fix formatting in README.md
- Add Kilo and Agent Workbench Gaps section
- Sharpen README with portability and integration sections

## [0.47.19]https://github.com/DecapodLabs/decapod/compare/v0.47.18...v0.47.19 - 2026-05-03

### Added

- Auto version check and update on session acquire
- Auto version check and update on session acquire

### Other

- Merge pull request #510 from DecapodLabs/agent/feat/auto-version-update

## [0.47.18]https://github.com/DecapodLabs/decapod/compare/v0.47.17...v0.47.18 - 2026-05-03

### Added

- Add default configuration values in INCIDENT_RESPONSE.md

### Fixed

- Reference OVERRIDE.md instead of config.yaml
- Remove invalid .decapod/ reference in INCIDENT_RESPONSE.md

### Other

- Add 5 new constitution files for metrics, incident response, API design, release management, cost optimization
- Revise README for clarity and terminology updates
- add OVERRIDE.md section

## [0.47.17]https://github.com/DecapodLabs/decapod/compare/v0.47.16...v0.47.17 - 2026-05-03

### Other

- Update README for clarity and terminology changes
- add official description - daemonless local-first control plane
- fix prescription spelling
- full rewrite - killer positioning
- Update README to specify local state storage
- add context bounds + ETH Zurich reference
- constitution - 94 docs, entire software industry
- constitution embedded - user doesn't see it
- fix constitution structure
- fix constitution section - embedded not override
- add constitution section
- prescription README - install init done
- Update diagram in README for clarity
- alpha version - agents execute but dont verify
- Update governance loop diagram in README.md
- articulate why without namedrops
- rename hijack section - OVERRIDE.md interface
- finalize README - no comparisons, checksum updated
- *(readme)* rewrite - Docker/Rails moment category positioning
- *(readme)* governance loop diagram - minted fresh
- *(readme)* refine - agent defers to Decapod, not competes
- *(readme)* rewrite for category positioning

## [0.47.16]https://github.com/DecapodLabs/decapod/compare/v0.47.15...v0.47.16 - 2026-05-03

### Other

- Merge pull request #503 from DecapodLabs/feature/urgent-fixes

### Security

- replace unsafe env::set_var with OnceLock

## [0.47.15]https://github.com/DecapodLabs/decapod/compare/v0.47.14...v0.47.15 - 2026-05-03

### Added

- *(cli)* add infer command for inference context governance

### Fixed

- format and clippy fixes for infer commands

### Other

- Merge pull request #501 from DecapodLabs/feature/infer-commands
- fmt fix for long boolean expression
- *(readme)* add Inference Governance section

## [0.47.14]https://github.com/DecapodLabs/decapod/compare/v0.47.13...v0.47.14 - 2026-05-03

### Added

- *(ci)* add selective test automation

### Other

- Merge origin/master into feature/selective-test-automation

## [0.47.13]https://github.com/DecapodLabs/decapod/compare/v0.47.12...v0.47.13 - 2026-05-03

### Other

- *(init)* validate clean after fresh init

## [0.47.12]https://github.com/DecapodLabs/decapod/compare/v0.47.11...v0.47.12 - 2026-05-03

### Other

- share decapod binary across test jobs

## [0.47.11]https://github.com/DecapodLabs/decapod/compare/v0.47.10...v0.47.11 - 2026-05-02

### Other

- Improve init bootstrap validation and project creation
- Update README.md
- Update README.md

## [0.47.10]https://github.com/DecapodLabs/decapod/compare/v0.47.9...v0.47.10 - 2026-03-07

### Other

- move flake input to 25.11

## [0.47.9]https://github.com/DecapodLabs/decapod/compare/v0.47.8...v0.47.9 - 2026-03-07

### Other

- rewrite README tables in plain english

## [0.47.8]https://github.com/DecapodLabs/decapod/compare/v0.47.7...v0.47.8 - 2026-03-07

### Fixed

- make integration shard routing one-based
- use explicit integration shard labels in ci
- export sqlite runtime libs in nix shell

### Other

- use one-based integration shard matrix
- use one-based integration shard labels
- add optional nix dev shell and ci path

## [0.47.7]https://github.com/DecapodLabs/decapod/compare/v0.47.6...v0.47.7 - 2026-03-07

### Fixed

- use internal ulid helper in rpc tests
- stop auto-disabling container validation
- add lifetime annotations and suppress unused var warning
- resolve three build failures

### Other

- apply rustfmt formatting updates
- inline ulid/thiserror/rustc-hash, remove 7 direct deps
- replace regex with shared fancy-regex dep
- remove colored and rayon dependencies
- remove unused 'anyhow' from direct dependencies

## [0.47.6]https://github.com/DecapodLabs/decapod/compare/v0.47.3...v0.47.4 - 2026-03-07

### Fixed

- fixes\
## [0.47.5]https://github.com/DecapodLabs/decapod/compare/v0.47.4...v0.47.5 - 2026-03-07

### Other

- Merge pull request #478 from DecapodLabs/agent/unknown/todo-01kk3w-plus-6-1772886360
- Bump Rust to 1.91.1 and optimize cargo install speed

## [0.47.4]https://github.com/DecapodLabs/decapod/compare/v0.47.3...v0.47.4 - 2026-03-07
https://github.com/DecapodLabs/decapod/pull/480/conflict?name=Cargo.toml&ancestor_oid=1ef44710ac168673b8c4a38c4d6cb57566eaa2a2&base_oid=50932162f6a5d01e18a18c2c27671a54d5e6082a&head_oid=d18e26a8a021e05eb988ad43221cb1c97d8fb9f2
### Added

- embed ENGINEERING_EXCELLENCE.md and register in OVERRIDE template

### Other

- refactor constitution files to eliminate role-labeled Oracle sections
- expand the Oracle's Verdict deep into cloud, web, frontend, and methodology

## [0.47.3]https://github.com/DecapodLabs/decapod/compare/v0.47.2...v0.47.3 - 2026-03-07

### Other

- Strip stale container override during validate
- Self-heal stale container override markers
- Avoid override writes on protected host checkouts

## [0.47.2]https://github.com/DecapodLabs/decapod/compare/v0.47.1...v0.47.2 - 2026-03-07

### Other

- remove pre-merge drift gate (redundant, fragile)
- fix drift gate grep exit code under set -euo pipefail
- revert binary artifact approach, use Swatinem cache + 20 shards
- run health and golden-vectors in parallel with build
- run clippy in parallel with build (no longer needs artifact)
- build once, share artifact across 20 test shards + pre-merge drift gate

## [0.47.1]https://github.com/DecapodLabs/decapod/compare/v0.47.0...v0.47.1 - 2026-03-07

### Other

- Format validation changes
- Unblock workspace tests on auto-generated override
- Self-heal validate and add structured reports

## [0.47.0]https://github.com/DecapodLabs/decapod/compare/v0.46.4...v0.47.0 - 2026-03-07

### Fixed

- update Four Invariants Gate patterns to match normative AGENTS.md rewrite
- sync template_agents() with AGENTS.md normative content
- resolve CI test failures from merged branches
- silence dead_code and unused-variable clippy lints in contract/conformance tests
- update artifact manifest hash and add changelog entry for capsule fix

### Other

- Merge remote-tracking branch 'origin/docs/contracts-and-conformance' into agent/unknown/todo-01kk3r-1772874431
- Merge fix/release-capsule-empty-file into combined branch
- capture why-this-exists philosophy in README
- Add governed internalization artifacts

### Fixed

- tolerate empty capsule files in release check and manifest schema/interface validation

## [0.46.4]https://github.com/DecapodLabs/decapod/compare/v0.46.3...v0.46.4 - 2026-03-01

### Other

- uplift README with voice, edge, and plain-English agent-first framing

## [0.46.3]https://github.com/DecapodLabs/decapod/compare/v0.46.2...v0.46.3 - 2026-03-01

### Added

- add internalized context artifacts + activation-first README rewrite

### Fixed

- add changelog entry for schema/interface change, fix .decapod/ path in constitution doc
- apply rustfmt, fix contract alignment test, update artifact manifest hash

### Other

- release v0.46.2
- release v0.46.1

## [0.46.2]https://github.com/DecapodLabs/decapod/compare/v0.46.1...v0.46.2 - 2026-03-01

### Added

- add internalized context artifacts + activation-first README rewrite

### Fixed

- add changelog entry for schema/interface change, fix .decapod/ path in constitution doc
- apply rustfmt, fix contract alignment test, update artifact manifest hash

### Other

- release v0.46.1

## [0.46.1]https://github.com/DecapodLabs/decapod/compare/v0.46.0...v0.46.1 - 2026-02-28

### Added

- add internalized context artifacts + activation-first README rewrite

### Fixed

- add changelog entry for schema/interface change, fix .decapod/ path in constitution doc
- apply rustfmt, fix contract alignment test, update artifact manifest hash

### Added

- schema/interface: add `interfaces/INTERNALIZATION_SCHEMA.md` — internalized context artifact schema and lifecycle contract
- feat: add `decapod internalize` subsystem (create, attach, inspect) for governed context internalization artifacts

## [0.46.0]https://github.com/DecapodLabs/decapod/compare/v0.45.0...v0.46.0 - 2026-02-26

### Other

- Merge branch 'master' into agent/codex/test-01kjc4cm11smbmz1
- ship scaffold-v2 Ferrari project specs surface

### Added

- schema/interface: expand canonical project specs set to include `SEMANTICS.md`, `OPERATIONS.md`, and `SECURITY.md`
- docs/scaffold: scaffold-v2 project specs with adaptive topology/sequence diagrams, richer interface contracts, validation decision flow, and security/operations directives

### Changed

- validate: add architecture runtime/deployment section enforcement and conditional structure checks for semantics/operations/security specs
- docs/specs: upgrade Decapod's checked-in generated specs to industry-grade operational/security semantics with explicit proof surfaces

## [0.44.6]https://github.com/DecapodLabs/decapod/compare/v0.44.5...v0.44.6 - 2026-02-25

### Fixed

- update branch task ID extraction to support task_type_ prefix
- fix tests: use task_type prefix instead of deprecated R_ prefix
- replace legacy R_ ID prefix with test_ in test files
- formatting
- clippy in test files
- formatting and clippy
- clippy warnings
- handle missing task in test_todo_state_machine gracefully
- optimize spec_conformance tests and todo list default to open
- optimize spec_conformance tests and todo list default to open

### Other

- optimize with rustc-hash and inline hints
- update Rust version to 1.90 and edition to 2026
- 10 parallel shards for test execution with --test-threads=4
- run all integration tests in single runner with high parallelism

## [0.44.5]https://github.com/DecapodLabs/decapod/compare/v0.44.4...v0.44.5 - 2026-02-25

### Added

- Interlock - preflight + impact for predictive governance

### Fixed

- make preflight/impact work without worktree, skip git gates in tests
- test setup with worktree
- test error handling

### Other

- fmt

## [0.44.4]https://github.com/DecapodLabs/decapod/compare/v0.44.3...v0.44.4 - 2026-02-25

### Added

- Interlock - preflight + impact for predictive governance

## [0.44.3]https://github.com/DecapodLabs/decapod/compare/v0.44.2...v0.44.3 - 2026-02-25

### Fixed

- allowlist kcr trend artifact and hard-shard integration tests

### Other

- add generated decapod specs and fix interop evidence test paths

## [0.44.2]https://github.com/DecapodLabs/decapod/compare/v0.44.1...v0.44.2 - 2026-02-25

### Other

- consolidate repo - remove stale templates/, docs/, project/, crates/, artifacts/ dirs

## [0.44.1]https://github.com/DecapodLabs/decapod/compare/v0.44.0...v0.44.1 - 2026-02-25

### Added

- add skills section to .decapod/README.md template

### Other

- run cargo fmt
- move skill cards from .decapod/governance/skills to .decapod/skills

## [0.44.0]https://github.com/DecapodLabs/decapod/compare/v0.43.1...v0.44.0 - 2026-02-25

### Added

- move broker sockets to data and add noninteractive spec seeds
- add release lineage-sync command
- auto-stamp release provenance policy lineage
- require lineage consistency across release manifests
- enforce release provenance policy lineage
- auto-bind written capsules into workunit state refs
- require workunit state_ref binding for capsule lineage
- enforce capsule policy lineage at workunit promotion gate
- policy-bound deterministic context capsule issuance

### Fixed

- reconcile merged capsule schema and lineage artifacts

### Other

- run cargo fmt after rebase
- fail release check on lineage capsule drift
- harden capsule verification and RPC fail-closed coverage
- pin JIT capsule policy verification flow

## [0.43.1]https://github.com/DecapodLabs/decapod/compare/v0.43.0...v0.43.1 - 2026-02-25

### Added

- add allowed_next_ops to context.resolve RPC response

## [0.43.0]https://github.com/DecapodLabs/decapod/compare/v0.42.1...v0.43.0 - 2026-02-25

### Added

- add migration for one_shot column
- add one_shot column to TODO schema

### Fixed

- update migration sequence test to expect 400
- add one_shot field to test TodoCommand::Add initializers

### Other

- run cargo fmt
- run cargo fmt
- bump integration test runners from 8 to 10

## [0.42.1]https://github.com/DecapodLabs/decapod/compare/v0.42.0...v0.42.1 - 2026-02-25

### Added

- add meta-skills for agent-decapod and human-agent interaction

## [0.42.0]https://github.com/DecapodLabs/decapod/compare/v0.41.2...v0.42.0 - 2026-02-25

### Added

- *(init)* dynamic scaffolds and validate-driven living spec tasks
- *(init)* upgrade generated specs templates for day-0 onboarding

### Fixed

- enforce strict broker bypass and skip user-store schema gate

### Other

- split hot integration shards 3 and 5 into 7 and 8
- rename integration shard labels to 1..6
- Merge remote-tracking branch 'origin/master' into agent/unknown/todo-r_01kj8n80zyk4qamd4v8g4bpfe0-1771964773
- enforce versioned db schema checks and ordered migrations
- scale plan metadata and catalog for long histories
- run migration-script tests only when sql migrations change
- add version-gated ledger and generated version counter
- scope worktree and branch naming by todo hash
- auto-upgrade legacy todo ids on activate/startup
- typed ids with hash ledger and refresh decapod readme template
- normalize .decapod layout and enforce startup workspace flow
- split slow integration shards 3 and 4 into subshards
- stabilize group broker test and relocate project support dirs

### Other

- todo: migrate task IDs to typed format `<type4>_<16-alnum>`, add task `hash` field, and align workspace scope checks
- migration: add startup SQL-backed todo ID rewrite for legacy stores (DB + events log) on first post-upgrade activation
- cli: add `decapod activate` as explicit first-run activation surface to trigger migrations/bootstrap
- migration: add version-gated migration registry (`min_version` + `target_version`) with applied ledger at `.decapod/generated/migrations/applied.json`
- init: seed `.decapod/generated/version_counter.json` and track binary-version transitions for safe migration orchestration
- ci: add PR-only migration script test gate that runs migration tests only when `src/core/sql/*.sql` changes
- migration: add sequence/scope metadata, duplicate/order guards, and generated migration catalog for long-horizon schema evolution
- validate: add database schema version gate to verify versioned DBs match this decapod binary expectations
- schema/interface: update TODO schema contract with typed ID and hash invariants
- docs/scaffold: refresh `.decapod/README.md` template with Decapod harness positioning and canonical control-plane layout

## [0.41.2]https://github.com/DecapodLabs/decapod/compare/v0.41.1...v0.41.2 - 2026-02-24

### Added

- *(broker)* enforce strict must-route guard for routed mutators
- *(broker)* add request-id dedupe ledger and recovery retry semantics
- *(broker)* add ephemeral CLI-boundary group broker runtime

### Other

- fix clippy useless_vec in broker concurrency env setup
- *(broker)* isolate session state per worker to avoid concurrent parse race
- *(broker)* harden concurrent mutator gate with idempotent retry
- format strict broker guard test
- shard integration tests across 4 runners and fix lint regressions
- *(broker)* add protocol mismatch and phase crash injection proof harness
- *(broker)* add phase hooks and crash-safe lease recovery primitives
- *(broker)* add concurrency and dedupe proof tests
- *(sqlite)* tighten routed mutator boundaries and brokered init paths
- *(broker)* allow ephemeral local cross-process socket mode

## [0.41.1]https://github.com/DecapodLabs/decapod/compare/v0.41.0...v0.41.1 - 2026-02-24

### Other

- *(intent)* enforce intent->context->spec flow across runtime and constitution
- *(readme)* encode intent->context->spec flow in hero line
- *(init)* elevate interactive form to product-grade prompt flow
- *(init)* polish interactive setup prompts and summary

## [0.41.0]https://github.com/DecapodLabs/decapod/compare/v0.40.1...v0.41.0 - 2026-02-23

### Added

- *(init)* move project specs to generated path and deepen architecture scaffold

### Fixed

- *(readme)* link constitution note to core DECAPOD doc
- *(readme)* correct constitution directory link
- *(readme)* route constitution via docs show and sync sha
- *(release)* sync README sha manifest to pinned readme
- *(readme)* route constitution access via docs show
- *(readme)* route constitution access through decapod docs show
- *(release)* refresh README artifact manifest hash
- *(validate)* allow tracked generated specs artifacts and normalize specs naming

### Other

- *(entrypoints)* allow README link to core constitution doc
- *(readme)* restore pinned readme wording
- *(readme)* restore README from eaa291ea
- Update README.md
- *(specs)* standardize generated specs paths to uppercase filenames

## [0.40.1]https://github.com/DecapodLabs/decapod/compare/v0.40.0...v0.40.1 - 2026-02-23

### Other

- bump Cargo.toml

## [0.40.0]https://github.com/DecapodLabs/decapod/compare/v0.39.0...v0.40.0 - 2026-02-23

### Other

- consolidate unreleased changelog for init/specs kernel rollout
- hardcode canonical local specs contract and runtime mapping
- separate intent purpose from architecture direction
- enforce intent-first scaffolding and config anchors
- infer repo context into config and add interactive init with mode
- scaffold project specs docs with diagram style and architecture gate

### Other

- init: add `decapod init with` (alias `wtih`) and `.decapod/config.toml` schema-backed repo context
- init: infer repo purpose/architecture signals from prominent files (`README.md`, manifests, repo surfaces)
- init: scaffold canonical local project specs set (`specs/README.md`, `intent.md`, `architecture.md`, `interfaces.md`, `validation.md`)
- init: support diagram style selection (`ascii` or `mermaid`) for architecture topology generation
- init: seed local specs content from inferred/config context and enforce intent-purpose vs architecture-direction separation
- validate: add project config + canonical local specs gates, including placeholder rejection for intent/architecture content
- runtime: surface canonical local specs context and constitution mapping from `decapod rpc --op context.resolve`

### Other

- schema/interface: add `interfaces/PROJECT_SPECS.md` and register claim `claim.project_specs.canonical_set_enforced`
- schema/interface: bind hardcoded local specs registry in binary to constitution dependencies and control-plane sequencing docs

## [0.39.0]https://github.com/DecapodLabs/decapod/compare/v0.38.13...v0.39.0 - 2026-02-23

### Other

- remove teammate legacy aliases; keep aptitude as sole subsystem name
- rename teammate subsystem to aptitude and elevate README feature list
- Merge master and resolve AGENTS entrypoint conflicts

### Other

- schema/interface: rename aptitude subsystem across CLI/docs/contracts as canonical memory surface

## [0.38.13]https://github.com/DecapodLabs/decapod/compare/v0.38.12...v0.38.13 - 2026-02-23

### Other

- Merge master into PR branch and resolve README/gitignore conflicts
- templatize decapod gitignore policy and surface shared skills memory

### Other

- schema/interface: merge eval + gitignore governance surface updates and keep deterministic whitelist enforcement in init/validate

## [0.38.12]https://github.com/DecapodLabs/decapod/compare/v0.38.11...v0.38.12 - 2026-02-23

### Other

- Refresh README hash in artifact manifest after feature-line split
- Refine feature descriptions in README
- Resolve CHANGELOG merge conflict with master release entries
- Add eval kernel to README feature checklist
- Add eval governance kernel and tighten decapod artifact allowlists

### Other

- schema/interface: add eval governance kernel interfaces, claims, and deterministic proof tests

## [0.38.11]https://github.com/DecapodLabs/decapod/compare/v0.38.10...v0.38.11 - 2026-02-23

### Other

- Tighten generated artifact whitelist and simplify gitignore
- Enforce generated artifact whitelist in init and validate
- Keep generated Dockerfile tracked while ignoring runtime outputs
- Ignore .decapod/generated runtime artifacts

## [0.38.10]https://github.com/DecapodLabs/decapod/compare/v0.38.9...v0.38.10 - 2026-02-23

### Other

- Merge pull request #412 from DecapodLabs/agent/unknown/todo-r_01kj562ftvxcpe8def7gqb8vgb-plus-3-1771863796
- Harden sqlite contention paths and stabilize validate/release checks

## [0.38.9]https://github.com/DecapodLabs/decapod/compare/v0.38.8...v0.38.9 - 2026-02-23

### Other

- add top feature checklist with interfaces pointer

## [0.38.8]https://github.com/DecapodLabs/decapod/compare/v0.38.7...v0.38.8 - 2026-02-23

### Other

- add phase 4 regression and daemonless lifecycle gates

## [0.38.7]https://github.com/DecapodLabs/decapod/compare/v0.38.6...v0.38.7 - 2026-02-23

### Other

- enforce promotion firewall for procedural knowledge writes

## [0.38.6]https://github.com/DecapodLabs/decapod/compare/v0.38.5...v0.38.6 - 2026-02-23

### Fixed

- fix clippy filter-next lint in knowledge promotion test

### Other

- add knowledge promotion firewall ledger command

## [0.38.5]https://github.com/DecapodLabs/decapod/compare/v0.38.4...v0.38.5 - 2026-02-23

### Other

- split fmt clippy and core integration test jobs
- stabilize context capsule CLI tests under CI gates
- add rpc context capsule query operation
- add optional context capsule artifact writes
- add deterministic context capsule query command

## [0.38.4]https://github.com/DecapodLabs/decapod/compare/v0.38.3...v0.38.4 - 2026-02-23

### Other

- enforce workunit verified gate before publish
- *(workunit)* enforce proof recording and status transitions
- *(workunit)* add attach-spec/state and proof-plan primitives

## [0.38.3]https://github.com/DecapodLabs/decapod/compare/v0.38.2...v0.38.3 - 2026-02-23

### Other

- *(workunit)* add init/get/status manifest commands
- add optional artifact integrity gates for new kernel schemas
- *(schema)* add deterministic workunit and context capsule models

## [0.38.2]https://github.com/DecapodLabs/decapod/compare/v0.38.1...v0.38.2 - 2026-02-23

### Other

- *(contract)* pin phase-0 kernel interfaces and embed new docs

## [0.38.1]https://github.com/DecapodLabs/decapod/compare/v0.38.0...v0.38.1 - 2026-02-23

### Other

- Harden daemonless validate startup and lock resilience

## [0.38.0]https://github.com/DecapodLabs/decapod/compare/v0.37.11...v0.38.0 - 2026-02-23

### Added

- *(context)* add scoped constitution query via docs search and rpc

### Other

- *(release)* refresh README hash in artifact manifest
- *(entrypoints)* use file-specific headers for agent files
- move agent guidance out of source comments
- split human README from agent entrypoint contracts

## [0.37.11]https://github.com/DecapodLabs/decapod/compare/v0.37.10...v0.37.11 - 2026-02-23

### Fixed

- *(broker)* replace per-DB mutex with SqlitePool for read/write separation
- *(release)* update README.md sha256 in artifact manifest

### Other

- Merge pull request #383 from DecapodLabs/fix/sqlite-pool-contention
- run rustfmt for sqlite pool contention changes
- update crate description and categories

## [0.37.10]https://github.com/DecapodLabs/decapod/compare/v0.37.9...v0.37.10 - 2026-02-23

### Other

- *(readme)* remove agent-ops line and neutralize research callout

## [0.37.9]https://github.com/DecapodLabs/decapod/compare/v0.37.8...v0.37.9 - 2026-02-22

### Other

- bump OVERRIDE

## [0.37.8]https://github.com/DecapodLabs/decapod/compare/v0.37.7...v0.37.8 - 2026-02-22

### Other

- Merge pull request #377 from DecapodLabs/agent/unknown/todo-r_01kj2c415q0y14c6e1fzncdtjd-1771753844
- Stabilize chaos replay under concurrent todo add contention
- Fix constitution path validators for architecture directives
- Keep architecture directives constitution-only
- Add architecture foundations artifact gate for governed execution

## [0.37.7]https://github.com/DecapodLabs/decapod/compare/v0.37.6...v0.37.7 - 2026-02-22

### Other

- Merge pull request #374 from DecapodLabs/agent/unknown/todo-r_01kj23h4vkwzjs7mze87xkv737-plus-1-1771744859
- stabilize plan-governed test harness under canonical worktree gate
- remove literal non-canonical path examples from agent entrypoints
- relax canonical-worktree checks for validate and negative path mentions
- enforce canonical decapod workspaces and startup sequence

## [0.37.6]https://github.com/DecapodLabs/decapod/compare/v0.37.5...v0.37.6 - 2026-02-22

### Added

- beautify CLI output for init and validate commands

### Fixed

- ignore broken verify_mvp test (fails on master)

## [0.37.5]https://github.com/DecapodLabs/decapod/compare/v0.37.4...v0.37.5 - 2026-02-22

### Other

- Trim runtime deps by replacing chrono/colored/which

### Added

- *(interfaces)* add plan-governed execution contract and typed pushback markers

### Changed

- *(governance)* enforce plan approval/proof-hook readiness in execute/publish/validate paths

## [0.37.4]https://github.com/DecapodLabs/decapod/compare/v0.37.3...v0.37.4 - 2026-02-22

### Added

- *(release)* ship 5 one-shot governance gates for intent convergence

### Other

- Merge pull request #362 from DecapodLabs/agent/unknown/r-01kj1n50qe34xkvq6c30s28np9

## [0.37.3]https://github.com/DecapodLabs/decapod/compare/v0.37.2...v0.37.3 - 2026-02-22

### Added

- auto-acquire session in ensure_session_valid (entrypoint funnel)

## [0.37.2]https://github.com/DecapodLabs/decapod/compare/v0.37.1...v0.37.2 - 2026-02-22

### Other

- Rename LEVIE_GOVERNANCE_AUDIT.md to GOVERNANCE_AUDIT.md
- Update and rename docs/LEVIE_GOVERNANCE_AUDIT.md to constitution/docs/GOVERNANCE_AUDIT.md

## [0.37.1]https://github.com/DecapodLabs/decapod/compare/v0.37.0...v0.37.1 - 2026-02-22

### Other

- *(audit)* map Levie capability buckets to kernel primitives

## [0.37.0]https://github.com/DecapodLabs/decapod/compare/v0.36.7...v0.37.0 - 2026-02-22

### Other

- Merge pull request #354 from DecapodLabs/agent/unknown/rustify-init-docker-1771726265

## [0.36.7]https://github.com/DecapodLabs/decapod/compare/v0.36.6...v0.36.7 - 2026-02-22

### Added

- add intent refinement requirement for agents

### Fixed

- sync templates with AGENTS.md golden rules

## [0.36.6]https://github.com/DecapodLabs/decapod/compare/v0.36.5...v0.36.6 - 2026-02-22

### Other

- *(container)* model Dockerfile template as schema component

## [0.36.5]https://github.com/DecapodLabs/decapod/compare/v0.36.4...v0.36.5 - 2026-02-22

### Other

- *(constitution)* tighten foundation demands and liveness contract

## [0.36.4]https://github.com/DecapodLabs/decapod/compare/v0.36.3...v0.36.4 - 2026-02-21

### Added

- *(validate)* enforce commit-often dirty file limit

### Other

- Merge pull request #347 from DecapodLabs/agent/unknown/commit-often-mandate-1771715984
- *(validate)* add commit-often gate integration coverage

## [0.36.3]https://github.com/DecapodLabs/decapod/compare/v0.36.2...v0.36.3 - 2026-02-21

### Other

- Merge remote-tracking branch 'origin/master' into agent/unknown/entrypoint-constitution-docs-1771714881

## [0.36.2]https://github.com/DecapodLabs/decapod/compare/v0.36.1...v0.36.2 - 2026-02-21

### Added

- add map and lcm events to flight-recorder timeline
- add worktree exemption for schema commands
- add safe validate diagnostics and contention gate

### Other

- Merge pull request #341 from DecapodLabs/agent/unknown/validate-diagnostics-dedicated-1771713199
- update todo.md with completed items
- Merge branch 'master' into agent/unknown/validate-diagnostics-dedicated-1771713199
- enforce validate diagnostics sanitization

## [0.36.1]https://github.com/DecapodLabs/decapod/compare/v0.36.0...v0.36.1 - 2026-02-21

### Added

- prune stale worktree config sections routinely

### Other

- Merge pull request #342 from DecapodLabs/agent/unknown/worktree-config-cleanup-1771713742

## [0.36.0]https://github.com/DecapodLabs/decapod/compare/v0.35.8...v0.36.0 - 2026-02-21

### Added

- wire LCM/Map into capabilities, schema, and add rebuild command

### Fixed

- KCR trend - all enforced claims have gate mappings (KCR=1.0)
- fmt, clippy, and update KCR trend for new LCM claims

### Other

- Merge pull request #339 from DecapodLabs/feat/lcm-work

## [0.35.8]https://github.com/DecapodLabs/decapod/compare/v0.35.7...v0.35.8 - 2026-02-21

### Added

- add safe validate diagnostics and contention gate

## [0.35.7]https://github.com/DecapodLabs/decapod/compare/v0.35.6...v0.35.7 - 2026-02-21

### Added

- implement Phase 3 LCM + Map operators

## [0.35.6]https://github.com/DecapodLabs/decapod/compare/v0.35.5...v0.35.6 - 2026-02-21

### Other

- Rename PLAYBOOK.md to docs/PLAYBOOK.md

## [0.35.5]https://github.com/DecapodLabs/decapod/compare/v0.35.4...v0.35.5 - 2026-02-21

### Other

- Remove top-level non-essential docs and purge non-Rust shim code

## [0.35.4]https://github.com/DecapodLabs/decapod/compare/v0.35.3...v0.35.4 - 2026-02-21

### Added

- add coplayer policy tightening gate + instruction stack hardening

### Fixed

- update artifact manifest SHA256 for README.md

## [0.35.3]https://github.com/DecapodLabs/decapod/compare/v0.35.2...v0.35.3 - 2026-02-21

### Other

- Speed up RPC suite and split CI test load
- Harden validate lock handling and RPC suite contention retries

## [0.35.2]https://github.com/DecapodLabs/decapod/compare/v0.35.1...v0.35.2 - 2026-02-21

### Added

- enforce provenance manifest validity in release check
- harden control-plane contracts and bound validate termination

### Fixed

- keep CLAUDE template in sync with root entrypoint
- *(ci)* raise health validate timeout and refresh KCR trend
- satisfy CLAUDE line gate and self-heal knowledge schema in validate

### Other

- drop non-rust SDK shims and keep interop rust-native

## [0.35.1]https://github.com/DecapodLabs/decapod/compare/v0.35.0...v0.35.1 - 2026-02-21

### Added

- harden control-plane contracts and bound validate termination

### Fixed

- keep CLAUDE template in sync with root entrypoint
- *(ci)* raise health validate timeout and refresh KCR trend
- satisfy CLAUDE line gate and self-heal knowledge schema in validate

## [0.35.0]https://github.com/DecapodLabs/decapod/compare/v0.34.0...v0.35.0 - 2026-02-21

### Other

- remove unused code and deprecated modules

## [0.34.0]https://github.com/DecapodLabs/decapod/compare/v0.33.0...v0.34.0 - 2026-02-21

### Other

- remove unused code and add tests

## [0.33.0]https://github.com/DecapodLabs/decapod/compare/v0.32.4...v0.33.0 - 2026-02-21

### Added

- add secret redaction, gatekeeper CLI, and doctor preflight checks

### Other

- Merge pull request #315 from DecapodLabs/feat/oneshot-batch

## [0.32.4]https://github.com/DecapodLabs/decapod/compare/v0.32.3...v0.32.4 - 2026-02-20

### Other

- remove plankton bash hooks - keep multi-language validation

## [0.32.3]https://github.com/DecapodLabs/decapod/compare/v0.32.2...v0.32.3 - 2026-02-20

### Added

- add Dockerfile template that explodes to .decapod/generated/

## [0.32.2]https://github.com/DecapodLabs/decapod/compare/v0.32.1...v0.32.2 - 2026-02-20

### Added

- add multi-language tooling gates and config protection to validation

## [0.32.1]https://github.com/DecapodLabs/decapod/compare/v0.32.0...v0.32.1 - 2026-02-20

### Added

- integrate Plankton write-time enforcement into Decapod

## [0.32.0]https://github.com/DecapodLabs/decapod/compare/v0.31.1...v0.32.0 - 2026-02-20

### Other

- added to ai category
- Fix clippy warnings and simplify lineage validation
- Add ObligationNode test suite
- Phase 1: Enforce derived completion in ObligationNode

## [0.31.1]https://github.com/DecapodLabs/decapod/compare/v0.31.0...v0.31.1 - 2026-02-20

### Added

- *(core)* implement ObligationNode governance-native primitive

### Other

- Merge pull request #303 from DecapodLabs/feat/R_01KHY5A2HF1F8P50FQZB2HBC2A/obligation-primitive
- Add architecture memo: filesystem task abstraction decision

## [0.31.0]https://github.com/DecapodLabs/decapod/compare/v0.30.0...v0.31.0 - 2026-02-20

### Fixed

- *(verify)* strip elapsed timing from validate output before hashing
- revert schema determinism parallelization to avoid shared state conflicts

### Other

- fix fmt and clippy warnings, fix test compilation
- *(validate)* add --verbose timing and parallelize expensive gates

## [0.30.0]https://github.com/DecapodLabs/decapod/compare/v0.29.6...v0.30.0 - 2026-02-20

### Added

- *(core)* implement gatekeeper safety gates and co-player inference

### Other

- fix formatting in coplayer and gatekeeper

## [0.29.6]https://github.com/DecapodLabs/decapod/compare/v0.29.5...v0.29.6 - 2026-02-20

### Fixed

- speed up validation

### Other

- add governance kernel architecture review (codex_analysis.md)

## [0.29.5]https://github.com/DecapodLabs/decapod/compare/v0.29.4...v0.29.5 - 2026-02-20

### Added

- improve trace/docs integration and validation workflows

### Fixed

- guard knowledge migration against concurrent table creation race

### Other

- Merge branch 'master' into agent/unknown/task-1771394863

## [0.29.4]https://github.com/DecapodLabs/decapod/compare/v0.29.3...v0.29.4 - 2026-02-19

### Other

- update CHANGELOG with packaging fix

### Fixed

- *(packaging)* add missing symlink target and exclude test fixtures from crate

## [0.29.3]https://github.com/DecapodLabs/decapod/compare/v0.29.2...v0.29.3 - 2026-02-19

### Added

- *(state_commit)* implement STATE_COMMIT v1 protocol

## [0.29.2]https://github.com/DecapodLabs/decapod/compare/v0.29.1...v0.29.2 - 2026-02-19

### Added

- *(claims)* add KCR evidence gate test and trend baseline

### Fixed

- use rfind instead of filter().next_back() for clippy

## [0.29.1]https://github.com/DecapodLabs/decapod/compare/v0.29.0...v0.29.1 - 2026-02-19

### Added

- *(broker,flight-recorder)* crash consistency and governance timeline

## [0.29.0]https://github.com/DecapodLabs/decapod/compare/v0.28.12...v0.29.0 - 2026-02-19

### Added

- harvest knowledge lifecycle, broker audit, health cleanup, and CI health from stale branches

### Fixed

- *(ci)* skip git worktree gates in CI health job
- *(tests)* resolve agent_rpc_suite flake and chaos_replay IOERR
- *(federation)* eliminate drift window and downgrade determinism gates

## [0.28.12]https://github.com/DecapodLabs/decapod/compare/v0.28.11...v0.28.12 - 2026-02-18

### Fixed

- *(workspace)* implement publish and wire --container flag for constitution parity

## [0.28.11]https://github.com/DecapodLabs/decapod/compare/v0.28.10...v0.28.11 - 2026-02-18

### Other

- Fix typo in README.md

## [0.28.10]https://github.com/DecapodLabs/decapod/compare/v0.28.9...v0.28.10 - 2026-02-18

### Other

- Update README with constitution info and typo fix
- *(readme)* add research links, proof-gate example, context philosophy

## [0.28.9]https://github.com/DecapodLabs/decapod/compare/v0.28.8...v0.28.9 - 2026-02-18

### Other

- *(readme)* add research links, proof-gate example, validate output

## [0.28.8]https://github.com/DecapodLabs/decapod/compare/v0.28.7...v0.28.8 - 2026-02-18

### Fixed

- *(clippy)* resolve denied lint violations
- *(tests)* acquire session before validate in rpc suite
- *(validate)* require session password before worktree gate

### Other

- *(fmt)* apply rustfmt-normalized ordering and wrapping

## [0.28.7]https://github.com/DecapodLabs/decapod/compare/v0.28.6...v0.28.7 - 2026-02-18

### Fixed

- *(ci)* restore session-first gating and thin-file threshold alignment
- *(ci)* stabilize rpc suite and ensure schema init on startup
- *(tests)* harden schema bootstrap and parallel trace assertions
- resolve -D warnings failures blocking tests

### Other

- Merge branch 'master' into agent/codex/r-01khqw3kvtbtpzmchtq7s9azmn
- *(gitignore)* ignore generated awareness artifacts
- *(constitution)* add testing and ci/cd methodology guides

## [0.28.6]https://github.com/DecapodLabs/decapod/compare/v0.28.5...v0.28.6 - 2026-02-18

### Other

- *(release)* add manual dispatch mode for release-pr

## [0.28.5]https://github.com/DecapodLabs/decapod/compare/v0.28.4...v0.28.5 - 2026-02-18

### Other

- *(readme)* add Ko-fi callout, emoji polish, and linked file refs

## [0.28.4]https://github.com/DecapodLabs/decapod/compare/v0.28.3...v0.28.4 - 2026-02-18

### Other

- Enforce constitutional bootstrap and todo-scoped worktrees

## [0.28.3]https://github.com/DecapodLabs/decapod/compare/v0.28.2...v0.28.3 - 2026-02-18

### Added

- enforce strict agent dependency and automated initialization

## [0.28.2]https://github.com/DecapodLabs/decapod/compare/v0.28.1...v0.28.2 - 2026-02-18

### Added

- implement mandatory todo enforcement for agents

## [0.28.1]https://github.com/DecapodLabs/decapod/compare/v0.28.0...v0.28.1 - 2026-02-18

### Added

- enforce worktree path and add to .gitignore

## [0.28.0]https://github.com/DecapodLabs/decapod/compare/v0.27.0...v0.28.0 - 2026-02-18

### Added

- implement on-demand container sandboxing for worktrees
- enable agent-invoked git worktrees and isolation mandates

## [0.27.0]https://github.com/DecapodLabs/decapod/compare/v0.26.3...v0.27.0 - 2026-02-18

### Added

- promote todo to core control plane

## [0.26.3]https://github.com/DecapodLabs/decapod/compare/v0.26.2...v0.26.3 - 2026-02-18

### Added

- automate database normalization and entrypoint blending

## [0.26.2]https://github.com/DecapodLabs/decapod/compare/v0.26.1...v0.26.2 - 2026-02-18

### Added

- consolidate fragmented sqlite databases into 4 core bins

## [0.26.1]https://github.com/DecapodLabs/decapod/compare/v0.26.0...v0.26.1 - 2026-02-18

### Added

- implement local trace sink and binding transparency

## [0.26.0]https://github.com/DecapodLabs/decapod/compare/v0.25.5...v0.26.0 - 2026-02-17

### Added

- implement deterministic agent-facing RPC interface

## [0.25.5]https://github.com/DecapodLabs/decapod/compare/v0.25.4...v0.25.5 - 2026-02-17

### Other

- fresh .decapod init

## [0.25.4]https://github.com/DecapodLabs/decapod/compare/v0.25.3...v0.25.4 - 2026-02-17

### Other

- *(init)* make init instant by deferring DB setup to runtime

## [0.25.3]https://github.com/DecapodLabs/decapod/compare/v0.25.2...v0.25.3 - 2026-02-17

### Other

- *(readme)* clarify platform-agnostic operating model
- *(readme)* add high-level ascii architecture model
- *(readme)* sharpen positioning and differentiate value
- *(readme)* hint assurance model and capability surface
- *(readme)* remove demo gif and tighten public positioning

## [0.25.2]https://github.com/DecapodLabs/decapod/compare/v0.25.1...v0.25.2 - 2026-02-17

### Added

- *(init)* bootstrap schema-only stores and enforce workspace isolation

### Other

- release v0.25.1

## [0.25.1]https://github.com/DecapodLabs/decapod/compare/v0.25.0...v0.25.1 - 2026-02-17

### Added

- *(init)* bootstrap schema-only stores and enforce workspace isolation

## [0.25.0]https://github.com/DecapodLabs/decapod/compare/v0.24.0...v0.25.0 - 2026-02-17

### Added

- *(governance)* add weights and balances enforcement

### Other

- remove health check job
- add DECAPOD_SESSION_PASSWORD env var for health check
- add DECAPOD_CONTAINER=1 for GitHub Actions health check

## [0.24.0]https://github.com/DecapodLabs/decapod/compare/v0.23.10...v0.24.0 - 2026-02-17

### Other

- *(release)* set release-plz allow_dirty to boolean
- *(release)* allow runtime session dirt in release-plz

## [0.23.10]https://github.com/DecapodLabs/decapod/compare/v0.23.9...v0.23.10 - 2026-02-17

### Other

- README.md and lingering file catchup

## [0.23.9]https://github.com/DecapodLabs/decapod/compare/v0.23.8...v0.23.9 - 2026-02-17

### Other

- ignore session files in .decapod/generated/sessions/
- route policy.rs DB access through DbBroker

## [0.23.8]https://github.com/DecapodLabs/decapod/compare/v0.23.7...v0.23.8 - 2026-02-17

### Fixed

- add agent.session.cleanup event handler in todo rebuild

## [0.23.7]https://github.com/DecapodLabs/decapod/compare/v0.23.6...v0.23.7 - 2026-02-17

### Other

- automated container updates

## [0.23.6]https://github.com/DecapodLabs/decapod/compare/v0.23.5...v0.23.6 - 2026-02-17

### Other

- Add demo image to README

## [0.23.5]https://github.com/DecapodLabs/decapod/compare/v0.23.4...v0.23.5 - 2026-02-17

### Other

- verify docker workspace

## [0.23.4]https://github.com/DecapodLabs/decapod/compare/v0.23.3...v0.23.4 - 2026-02-17

### Added

- persist worktrees, auto-push branch, create PR after container

### Fixed

- remove needless as_deref calls

## [0.23.3]https://github.com/DecapodLabs/decapod/compare/v0.23.2...v0.23.3 - 2026-02-17

### Added

- code factory
- code factory

## [0.23.2]https://github.com/DecapodLabs/decapod/compare/v0.23.1...v0.23.2 - 2026-02-17

### Added

- code factory
- code factory
- code factory
- code factory
- code factory
- code factory
- code factory
- code factory
- code factory
- code factory

## [0.23.1]https://github.com/DecapodLabs/decapod/compare/v0.23.0...v0.23.1 - 2026-02-17

### Added

- workspace enhancements

## [0.23.0]https://github.com/DecapodLabs/decapod/compare/v0.22.0...v0.23.0 - 2026-02-16

### Other

- Change output filename and clean up commands
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- *(demo)* refresh decapod VHS GIF with local build
- README uplift
- rebake vhs demo in /tmp/studio
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift
- README uplift

## [0.22.0]https://github.com/DecapodLabs/decapod/compare/v0.21.0...v0.22.0 - 2026-02-16

### Added

- gitainers fixes
- gitainers fixes
- gitainers fixes
- gitainers fixes
- gitainers fixes
- gitainers fixes
- gitainers fixes

### Other

- sync container plugin state
- move readiness docs to dev/ (force track) and remove docs dir
- *(readiness)* record final ship decision with timestamp and provenance
- *(readiness)* finalize production-readiness package and proof gate

## [0.21.0]https://github.com/DecapodLabs/decapod/compare/v0.20.0...v0.21.0 - 2026-02-16

### Added

- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- gitainers
- require gh auth for automated PR creation
- gitainers
- gitainers
- gitainers

## [0.20.0]https://github.com/DecapodLabs/decapod/compare/v0.19.5...v0.20.0 - 2026-02-16

### Added

- x
- x
- x
- x
- x
- x
- x
- x
- x
- x
- x
- x
- x

### Other

- Merge branch 'master' into ahr/auto-schema-migrate

## [0.19.5]https://github.com/DecapodLabs/decapod/compare/v0.19.4...v0.19.5 - 2026-02-16

### Added

- gitainer envs

## [0.19.4]https://github.com/DecapodLabs/decapod/compare/v0.19.3...v0.19.4 - 2026-02-16

### Added

- gitainer envs
- gitainer envs
- gitainer envs

## [0.19.3]https://github.com/DecapodLabs/decapod/compare/v0.19.2...v0.19.3 - 2026-02-16

### Added

- task dependencies

## [0.19.2]https://github.com/DecapodLabs/decapod/compare/v0.19.1...v0.19.2 - 2026-02-16

### Added

- task dependencies
- task dependencies
- task dependencies
- task dependencies

## [0.19.1]https://github.com/DecapodLabs/decapod/compare/v0.19.0...v0.19.1 - 2026-02-16

### Added

- x

## [0.19.0]https://github.com/DecapodLabs/decapod/compare/v0.18.0...v0.19.0 - 2026-02-16

### Added

- x
- x
- x

## [0.18.0]https://github.com/DecapodLabs/decapod/compare/v0.17.0...v0.18.0 - 2026-02-16

### Added

- autonomy lineage loop
- autonomy lineage loop

## [0.17.0]https://github.com/DecapodLabs/decapod/compare/v0.16.1...v0.17.0 - 2026-02-16

### Added

- reflex
- reflex
- reflex
- reflex
- reflex

## [0.16.1]https://github.com/DecapodLabs/decapod/compare/v0.16.0...v0.16.1 - 2026-02-16

### Added

- broker enhancements
- broker enhancements
- broker enhancements
- broker enhancements
- broker enhancements
- broker enhancements

### Other

- 60+ validation checks
- validation improvement
- Merge branch 'master' into ahr/control-plane-broker-risk-lineage

## [0.16.0]https://github.com/DecapodLabs/decapod/compare/v0.15.2...v0.16.0 - 2026-02-16

### Added

- *(control-plane)* stabilize broker envelope and add chaos replay gate

## [0.15.2]https://github.com/DecapodLabs/decapod/compare/v0.15.1...v0.15.2 - 2026-02-16

### Added

- human-in-the-loop
- human-in-the-loop

## [0.15.1]https://github.com/DecapodLabs/decapod/compare/v0.15.0...v0.15.1 - 2026-02-16

### Added

- todo trust grants
- todo trust grants

## [0.15.0]https://github.com/DecapodLabs/decapod/compare/v0.14.1...v0.15.0 - 2026-02-16

### Added

- better todo verification
- better todo verification
- better todo verification

## [0.14.1]https://github.com/DecapodLabs/decapod/compare/v0.14.0...v0.14.1 - 2026-02-16

### Added

- better testing

## [0.14.0]https://github.com/DecapodLabs/decapod/compare/v0.13.0...v0.14.0 - 2026-02-16

### Added

- constitutional control surface optimizations
- constitutional control surface optimizations
- constitutional control surface optimizations
- constitutional control surface optimizations
- constitutional control surface optimizations

## [0.13.0]https://github.com/DecapodLabs/decapod/compare/v0.12.1...v0.13.0 - 2026-02-15

### Added

- better updates

## [0.12.1]https://github.com/DecapodLabs/decapod/compare/v0.12.0...v0.12.1 - 2026-02-15

### Added

- decision queries
- decision queries
- decision queries
- decision queries
- decision queries
- decision queries
- decision queries
- decision queries

## [0.12.0]https://github.com/DecapodLabs/decapod/compare/v0.11.2...v0.12.0 - 2026-02-15

### Added

- additional fixes
- additional fixes
- additional fixes
- additional fixes
- additional fixes
- additional fixes
- additional fixes

### Other

- fix 429 crates.io backoff

## [0.11.2]https://github.com/DecapodLabs/decapod/compare/v0.11.1...v0.11.2 - 2026-02-15

### Other

- init clarification

## [0.11.1]https://github.com/DecapodLabs/decapod/compare/v0.11.0...v0.11.1 - 2026-02-15

### Other

- fmt

## [0.11.0]https://github.com/DecapodLabs/decapod/compare/v0.10.0...v0.11.0 - 2026-02-15

### Added

- *(todo)* implement multi-agent task ownership system (v0.10.0)

## [0.10.0]https://github.com/DecapodLabs/decapod/compare/v0.9.0...v0.10.0 - 2026-02-15

### Added

- todo and federation determinism

## [0.9.0]https://github.com/DecapodLabs/decapod/compare/v0.8.1...v0.9.0 - 2026-02-15

### Added

- federation
- federation

## [0.8.1]https://github.com/DecapodLabs/decapod/compare/v0.8.0...v0.8.1 - 2026-02-15

### Added

- knowledge graph
- knowledge graph

## [0.8.0]https://github.com/DecapodLabs/decapod/compare/v0.7.0...v0.8.0 - 2026-02-15

### Added

- multi-agent todo
- multi-agent todo schema

### Fixed

- *(schemas)* satisfy clippy doc comment spacing
- *(todo)* resolve CI fmt and duplicate type errors

### Other

- Merge branch 'master' into ahr/work

## [0.7.0]https://github.com/DecapodLabs/decapod/compare/v0.6.9...v0.7.0 - 2026-02-15

### Added

- multi-user schema
- mult-agent

## [0.6.9]https://github.com/DecapodLabs/decapod/compare/v0.6.8...v0.6.9 - 2026-02-15

### Other

- Contributing doc

## [0.6.8]https://github.com/DecapodLabs/decapod/compare/v0.6.7...v0.6.8 - 2026-02-15

### Added

- MEMORY + KNOWLEDGE refinement

## [0.6.7]https://github.com/DecapodLabs/decapod/compare/v0.6.6...v0.6.7 - 2026-02-15

### Added

- control surface opacity

## [0.6.6]https://github.com/DecapodLabs/decapod/compare/v0.6.5...v0.6.6 - 2026-02-15

### Added

- validation override for updates
- validation override for updates

## [0.6.5]https://github.com/DecapodLabs/decapod/compare/v0.6.4...v0.6.5 - 2026-02-15

### Added

- source code restructure
- constitution cleanup

### Other

- apply rustfmt module ordering

## [0.6.4]https://github.com/DecapodLabs/decapod/compare/v0.6.3...v0.6.4 - 2026-02-15

### Other

- entrypoint
- fix formatting in validate.rs
- entrypoint
- entrypoint

## [0.6.3]https://github.com/DecapodLabs/decapod/compare/v0.6.2...v0.6.3 - 2026-02-15

### Other

- improve release workflow to sync version file with Cargo.toml

## [0.6.2]https://github.com/DecapodLabs/decapod/compare/v0.6.1...v0.6.2 - 2026-02-14

### Other

- improve release workflow to sync version file with Cargo.toml

## [0.6.1]https://github.com/DecapodLabs/decapod/compare/v0.6.0...v0.6.1 - 2026-02-14

### Fixed

- clippy redundant closure warning

### Other

- fix import ordering for cargo fmt
- fix import ordering for CI formatting
- fix formatting and update release workflow
- finalizing versioning
- finalizing versioning
- finalizing versioning

## [0.6.0]https://github.com/DecapodLabs/decapod/compare/v0.5.2...v0.6.0 - 2026-02-14

### Other

- fixing versioning
- fixing versioning
- README
- README

## [0.5.2]https://github.com/DecapodLabs/decapod/compare/v0.5.1...v0.5.2 - 2026-02-14

### Other

- README
- REAME

## [0.5.1]https://github.com/DecapodLabs/decapod/compare/v0.5.0...v0.5.1 - 2026-02-14

### Added

- enhancements
- enhancements

## [0.5.0]https://github.com/DecapodLabs/decapod/compare/v0.4.0...v0.5.0 - 2026-02-14

### Added

- restructure constitution with proper architectural layers

### Fixed

- update validation to check for methodology/ARCHITECTURE.md instead of specs/ARCHITECTURE.md

## [0.4.0]https://github.com/DecapodLabs/decapod/compare/v0.3.3...v0.4.0 - 2026-02-14

### Added

- add `decapod qa gatling` command with native Rust test harness

### Other

- Merge pull request #110 from DecapodLabs/ahr/work
- fix rustfmt formatting in lib.rs
- add CLI gatling test and full regression audit

## [0.3.3]https://github.com/DecapodLabs/decapod/compare/v0.3.2...v0.3.3 - 2026-02-14

### Other

- stop managing CODEX.md in init cleanup lists

## [0.3.2]https://github.com/DecapodLabs/decapod/compare/v0.3.1...v0.3.2 - 2026-02-14

### Added

- **Task claiming and release**: New `decapod todo claim` and `decapod todo release` commands enable agents to claim tasks for active work, preventing coordination conflicts
- **Smart auto-assignment by category**: When creating tasks, system automatically assigns them to agents already working in the same category (inferred from title/tags)
- **Task assignment tracking**: Added `assigned_to` and `assigned_at` fields to task schema for visibility into who's working on what
- **Category-based agent routing**: Tasks are intelligently routed to the appropriate agent based on category affinity and existing work allocation

### Changed

- Bumped TODO schema version to 7 with automatic migration
- Enhanced task.add events with category inference and auto-assignment metadata
- Updated Task struct and all SQL queries to include assignment fields

## [0.3.1]https://github.com/DecapodLabs/decapod/compare/v0.3.0...v0.3.1 - 2026-02-14

### Other

- Merge pull request #101 from DecapodLabs/ahr/work

## [0.3.0]https://github.com/DecapodLabs/decapod/compare/v0.2.2...v0.3.0 - 2026-02-14

### Added

- consolidate CLI migration into grouped command architecture
- add summary and autonomy subcommands to health module

### Fixed

- update CI workflow to use new health summary command
- resolve CI regressions for verify fmt, schema test, and watcher command
- resolve clippy manual_map warning in verify.rs

### Other

- update README subsystems section with new CLI structure
- run cargo fmt for formatting consistency
- update constitution with new CLI command structure

## [0.2.2]https://github.com/DecapodLabs/decapod/compare/v0.2.1...v0.2.2 - 2026-02-14

### Added

- lock down entrypoint correctness and add verification subsystem

### Other

- run cargo fmt for formatting consistency

## [0.2.1]https://github.com/DecapodLabs/decapod/compare/v0.2.0...v0.2.1 - 2026-02-13

### Added

- deploy all 5 agent entrypoints and enforce 4 invariants
- rewrite agent entrypoints as engineering organization metaphor

### Fixed

- rewrite agent entrypoints as thin routing shims

### Other

- untrack generated entrypoint files
- run cargo fmt for consistent formatting

## [0.2.0]https://github.com/DecapodLabs/decapod/compare/v0.1.18...v0.2.0 - 2026-02-13

### Added

- [**breaking**] migrate to release-plz for automated releases
- autotag
- autotag
- autotag
- autotag
- autotag
- autotag
- autotag
- readme screenshots
- autotag
- autotag
- autotag
- autotag
- readme video
- readme video
- readme video
- readme video
- autotag
- ui, todo, etc
- readme video

### Fixed

- use GitHub App token for PR creation
- correct auto-tag and push-tag workflow sequence
- add push-tag for bump PR merge
- remove auto-PR creation, push branch+tag for manual merge

### Other

- reset version to 0.1.18 (last published on crates.io)
- reset version to 0.1.19 for release-plz
- update Cargo.lock for v0.1.19
- bump version to v0.1.19
- add GitHub App setup instructions for auto-tag workflow
- Update Cargo.toml
- bump version to v0.1.19
- Update Cargo.toml
- bump version to v0.1.19
- bump version to v0.1.19
- bump version to v0.1.19
- bump version to v0.1.19