Getting into Flow State with Agentic Coding

https://news.ycombinator.com/rss Hits: 2
Summary

I recently found myself in a deep state of flow while coding — the kind where time melts away and you gain real clarity about the software you’re building. The difference this time: I was using Claude Code primarily. If my recent posts are any indication, I’ve been experimenting a lot with AI coding — not just with toy side projects, but high-stakes production code for my day job. I have a flow that I think works pretty well. I’m documenting it here as a way to hone my own process and, hopefully, benefit others as well. set the stage plan with the agent (no really 🤮) spawn your agents verify and refactor the final review Many of my friends and colleagues are understandably skeptical about AI’s role in development. That’s ok. That’s actually good. We should be skeptical of anything that’s upending our field with such ferociousness. We just shouldn’t be cynical. Step 0: Set the stage You know what’ll definitely get you out of the flow? Having to constantly repeat basic instructions to your agent. "This is an Android app that does X, using the Y architecture…" "When styling the front end web client, only use tailwind css v4…" "Use `make test` to run a single test; `make tests` to run the entire test suite…" "To build the app without running lint use `make`…" … These are all very important instructions that you shouldn’t have to repeat to your agent every single time. Invest a little upfront in your master ai instructions file. It makes a big difference and gets you up and coding quickly with any agent. trivial to get started with claude /init these days Of course, I also recommend consolidating your ai instructions to a single source of truth, so you’re not locked in with any single vendor. Step 1: Plan with the Agent I won’t lie. The idea of this step did not exactly spark joy for me. There are times where I plan my code out in a neat list, but rarely. More often than not, I peruse the code, formulate the plan in my head and let the code guide me. Yeah, that didn’t wo...

First seen: 2025-07-27 00:17

Last seen: 2025-07-27 01:17