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.

Code Reading Coach — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
C

dsh-code-reading-coach

Code Reading Coach

Code Reading Coach — An Agent preset plugin that interactively guides the study of open-source code corresponding to a research paper. Five-stage reading method: anchor the paper’s claims → scan the terrain → trace entry points → map the core → verify the closed loop.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:tobysunsun/dsh-code-reading-coach#c574202e6c067b3c93e26ed590541201b0a61e35
READMECompatibilityVersions

Compatibility and provenance

Code Reading Coach is published as dsh-code-reading-coach and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/22/2026

Versions

0.1.0stable
8/22/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Declares sideEffects: false
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 4
Weekly downloads
0
Last push
8/24/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 developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-code-reading-coach · 代码研读教练

一个 DeepSeek Harness Agent 预设:交互式引导你研读论文对应的开源代码。

读 AI/软件论文时,论文结构是固定的,开源仓库却各不相同、常常不知从何入手。代码研读教练用五段研读法带你一步步看懂:先明确告知代码用的是什么语言与框架架构(并确认你是否熟悉),再把「论文讲的东西」逐条映射到「代码里的实现」,最后跑起来验证——让你从「不知道从哪入手」到「讲得出整个系统的故事」。

安装

# 默认 profile(web)可直接复制运行:
dsh plugin --profile web add github:tobysunsun/dsh-code-reading-coach

安装后重启 dsh,然后新建会话,在预设选择器中选择「代码研读教练」。

快速上手

新建会话选好预设后,直接说:

  • 「我想读 FlashAttention 的代码」—— 它先告诉你这个项目的技术栈,再带你一步步读
  • 贴上一篇论文链接 / PDF —— 它把论文主张蒸馏成要点,再逐一对照代码验证
  • 只有仓库、没有论文:「帮我搞懂这个仓库」

它帮你做什么

五段研读法,每一段只问一个问题、只给一个下一步:

阶段做什么产出物
0 锚定把论文蒸馏成 3–5 条核心主张,变成代码要回答的问题主张清单
1 地形先明确告知语言 + 框架/架构(并确认你熟不熟悉),再扫描依赖清单、目录树、测试布局地形图(含技术栈)
2 入口找「能跑起来的东西」,追踪顶层执行流执行流图
3 核心映射完整阅读核心模块,逐条核对论文主张论文↔代码映射表
4 闭环跑最小测试、手推一条数据流、改一行观察、费曼复述研读笔记

其他贴心设计:

  • 仓库类型自适应 —— 训练框架、内核库、模型仓库的阅读路径不同;
  • 深度三档(概览 / 追踪 / 深潜),默认从追踪开始,不逼你一开始就深潜;
  • 费曼检查点 —— 深潜前先让你用自己的话讲一遍,讲不通就降档重讲;
  • 代码与论文矛盾时显式标记 —— 这是最有价值的时刻;
  • 产出物持续沉淀到工作区 <仓库名>-notes.md,跨会话接着读。

想先看一次完整产出的样子?见 examples/note-example.md。

常见问题

我没读论文,能直接用吗? 可以。没有论文时,它会把「帮我搞懂这个仓库」当成你的学习目标,走同样的引导流程。

我用的不是 web profile? 把安装命令里的 web 换成你的 profile 名即可(ls ~/.dsh/profiles 查看)。

想锁定某个版本? 用 github:tobysunsun/dsh-code-reading-coach#<commit-sha> 安装指定提交。

不放心第三方插件? 源码很小,只有 lib/index.js 和 preset/ 三个文件,可先审阅;实现细节见 CONTRIBUTING.md。

卸载

dsh plugin --profile web remove dsh-code-reading-coach

卸载不会自动删除预设目录(避免误删你改过的文件);如需移除:

rm -rf ~/.dsh/.agent-presets/code-reading-coach

许可

MIT © TobySUN。预设本体改编自 DeepSeek Harness 内置 standard preset(MIT)。


想为它做贡献、了解实现或发布细节?见 CONTRIBUTING.md。