Procedural Graphs: Self-Evolving Execution Structures for LLM Agents
omarsar
53 points
15 comments
September 09, 2026
Related Discussions
Found 5 related stories in 62.6ms across 6,054 title embeddings via pgvector HNSW
- Patterns and problems in emerging multi-agent systems maxutility · 33 pts · August 16, 2026 · 53% similar
- Show HN: Fractal – recursive agent loops for complex, multi-step work ryanpettry · 14 pts · July 21, 2026 · 52% similar
- Show HN: I evaluated file, vector, graph and RL based memory frameworks pinglin · 13 pts · August 15, 2026 · 52% similar
- Autonomous Mathematical Discovery in an Open-World Multi-Agent Environment stephenchung · 94 pts · August 28, 2026 · 52% similar
- Multi-Agents LLM Financial Trading Framework fittingopposite · 115 pts · September 08, 2026 · 52% similar
Discussion Highlights (5 comments)
xnx
No idea what this site is. Paper is here: https://arxiv.org/abs/2609.09153
tizerluo
The distinction between a procedural graph and a static workflow seems important: self-editing topology can capture reusable strategy, but it also makes regressions harder to localize. I’d be curious whether the refinement loop treats a successful trajectory as sufficient evidence, or uses counterexamples and held-out tasks to avoid encoding a brittle shortcut. A practical evaluation might report graph churn and rollback frequency alongside task success, since a graph that keeps growing could be trading inference cost and auditability for a small gain. The explicit entity–relation–procedure representation also seems like a promising place to attach permissions or provenance to tool calls.
vatsachak
Okay how are Add nodes created? Does an LLM come up with the name, guidance and edges for each node or is it a bespoke transformer model?
lmeyerov
I wonder if the graph part is a distraction (data representation / syntax), and once you step back, if/how this relates to the wider concept of 'durable task lists' used in this kind of structured dynamic planning. Ex: Durable task lists generally use more textual representations, eg, a hierarchical text list that supports named references -- so a graph. Likewise, they're mutable, contain statuses, etc. They're fairly popular and AI models at this point have internalized them at this point.
schmuhblaster
Maybe I missed in when scanning the paper, but did they compare to a simple self modifying harness, e.g. instructing Pi to update some code or skill docs based on the results?