name: memory version: "1.0.0" description: Session state backend for WDS. Called by wrap, start, and handoff tools — never directly by users. Writes to progress/ in the project repo.
Handles all persistent state for WDS sessions. Two operations: save and load.
State lives in progress/ at the project root. This folder is project-scoped — not global, not per-machine.
Called by: wrap (step 3), handoff (step 3)
Input:
agent_id — the agent whose state is being saved (saga, freya, mimir)data — the compiled state block (Wrapped, Context, Plan, Next, Learned, Spec Sync fields)Steps:
progress/ exists at the project root. Create it if not.progress/[agent_id].md with the data block exactly as provided.saved progress/[agent_id].mdCalled by: start (step 2)
Input:
agent_id — the agent whose state is being loadedSteps:
progress/[agent_id].md exists.progress/ should be in .gitignore. It is machine-local session context, not project content.