返回目錄

memos

編輯精選維護狀態: 活躍

memtensor/memos

面向 LLM 與 AI 智慧體的自進化記憶系統,提供超持久記憶、混合檢索與跨任務技能複用,可顯著節省 Token。

前往 GitHub專案首頁
$ curl -fsSL https://raw.githubusercontent.com/MemTensor/MemOS/main/apps/memos-local-plugin/install.sh | bash -s -- --agent dsh --profile web

11,184

星數

1,022

Fork

TypeScript

語言

Apache-2.0

授權條款

2025-07-06

建立於

2026-09-03

最近推送

Apache-2.0 的 LLM Agent 記憶作業系統,透過官方本機外掛(100% 本機 SQLite)或託管雲端外掛接入 DeepSeek Harness,實現任務前自動召回、回合後自動沉澱記憶。

DSH 整合

相容

作者聲明

安全稽核

未稽核

最後核實

2026-08-21

授權條款

Apache-2.0

01它能幫你完成什麼?

  • Give DeepSeek Harness sessions persistent, self-evolving agent memory

    Automatic recall of relevant context before the first model step of each request, and automatic saving of new user/assistant messages back to memory after a successful turn — without modifying DSH's core

    Developers running DeepSeek Harness (dsh) who want their agent to remember context and grow across sessions

  • Keep all agent memory 100% on-device

    Local-first memory with hybrid retrieval (FTS5 + vector), smart dedup, tiered skill evolution (L1 traces / L2 policies / L3 world model), multi-agent collaboration, SQLite storage and a Memory Viewer dashboard

    Privacy-sensitive developers and teams who want agent memory in DeepSeek Harness, Hermes or OpenClaw with nothing leaving their machine

02如何將外掛接入 DeepSeek Harness?

先決條件

  • Local plugin: Node.js and an already-installed DeepSeek Harness (dsh), OpenClaw, or Hermes
  • Cloud plugin: a MemOS Cloud API key (starts with `mpg-`) created on the MemOS dashboard

安裝步驟

  1. 01

    Local plugin (macOS / Linux) for DeepSeek Harness: `curl -fsSL https://raw.githubusercontent.com/MemTensor/MemOS/main/apps/memos-local-plugin/install.sh | bash -s -- --agent dsh --profile web` — the installer deploys MemOS as an out-of-tree DSH bundle

    $ curl -fsSL https://raw.githubusercontent.com/MemTensor/MemOS/main/apps/memos-local-plugin/install.sh | bash -s -- --agent dsh --profile web

  2. 02

    Local plugin (Windows PowerShell): `irm https://raw.githubusercontent.com/MemTensor/MemOS/main/apps/memos-local-plugin/install.ps1 -OutFile "$env:TEMP\memos-install.ps1"; powershell -ExecutionPolicy Bypass -File "$env:TEMP\memos-install.ps1"`

  3. 03

    Cloud plugin: create a MemOS API Key on the MemOS dashboard, then install into the default DSH `web` profile: `npx @deepseek-ai/dsh plugin --profile web add @memtensor/memos-cloud-dsh-plugin@latest`

    $ npx @deepseek-ai/dsh plugin --profile web add @memtensor/memos-cloud-dsh-plugin@latest

  4. 04

    Cloud plugin: add `MEMOS_API_KEY: mpg-your-key` to `~/.dsh/.credentials.yaml`

  5. 05

    Cloud plugin: add the minimal plugin configuration to `~/.dsh/settings.yaml`: `memos-cloud:` with `apiKeyEnv: MEMOS_API_KEY`

  6. 06

    Cloud plugin: restart the DSH Web profile: `npx @deepseek-ai/dsh web`

    $ npx @deepseek-ai/dsh web

驗證整合成功

作者未說明

03DSH 整合程度與能力邊界

DSH 整合相容

Official memory plugin installed inside DeepSeek Harness via DSH's native plugin mechanism (cloud plugin via `dsh plugin add`, local plugin as an out-of-tree DSH bundle)

  • Automatic recall & capture for DeepSeek Harness

    DSH user requests and completed turnsRelevant memories recalled before the first model step; new user and assistant messages saved after a successful turn

    Cloud plugin sends conversation messages to MemOS Cloud and requires a MemOS API key
  • Local-first hybrid memory (memos-local-plugin)

    Agent conversations and task traces from DeepSeek Harness, Hermes or OpenClawHybrid retrieval (FTS5 + vector), smart dedup, tiered skill evolution (L1 traces / L2 policies / L3 world model), multi-agent collaboration, Memory Viewer dashboard

    Writes a local SQLite database on your machine
  • Self-hosted MemOS REST service

    Docker Compose deployment (MemOS API + Neo4j + Qdrant) or uvicorn without DockerMemory API served at `http://localhost:8000` — create cubes, add memories, search memories

    Requires Neo4j and Qdrant infrastructure; `.env` must be filled with LLM/embedder API keys

04適合誰?何時不該用?

適合

  • Developers running DeepSeek Harness (dsh) who want their agent to remember context and grow across sessions
  • Privacy-sensitive developers and teams who want agent memory in DeepSeek Harness, Hermes or OpenClaw with nothing leaving their machine

不適合

  • The cloud plugin stores memories on MemOS Cloud and requires a MemOS API key plus network access; it is fail-open, so a temporary outage does not interrupt the current DSH task, but recall/capture is unavailable while offline.
  • The full self-hosted MemOS service needs Neo4j and Qdrant infrastructure (and LLM/embedder API keys in `.env`); only the local plugin runs with no infra on local SQLite.

05相容性、維護與安全提醒

  • The cloud plugin stores memories on MemOS Cloud and requires a MemOS API key plus network access; it is fail-open, so a temporary outage does not interrupt the current DSH task, but recall/capture is unavailable while offline.
  • The local plugin installer requires Node.js and an already-installed DeepSeek Harness (or OpenClaw / Hermes); for DSH it deploys MemOS as an out-of-tree bundle, so a working dsh installation is mandatory first.
  • The full self-hosted MemOS service needs Neo4j and Qdrant infrastructure (and LLM/embedder API keys in `.env`); only the local plugin runs with no infra on local SQLite.
2025-07-062026-08-19memos-local-plugin-v2.0.16

Apache-2.0 · actively maintained (latest release memos-local-plugin-v2.0.16, 2026-08-16)

06常見問題

MemOS 如何接入 DeepSeek Harness?

兩種官方方式。本機外掛:macOS / Linux 用一行安裝指令稿加上 `--agent dsh --profile web` 參數,Windows 用 PowerShell 安裝指令稿,MemOS 會以 out-of-tree DSH bundle 形式部署。雲端外掛:執行 `npx @deepseek-ai/dsh plugin --profile web add @memtensor/memos-cloud-dsh-plugin@latest`,再把 `MEMOS_API_KEY` 寫入 `~/.dsh/.credentials.yaml`、在 `~/.dsh/settings.yaml` 加入 `memos-cloud` 設定,最後用 `npx @deepseek-ai/dsh web` 重新啟動。

是 DSH 原生外掛還是走 MCP?

透過 DeepSeek Harness 的原生外掛機制接入,README 明確寫明 DSH 經由 'native plugin mechanism' 連接 MemOS Cloud,不走 MCP。

需要什麼前置條件?

本機外掛需要 Node.js 和已安裝好的 DeepSeek Harness;雲端外掛需要在 MemOS 控制台建立 API Key(以 `mpg-` 開頭)。

記憶資料存在哪裡?

本機外掛 100% 在本機執行,採用本機優先的 SQLite 儲存,資料不會離開你的電腦;雲端外掛的記憶儲存在託管服務 MemOS Cloud。

MemOS Cloud 掛掉會有影響嗎?

雲端外掛採 fail-open 設計:MemOS Cloud 暫時故障不會中斷目前的 DSH 任務。

08資料與來源

  • 作者聲明github.combe68e2fb5370…

    Add automatic recall, background capture, hybrid retrieval, and a local Memory Viewer to DeepSeek Harness—powered by the…

  • 作者聲明github.combe68e2fb5370…

    Connect DeepSeek Harness to MemOS Cloud through its native plugin mechanism.

  • 作者聲明github.combe68e2fb5370…

    MemOS now brings persistent memory to **DeepSeek Harness** through both local and cloud plugins.

此頁面根據專案公開文件、儲存庫中繼資料與 DSH Plugins 的結構化解析所產生;最後核實於 2026-08-21。發現錯誤?提交更正。

🏆

最佳 DeepSeek Harness 外掛

從全目錄挑出的 12 個值得優先安裝的外掛,涵蓋各個分類。

DSH Plugins 是獨立的 DeepSeek Harness 外掛市集,與 DeepSeek 官方無關,也不代表官方背書。第三方外掛未經安全稽核,安裝前請審查原始碼。

每週取得最新的 DeepSeek Harness 外掛,絕不濫發。