This ticket is a sub-task of the epic #7604.
The current AGENTS.md file contains a complex, multi-step protocol for initializing the memory core. This includes manual checks, asking the user for permission, and generating session IDs.
With the recent enhancements to the neo.mjs-memory-core MCP server (auto-start, auto-summarization), we can drastically simplify this protocol.
Proposed New Protocol:
- At the start of a session, the agent performs a
healthcheck on the memory core server.
- If the server is healthy, the agent can assume the user intends for memory to be active.
- The agent will then proceed to use the
add_memory tool on every turn for the duration of the session. No permission is required.
- The server will transparently handle session ID generation and the summarization of previous sessions.
Acceptance Criteria:
- Update the "Session Initialization" section of
AGENTS.md to remove the old, complex memory core protocol.
- Replace it with the new, simplified protocol described above.
- Ensure the new instructions are clear, concise, and guide the agent to use the
healthcheck and add_memory tools correctly.
This ticket is a sub-task of the epic #7604.
The current
AGENTS.mdfile contains a complex, multi-step protocol for initializing the memory core. This includes manual checks, asking the user for permission, and generating session IDs.With the recent enhancements to the
neo.mjs-memory-coreMCP server (auto-start, auto-summarization), we can drastically simplify this protocol.Proposed New Protocol:
healthcheckon the memory core server.add_memorytool on every turn for the duration of the session. No permission is required.Acceptance Criteria:
AGENTS.mdto remove the old, complex memory core protocol.healthcheckandadd_memorytools correctly.