Skip to main content
Add persistent memory to the DeepSeek Harness with @mem0/deepseek-plugin. The plugin recalls relevant context before a model request, captures completed turns, and provides explicit Mem0 tools when the agent needs them.
Current package version: 0.3.0.
Sidekick is available only in the Claude Code plugin.

Overview

The plugin provides automatic memory plus two agent-callable tools: Unlike file-based memory plugins, Mem0 is a managed backend: server-side extraction, semantic dedup, and conflict resolution, with memories reusable by integrations that use compatible user identities and search filters.

How it works

A Cordis plugin is a module exporting apply(ctx, config). This plugin waits for the Harness tool and system-prompt services, then uses their native extension points:
  • system-prompt/assemble recalls memory before a model request.
  • session/event captures only completed turns from the durable event stream.
  • ctx.tools.register(...) exposes explicit search and add tools.
Cordis removes the listeners and tools when the plugin unmounts. Memory failures are fail-open, so a Mem0 outage does not stop the agent from completing its normal work. DeepSeek Harness provides subagents through separate host-composition packages. This Mem0 package does not register a named Sidekick or claim child filesystem isolation. A Harness child uses Mem0 only when its own agent preset includes the Mem0 plugin.

Prerequisites

  1. A Mem0 Platform account and API key:
  2. The DeepSeek Harness installed.
  3. Your API key exported in your shell:

Try it locally

  1. Build and pack the plugin:
  2. Install it into a disposable Harness profile so Harness supplies its peer dependencies:
  3. Copy cordis.example.yml, set its installed package path and your userId, then load it with the same profile:
  4. Open the web UI and ask the agent to remember something, then recall it in a later turn.
The cordis.yml entry looks like this:
For a Mem0 Platform on-prem or dedicated deployment, point config.host at that base URL (defaults to api.mem0.ai). host is a Platform base-URL override, not a switch to self-hosted Mem0 OSS.

Configuration

Both tools also accept optional per-call userId, agentId, and runId params so a single install can partition memory by entity, agent, or session; userId defaults to the configured user, while agentId and runId are omitted unless supplied. Automatic recall and capture use the configured user without an agent, repository, or session filter. Automatic capture preserves full redacted user and assistant message text without a per-message character cutoff.

Telemetry

Writes are tagged source="DEEPSEEK_HARNESS" so Mem0 can attribute usage to this integration. Usage events include operation names, durations, result counts, and coarse failure kinds. They are not anonymous: when an API key is configured they are sent under your Mem0 account email, the same way the SDK attributes its own. Queries, memory text, entity IDs, and API keys are never included. Set MEM0_TELEMETRY=false to opt out.
This plugin is a developer preview and tracks the evolving DeepSeek Harness plugin API.

Troubleshooting

  • MISSING_CREDENTIAL for deepseek-official: Configure DEEPSEEK_API_KEY through Harness’s Models page or export it in the shell that launches Harness.
  • EMFILE: too many open files, watch on macOS: Launch Harness with CHOKIDAR_USEPOLLING=1.
  • Mem0 tools do not appear: Run Harness with --dump-config and confirm the final composition contains the mem0 row and the installed dist/index.js path.
Per-call userId overrides are rejected unless the operator enables allowUserOverride: true. Automatic recall and capture always use the configured user.