DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-paperpanel

Paperpanel

DSH Web 中类似 Zotero 的论文和数据资料库面板——专注于 PDF/Word 阅读、选取内容添加笔记,以及直接编辑电子表格。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Floatingfur/dsh-paperpanel#c638807261486977c66ae44c6d9335b72ec3eb99
README兼容性版本
screenshotscreenshotscreenshotscreenshotscreenshot

兼容性与来源证明

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

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

版本

0.1.0stable
2026/9/5

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

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 包。Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理

README

English · 简体中文

dsh-paperpanel

Turn papers (PDF/Word/TXT/MD) and data (CSV/TSV/Excel) from your local folders into a Zotero-style library, presented as a right-side floating drawer in DSH Web — browse papers on the right, read in a centered window, jot notes as you read, and edit spreadsheets in place.

Features

  • Library panel (right-side floating drawer via shell.overlay; does not occupy the built-in details slot): item list + type filters (All/Papers/Data/Notes). The Import button imports a whole folder or individual files (choose a target directory; duplicate names get a timestamp suffix automatically). Hit Refresh after importing to see the new items. screenshot screenshot
  • Centered reading: double-click a PDF/Word item to open it in a centered window with zoom (− / + / reset) and a black/white background toggle (button text flips to keep high contrast against the background).
    • PDF: rendered with pdf.js (multi-page, selectable text layer) screenshot
    • Word: rendered with docx-preview (keeps headings/bold/tables); legacy .doc prompts you to resave as .docx
  • Select-to-note: select text in a PDF/Word → click “记笔记 / Take note” → the quote is appended to your note as a Markdown blockquote
  • Note while reading: a note panel on the right of the reading window lets you write and save anytime; each item maps to a sibling 同名.notes.md (<name>.notes.md) file screenshot
  • Spreadsheet workbench: CSV/TSV/Excel(.xlsx/.xls) cells are editable and save back to the original file (an automatic .bak backup is made first); sorting, search, pagination, ECharts charts (bar/line/pie) and column stats; rows beyond 2000 become read-only automatically screenshot
  • Ask AI to explain: sends the item path into the host input so the agent can read it with paperpanel_read and explain/summarize
  • Bundler-free client: client/paperpanel-client.js (a single CommonJS file) → scripts/build-client.mjs builds client.js; frontend libs (JSZip/docx-preview/SheetJS/ECharts/pdf.js) are inlined at build time — works fully offline
  • Scan/read core: lib/scan.mjs, lib/read.mjs (pure Node, zero third-party deps)

Install

# Option 1: npm (once published)
dsh plugin --profile web add dsh-paperpanel

# Option 2: GitHub source
dsh plugin --profile web add github:Floatingfur/dsh-paperpanel

# Option 3: local development (link)
# In the web profile's package.json dependencies add "dsh-paperpanel": "link:<absolute path to this repo>"
# and add "dsh-paperpanel" under dsh.profile.bundles, then restart dsh web

After installing, restart dsh web and the Library drawer appears on the right.

Configure the data folders

Set the scanned root folders under config.libraryRoots in cordis.patch.yml (the sample points at samples). Drop papers/data into those folders (or subfolders) and press Refresh in the drawer, or use the Import button to bring files in.

Local commands

npm run build:client          # regenerate client.js after editing client/ sources

Start dsh (auto-cleans a stale instance holding port 3080 first, to avoid EADDRINUSE multi-instance conflicts):

powershell -NoProfile -ExecutionPolicy Bypass -File scripts\start-dsh.ps1

Project layout

dsh-paperpanel/
  package.json            # exports / dsh.bundle / dsh.client
  cordis.patch.yml        # bundle insert declaration (default libraryRoots)
  index.mjs               # Node half: HTTP routes + agent tools paperpanel_search / paperpanel_read
  lib/scan.mjs            # recursive scanning core
  lib/read.mjs            # text/CSV preview core
  client/paperpanel-client.js  # client source (drawer + centered reader)
  scripts/build-client.mjs     # bundler-free build (inlines vendor)
  scripts/start-dsh.ps1        # start script (clears port 3080 stale instance)
  scripts/vendor/         # frontend third-party UMD files (inlined into client.js at build)
  client.js               # build artifact (shipped with the plugin)
  samples/                # smoke-test samples

Backend API (same-origin fetch, no token needed)

  • GET /paperpanel/api/roots → { ok, roots }
  • GET /paperpanel/api/manifest → { ok, scannedAt, roots, itemCount, items[] }
  • GET /paperpanel/api/preview?path=… → text preview
  • GET /paperpanel/api/file?path=… → raw file (used by PDF/Word rendering and the spreadsheet workbench)
  • POST /paperpanel/api/import?name=…&dir=… → import a file into a data folder (allow-listed)
  • POST /paperpanel/api/save → { path, content, encoding } writes the file back (backs up the original to .bak first)
  • GET/POST /paperpanel/api/note?path=… → read/save the item's .notes.md note

Agent tools

  • paperpanel_search: search the catalog by title/path keyword or type.
  • paperpanel_read: read an item's content (text body / CSV headers+rows / PDF metadata).

Listing in the plugin marketplace

To appear in DSH's plugin marketplace (dshmarket), submit to the curated list awesome-dsh-plugin: add an entry (plugin name, npm package, GitHub repo, description, screenshots, …); the site and marketplace pick it up automatically, usually within a day. The marketplace only installs sources on the curated list — anything else must be installed manually with dsh plugin add.

Notes

  • The right-hand details slot is a single seat and this plugin deliberately does not occupy it; it uses shell.overlay (the official additive overlay seat) instead.
  • The drawer is root-scoped; inputActions are bridged in through the session-header button — Ask AI to explain is disabled when there is no active session.
  • Save/note/import all do a root-folder allow-list check; spreadsheet saves back up the original to 原文件.bak.
  • *.notes.md note files are excluded from scanning so they never pollute the catalog.
  • No dsh.engines.dsh is declared, so it stays compatible across dsh versions and never breaks boot on a version mismatch.