Migration Guide
Step 1: Analyze
Before transpiling, analyze your codebase:- CORE certified (Φ_c = 1): Pure functions — will transpile perfectly
- CONTRACT certified: Functions with I/O or side effects — will transpile with runtime adapters
- Unliftable: Functions that can’t be represented in PCD — require manual review
Step 2: Transpile
Step 3: Verify
Check the generated code:Step 4: Iterate
For functions that didn’t transpile:- Simplify the source function
- Extract pure logic from side effects
- Re-run
brikc transpile

