All significant architecture and project decisions.
Data source: Supabase — migrated 3 March 2026.
# Formal decisions (DEC-001 to DEC-P03, DEC-011)
python3 -c "from einvoicing_db import *; list_formal_decisions()"
python3 -c "from einvoicing_db import *; get_formal_decision('DEC-P01')"
# Meeting decisions (MD-001 to MD-090)
python3 -c "from einvoicing_db import *; list_meeting_decisions()"
python3 -c "from einvoicing_db import *; list_meeting_decisions(category='Country-FR')"
python3 -c "from einvoicing_db import *; list_meeting_decisions(status='Superseded')"
python3 -c "from einvoicing_db import *; get_meeting_decision('MD-050')"
# Add new
python3 -c "from einvoicing_db import *; add_formal_decision('DEC-012', 'Decision title', choice='Option A', date='2026-03-04')"
python3 -c "from einvoicing_db import *; add_meeting_decision('MD-091', date='2026-03-04', category='Architecture', decision='...')"
formal_decisions (14 rows), meeting_decisions (90 rows)/home/jc/temp/einvoicing_db.pySee Architecture Reference for the canonical architecture. See Actions Log for action items.