Stores are driven by tool_call args, not by headers. A common need is bridging an llm's final text turn into a store insert. Package that as a reusable code template cell: read the assistant text turn, emit a {operation: insert, table, row} tool_call, and swallow store reply echoes so nothing dead-letters.
The pattern exists inline in the example colonies; this issue lifts it into a clean, documented, reusable template.
Done when: the template drops into a tree, archives an answer into a store, and has a README.
Stores are driven by tool_call args, not by headers. A common need is bridging an
llm's final text turn into astoreinsert. Package that as a reusablecodetemplate cell: read the assistant text turn, emit a{operation: insert, table, row}tool_call, and swallow store reply echoes so nothing dead-letters.The pattern exists inline in the example colonies; this issue lifts it into a clean, documented, reusable template.
Done when: the template drops into a tree, archives an answer into a
store, and has a README.