AI Agent Hub
Back to plugins
🧠

evo

Memory Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install TIZ36/evo

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install TIZ36/evo in your DeepSeek Harness terminal to install the evo cross-session memory plugin; the full source code lives at https://github.com/TIZ36/evo

About this plugin

Local CLI coding agents are stateless by design: every new session starts from zero, and the preferences you have corrected repeatedly, the project conventions you only nailed down after three stumbles, all vanish the moment the terminal closes. evo tackles this with a recall-and-reflect loop — before each model step it pulls relevant memories into the context window, and after each successful turn it distills the conversation into structured memory items, so the agent accumulates project knowledge the way an experienced colleague would.

Every memory carries scope, kind (fact, constraint, procedure, skill), tags, and source metadata. Procedural SOPs live as first-class skills with lessons-learned tracking, separate from declarative facts. All data stays local in SQLite by default; the only outbound calls are reflection model requests. evo is provider-neutral, working with DeepSeek Harness, Claude Code, and Codex through adapters, and it auto-imports existing workspace files such as CLAUDE.md, AGENTS.md, and project directories.

If you work daily with a local coding agent and are tired of re-explaining context every session, evo is worth adding to your stack. You do not need to hand-write memory — the agent distills its own experience as it works.

Use Cases

  • Start a new session without re-explaining project context and preferences
  • Automatically accumulate repeatedly corrected coding conventions into structured, retrievable memory
  • Share the same project experience across Claude Code, Codex, and DeepSeek Harness

Best For

  • Developers who use local CLI coding agents daily
  • Small teams that want their agent to remember project conventions across sessions
  • Individuals who prefer not to hand-maintain context files like CLAUDE.md