Your AI agent ran a task yesterday. Today it starts from zero. How are you handling cross-session state? #4
Unanswered
oliviacraft
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The problem
Your AI agent ran a research task yesterday. Compiled sources. Made decisions. Built context over 2+ hours.
Today you open a new session. Ask for a follow-up. It starts from scratch. No memory of what it found. No delta. No trend. Just the same work done twice, billed twice.
This is not a model problem. It is an architecture problem.
The agent is stateless by design. Your job is to give it a state layer — and most setups do not have one.
What I have seen people try
memory.mdfile manually after each session (unsustainable)What actually works (in my experience)
The lightest-weight solution that actually sticks:
MEMORY.mdfile with three layers: daily notes, extracted facts, and patternsThis is the architecture behind the Personal Agent Starter Kit — a $17 setup that wires all three layers together with
AGENTS.md,MEMORY.md, and a working heartbeat loop.My question
How are you handling this in your own setups?
Curious what patterns are actually working — especially for agents running on a schedule (not interactive sessions).
If you are just starting out: the free starter kit includes a basic AGENTS.md + memory scaffold you can drop into any project.
All reactions