DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Memoripo — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
M

memoripo

Memoripo

DeepSeek Harness 的实时记忆工作台——在持久侧边栏中查看 Hindsight 记忆增长、阅读并使用这些记忆。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:Dayi-Z/memoripo#aface4b0c8dc62c846e2acf93c6e6ca386489fd7
README兼容性版本

兼容性与来源证明

Memoripo 以 memoripo 发布,当前版本为 0.9.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/26

版本

0.9.1stable
2026/8/26

相关插件

正在加载相关插件…

最新版
0.9.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
周下载
0
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。Memory@furongjun1999/dsh-memory灵枢(Lingshu·líng shū)DeepSeek Harness 插件:完整大脑——长期记忆/知识飞轮/自我认知/递归反思接入 DSH,对话自动沉淀进 md_cg 认知图(md 文档)

README

🍃 memoripo

A living workbench for the DeepSeek Harness Hindsight memory bank — grow, read, and use your agent's long-term memory from a persistent sidebar.

memoripo = memori(es) + repo — your memory, as a browsable repository.

中文说明


Why

DSH ships a powerful long-term memory engine (Hindsight), but its state lives in a database and an ops log. memoripo turns that into a visual workbench: watch memory grow day by day, see which memories actually get recalled, browse the four knowledge layers, and manage pages — without leaving the chat UI.

Features

🌱 Garden view (sidebar workbench)

  • Bank status at a glance — daemon health, node/fact/link counts, four-layer split (world / experience / observation)
  • 7-day growth curve — horizontal per-day stacked bars so even quiet days stay legible
  • Timeline — the latest background operations (ingest → consolidate → graph upkeep) with live status pills
  • Utilization heat — which documents are actually being recalled (audit-driven), plus recent reads when tracking is on
  • Readable activity feed — human labels instead of raw task types, capped with "show more"

🗂 Manage view (plugin-sized overlay)

  • Full knowledge-page browser: card grid + folder tree, create/rename/move/delete, mental-model resynthesis
  • Page reader with sticky TOC, markdown copy, raw-JSON copy
  • Operations panel with retry / retry-all / clear-failed and a centered detail modal per task (progress stage & counters, full error text, copy JSON)
  • Search, LLM & embedding config testing, template export/import — all migrated from the original manager under one roof

✨ Crafted details

  • Unified top-light shadow system, gradient card faces, hover lift, press feedback, focus rings, slim scrollbars
  • Fully localized (English / 简体中文), theme-variable aware (--dsw-alias-* with safe fallbacks)

⚙️ Zero-config daemon

  • The plugin auto-starts the local Hindsight daemon on boot: a mount-time check plus a 45-second re-check respawn it if it dies mid-session, so no external start script is needed. The daemon's output is captured to ~/.hindsight/daemon.out.log / daemon.err.log for forensics, and the status pill shows "connecting" while a spawn is in flight.

Install

dsh plugin add github:Dayi-Z/memoripo

or from source:

git clone <this repo>
cd memoripo
pnpm install && pnpm run build
dsh plugin add ./ 

Then restart the web app. A 🍃 Memoripo entry appears in the main sidebar footer.

Requirements

  • DeepSeek Harness >= 0.1.0-rc.6 with the web app enabled
  • Node.js ^22.19 || >= 24
  • A Hindsight backend (daemon + PostgreSQL) — memoripo auto-starts the local daemon on boot (see "Zero-config daemon") and reads whatever bank DSH is configured to use

Architecture (one minute)

src/
├── index.ts               # host plugin: /memoripo/* routes (status, growth, heat, pages…) + daemon supervisor mount
├── daemon.ts              # in-plugin daemon supervisor: 8888 check, offline spawn, 45s re-check, log capture
├── hindsight-routes.ts    # management endpoints (pages CRUD, operations, configs…)
└── client/
    ├── index.ts           # sidebar column + footer entry mount
    ├── Memoripo.tsx       # garden view (status, curve, timeline, heat, feed)
    └── …                  # manage view lives in src/hindsight-client/

The host registers read-only analytics routes on the DSH webserver; the client bundle mounts a compact workbench into the conversation-frame sidebar and a fuller management overlay reachable from the main sidebar footer. All UI text goes through two flat locale dictionaries (en/zh) with {n} interpolation.

Development

pnpm install
pnpm run typecheck   # server + client TS projects
pnpm run build       # lib/ (host) + client/client.js (browser bundle)
pnpm run check       # both

Restart the web app after rebuilding to load the new bundle.

License

MIT