I'm interested in hearing from engineers who have moved in the opposite direction.
At what point in your product lifecycle did you decide that agentic approach was wrong tool for the job?
What was the specific failure mode (reliability, cost, latency, maintainability) pushed you to replace agentic loop with more deterministic system/pipeline?
If all LLM tools disappeared tomorrow, all of my scripts and processes developed with an LLM will continue to work without hiccup. If anthropic went out of business tomorrow, I'd lose nothing switching to another provider because I don't have to "trust" agentic operations in automated processes. They are always overseen by me and they are rarely creating things I couldn't have created myself. It's just much faster to iterate on it with these tools.
This is a really pragmatic philosophy and I think it's underappreciated. Using the LLM as a development accelerator rather than a runtime dependency gives the best of both worlds.
I look at the traces of agent execution, and use that as a feedback to extract common patterns. The comment patterns are extracted out as Scripts, or Skills.
So Agent doesnt have to figure out how to do things from scratch, saving considerable amount of tokens and latency.
I also came across this paper recently: https://arxiv.org/abs/2603.25158
Which does exactly the same. Extracts traces and converts them into skills for agents to use.
AI can give suggestions, not decisions. IF you want decisions and responsibility to be taken, use real people.