DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Wiki Kit — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

@ihorleleka/wiki-kit

Wiki Kit

Installer and runner assets for wiki-manager agent wiki-kit integration.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:ihorleleka/Local-Rag-Wiki#92e4b9e040b994bc0260359e8bd6e8f177937eb7
READMECompatibilityVersions

Compatibility and provenance

Wiki Kit is published as @ihorleleka/wiki-kit and currently resolves to version 0.1.14. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/20/2026

Versions

0.1.14stable
9/20/2026
0.1.13stable
9/20/2026
0.1.12stable
9/9/2026
Show 7 more versionsCollapse versions
0.1.11stable
9/3/2026
0.1.10stable
9/3/2026
0.1.8stable
9/3/2026
0.1.7stable
8/29/2026
0.1.5stable
8/27/2026
0.1.2stable
8/27/2026
0.0.0stable
8/26/2026

Related plugins

Loading related plugins…

Latest
0.1.14
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
UNLICENSED
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/20/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.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: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the 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).