
Elixir Mentor George Millo on Agentic Coding
14 snips
Mar 22, 2026 George Millo, creator of Learn Phoenix Live View and Gauntlet AI alumnus, is an Elixir educator and engineer focused on AI-first workflows. He discusses agentic coding realities like verification debt, planning before prompting, and working in small self-contained PRs. He explores Elixir and the BEAM as natural fits for agent architectures and warns about security risks when giving AI tools codebase access.
AI Snips
Chapters
Transcript
Episode notes
Plan Before You Prompt
- Plan thoroughly before prompting so you and the LLM share a clear mental model of the feature.
- George outlines architecture, edge cases, and file locations with Codex/Claude before asking the model to implement changes.
Verification Debt Is The New Risk
- Verification debt grows when your mental model lags behind AI-generated code.
- George warns that cognitive gaps lead to unsafe or incorrect systems if you let the AI run ahead without checks.
Use Tests As Safety Rails Not Checkboxes
- Use tests and constraints as rails to prevent the AI from hacking around requirements.
- George cautions against naive test-first prompts because LLMs may craft superficial tests unless you verify their substance.
