DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

llm-wiki-sidebar

Llm Wiki Sidebar

dsh-better-sidebar 的 LLM Wiki 工作台:浏览和检查 Karpathy 风格的互联 Markdown wiki,使用原生 Markdown 查看器打开页面,支持可点击的 [[wikilinks]]、来源/相对 .md 链接和反向链接。随附 llm-wiki agent skill。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ApeInCodeMountain/llm-wiki-sidebar#bc1d5ff3833bdc6f4e6766ca42dc4ba15b28762e
README兼容性版本

兼容性与来源证明

Llm Wiki Sidebar 以 llm-wiki-sidebar 发布,当前版本为 1.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

1.1.1stable
2026/9/5

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Automation@michengai/dsh-automation在独立 DSH Session 中按计划执行编码任务,支持 Web 设置页与 Agent 双入口管理。Easyrewritedsh-easyrewriteDSH Web 中最无感的消息撤回与重新编辑插件,原生体验,兼容性强,功能简单易开关,设置丰富,采用现代化轻量 UI 框架。

README

llm-wiki-sidebar

English | 简体中文

LLM Wiki workbench for dsh-better-sidebar: browse and lint a Karpathy-style interlinked markdown wiki directly in the DSH sidebar, with full-fidelity page preview/editing, clickable [[wikilinks]] and provenance links, backlinks, and the llm-wiki agent skill that drives ingest/query/maintenance — packaged as one DSH plugin.

Features

  • 📚 LLM Wiki sidebar tab — sectioned page catalog (entities / concepts / comparisons / queries), search by slug/title/tag, quality markers (conf: low, contested), one-click open via betterSidebar.openFile, and a refresh button that re-reads the wiki from disk.
  • Native markdown viewer — wiki pages render through dsh-better-sidebar's built-in markdown viewer (Mermaid, shiki, KaTeX, TOC, embedded HTML) with the stock preview/edit toolbar and Ctrl/Cmd+S save. Nothing about the native viewer is replaced; the plugin only decorates its output.
  • Clickable [[wikilinks]] — preview-mode DOM decoration resolves [[target]] / [[target|label]] against the wiki map and jumps via openFile (page text is never modified, so editing/saving stays safe). Unresolvable links render struck-through with a tooltip.
  • Clickable provenance & relative .md links — provenance markers (^([来源](raw/...))) and any in-site relative markdown link are clickable in the preview and open through the same openFile path as the catalog. The shared markdown renderer drops relative link destinations, so the plugin pairs source-parsed links with their rendered label text instead — fp.content is never rewritten, keeping edit-mode saves byte-identical.
  • Backlinks — "🔗 Linked here (N)" bar under each wiki page.
  • Lint report — the full 12 checks (broken links, orphans, index completeness, frontmatter validation, stale pages, contested, quality signals, sha256 source drift, page size, tag taxonomy, log rotation) grouped by severity; error+warn count shows as a tab badge. The same checks are available on the CLI via the packaged scripts/wiki_lint.py.
  • Ships the llm-wiki skill — skills/llm-wiki/SKILL.md + scripts/wiki_lint.py are mounted by a dedicated dsh-skill-filesystem instance scoped to this package, so the plugin and its skill install and uninstall as one unit.

Requirements

  • DeepSeek Harness 0.1.2-rc.1+
  • dsh-better-sidebar ≥ 0.16.0 (openFile capability; tested against 0.18.0)
  • Node.js ≥ 20

Install

The wiki lives at <session workspace>/wiki (the sidebar file routes enforce the workspace fence, so workspace-relative is the supported location).

From GitHub (official bundle CLI)

dsh plugin --profile web add "github:ApeInCodeMountain/llm-wiki-sidebar"

Then restart dsh --profile web and hard-refresh the browser.

From npm

dsh plugin --profile web add llm-wiki-sidebar

Local development install

git clone https://github.com/ApeInCodeMountain/llm-wiki-sidebar
cp -r llm-wiki-sidebar ~/.dsh/profiles/web/
ln -sfn ../llm-wiki-sidebar ~/.dsh/profiles/web/node_modules/llm-wiki-sidebar
# register as a link: dependency so pnpm keeps the symlink
node -e "const fs=require('fs');const f=process.env.HOME+'/.dsh/profiles/web/package.json';const j=JSON.parse(fs.readFileSync(f));j.dependencies['llm-wiki-sidebar']='link:llm-wiki-sidebar';fs.writeFileSync(f,JSON.stringify(j,null,2)+'\n')"

Then restart dsh --profile web and hard-refresh the browser (Cmd/Ctrl+Shift+R).

Uninstall

Remove the package via dsh plugin --profile web remove llm-wiki-sidebar (or delete both rows from ~/.dsh/profiles/web/cordis.patch.yml, the profile package.json entry, the node_modules/llm-wiki-sidebar symlink and the ~/.dsh/profiles/web/llm-wiki-sidebar directory); restart DSH. Uninstalling also withdraws the packaged llm-wiki skill (it lives inside the plugin directory).

Usage

  1. Tell the agent: “帮我在这个工作区初始化一个 wiki” (or "create a wiki here") — the packaged llm-wiki skill creates wiki/ with SCHEMA.md, index.md, log.md and the layered directories, then ingests sources.
  2. Open the 📚 LLM Wiki tab in the sidebar: the catalog, search, and the Lint button.
  3. Open any page for the native preview — [[wikilinks]], provenance links and backlinks are clickable; editing in the sidebar writes the file directly (bump updated).

Routes (host half)

RouteBodyPurpose
POST /llm-wiki/api/scan{ cwd }wiki page catalog
POST /llm-wiki/api/lint{ cwd }lint report
POST /llm-wiki/api/map{ cwd }slug→page map + backlink graph + raw index

All routes enforce the same browser-trust fence as the /api gateway (loopback/trusted Host + same-origin markers) and read only through the sandbox-aware fs service. The plugin never writes to disk.

Development

node --check lib/client.js && node --check lib/index.js   # syntax
node test/impl.test.mjs                                   # unit + regression (no DOM required)

The design notes for the clickable-link pipeline (why it pairs source links with rendered label text instead of intercepting anchors) live in docs/design-source-link-navigation-v2.md.

License

MIT

Acknowledgments

  • Karpathy's LLM Wiki pattern and the MIT-licensed llm-wiki skill from the hermes-agent project — the packaged skills/llm-wiki skill is a DSH edition of that pattern.
  • DeepSeek Harness (MIT) — the host runtime; the browser-trust fence in lib/index.js is a behavioral port of the /api gateway's fence from @deepseek-ai/dsh-client-connection (MIT).
  • dsh-better-sidebar (MIT) — the sidebar workbench this plugin extends, and the provider of the betterSidebar service.