DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@signalight/dsh-law-thesis-review

Law Thesis Review

国际经济法论文审查 skill:读取学生 Word 论文,对照自查清单,以 Word 修订+批注输出审查稿。

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

npx -y @deepseek-ai/dsh plugin --profile web add @signalight/dsh-law-thesis-review@0.3.0
README兼容性版本

兼容性与来源证明

Law Thesis Review 以 @signalight/dsh-law-thesis-review 发布,当前版本为 0.3.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.3.0stable
2026/9/19

相关插件

正在加载相关插件…

最新版
0.3.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
162.9 kB
文件数
18
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
0
最近提交
2026/9/18
查看源码 ↗
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 包。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。

README

dsh-law-thesis-review

A DeepSeek Harness skill plugin that reviews student law theses (国际经济法/法学论文) and outputs a Word review draft with tracked changes + Word comments.

What it does

  • Reads a student Word (.docx) thesis (single file or a folder).
  • Checks against a bundled common-issue checklist (硕士/本科自查清单合并版 + 国际经济法/法学论文高发问题).
  • Applies definite fixes as Word tracked changes (w:ins / w:del).
  • Writes Word comments for issues the student must handle themselves (overall section problems, missing basis/clarification, etc.).
  • Emits a short, objective overall review + a fix list.

Install (local / from npm)

# local path
dsh plugin --profile web add link:D:/Coding/Creating/dsh-law-thesis-review
# or from npm (once published)
dsh plugin --profile web add @signalight/dsh-law-thesis-review

Restart the web profile. The skill is then auto-discovered; trigger it with phrases like “批改学生论文”, “审阅这篇论文”, “以修订+批注检查论文”.

Usage

The skill runs the bundled script:

# 1) extract text + paragraph indices
python skills/iet-law-thesis-review/scripts/review_docx.py extract 论文.docx --out ./work

# 2) review: apply tracked edits + comments from a spec
python skills/iet-law-thesis-review/scripts/review_docx.py review 论文.docx --spec spec.json --out 论文_审查稿.docx [--author "教师名"]

Spec shape shown in skills/iet-law-thesis-review/examples/spec-template.json.

Notes

  • Self-contained: apply_edits.py / models.py / add_comment.py are vendored; the skill does not require an external word-docx plugin.
  • Checklist is bundled (skills/iet-law-thesis-review/references/checklist.md); no dependency on any local Obsidian vault path.
  • The output preserves the original title and any student info; revision/comment author defaults to the local Office/WPS username or can be set via --author.
  • Word: open the _审查稿.docx to see the redline + comment bubbles.

License

MIT

Thesis level

The skill detects the paper level and routes to the matching checklist:

  • Undergraduate thesis -> references/checklist-undergraduate.md (with format/editing checks)
  • Master's thesis -> references/checklist-master.md (with format/editing checks)
  • Academic training / term paper -> references/checklist-academic-training.md (no format requirements)
  • Level unspecified -> references/checklist.md (general requirements only; no format nitpicks)