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.

Plugin Todo Scanner — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-plugin-todo-scanner

Plugin Todo Scanner

DeepSeek Harness TODO code scanning plugin: scans local project directories for TODO/FIXME/HACK/NOTE and other markers, generates a structured list, and supports status management, Markdown export, and a side panel.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zhaoxuejie/dsh-plugin-todo-scanner#f7848e12920b8c5a77f3d120d4677e0aca66b5d3
READMECompatibilityVersions
TODO 雷达面板示例

Compatibility and provenance

Plugin Todo Scanner is published as dsh-plugin-todo-scanner and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/8/2026

Versions

1.0.0stable
9/8/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/8/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.

Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundleDoctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery consoleSsh@linxin666/dsh-sshRemote SSH operations for the dsh web GUI: host config store (~/.dsh/dsh-ssh.json, import from ~/.ssh/config), a persistent ssh2 connection pool with jump-host support, exec / PTY web terminal / SFTP transfer / local port-forward tunnels / cluster executiFind Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

dsh-plugin-todo-scanner

DeepSeek Harness(Cordis 组合)的 TODO 代码扫描插件:递归扫描本地项目目录中的 TODO / FIXME / HACK / NOTE / XXX / BUG / OPTIMIZE / REVIEW 标记,生成结构化清单与统计,支持状态管理、Markdown 导出与侧边「TODO 雷达」面板。

  • Host 侧:注册 8 个工具,供大模型读取/管理扫描结果;本地 HTTP 数据服务供面板取数。
  • Client 侧(Web):设置弹窗内的「TODO 雷达」分区卡片(统计 + 类型分布 + 可筛选/排序清单 + 状态操作)。
  • 只读扫描,白名单 + 系统目录黑名单双重防护,文件数/大小上限保护;状态仅存内存、按会话隔离、卸载即清空。

效果预览

「TODO 雷达」设置分区面板:统计卡片 + 标记类型分布 + 可筛选/排序的清单 + 状态管理操作。

TODO 雷达面板示例

安装

本插件按官方第三方插件分发形态(profile bundle)打包:package.json 声明 dsh.bundle.patch 指向 cordis.patch.yml,并由 exports["./cordis.patch.yml"] 暴露。

# 已发布为可安装 bundle 时,加入某个 profile:
dsh plugin --profile <name> add dsh-plugin-todo-scanner

本地源码调试:在 Harness 的 cordis 配置里引用本文件(或把内容合并进宿主 cordis.yml):

- import: ./dsh-plugin-todo-scanner/cordis.patch.yml

面板数据通路默认走本地 HTTP 轮询(仅 127.0.0.1,端口见配置 server.port),因此要求 Client 与 Host 同机;若宿主将 todo-scanner/state 事件加入 remotes 转发白名单,也可切换为推送(可选增强,默认关闭)。

提供的工具(8 个)

工具说明
todo_scan扫描目录(默认当前会话工作目录)中的代码标记,返回结构化清单与统计
todo_list当前会话清单,支持类型/状态/文件/关键词筛选与 file/type/line 排序
todo_get单条条目完整详情(含前后 2 行代码上下文)
todo_update_status更新单条状态(pending / in_progress / done / ignored)
todo_batch_update批量更新状态
todo_export导出当前清单为 Markdown 任务清单(by_type / by_file)
todo_stats会话扫描统计(总数 / 类型 / 文件 / 语言 / 状态)
todo_clear清空当前会话的扫描结果与状态

配置

完整配置项见 cordis.patch.yml(扫描范围 / 忽略规则 / 标记类型 / 导出格式 / UI / 面板服务端口),与源码 Config schema 一一对应。详见 docs/api.md。

本地开发

要求 Node >= 20,包管理器固定为 npm(参见 AGENT.md §3,禁止 pnpm/yarn)。

npm install
npm run typecheck   # tsc --noEmit(Host 侧;Client 类型检查见 typecheck:client)
npm run build       # tsc → lib/
npm run build:client # tsdown 打包 Web 面板 → lib/client.js
npm test            # build + 冒烟回归 + matcher/ignore-rules/safety 单测(node:test)

文档

  • AGENT.md —— 面向维护者/AI Agent 的开发约定与改哪里
  • PRD.md —— 功能需求与验收口径
  • docs/api.md —— 配置、工具与 HTTP 数据接口
  • CHANGELOG.md / LICENSE

License

MIT