What is agentic engineering?
lumpa
118 points
70 comments
March 16, 2026
Related Discussions
Found 5 related stories in 31.7ms across 3,471 title embeddings via pgvector HNSW
- Agentic Engineering Patterns r4um · 505 pts · March 04, 2026 · 90% similar
- Levels of Agentic Engineering bombastic311 · 135 pts · March 10, 2026 · 78% similar
- My fireside chat about agentic engineering at the Pragmatic Summit lumpa · 12 pts · March 14, 2026 · 65% similar
- Searching for the Agentic IDE bigwheels · 30 pts · March 11, 2026 · 62% similar
- Agentic AI and the next intelligence explosion silverpiranha · 17 pts · March 30, 2026 · 54% similar
Discussion Highlights (20 comments)
CuriouslyC
The halo effect in action.
allovertheworld
Staring at your phone while waiting for your agent to prompt you again. Code monkey might actually be real this time
deadbabe
I think we all know what Agentic engineering is, the question is when should it not be used instead of classical engineering?
kevintomlee
the practice of developing software with the assistance of coding agents. Spot on.
righthand
How is this different than Prompt Engineering?
maxbond
I don't think we should be making this distinction. We're still engaged in software engineering. This isn't a new discipline, it's a new technique. We're still using testing, requirements gathering, etc. to ensure we've produced the correct product and that the product is correct. Just with more automation.
danieltanfh95
Agentic engineering is working from documentation -> code and automating the translation process via agents. This is distinct from the waterfall process which describes the program, but not the code itself, and waterfall documentation cannot be translated directly to code. Agent plans and session have way more context and details that are not captured in waterfall due to differences in scope.
mmastrac
After three months of seeing what agentic engineering produces first-hand, I think there's going to be a pretty big correction. Not saying that AI doesn't have a place, and that models aren't getting better, but there is a seriously delusional state in this industry right now..
jbethune
I think there is a meaningful distinction here. It's true that writing code has never been the sole work of a software engineer. However there is a qualitative difference between an engineer producing the code themselves and an engineer managing code generated by an LLM. When he writes there is "so much stuff" for humans to do outside of writing code I generally agree and would sum it up with one word: Accountability. Humans have to be accountable for that code in a lot of ways because ultimately accountability is something AI agents generally lack.
neonbrain
The term feels broken when adhering to standard naming conventions, such as Mechanical Engineering or Electrical Engineering, where "Agentic Engineering" would logically refer to the engineering of agents
pamelafox
I’ve been using the term “agentic coding” more often, because I am always shy to claim that our field rises to the level of the engineers that build bridges and rockets. I’m happy to use “agentic engineering” however, and if Simon coins it, it just might stick. :) Thanks for sharing your best practices, Simon!
aewens
“It’s not vibe coding, it’s agentic engineering” From Kai Lentit’s most recent video: https://youtu.be/xE9W9Ghe4Jk?t=260
jdlyga
Sure, you could argue it's like writing code that gets optimized by the compiler for whatever CPU architecture you're using. But the main difference between layers of abstraction and agentic development is the "fuzzyness" of it. It's not deterministic. It's a lot more like managing a person.
techpression
I mean agents as concept has been around since the 70s, we’ve added LLMs as an interface, but the concept (take input, loop over tools or other instructions, generate output) are very very old. Claude gave a spot on description a few months back, The honest framing would be: “We finally have a reasoning module flexible enough to make the old agent architectures practical for general-purpose tasks.” But that doesn’t generate VC funding or Twitter engagement, so instead we get breathless announcements about “agentic AI” as if the concept just landed from space.
iamcreasy
Is there any article explaining how AI tools are evolving since the release of ChatGPT? Everything upto MCP makes sense to me - but since then it feels like there is not clear definition on new AI jergons.
ChrisArchitect
Previously on the guide Agentic Engineering Patterns : https://news.ycombinator.com/item?id=47243272
AdieuToLogic
The premise is flawed: Now that we have software that can write working code ... While there are other points made which are worth consideration on their own, it is difficult to take this post seriously given the above.
codance
The bounded vs unbounded distinction is spot on. In my experience, the real unlock with agents isn't single-agent capability — it's running multiple agents on independent tasks in parallel. One agent refactoring module A while another writes tests for module B. The constraint is making sure tasks are truly independent, which forces you to think about architecture more carefully upfront.
sigbottle
There should be more willingness to have agents loudly fail with loud TODOs rather than try and 1 shot everything. At the very least, agentic systems must have distinct coders and verifiers. Context rot is very real, and I've found with some modern prompting systems there are severe alignment failures (literally 2023 LLM RL levels of stubbing out and hacking tests just to get tests "passing"). It's kind of absurd. I would rather an agent make 10 TODO's and loudly fail than make 1 silent fallback or sloppy architectural decision or outright malicious compliance. This wouldn't work in a real company because this would devolve into office politics and drudgery. But agents don't have feelings and are excellent at synthesis. Have them generate their own (TEMPORARY) data. Agents can be spun off to do so many experiments and create so many artifacts, and furthermore, a lot more (TEMPORARY) artifacts is ripe for analysis by other agents. Is the theory, anyways. The effectively platonic view that we just need to keep specifying more and more formal requirements is not sustainable. Many top labs are already doing code review with AI because of code output.
nclin_
I've discovered recently as code gets cheaper and more reliable to generate that having the LLM write code for new elements in response to particular queries, with context, is working well. Kind of like these HTML demos, but more compact and card-like. Exciting the possibilities for responsive human-readable information display and wiki-like natural language exploration as models get cheaper.