Discussion summary

Discussion centered on AI logs, the efficiency of request-response loops, and the quality of submissions on Hacker News. Participants debated technical challenges, submission algorithms, and the potential of new AI papers.

What the discussion says

  • Some believe logging and request handling are costly and complex.
  • Concerns about submission algorithms and voting rings affecting content quality.
  • Interest in new AI research and tools like BabyAGI and CQRS.
if the folks at Anthropic/OpenAI can stop their loops for one second they would've figured this out too
ares623
The author is a VC and the BabyAGI author, and doesn't even have a valid ssl cert on their website
datadrivenangel

Comments

Hacker News

My log has a message for you.

by corgihamlet

if the folks at Anthropic/OpenAI can stop their loops for one second they would've figured this out too

but wouldn't feeding that log for each request/response iteration must get expensive really fast no?

also "We discuss--without claiming to demonstrate--" wtf? someone had a showerthought and slopped this out in 10mins to see what others thought?

by ares623

The author is a VC and the BabyAGI author, and doesn't even have a valid ssl cert on their website...

by datadrivenangel

> someone had a showerthought and slopped this out in 10mins to see what others thought?

The window on back-of-napkin-idea acquihires is closing fast. ;-)

by dofm

This is one of the most interesting papers I've seen. Someone said it's AI slop, well I sent it to 5.5 Pro and it was a great read.

by try-working

The AI folks have discovered CQRS?

by PufPufPuf

shh you’re ruining the fun! :-)

by gcr

it works by ppl harvesting low ranked submissions and resubmitting them via a (unofficial) voting ring.

by novaleaf

Arrived at a version of this view as well and building one on Elixir/Ash.

by tern

Didn't read the paper yet, but if you have a giant log, I'd guess that's RLMable?

by barrenko

That's pretty much the architecture I'm using in my personal coding harness Tau (tau-agent.dev) . There are some other points in here, but there are relatively minor. I think the observation that event log / event sourcing / cqrs works perfectly for harnesses is not very novel.

by dpc_01234

Current text-based LLMs are the same old story - text-based vs graphical UIs that ate them whole for most of humanity:

Chatbot is the command line

Agent is the bash script

___ is the GUI (macOS/Windows/GTA 6)

You need Xerox PARC all over again and we have one

by MelonUsk

This paper points at an idea, but its really only legible if you have a more developed version of the idea already. I really should write more

by carterschonwald

> In this arrangement the log is a byproduct: an audit artifact written alongside the real computation, never the substrate of it.

I’ve come to the same conclusion building my own agents. It simply feels ‘wrong’ that most frameworks will happily mutate your context. You have to explicitly go out of your way to store the original events. I’ve now started storing an event log for my own agents, this is used as the source of truth for deriving all subsequent context.

The great thing about this is that I have finer control over drift in long runs, as I can look back through the conversation/tool history and build context suitable for the current state of the agent. It also allows me to run compactions across the entire event history instead of ‘compactions on top of compactions’ which happens on long runs with checkpoints.

It definitely feels like this will be a bigger issue going forward as we have agents running longer and more complex workflows, I’ve started building a product aimed at addressing this issue in a framework agnostic way. [0]

[0]: https://statefabric.dev

by jamiegregz

Why not save progress and important results of a conversation (i.e. including tool calls and such) to a project markdown (even multiple as needed) and clear your context window completely rather than compacting many times? You can then just specify a markdown file to be included as context. Especially if following any kind of plan document and executing on a part of it.

by spike021

I think this can be safely ignored.

"...and how it extends the BabyAGI lineage and prior graph-memory research. "

From BabyAGI from two years ago: "This is a framework built by Yohei who has never held a job as a developer. The purpose of this repo is to share ideas and spark discussion and for experienced devs to play with. Not meant for production use. Use with cautioun."

by datadrivenangel

> graph-memory research

The problem I have with graph representations relative to LLMs is that you can never directly apply the concept. Everything that speaks to an LLM must ultimately be serialized. There's no getting around the token stream semantics.

I've found that one big flat markdown file tends to outperform everything. You could certainly project an event log into a graph and then serialize that, but it starts to feel like a Rube Goldberg machine at this point. It's a lot easier if you just work with the same terms that the models do.

Remember if that big document rarely changes and everything that comes before it is also constant, you'll pay something like 10% of the normal rate with providers like OAI for the tokens in those documents. The clever schemes to piecemeal out information feel good to the ego and might appeal to accounting at first glance, but I think the bitter lesson will ultimately win out here. We already have a million token context windows. Even if 90% of that is bullshit it's still a lot of tokens to work with.

by bob1029

Can someone explain why such a trivial knowhow is paper-worthy? Event sourcing is well known

by klntsky

Anybody can publish to arxiv. Consider this more like a formal blog post.

by esafak

This is true after learning this framing.

It's more like the log is the only user/agent accepted consensus. It has to be the grounding base. Although extending it into an agentic system architecture becomes something not necessarily effective in practice.

by bigcat12345678

With my database hat on, in the context of agentic systems I would argue that write-ahead logs form a good (and potentially transactional) interface between speculative agent work and durable world mutations [0].

That said, there are a _lot_ of "logs for agents" papers that I've read (and unfortunately gotten assigned to review) which are basically "we asked claude to hack on a graph DB and generate a paper".

[0] https://onewill.ai/blog/2026/stealing-50-years-of-database-i...

by lmwnshn

As others have commented, this is an obvious application of event sourcing. It's irritating to see the claim of "deterministic replay" in the abstract along with the caveat "we can't actually do deterministic replay, so we store all of the model's responses and reproject off of that". Sure, ok, whatever. You're doing session recording and calling it replay.

by politician

Agree with your critique. I think this work is presenting common ideas as novel without thinking through existing problems. Defining a provider-agnostic event graph that enables full session branching replay was the whole point of pi: https://mariozechner.at/posts/2025-11-30-pi-coding-agent/ , though the language around it perhaps didn’t click until a bit later. I don’t even think pi was the first to do this.

Another critique: the abstract mentions how their system allows for “branch[ing] a run at any event without re-executing the shared prefix,” but that’s only possible with very careful KV caching. Generally, rerunning inference from an earlier point still incurs O(n) input token cost and this paper is working at the wrong layer to see that. In this work, execution refers to tool calls but token generation is the expensive part.

by gcr

Very cool. I settled on the same/similar design in my agent harness.

All relevant events that affect the context window are stored in an event log. Forking agents and sessions is simply setting a pointer to the sequence number of another event log.

So if you want to check an implementation of this pattern see: https://github.com/smartcomputer-ai/lightspeed

by lukebuehler

Nice work. Excited to check this out.

by tern

pi harness does this by default, sessions go into session jsonl files, is it not how everyone is doing this?

by throw1234567891

Very cool work!! This is the same pattern we used at $MY_STARTUP to develop $MY_HARNESS which persists the entire graph to disk, unlike all the other agent harnesses which only store the graph nodes and edges.

Event graphs aren’t just the agentic foundation for $MY_HARNESS — they’re the working cognitive substrate, native to what our favorite toolcall gremlins actually consume.

(Looking for lead investors for our angel syndicate btw! DM me if interested)

by gcr

Did you just emdash not-just-X-it's-Y unironically or am I missing the satire?

by knollimar

Join the discussion

Write your take first — we'll ask for email only when you're ready to publish.

  • Hacker News
  • My log has a message for you.
    by corgihamlet
  • if the folks at Anthropic/OpenAI can stop their loops for one second they would've figured this out too

    but wouldn't feeding that log for each request/response iteration must get expensive really fast no?

    also "We discuss--without claiming to demonstrate--" wtf? someone had a showerthought and slopped this out in 10mins to see what others thought?

    by ares623
  • The author is a VC and the BabyAGI author, and doesn't even have a valid ssl cert on their website...
    by datadrivenangel
  • > someone had a showerthought and slopped this out in 10mins to see what others thought?

    The window on back-of-napkin-idea acquihires is closing fast. ;-)

    by dofm
  • This is one of the most interesting papers I've seen. Someone said it's AI slop, well I sent it to 5.5 Pro and it was a great read.
    by try-working
  • The AI folks have discovered CQRS?
    by PufPufPuf
  • shh you’re ruining the fun! :-)
    by gcr
  • weird why did my same submission 3 days ago not get picked up . how does the algorithm work https://news.ycombinator.com/item?id=48752135
    by dominotw
  • it works by ppl harvesting low ranked submissions and resubmitting them via a (unofficial) voting ring.
    by novaleaf
  • Arrived at a version of this view as well and building one on Elixir/Ash.
    by tern
  • Didn't read the paper yet, but if you have a giant log, I'd guess that's RLMable?
    by barrenko
  • That's pretty much the architecture I'm using in my personal coding harness Tau (tau-agent.dev) . There are some other points in here, but there are relatively minor. I think the observation that event log / event sourcing / cqrs works perfectly for harnesses is not very novel.
    by dpc_01234
  • Current text-based LLMs are the same old story - text-based vs graphical UIs that ate them whole for most of humanity:

    Chatbot is the command line

    Agent is the bash script

    ___ is the GUI (macOS/Windows/GTA 6)

    You need Xerox PARC all over again and we have one

    by MelonUsk
  • This paper points at an idea, but its really only legible if you have a more developed version of the idea already. I really should write more
    by carterschonwald
  • > In this arrangement the log is a byproduct: an audit artifact written alongside the real computation, never the substrate of it.

    I’ve come to the same conclusion building my own agents. It simply feels ‘wrong’ that most frameworks will happily mutate your context. You have to explicitly go out of your way to store the original events. I’ve now started storing an event log for my own agents, this is used as the source of truth for deriving all subsequent context.

    The great thing about this is that I have finer control over drift in long runs, as I can look back through the conversation/tool history and build context suitable for the current state of the agent. It also allows me to run compactions across the entire event history instead of ‘compactions on top of compactions’ which happens on long runs with checkpoints.

    It definitely feels like this will be a bigger issue going forward as we have agents running longer and more complex workflows, I’ve started building a product aimed at addressing this issue in a framework agnostic way. [0]

    [0]: https://statefabric.dev

    by jamiegregz
  • Why not save progress and important results of a conversation (i.e. including tool calls and such) to a project markdown (even multiple as needed) and clear your context window completely rather than compacting many times? You can then just specify a markdown file to be included as context. Especially if following any kind of plan document and executing on a part of it.
    by spike021
  • I think this can be safely ignored.

    "...and how it extends the BabyAGI lineage and prior graph-memory research. "

    From BabyAGI from two years ago: "This is a framework built by Yohei who has never held a job as a developer. The purpose of this repo is to share ideas and spark discussion and for experienced devs to play with. Not meant for production use. Use with cautioun."

    by datadrivenangel
  • > graph-memory research

    The problem I have with graph representations relative to LLMs is that you can never directly apply the concept. Everything that speaks to an LLM must ultimately be serialized. There's no getting around the token stream semantics.

    I've found that one big flat markdown file tends to outperform everything. You could certainly project an event log into a graph and then serialize that, but it starts to feel like a Rube Goldberg machine at this point. It's a lot easier if you just work with the same terms that the models do.

    Remember if that big document rarely changes and everything that comes before it is also constant, you'll pay something like 10% of the normal rate with providers like OAI for the tokens in those documents. The clever schemes to piecemeal out information feel good to the ego and might appeal to accounting at first glance, but I think the bitter lesson will ultimately win out here. We already have a million token context windows. Even if 90% of that is bullshit it's still a lot of tokens to work with.

    by bob1029
  • Can someone explain why such a trivial knowhow is paper-worthy? Event sourcing is well known
    by klntsky
  • Anybody can publish to arxiv. Consider this more like a formal blog post.
    by esafak
  • https://activegraph.ai/

    The paper’s pip library can be tried here

    by rufasterisco
  • This is true after learning this framing.

    It's more like the log is the only user/agent accepted consensus. It has to be the grounding base. Although extending it into an agentic system architecture becomes something not necessarily effective in practice.

    by bigcat12345678
  • With my database hat on, in the context of agentic systems I would argue that write-ahead logs form a good (and potentially transactional) interface between speculative agent work and durable world mutations [0].

    That said, there are a _lot_ of "logs for agents" papers that I've read (and unfortunately gotten assigned to review) which are basically "we asked claude to hack on a graph DB and generate a paper".

    [0] https://onewill.ai/blog/2026/stealing-50-years-of-database-i...

    by lmwnshn
  • As others have commented, this is an obvious application of event sourcing. It's irritating to see the claim of "deterministic replay" in the abstract along with the caveat "we can't actually do deterministic replay, so we store all of the model's responses and reproject off of that". Sure, ok, whatever. You're doing session recording and calling it replay.
    by politician
  • Agree with your critique. I think this work is presenting common ideas as novel without thinking through existing problems. Defining a provider-agnostic event graph that enables full session branching replay was the whole point of pi: https://mariozechner.at/posts/2025-11-30-pi-coding-agent/ , though the language around it perhaps didn’t click until a bit later. I don’t even think pi was the first to do this.

    Another critique: the abstract mentions how their system allows for “branch[ing] a run at any event without re-executing the shared prefix,” but that’s only possible with very careful KV caching. Generally, rerunning inference from an earlier point still incurs O(n) input token cost and this paper is working at the wrong layer to see that. In this work, execution refers to tool calls but token generation is the expensive part.

    by gcr
  • Very cool. I settled on the same/similar design in my agent harness.

    All relevant events that affect the context window are stored in an event log. Forking agents and sessions is simply setting a pointer to the sequence number of another event log.

    So if you want to check an implementation of this pattern see: https://github.com/smartcomputer-ai/lightspeed

    by lukebuehler
  • Nice work. Excited to check this out.
    by tern
  • pi harness does this by default, sessions go into session jsonl files, is it not how everyone is doing this?
    by throw1234567891
  • Very cool work!! This is the same pattern we used at $MY_STARTUP to develop $MY_HARNESS which persists the entire graph to disk, unlike all the other agent harnesses which only store the graph nodes and edges.

    Event graphs aren’t just the agentic foundation for $MY_HARNESS — they’re the working cognitive substrate, native to what our favorite toolcall gremlins actually consume.

    (Looking for lead investors for our angel syndicate btw! DM me if interested)

    by gcr
  • Did you just emdash not-just-X-it's-Y unironically or am I missing the satire?
    by knollimar

Related stories