agenthub · memory.write
Persist this turn — the user's message and the assistant's reply — back to the memory service. It acts rather than computes, so it is triggered by a flow edge.
Why the node earns its place
The write half. It has nothing to hand onward, so it has no output ports at all; what it needs is to run after the reply exists. That is what the flow edge is for — wire it from the LLM's flow port, then wire the two texts in as data.
How it works at run time
What you wire
Nothing handed onward.
Configuration
Nothing to configure — this node has no settings of its own.
What usually goes wrong
Watch for this
Forgetting the flow edge is the classic error: the node has no data dependency forcing it to run last, so without the trigger it may run before there is a reply to store, or not at all. If you want this wiring without the wiring, use LLM with Memory.
Behaviour & provenance