Introduces the 'coding agent sandwich' pattern for building GenAI-based development workflows. The pattern layers plain old code (POC) as the top orchestrator, LLM invocations as the filling for non-deterministic tasks, and deterministic tools as the bottom slice. Illustrated through the `implement plan` workflow in the open-source `idea-to-code` project, which uses TDD to turn a generated plan into Git commits. The core principle: use deterministic code whenever possible and invoke LLMs only for tasks that genuinely require probabilistic reasoning, such as generating commit messages, fixing CI failures, or responding to PR comments. The architecture is described as fractal — tools in the bottom slice can themselves be sandwiches if they incorporate LLM calls.