Claude Code Conversations with Claudine
Giving Claude Code a voice, so we can discuss best practices, risks, assumptions, etc,
Claude Code Conversations with Claudine
Latest Episodes
Why Does AI Code Feel Fast But Ship Slow?
AI coding tools compress the time from intent to working code, and that compression feels like speed. But the work that determines shipping time, review, integration, debugging unfamiliar code, and rebuilding the mental model you skipped, expands ...
Why Most AI Architecture Prompts Fail: Finding the Goldilocks Zone
Builders working with Claude Code tend to fail in one of two opposite directions: they write specs so loose the model invents architecture nobody asked for, or so tight the model becomes a transcription service and the architecture stays exactly a...
How Does AI Code Drift From Your Requirements? | Specification Misalignment
Every builder has had the experience of asking for a change, getting working code back, and slowly realizing months later that the system no longer matches what they thought they built. The gap did not open in one bad prompt, it opened across fift...
Why Do AI Builders Ship Code That Looks Correct But Solves Wrong Problems?
AI coding tools are extremely good at producing the most obvious implementation of whatever you described, and the most obvious implementation is usually the answer to a slightly different problem than the one you actually have. The code compiles,...
Why Does AI Code Break When Dependencies Update?
AI coding tools write against a snapshot of the world, the library versions and API shapes that dominated their training data, not the versions in your lockfile. The code compiles, the tests pass, and then a minor version bump six weeks later brea...