DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@ihorleleka/wiki-kit

Wiki Kit

用于 wiki-manager agent wiki-kit 集成的安装器和运行器资源。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ihorleleka/Local-Rag-Wiki#92e4b9e040b994bc0260359e8bd6e8f177937eb7
README兼容性版本

兼容性与来源证明

Wiki Kit 以 @ihorleleka/wiki-kit 发布,当前版本为 0.1.14。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/20

版本

0.1.14stable
2026/9/20
0.1.13stable
2026/9/20
0.1.12stable
2026/9/9
查看其余 7 个版本收起版本
0.1.11stable
2026/9/3
0.1.10stable
2026/9/3
0.1.8stable
2026/9/3
0.1.7stable
2026/8/29
0.1.5stable
2026/8/27
0.1.2stable
2026/8/27
0.0.0stable
2026/8/26

相关插件

正在加载相关插件…

最新版
0.1.14
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
UNLICENSED
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/20
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness:通过自然语言驱动多智能体团队协作(队长、成员、具有依赖关系的任务、消息传递),并在 Web GUI 中提供树状监视器

README

local-rag-wiki

A repo-local RAG wiki for AI agents: a per-repository MCP knowledge service (governed search / read / write of Markdown wiki notes) plus an installer that wires it into your agent tooling. Docker is required to run the service.

Quick start (recommended)

Pre-pull the service image before your first agent session to avoid cold-start delays:

docker pull ihorleleka/project-rag-wiki:latest

Install

Run in your repository root:

npx github:ihorleleka/Local-Rag-Wiki install .

This scaffolds the managed .agents/ runner, the AGENTS.md policy section, DSH workspace assets (.dsh/mcp.servers.yml and its scoped MCP bridge), Claude Code, Codex, VS Code, and OpenCode, plus a wiki/ folder. The DSH bridge stays under .dsh/; it is never installed as a repository-root .dsh-mcp-client.js. These integrations are additive. The MCP service starts per repository when a configured agent client connects. Pre-pulling the image (above) is recommended before running the agent in a fresh environment.

DeepSeek Harness

Install the native DSH bundle once into the profile you use (usually web):

dsh plugin --profile web add github:ihorleleka/Local-Rag-Wiki

Restart that DSH profile, open an installed repository as its workspace, and start a session. On DSH's native agent/created / agent/session-start lifecycle, the bundle reads the active workspace's .dsh/mcp.servers.yml, validates its wiki-manager entry against the managed install marker, resolves the configured node executable through DSH's subprocess service, and mounts the bridge through agent.ctx. It never uses process.execPath, because that is the Electron executable in DSH Desktop. Initial discovery finishes before the model request is assembled, exposing stable native mcp__wiki-manager__* tools on that agent's tool scope. Identical namespaces can coexist in different agent scopes without leaking tools between sessions.

The scoped bridge source is delivered as .dsh/.dsh-mcp-client.js (never at repository root) and follows DSH's MCP transport, reconnect, tool-schema, and execution pipeline. The canonical config path is .dsh/mcp.servers.yml; a legacy dsh/mcp.servers.yml is accepted only when the canonical file is absent. DSH core does not auto-load this file—the trusted profile bundle is its loader. Do not add a second global MCP client for the same server.

The bundle also performs bounded wiki recall once per turn for a material, direct user prompt. Tool results, plugin context, delegated control messages, and later tool-loop steps do not trigger recall. After the scoped bridge is ready, agent/pre-step dispatches wiki_search through DSH's existing tool registry—first depth="abstract" (L0), then matching depth="packet" context (L1). It does not spawn a second runner. Recall is per-workspace cached and in-flight deduplicated, L1 packets are rate-limited, and full L2 wiki_read remains model-directed. Injected recall is turn-scoped; when the turn stops, its payload is replaced by a small expiry marker so it cannot accumulate or silently govern later turns.

The governed wiki and its MCP search are the only DSH memory path; the bundle does not capture local prompt history. Claude Code connects to the same runner through its MCP configuration without repository prompt-history hooks. See .dsh/README.md for the workspace boundary.

Update

After install, refresh the managed files from inside the repo — no npx needed:

.agents\update-wiki-kit.cmd --force
sh .agents/update-wiki-kit.sh --force

Lifecycle

npx github:ihorleleka/Local-Rag-Wiki status .
npx github:ihorleleka/Local-Rag-Wiki restart .
npx github:ihorleleka/Local-Rag-Wiki doctor . --live

start ., stop ., and pull . are available the same way. The repository container persists independently of individual agent clients.

How it works

  • This package is the installer: it scaffolds and maintains the .agents/ runner and MCP configuration in a consumer repository.
  • kb-service/ is the Dockerized MCP knowledge service the runner launches per repository. It serves wiki_search, wiki_read, wiki_list, wiki_tree, wiki_schema_report, wiki_write, wiki_capture, wiki_delete, and wiki_rename over POST /mcp/ (loopback by default), with hash-protected writes. wiki_search supports tiered retrieval (depth=abstract|packet) plus path_prefix directory scoping.

Versioning

The installer and kb-service ride the same Git tag (X.Y.Z or vX.Y.Z). Release automation:

  • tag-version-verify.yml
  • docker-release.yml

License

MIT (see kb-service/LICENSE).