Last week I open‑sourced Easy AI Context — a tiny MCP server that gives AI a durable context tree. A few people asked how I structure it, so here’s the shape that’s working for me.
Context tree pattern (example)
projects/<name>/
goals
stack
decisions
status
next
links
Why this layout
Workflow
This keeps memory curated and durable, not a noisy chat log.
Repo: https://github.com/xiaopai20/easy-ai-context
Curious: do you prefer small curated trees or large auto‑logged memory for long‑term AI work?