frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Getting into Flow State with Agentic Coding

https://kau.sh/blog/agentic-coding-flow-state/
44•vortex_ape•7h ago

Comments

aswegs8•7h ago
Will this be the way of working for the next 10x engineers? Or will all of this be available for more inexperienced developers? Anything seems possible at this point.
kevindamm•7h ago
I disagree that you can reach what I would call a flow state with such a degree of non-participation but I entirely agree that planning first makes execution better, for both humans and agents.
williamcotton•7h ago
Perhaps you don’t reach a flow state but why assume your experiences are the same as others?
kevindamm•7h ago
It's a matter of definition, a flow state is hitting peak performance without attending to the details of your actions, fluidly and without delays, at a task that in any normal situation would be considered complex and difficult.

If you know the feeling from performance or from trance-like coding sessions, there's no mapping of that to the use of agents as described in this article. It's not that I don't achieve it, it's that using agents doesn't have the depth of technique or immediacy of reaction needed to be worthy of anyone reaching a proper flow state with it.

I feel like we've already corrupted the meaning of vibe now, do we have to corrupt the meaning of flow state too?

williamcotton•6h ago
I know the feeling from hours long guitar jam sessions. I have definitely gotten there with some recent projects using Claude Code.
kevindamm•6h ago
Would you mind sharing an example project?
williamcotton•6h ago
I was harassed the last time I shared something, but oh well, here is a work in progress DSL:

https://github.com/williamcotton/webpipe

And a work in progress article about it:

https://williamcotton.com/articles/introducing-web-pipe

kevindamm•5h ago
I'm just curious, I don't intend to harass anyone. Are you considering including the prompts in the published article?
williamcotton•5h ago
I was thinking I would do a writeup about the development process in another article and including prompts seems likely in that case.
bicx•4h ago
I think it’s just different than flow state you experience with traditional coding. I agree that if you’re just entering a single prompt at a time and waiting for it to finish, there’s no way you can enter flow state. However, if you are orchestrating multiple agents and using spare mental bandwidth to debug and plan next steps, then you have the ingredients for flow state. It’s a continual flow of strategizing, evaluating, going in deep to manually handle a hard issue, and then returning to high-level thinking.

I’m 16 years into my career, build some fairly complex production systems, and definitely enjoyed flow state in normal coding. I’m still figuring out a rhythm with Claude Code, but flow state is certainly achievable.

qingcharles•7h ago
I can't reach flow with agent coding because as soon as I set it running I flip over to something else and come back later.

I think this is a problem with the current agents, though. If it responded immediately with its ideas and code then I wouldn't flip away and could stay present.

panarky•6h ago
>> non-participation

> flip over to something else

A flow state is possible with 100% focus at any level of abstraction.

If you just "flip over" to HN while the agent thinks, then you're not 100% focused.

But if you're managing three agents at the same time on the same codebase, and while Agent 2 is thinking you "flip over" to Agent 3, you're still fully participating, just at a higher level of abstraction.

Philpax•5h ago
I would like to believe this, but in practice, the context switch involves purging my mental working state, which drags me out of the flow state. I'm not sure how to solve this, but I imagine that the context I switch to should be as close as possible to the one I started with - the problem then is that the agents might trample over each other.
TZubiri•4h ago
Right, same deal as if you were running multiple requests over the network, you need to parallelize them instead of idling while you wait for the network to complete.
mrtesthah•6h ago
[flagged]
qingcharles•3h ago
The agent is stuck doing something for multiple minutes. Am I supposed to just watch a spinner? ┐(´ー`)┌
tomhow•1h ago
Please avoid swipes like this from comments on HN.

https://news.ycombinator.com/newsguidelines.html

runnr_az•7h ago
Just keep pulling the slot machine
semessier•6h ago
separate contexts for dev/test case development/documentation?
satisfice•6h ago
Unless a tester reports about this, I can’t consider trusting this. People produce bad work in flow states, as easily as good work.

Doe-eyed self-reporting is not credible.

physix•5h ago
I like the planning bit, though.
snambi•5h ago
Looks like he generated a lot of code and dumped it somewhere.
000ooo000•4h ago
None of this stuff is remotely impressive from an engineering perspective. You pay a service to provide code for you. That's existed for a while now.

s/(agentic|llm|vibe) coding/outsourcing/g

godelski•3h ago
I don't think I'll ever be able to enter a flow state with Coding Agents. It just doesn't fit my flow.

To give a relatable analogy, it's like how it's hard to hit a flow when working with compiled languages and where you're far enough you have to start compiling. If it is a fast compile, there's no time to get into the state (think like when you're a dumb junior print statement debugging C++ code as your only weapon). If it is long and for some reason you can't do incremental building then you might be able to do something like reviewing other areas, reading docs, writing docs, working on the call graph structure, or something else. Usually I can stay in flow here (but never when print statement debugging!). The medium time might be the worst. Sometimes there's a magic sweet spot but too often it makes distractions easy. You know you don't have enough time to do anything serious but it's too much time to just watch.

The extra burden I have with the LLMs is that it's kinda like working with someone but not. Working with a person we can formulate the design and get a good understanding of what things should look like, we start planning for edge cases and challenge ourselves to make sure we have the right model. We then go program our parts, meet back up, and debrief. Things will change but it'll have a similar structure. When this happens we both have a fairly good understanding of everything. But with the LLM, I have to be extra vigilant. It will lie to me, it makes mistakes that are difficult to find or notice (just because it compiles and just because it runs doesn't mean it's right... only very junior programmers think that), and most importantly, it doesn't have a good model of the program.

I expect a lot of people will push back on that last one. You can give it all the lines of code, you can even talk to it and explain, but it still won't get that good world model. FFS we program because natural language is so messy[0]. It's not trying to interpret what I mean, finding out what I want, but just follows directions. It doesn't innovate on its own (though it can draw from some similar sources [1]). Like the terminal, it doesn't second guess and just goes along with it. Worse, it does do cheery faced, praising you all along the way while it lies about what it did. If a human did that we'd call them evil. I won't call them evil because a machine is a machine, it has no desires and isn't intending to lie.

They work fine for small stuff, Repetitive things, or even when you're rapid testing, but that's a very small portion of coding. I can't rely on it to do anything serious. But many of these things can be handled in other ways. Is the repetitive work? You're a programmer, anything repetitive can be resolved with classic automation.

Worst of all, agents take away the most enjoyable part of coding and leave me with the worst part. I'd rather debug my code than someone else's. Debugging my own code is not fun, debugging a junior's code is exhausting

[0] https://www.cs.utexas.edu/~EWD/transcriptions/EWD06xx/EWD667...

[1] That is not so much the impressiveness of the machine but more the lack of impressiveness of myself

Chemical process produces critical battery metals with no waste

https://spectrum.ieee.org/nmc-battery-aspiring-materials
52•stubish•2h ago•3 comments

Fast and cheap bulk storage: using LVM to cache HDDs on SSDs

https://quantum5.ca/2025/05/11/fast-cheap-bulk-storage-using-lvm-to-cache-hdds-on-ssds/
55•todsacerdoti•3h ago•13 comments

Smallest particulate matter sensor revolutionizes air quality measurement

https://www.bosch-sensortec.com/news/worlds-smallest-particulate-matter-sensor-bmv080.html
30•Liftyee•3h ago•4 comments

Resizable structs in Zig

https://tristanpemble.com/resizable-structs-in-zig/
112•rvrb•9h ago•48 comments

A low power 1U Raspberry Pi cluster server for inexpensive colocation

https://github.com/pawl/raspberry-pi-1u-server
16•LorenDB•3d ago•6 comments

Show HN: QuickTunes: Apple Music player for Mac with iPod vibes

https://furnacecreek.org/quicktunes/
72•albertru90•7h ago•19 comments

16colo.rs: ANSI/ASCII art archive

https://16colo.rs/
24•debo_•3d ago•5 comments

How we rooted Copilot

https://research.eye.security/how-we-rooted-copilot/
290•uponasmile•14h ago•110 comments

Low cost mmWave 60GHz radar sensor for advanced sensing

https://www.infineon.com/part/BGT60TR13C
60•teleforce•3d ago•22 comments

Purple Earth hypothesis

https://en.wikipedia.org/wiki/Purple_Earth_hypothesis
213•colinprince•3d ago•58 comments

Personal aviation is about to get interesting (2023)

https://www.elidourado.com/p/personal-aviation
82•JumpCrisscross•7h ago•81 comments

Rust running on every GPU

https://rust-gpu.github.io/blog/2025/07/25/rust-on-every-gpu/
524•littlestymaar•20h ago•176 comments

Paul Dirac and the religion of mathematical beauty (2011) [video]

https://www.youtube.com/watch?v=jPwo1XsKKXg
56•magnifique•8h ago•4 comments

Coronary artery calcium testing can reveal plaque in arteries, but is underused

https://www.nytimes.com/2025/07/26/health/coronary-artery-calcium-heart.html
69•brandonb•9h ago•57 comments

What went wrong for Yahoo

https://dfarq.homeip.net/what-went-wrong-for-yahoo/
156•giuliomagnifico•12h ago•153 comments

Getting decent error reports in Bash when you're using 'set -e'

https://utcc.utoronto.ca/~cks/space/blog/programming/BashGoodSetEReports
101•zdw•3d ago•31 comments

Cable Bacteria Are Living Batteries

https://www.asimov.press/p/cable-bacteria
5•mailyk•3d ago•0 comments

The natural diamond industry is getting rocked. Thank the lab-grown variety

https://www.cbc.ca/news/business/lab-grown-diamonds-1.7592336
184•geox•18h ago•224 comments

Teach Yourself Programming in Ten Years (1998)

https://norvig.com/21-days.html
72•smartmic•9h ago•24 comments

Where are vacation homes located in the US?

https://www.construction-physics.com/p/where-are-vacation-homes-located
88•rufus_foreman•12h ago•69 comments

Tinyio: A tiny (~200 line) event loop for Python

https://github.com/patrick-kidger/tinyio
68•tehnub•4d ago•14 comments

Torqued Accelerator Using Radiation from the Sun (Tars) for Interstellar Payload

https://arxiv.org/abs/2507.17615
47•virgildotcodes•8h ago•4 comments

Arvo Pärt at 90

https://www.theguardian.com/music/2025/jul/24/the-god-of-small-things-celebrating-arvo-part-at-90
68•merrier•9h ago•19 comments

Janet: Lightweight, Expressive, Modern Lisp

https://janet-lang.org
19•veqq•5h ago•2 comments

Shallow water is dangerous too

https://www.jefftk.com/p/shallow-water-is-dangerous-too
110•surprisetalk•3d ago•68 comments

Test Results for AMD Zen 5

https://www.agner.org/forum/viewtopic.php?t=287&start=10
220•matt_d•12h ago•42 comments

Large ancient Hawaiian petroglyphs uncovered by waves on Oahu

https://www.sfgate.com/hawaii/article/hawaii-petroglyphs-uncovered-20780579.php
80•c420•4d ago•23 comments

Asyncio: A library with too many sharp corners

https://sailor.li/asyncio
87•chubot•7h ago•67 comments

Open Sauce is a confoundingly brilliant Bay Area event

https://www.jeffgeerling.com/blog/2025/open-sauce-confoundingly-brilliant-bay-area-event
330•rbanffy•3d ago•186 comments

Millet mystery: A staple crop failed to take root in ancient Japanese kitchens

https://phys.org/news/2025-07-millet-mystery-staple-crop-root.html
25•PaulHoule•3d ago•9 comments