DSH 1024Store
面向 DeepSeek Harness(dsh)生态的社区插件目录,共收录 3809 个插件(含 PR 收录与 GitHub dsh-plugin topic 自动发现),目录数据更新于 2026-08-16。
但这个仓库不只是一份 awesome list。 维护这份目录所需要的全部基建都在这里开源:一个在线插件市场、一个把市场装进 dsh 本体的插件、一条定时自动收集并做格式校验的目录流水线,以及一套免费的公开查询 API。代码采用 MIT 协议,fork 之后就能部署成你自己的插件市场。

在线网站 · API 文档 · 英文目录 · 提交插件

项目亮点
在线插件市场(开源 · 可一键自部署)
deepseek1024.com 提供搜索、分类筛选、安装排行榜、插件详情与 GitHub 活跃度数据。整站跑在 Cloudflare Workers + D1 + KV 上,源码在 apps/web。
想要一个完全属于自己的插件市场:fork 本仓库,把 apps/web/wrangler.jsonc 里的 routes 换成你自己的域名,创建 D1 数据库与 KV 命名空间,配齐 secrets.required 列出的 Worker secret,再把 CLOUDFLARE_API_TOKEN 与 CLOUDFLARE_ACCOUNT_ID 存为仓库 secret。配置完成后,每次 push 到 main 都由 GitHub Actions 自动执行 D1 迁移并部署 Worker,不需要自己写一行部署脚本。完整步骤见下文本地运行与部署。
把插件市场装进 dsh 本体
不想切浏览器,就把市场本身作为插件装进 DeepSeek Harness:
dsh plugin --profile web add dsh-1024store
重启后「设置」里会出现独立的 1024 Store 入口,「设置 → 插件」下也会多出一个 1024 Store(数量) 标签页,可以直接搜索目录、按分类筛选、识别已安装状态、安装与卸载,并显示操作进度。安装器只接受目录中已校验过的仓库地址,并自行推导 github:owner/repository,不会执行目录返回的展示命令。源码见 packages/dsh-1024store。
定时自动收集 + 格式校验
这是本目录与多数插件市场最大的区别:目录不靠人肉维护,收录前一定过校验。
- 定时收集:Cloudflare Cron 每 30 分钟做一次增量扫描,用
created: 与 pushed: 两路搜索抓取带 dsh-plugin topic 的 GitHub 仓库;每周日再做一次全量对账,长期不活跃的仓库不会被漏收,掉了 topic 也只在一次成功的全量扫描后才下架。
- 格式校验:每个候选仓库都要通过静态校验——读取默认分支的 Git tree,检查
package.json、dsh.bundle.patch 字段,以及 patch 文件在同一棵 tree 中确实存在。全程只读文件,绝不安装依赖、绝不执行仓库代码。 校验不通过就不进目录。
- 自动同步:PR 合并后由 CI 自动同步目录到网站数据库并刷新本 README,贡献者和维护者都不需要手工改任何生成文件。
调度节奏、GitHub API 限额与失败行为见 插件发现运维文档。
免费查询 API
目录数据免费开放,匿名即可调用:
curl 'https://api.deepseek1024.com/v1/plugins/search?q=memory'
匿名调用每天 50 次、每分钟 10 次;用 GitHub 账号登录网站创建 API Key 后提升到每天 500 次、每分钟 30 次。另有 /api/v1/registry 返回全量目录快照——本 README 就是由它生成的。完整端点、参数与错误码见 API 参考。
参与进来
这个项目由社区维护,下面每一种参与都真的有用:
- 点个 Star — Star 本仓库是成本最低、帮助最大的支持,能让更多 DeepSeek Harness 用户找到这里。
- 提 Issue — 插件信息有误、分类不合理、网站或 API 有问题、想要新功能,都欢迎提 Issue。
- 发 PR — 提交你自己的插件,或改进网站、CLI、市场插件与目录流水线,欢迎直接发 Pull Request。
- Fork 自建 — 想要自己的插件市场,Fork 之后按上面的步骤配置即可,MIT 协议,随便改。
安装插件并计入统计
网站优先提供开源包装 CLI;它会调用官方 DeepSeek Harness 插件命令、校验 profile 的真实安装结果,并把匿名安装结果可靠地上报到排行榜:
npx @dsh-1024store/cli add <owner>/<repository>[/<sub/dir>] --profile web
插件标识支持 monorepo 子目录形式(如 owner/repo/packages/foo),会以官方 github:owner/repo#path:packages/foo 安装 spec 传给官方 CLI。插件标识和 --profile 之外的参数会原样传给官方 CLI;参数可能与包装器冲突时可放到 -- 后,例如 ... -- --ignore-scripts --reporter append-only。透传参数不会写入遥测或本地 receipt。
统计身份是保存在 $DSH_HOME/.dsh-1024store/ 的随机安装实例 ID,不是实名用户或账号。CLI 不上传命令输出、路径、用户名、环境变量、会话内容或原始错误;可用 npx @dsh-1024store/cli telemetry disable、DO_NOT_TRACK=1 或 DSH_1024STORE_TELEMETRY=0 关闭。直接使用官方 dsh plugin 命令仍然可用,但不会计入 DSH 1024Store 安装统计。详细字段、口径、存储和部署方式见 安装统计设计,CLI 源码见 apps/cli。
提交插件
使用 Agent Skill 提交(推荐)
如果你使用 Codex、Claude Code、Cursor 或其他兼容 Agent Skills 的编程助手,可以安装本仓库提供的提交 Skill:
npx skills add imsai-sh/awesome-deepseek-harness-plugins --skill submit-dsh-plugin -g
安装后告诉助手:
使用 $submit-dsh-plugin 检查并提交我的 DeepSeek Harness 插件。
该 Skill 会检查插件仓库、生成唯一允许提交的目录 JSON、验证变更范围,并在获得授权后创建 PR。新增条目的非草稿 PR 通过静态审查后会自动合并;修改或删除既有条目的 PR 同样会跑静态审查,但不会自动合并,需要维护者人工审核后手动合并。合并后 CI 自动同步目录到网站数据库并刷新本 README,贡献者和维护者都不需要手工更新任何生成文件。查看 Skill 源码。
手动提交
欢迎把你的 DeepSeek Harness 插件提交到本目录。请阅读 CONTRIBUTING.md,通过 PR 提交一个新的结构化插件文件;自动审查将验证提交范围和最基础的 DeepSeek Harness 插件配置,通过后自动合并,并由 CI 自动同步到网站与本 README。需要修正或下架既有条目时也可以发 PR,静态审查照常运行,但这类 PR 由维护者人工审核后合并。
安装命令:npx @dsh-1024store/cli add <owner>/<repository>[/<sub/dir>] --profile web。
项目定位
本项目与 awesome-dsh-plugin 都服务于 DeepSeek Harness 插件生态。在继承其目录数据与社区整理思路的基础上,本项目把「一份人工维护的列表」扩展成一套开源、可自部署的插件市场基建:自动发现与静态校验的目录流水线、在线市场网站、dsh 内置市场插件与免费查询 API,具体见上文项目亮点。
项目结构
catalog/plugins/ 插件提交表单与 curated 元数据(每个插件一个 JSON)
catalog/categories.json 分类定义(唯一分类信源)
skills/ 面向贡献者的可安装 Agent Skills
apps/cli/ 上报安装统计的开源包装 CLI
apps/web/src/ React + Vite 前端
apps/web/worker/ Cloudflare Worker API 与数据刷新(唯一读写 D1 的进程)
packages/dsh-1024store/ 1024 品牌的 DSH 设置页内插件市场
scripts/ 提交审查、目录同步与 README 生成脚本
线上目录数据的唯一信源是 Cloudflare D1;本 README 与 catalog/README.md 由 CI 从目录 API 全量生成,职责划分见 仓库布局。
本地运行与部署
需要 Node.js 22+、npm 10+。本地开发:
npm ci
cd apps/web
npx wrangler d1 migrations apply dsh-store-star-history --local
cd ../..
npm run dev
浏览器访问 http://127.0.0.1:5173。如需完整 GitHub 数据,可在 apps/web/.dev.vars 中配置 GITHUB_TOKEN;本地接收安装事件还需要一个至少 32 字符的 INSTALL_CLIENT_HASH_SECRET。
部署到 Cloudflare Workers:
cp apps/web/.env.example apps/web/.dev.vars
# 在 apps/web/.dev.vars 中填写 GITHUB_TOKEN 和 INSTALL_CLIENT_HASH_SECRET
npx wrangler login
npm run build
cd apps/web
npx wrangler d1 migrations apply dsh-store-star-history --remote
npx wrangler deploy --secrets-file .dev.vars
wrangler.jsonc 已声明 KV、D1、Durable Object、Cron 定时任务和静态资源配置。生产环境要先执行 npm run db:migrate:remote,再部署 Worker;完整顺序、GitHub API 限额和费用估算见 Cloudflare 插件发现运维文档,公开 API 见 API 参考。请勿提交 .dev.vars。
致谢
感谢以下项目为本目录提供基础与参考:
插件分类
分组默认折叠,点开即可展开。策展分类完整列出;自动发现的「待分类」条目太多,只列出其中一部分,完整目录请在在线网站搜索浏览。
UI 增强 · 65 个插件
主题与外观 · 6 个插件
- dsh-deep-whale — DSH Web 鲸鱼娘皮肤系列(深海女仆工坊 maid-atelier)。
- dsh-skin — Codex 风格皮肤切换器 + 自定义壁纸层,可调透明度与模糊。
- dsh-stylevault — StyleVault 主题系统:30 套忠实经典配色(Catppuccin、Nord、Tokyo Night、Gruvbox、Solarized、Dracula、One Dark、Rosé Pine 等),映射官方 ThemeService token;完整 Style Settings 面板支持颜色/字体/圆角 live 微调,配置可导出/导入 JSON 分享。
- maid-whale-webui — DSH Web UI 鲸鱼女仆纸质主题:浅色/深色配色、海洋插画、手绘边框、装饰素材与常驻桌宠。
- skin-gallery — 9 套完整的 dsh-web-ui 皮肤复刻:支持自定义皮肤包导入、预览、应用、删除与恢复默认,并修复气泡与代码块可读性。
- theme-gallery — 15 套精选主题族,外加纯 CSS 自定义主题:支持导入、预览、应用、删除与恢复默认,并跟随原生浅色/深色/跟随系统模式。
会话与消息 · 20 个插件
记忆 · 17 个插件
- coding-agents — Hindsight 可学习的 Agent 记忆:自动召回与沉淀的长期项目记忆、知识页、深度反思与按仓库隔离的记忆库。
- distill — 自动对话蒸馏:后台 subagent 反省 + 技能 create/update。
- dsh-context — 为 DeepSeek Harness 网页界面添加上下文洞察面板,展示模型上下文窗口当前的构成与演变过程:各部分占比与窗口大小对照、按请求的历史趋势、压缩与注入事件,以及消息级 token 统计。
- dsh-file-memory — 文件型工作记忆:memorize/recall 把关键前提逐字保存在会话笔记文件,无损挺过上下文压缩。
- dsh-knowledge — 全局知识库桥:kb_add/kb_search/kb_show/kb_timeline 读写与 Codex 共享的 D:\knowledge(格式逐字节兼容)。
- dsh-memento — 有界、分层、带审批门、可审计的跨会话记忆:
ctx.memory 服务 + 零依赖 SQLite 存储 + memory 工具与冻结快照注入;写入必过审批门,模型可见内容可自会话日志重建。
- dsh-memory — 基于 DSH 无损会话日志的引用式记忆:蒸馏出的事实带
(sessionId, eventRange) 引用,可随时展开回原始日志片段。
- dsh-memory-meow — 项目级跨会话记忆:PROJECT.md 快照注入首条用户消息(缓存友好)+ memory_remember 工具 + ReAct 任务结束自动反思;各项目独立记忆文件,互不互通。
- dsh-memory-vault — 跨会话记忆库:remember / recall / forget 工具、每轮提示注入与设置页条目浏览。
- dsh-mneme — 跨会话记忆:SQLite + 可人工编辑的 Markdown 镜像,后台自动巩固(去重/合并/冲突裁决),提供 6 个记忆工具。
- dsh-mnemon — Mnemon 深度集成:本地三层记忆(Runtime Memory、可检索 Documents、受监督 Memory Spaces)。
- dsh-plugin-asmemory — 动作-状态时序记忆:记录类型化的状态与动作,做趋势、异常与因果关联分析。
- dsh-premise-guard — 压缩后前提漂移守卫:摘要丢失关键字面锚点时注入一次性提醒。
- eli-mode — 知识库驱动的 Agent 预设:wiki 长期记忆、Web 知识库界面、管理页面与可选的 UI 美化。
- forge-memory — 基于 BM25 关键词检索的记忆召回。
- nowledge-mem-deepseek-harness — 给所有 AI 工具和 Agent 共用的一层记忆:注入 Context Bundle、提示时检索、MCP 工具与回合结束 DSH 线程捕获。
- sgme — 拾光记忆引擎(SGME)桥接:多智能体共享长期记忆(HTTP)—— L0/L1/L1.5/L2 分层提炼、按场景注入、统一检索、主动关怀信号(memory_search / wiki_search / signal_pull / signal_claim / signal_ack),npm 包名
dsh-sgme。
工具与能力 · 81 个插件
- @zhaoolee/dsh-notes — 将 DSH 对话导出为锤子便签风格 PNG,或在配置的账号工作区中新建和更新 Markdown 便签。
- argo — 专为 agent 打造的搜索工具:多语言,覆盖中文/英文/学术/代码/购物/金融/新闻/百科。
- blender — Blender 3D 生产插件:提供 30 个建模/重建 Skill、13 个运行时工具和 26 个确定性 Helper,覆盖参考图拟合、渲染、验证、动画与可移植格式导出;npm 包名
dsh-blender。
- dsh-1024store — DSH 1024Store 官方商店插件:设置页内浏览/搜索 deepseek1024.com 实时目录,按分类筛选,确认后一键安装/卸载,支持自更新检查。
- dsh-adb — ADB 设备·台架运维工具集:设备发现、结构化 logcat(后台采集)、apk 安装、文件 pull/push、性能快照。
- dsh-adhd-copilot — ADHD 行为辅导技能:任务拆解、事项过载管理、启动仪式与失败重启。
- dsh-apple-mode — DSH 的 Xcode AI 集成:26 个 Xcode MCP 工具(mcpbridge)+ Apple 平台技能 + Xcode Intelligence 风格 persona(agent preset 或全局 bundle)。
- dsh-backup — 一键备份 DSH 用户数据:/backup 命令、定时自动备份、sha256 校验与自动轮换。
- dsh-bash-terminal — 一个 shell 工具:Windows 上统一执行 PowerShell / Git Bash / WSL,外加交互式 PTY 终端,默认终端由用户在设置中选择。
- dsh-browser — Chrome 侧边栏扩展,让 DSH 直接操控你的浏览器,无需视觉能力。
- dsh-code-intel — 用 Tree-sitter 建立工作区符号索引,提供词法或可选 embedding 辅助的代码检索。
- dsh-computer-use — macOS 电脑控制:Accessibility 观测、过期状态拒绝、作用域权限与安全输入。
- dsh-context-proxy — 按需取回薄层:context_query / context_slice / context_grep 三个工具读取已持久化的历史,引用可回放。
- dsh-continual-evolve — 持续自进化:从会话轨迹沉淀版本化、可审计、可回滚的 harness 状态(提示词/记忆/技能/子代理规格),带审查门禁与技能热加载。
- dsh-cowork — doc_read/doc_write:以有界、单元格寻址的方式读写 xlsx / pdf / docx / pptx / ipynb,另附 MCP 服务器与 CLI。
- dsh-custom-tool — 用 Monaco 编辑器创建和管理沙箱化的自定义 JavaScript 工具。
- dsh-data-agent — 让 AI 帮你连数据库、写 SQL。
- dsh-docker — 类型安全、带护栏的容器控制:ps/logs/inspect/exec/start/stop 与 compose up/down,JSON 输出、项目感知定位、破坏性操作需审批。
- dsh-exam-countdown — 查询 64 场中国考试(高考/考研/四六级/CPA/法考…)的规则日期(第二个周六、第一个周日)与倒计时。
- dsh-excel-chat — 在 DeepSeek Harness 里对话完成 Excel 工作:建表、编辑、修复公式、图表校验,每次编辑后自动体检公式。
- dsh-figma-to-lottie — 将 SVG 路径与关键帧参数编译成自包含的 Lottie JSON 动画文件。
- dsh-find-plugin — 会话内直接找插件:按关键词/分类搜索本精选 registry,返回描述与可直接执行的安装命令。
- dsh-fleet-audit — 只读的 agent 机群凭据卫生审计:检查凭据文件权限、git remote 内嵌凭据(输出脱敏)与 provider token 字面量计数;零依赖、确定性。
- dsh-hdc-bridge — 鸿蒙设备桥:hdc 截图/装包/日志/崩溃/UI 自动化闭环(配 read_image 看图),官方优先版本化 API 知识层(SDK .d.ts + 离线随包文档),以及 DevEco CLI 构建/签名/lint 通道。
- dsh-image-search — 多引擎反向识图聚合:Google Lens、百度、Yandex、TinEye、SauceNAO、IQDB、Ascii2d。
- dsh-kb-sieve — 从 md/txt/docx/pdf 构建可审计知识库包(SQLite FTS5),确定性检索与原文阅读。
- dsh-market — 装在 DSH 里的插件市场:设置页内逛/搜全部社区插件,按分类筛选,确认后一键安装,已装插件一目了然。
- dsh-mcp-lens — DeepSeek Harness 的渐进式披露 MCP 网关:保持两个面向模型的工具,按需返回排序后的远端精确 inputSchema,再调用明确的 server/tool。
- dsh-md-preview — 把 Markdown 渲染为自包含的独立 HTML 页面:提供在 headless 配置下同样可用的
md_html_render 工具,以及在网页端浏览、预览、编辑并导出本地 .md 文件的抽屉;两个入口共用同一个渲染器,无运行时依赖。
- dsh-mobile-gui-agent — Android GUI Agent:ADB 截图、压缩 UI hierarchy 定位、逐步动作验证、审批和 Mobile Web 视图。
- dsh-net-proxy — 让 agent 的网络请求走本机 HTTP/CONNECT/SOCKS5 代理。
- dsh-openmaic — OpenMAIC 教学:课堂、幻灯片、交互组件与苏格拉底式教学。
- dsh-overleaf — 通过 OverleafMCP 将多个 Overleaf 项目接入 DSH,支持浏览、分析和通过 Git 写回 LaTeX 文件。
- dsh-plugin — 通过 PicGo 已有配置(PicGo Cloud、GitHub、S3、腾讯云 COS、七牛,或任意已安装的上传插件)把本地图片和文件上传到图床,提供
picgo_upload 工具与 /picgo 命令。
- dsh-plugin-center — 插件中心:在设置页内发现、安装和管理 DSH 插件。
- dsh-plugin-deepseek-vision — 为纯文本 DeepSeek 提供视觉能力的 MCP 与 DSH bundle:analyze_image、analyze_clipboard、compare_images 与 vision_status 工具,可视化设置页,默认使用免费 GLM-4.6V-Flash,带结果缓存与限流容错;密钥不进日志。
- dsh-plugin-knowledge-graph — 基于代码库知识图谱的 read_graph 工具(CONTAINS / EXPORTS / IMPORTS / IMPORTS_SYMBOL 关系)。
- dsh-plugin-mineru — 向模型暴露 MineRU 文档解析工具。
- dsh-plugin-updater — 已装插件的更新管理器:检查更新、备份与回滚。
- dsh-recommend — DSH 插件透明排行与推荐:每日自动抓取
dsh-plugin 话题生态,公开评分模型,提供 rank/search/recommend 工具与设置页榜单。
- dsh-remote — 多机远程工作区:管理多台 SSH 主机,在原生「添加工作区」流程里选本机系统文件夹或远程目录,把远程工作区镜像成真实本地文件夹并用 rw_* 工具操作。
- dsh-scholar — 学术助手插件。
- dsh-session-audit — 会话执行分析:步骤、工具调用、失败、重复动作、token 用量与验证信号,输出 text/Markdown/JSON 报告。
- dsh-skillport — 把已有的 Agent Skills(SKILL.md)技能库带进 DSH:扫描 Claude/Codex/Cursor/Gemini 技能目录、注入渐进式索引,按需加载技能正文。
- dsh-subagent-cwd — 在 dsh-subagent-tools 基础上增加子代理按调用 cwd,附带所需的两个 in-process provider 补丁。
- dsh-subagent-tools — 子代理委派的按调用覆盖:model/provider/persona/toolFilter、@preset: 引用与 provider/model 组合 id。
- dsh-subscribe — Steam 风格插件商店:可在 DSH 内浏览的插件仓库,一键安装、卸载与更新,另有零依赖 CLI 与 Agent 可调用的市场工具。
- dsh-tool-calculator — 安全的数学表达式求值器,零依赖递归下降解析器。
- dsh-tool-csv — CSV 解析/查询/统计/转换(RFC 4180),零依赖状态机解析器。
- dsh-tool-diff — 文本/JSON/CSV/Markdown 结构化比较与 unified diff。
- dsh-tool-encoding — base64/url/hex 编解码、常用哈希、UUID 生成。
- dsh-tool-json — JMESPath 子集 JSON 查询。
- dsh-tool-markdown — HTML↔Markdown 转换、GFM 表格规范化、目录生成。
- dsh-tool-regex — 正则测试/提取/安全替换/静态解释(不执行代码)。
- dsh-tool-schema — JSON Schema 验证:validate/paths/explain/normalize。
- dsh-tool-search — Hermes 风格工具搜索与瘦身:渐进式披露,语义搜索/查看/调用长尾工具,核心工具保持直通。
- dsh-tool-search — 按 agent 的按需工具发现与渐进式 schema 披露。
- dsh-tool-stat — 描述统计/百分位数/频数分布/相关性。
- dsh-tool-tavily-search — Tavily 搜索:多 API key、轮换与故障转移、用量仪表与设置卡片。
- dsh-tool-time — 严格 ISO 8601 解析、IANA 时区转换、UTC 日历运算。
- dsh-toolkit — 零依赖工具包:time / encoding / json / calculator / csv / regex / markdown / diff / stat / schema 十件套一键安装。
- dsh-trio — 浏览器自动化(Playwright,带实时画面)+ MCP Server(把 DSH agent 暴露给任何 MCP 客户端)+ GitHub issue/PR/webhook 评审工具。
- dsh-undo-plugin — DSH 撤销/回退系统:配置变更自动存档,一键撤销/恢复/回退到任意版本,支持 WebUI 与离线 CLI/GUI 工具(DSH 启动失败也能救)。
- dsh-video-downloader — 检测并下载 B站/YouTube/抖音/小红书视频媒体,带清晰度与格式分析。
- dsh-vision — Agent 可调用的视觉工具:通过自行配置的任意 OpenAI 兼容视觉端点描述本地图片,支持可选的多模型交叉校验,不内置密钥。
- dsh-vision-bridge — 输入框贴图自动识别:由 OpenAI 兼容视觉模型转成文字描述后,再交给纯文本 DeepSeek 模型处理。
- dsh-vision-proxy — DeepSeek 大脑 + 自动识图:GUI 附加的每张图片自动经 OpenAI 兼容 VLM 转译成文字,再交给纯文本的 DeepSeek 作答——默认走免费匿名端点(零配置),填自己的 key 可启用付费快速通道(qwen3.7-flash,支持 DashScope/智谱/Ollama/OpenRouter)。
- dsh-vision-router — 为纯文本 Agent 提供视觉能力:内置免 Key 视觉链 + 像素级视觉工具(看图问答、定位、裁剪、像素对比、取色、OCR、矢量化、抠图、截图);粘贴图片即可用。
- dsh-vision-toolkit — 让纯文本模型更好地做视觉任务:带意图的图片问答、长截图 OCR、UI 还原等。
- dsh-voice — 语音输入、语音输出:把口述音频转写为用户消息(transcribe),让 agent 朗读回复(speak),本地优先,音频存于 ~/.dsh/voice。
- dsh-wash-calendar — 基于纯日期数学的周期习惯排程:下次发生日、区间排程与逾期提醒。
- dsh-web-search-exa — ctx.web 接缝的零配置 Exa 网页搜索提供方:无 API key 时走匿名 MCP 兜底,配 key 时走 REST 搜索。
- dsh-webui-market-plugin — dsh Web GUI 内的社区插件市场:浏览 awesome-dsh-plugin.com 目录,从 设置 → 插件 → 插件市场 安装/卸载插件到 profile。
- dsh-workshop — DSH Web UI 的 Steam 创意工坊式插件商店:浏览、搜索并一键安装社区插件,支持镜像加速、进度 UI、安全检测与中文描述。
- forge-gates — 真实计算验证门:数学化简、逻辑证明、正则校验、E-prover 一阶逻辑、状态机检查与代码修复,由 Go 编译的二进制支撑并附带预编译 Windows 可执行文件。
- forge-tcm — 中医工具集:八纲辨证与药对查询。
- modlens — 为纯文本模型架起视觉桥梁:粘贴图片,输出结构化 JSON 证据(OCR、版面、语义)。
- modsearch — 纯文本 agent 的联网搜索桥:搜索网页与 X,返回结构化 JSON 证据(search/fetch/引用)。
- noatmark-dsh-plugin — 文本卫生 dsh 插件:净化不可信文本、扫描隐形字符、清洗 LLM 格式、转义 CSV 公式注入。
- pack-agent — 把 .pack.json/.pack.zip 投影到 .agent-pack/modpacks/,按工作区白名单暴露 skill。
- plugin-manager — DSH Web UI 内置插件商店:浏览、搜索、一键安装,附兼容性标识。
技能包 · 7 个插件
- airesearch-plugin — 面向股票研究的 AIResearch 技能包:单页快照、六视角个股深度研究、盘前 watchlist 简报、行业主题映射与 SEC 文件分析。
- dsh-reverse-skill — 一个为 DeepSeek Harness 注册 85 个逆向工程、授权渗透测试与安全研究技能的 Cordis 插件。
- dsh-skill-manager — 设置侧边栏的 Skill 管理器:池与启用目录启停、文件夹批量导入(重名询问)、状态驱动一键规范检查与自动修复、系统级/项目级来源标识。
- folio-events — Folio(兰亭)@folio/dsh-events:会话协议事件——会话开始自动提醒与会话关闭自动保存,与 @folio/dsh-tools 搭配使用。
- folio-tools — Folio(兰亭)@folio/dsh-tools:咨询文档生成引擎的 15 个 schema 校验工具(记忆 + 质量门),与 @folio/dsh-events 搭配组成完整会话协议。
- humanizer-ru-dsh — 清理俄语文本中的 AI 痕迹:识别聊天机器人复制粘贴的痕迹(ChatGPT、Gemini、Grok、Perplexity、DeepSeek),按需改写为自然文风;39 条正则标记与证据登记,离线纯文本 bundle。
- skills — Creght 平台建站技能包:CLI 拉取/推送同步、页面与组件规范、CMS、表单、Auth、SEO、发布与版本回滚。
工作流与自动化 · 24 个插件
通知与集成 · 19 个插件
模型与账号接入 · 7 个插件
开发与运行时 · 51 个插件
- dsh-agent-budget — agent 树 token 预算管理。
- dsh-annotate — 面向 Vibe Coding 的浏览器元素标注插件:直接选取页面元素,并将结构化视觉反馈发送给 DeepSeek Harness Agent。
- dsh-chameleon — DeepSeek Harness 自编辑桌面工作台:完整的 dsh web 复刻,编辑模式下 Agent 可热重载地修改工作台本身(补丁层、插件、UI)。
- dsh-context-doctor — 上下文注入审计:统计指令链/技能目录/工具 schema 的 token 成本,检测重复与冲突。
- dsh-cost-tracker — 按模型追踪 token 成本:可配置缓存命中/未命中、输出与高峰时段单价,实时会话花费条,并标记未配置价格的模型。
- dsh-doctor — DSH 离线诊断:覆盖环境、profile 与会话状态的 19 项检查,附设置页 Doctor 面板与只读 JSON API。
- dsh-eval-harness — DSH 插件评测框架:YAML 用例驱动真实 headless agent,断言工具调用/参数/返回与 token 用量,baseline 门禁做 CI 回归。
- dsh-evolve — 自进化:agent 在会话内给自己热挂载/卸载持久化插件。
- dsh-fail-logger — 全模式调用工具失败自动实录:把原生工具 / PTC run_code / 代码内嵌工具调用的失败错因去重计数后写入 skill,越用越少错。
- dsh-git-identity — git 提交固定使用环境自身作者身份,环境变量注入压过一切
git config 设置。
- dsh-gitflow — 增加需要审批的 Git 状态、diff、日志、提交、分支和可选检查点工具。
- dsh-guardian — 增加危险操作策略检查、输出脱敏和安全审查工作流。
- dsh-lan-access — 局域网访问:Web GUI 绑定 0.0.0.0 + crypto.randomUUID polyfill(修复非安全上下文下 RPC 崩溃)。
- dsh-mcp-panel — 官方 MCP 客户端(dsh-mcp-client)的只读运行时管理面板:/mcp 命令与设置页 MCP 页签展示连接状态、已注册工具、错误与重连计数,脱敏展示并提供启停 patch 建议。
- dsh-movein-permissions — 在 tools/pre-execute 门为 DSH 提供细粒度按工具权限规则:deny/ask 列表采用 Claude Code 规则语法(Bash(rm -rf:*)、Read(secrets)、mcpservertool),可独立使用无需迁移。
- dsh-multica-runtime — 让 dsh 运行时跑在 Multica 上。
- dsh-pain-point-check — 强制痛点检查:同一问题连续 2 个实验未收敛后注入三问、拦截非调查类工具调用直到答出、阻止同方向重试。
- dsh-passwords — DSH Web UI 登录网关:首次配置、bcrypt + 静态加密(AES-256-GCM/HMAC)、防爆破、审计日志、TLS 1.2+ 与 80→443 跳转、CSRF 与防嵌框。
- dsh-plugin-check — 插件健康检查:扫描清单协议/patch 格式/构建陷阱,零依赖只读。
- dsh-plugin-manager —
dsh pm 插件管理器:多源搜索(awesome 列表 + GitHub + npm)、按 profile 安装/移除/更新,以及 doctor 审计(清单、bundle patch、版本漂移)。
- dsh-polyglot — DSH 的模型切换器:指向任意 OpenAI 兼容端点,内置精选免费/低价 DeepSeek 服务商预设,免费额度限流时自动回退。
- dsh-prompt-profile — DeepSeek Harness 可复用 Markdown Prompt Profile,支持单轮模型选择、参数替换和状态恢复。
- dsh-repro — /repro 导出最小可复现问题包:去 secret 的会话日志、失败命令与 git diff。
- dsh-revdiff — DeepSeek Harness 原生交互式 Git diff 审查,支持结构化批注并回传当前 Agent 会话。
- dsh-rule-evolve — 验证驱动的自进化循环:失败日志沉淀为经验证的 AGENTS.md 规则;会话内插件(evolve_learn / evolve_apply / evolve_touch / evolve_recall)、工具验证门、规则生命周期与本地召回。
- dsh-security-audit — 本机安全审计:配置/插件来源/会话/网络暴露面,只读脱敏风险报告。
- dsh-session-health — 会话文件帧级扫描诊断(torn/损坏/空会话检测)。
- dsh-telemetry-redactor — 在已配置遥测后端接收前,对
session-telemetry/record 导出副本中的已支持秘密模式进行脱敏。
- dsh-testgen — 自动化单元测试生成:/testgen 命令与 generate_tests 工具,生成、运行并修复测试直至通过(LLM 与离线模板双生成器;支持 vitest/jest/mocha/node:test)。
- dsh-tmuxctl — 掌控你的 tmux 面板:list/send-keys/capture、在面板中运行长任务并 watch,破坏性命令需审批。
- dsh-tool-approval — 手动审批模式(Manual/Ask Mode)。
- dsh-tool-call-stats — 进程内工具调用统计:提供
tool_stats 工具,按工具汇报调用次数、失败次数与平均耗时。
- dsh-tps — TPS 指标插件。
- dsh-trace — 遥测后端:把 turns、model steps、tool calls 导出到 yiTrace。
- dsh-turn-approval — DSH「允许本次任务」临时授权:仅在当前任务内自动放行同类
danger-full-access 请求,任务结束自动失效。
- dsh-updater-ui — 设置页中的 DSH 自助更新器:一键检查/拉取(git pull --ff-only)、自动后台检查、版本对比与更新说明预览,带红点提醒。
- dsh-user-experience — 帮你发现项目中可能存在的用户体验问题:自动走查 React/TypeScript 源码,定位问题并给出具体优化建议。
- dsh-verification-receipt — 把每轮工具计数与粗粒度验证信号写入本地 JSONL,不保存提示词、工具参数或结果正文。
- dsh-webui-auth — WebUI 身份认证:HTTP/传输层强制登录(资源、插件 bundle、/api、WebSocket 四层防护),服务端会话 + HttpOnly Cookie。
- fabric — 类似 MC Fabric 的 hook 处理器。
- forkprobe — 同一任务并行试跑多个技能,对比结果选出最优。
- mirage-dsh — 把文件系统与 bash provider 替换为 mirage 虚拟工作区:文件工具与 shell 命令运行在挂载资源上(RAM、S3、Redis、Slack、Gmail、Notion、Postgres),支持按挂载读/写/执行模式、按命令的沙箱路由(monty、pyodide、quickjs 进程内;docker、e2b、daytona 远程),并可在虚拟终端把已安装 CLI(git、gh、slack、linear、ntn、gws 或自注册)作为起始词使用。
- oh-dsh — 社区发行版:TUI、桌面端与 Web UI 统一体验,分层安装、一步到位。
- plugin-registry — 插件生态基建:浏览器面板管理官方 repository 插件(0 patch)+ make-dsh-plugin 插件开发引导技能。
- plugin-template — 插件模板仓库(基于 turtle-ui 官方仓库)。
- remote-access-web — DSH Web GUI 反向隧道:把
dsh --profile web 部署暴露为公网 frp URL,并将目录选择器切换为应用内浏览器,手机或远程机器即可打开并管理工作区。
- sandbase-harness — 本地优先的 Agent 运行时,提供持久会话、沙箱后端、审计与回放,并通过 DSH bundle 暴露 MCP bridge。
- sandbox-micro — microsandbox 沙箱支持。
- sandbox-mxc — 微软跨平台沙盒支持。
- sandbox-nono — nono 沙盒支持。
- upstream-radar — 面向 DSH 插件的常驻依赖安全监控:追踪实际安装路径、OSV 漏洞、npm 发布与兼容性信号,并路由给 DSH Agent。
娱乐 · 21 个插件
待分类 · 显示 500 / 共 3491 个
- 7d7d — omdsh-dev/7d7d discovered from GitHub.
- academic-research-graph — A SKILL that turns one paper into a living research map.
- acks-dsh-plugins — ACKS DeepSeek Harness 插件库 — AI Agent / Creative / Knowledge / Service 四类插件合集
- adb_dsh_plugin — DeepSeek Harness plugin for controlling Android devices through ADB
- adhdgofly-dsh-ext — ADHDGoFly POS highlighting plugin for DeepSeek Harness Web: nouns green, verbs red, adjectives/adverbs purple, others gray in rendered Markdown
- adversarial-review — dsh 插件:对抗式多视角代码审查(gavel-review)。多透镜并行攻击式审查、确定性静态哨兵、跨视角合并去重、严重度定级、抑制规则与审查历史;支持 dsh 工具接入与独立 CLI。
- Aegis — Make AI coding agents architecture-aware: baseline-first, evidence-verified, drift-checked, and safe across long tasks.
- aflare — 本地优先的自动化 Agent · 数据不出本地 · 连接你自己的 LLM / 数据库 / 知识库 · ReAct 推理 · 300+ 技能模板 · 确定性工作流执行(DAG/WAL/Saga/幂等) · MCP 协议 · 离线/内网可用
- ag-dsh-coding-plugins — 围绕软件工程开发的DeekSeek Harness 插件合集
- Agent_Extensions — Agent Skills & DeepSeek Harness (DSH) 扩展库:通用智能体技能(General_skills)+ DSH 标准插件(dsh-plugin),开箱即用的 AI Agent 能力增强集合。
- agent-dispatch-cli — Codex-native capability router for delegating bounded tasks to configurable local AI CLIs.
- agent-jit — DeepSeek Harness (dsh) 插件:把 LLM agent loop 中确定性的执行路径编译成 DSL 程序并直接执行,显著降低 token、往返轮次与上下文暴露。A DeepSeek Harness plugin that compiles deterministic agent paths into DSL programs.
- agent-loop-workflow — agent-loop-workflow: 通用多 agent 协作工作流骨架 skill 插件 — Loop Guard/Handoff/Review→Close protocol
- agent-mode-switcher — Switch the current session's agent preset (mode) after the model answers and keep chatting. DeepSeek Harness 插件:模型回答后切换模式,继续当前对话。
- agent-plaza — Zero-signup public commons for AI agents — HTTP API + Agent Skill (Codex, Cursor, Hermes)
- agentrq — AgentRQ: Human-in-loop realtime conversational task manager for AI Agents. Self-hosted! Control your own agents from wherever you want Mobile, Web, Desktop. Designed to work well with your own Claude subscriptions and any harness.
- ai_skills — A playful Codex skill that lets the agent briefly zone out, recap state, and continue.
- ai4scholar-plugin-dsh — AI4Scholar for DeepSeek Harness (dsh): 38 native academic tools — Semantic Scholar, PubMed, Google Scholar, arXiv, bioRxiv/medRxiv, DOI, full text, auto-cite, figures, unified search. Powered by ai4scholar.net
- aifp-mcp — AiFP 记忆感知系统|MCP 服务,一套记忆全 AI 共享。面向中文的 Agent 感知记忆,支持叙事链、语义纠错、感知链图扩散。兼容 DeepSeek‑Harness、Claude Code、Cursor、Codex等全部 MCP 客户端,数据完全本地存储。
- aitoearn-dsh-plugin — AiToEarn 内容创作套件 —— DeepSeek Harness 插件(创意指导/脚本/图文/视频生成 + 抖音发布)
- allinluna — Resource-aware multi-agent orchestration for Codex and DeepSeek Harness (All in Flash DSH plugin)
- amber-protocol — Amber Protocol: repository-local governance for coding agents, including a DeepSeek Harness (dsh) patch overlay.
- anan-thermal-monitor — 紫白桌宠温度监控:CPU/内存/GPU/NVMe 实时温度 + 硬件信息 · DeepSeek Harness (DSH) 插件,支持 dsh plugin add 一键安装
- Angelina-dsh-plugin — FlowerWater1019/Angelina-dsh-plugin discovered from GitHub.
- anime-find — DeepSeek Harness 搜番插件:对话内多源搜索番剧,卡片展示 Bangumi 评分与详情,支持复制磁力。
- anysearch-dsh — AnySearch web search provider and advanced search tools for DeepSeek Harness (DSH)
- arcana — DeepSeek Harness 的悬浮命令甲板:把所有斜杠命令列成可执行按钮,并按使用次数排序。
- archify — Agent skill for beautiful, verifiable architecture, workflow, sequence, data-flow, and lifecycle diagrams—self-contained HTML with motion and crisp export.
- asuka-pet — sHen9Qi/asuka-pet discovered from GitHub.
- attach-plus — DSH web-ui plugin: '/' command-button glyph + '+' attach button with separated image/document/other uploads
- auto-compact — JohnathonYe/auto-compact discovered from GitHub.
- auto-vision — DeepSeek Harness 图片插件:贴图不会让对话报错,模型自动判断是否需要看图(支持智谱/魔搭免费视觉模型,图片在聊天窗口正常显示)
- awesome-deepseek-harness — A curated list of plugins, skills, MCP servers, patch/profile layers, orchestrators & UIs for DeepSeek Harness (DSH). Visualization · PPT · Coding · Agents · Loops (auto-research) and more. #dsh
- awesome-deepseek-harness-plugin — Public DeepSeek Harness plugin Store and ecosystem dataset: install specs, source evidence, SQLite history, media, timelines, and two-hour refreshes.
- awesome-deepseek-harness-plugins — DeepSeek Harness plugin store, marketplace and hub — 3,100+ dsh plugins with search, rankings, install commands and a free public API. DeepSeek Harness 插件市场 / 插件商店:自动收集与格式校验,免费搜索 API。deepseek1024.com
- awesome-deepseek-skills — Pinned and statically verified Agent Skills for DeepSeek and DSH
- awesome-dsh — DSH 插件生态导航:GitHub topic dsh-plugin 全量目录,自动抓取 + Workers AI 中文翻译 + 按需检索 skill|Auto-updating catalog of 2600+ DeepSeek Harness plugins
- awesome-dsh-background-plugin — DSH Web 背景个性化插件:上传自己的图片(JPG / PNG / WEBP / GIF,浏览器端自动压缩到 1600px 以内)或一键切换极光、余烬、宣纸三种预设氛围;实时预览所见即所得,支持细调图像存在感、暗色遮罩、柔焦、适配方式与焦点位置;上传即自动保存到 DSH 设置,重启后原样恢复,浅色 / 深色主题均正常;侧栏、消息气泡、输入框保持原样不遮挡,浮层菜单不受影响;全程本地处理不上传任何服务器,关闭开关或一键恢复默认即可完全移除;内置中英文双语界面。
- background-plugin — 修改DSH的背景,支持静态动态背景,支持网页图片视频,支持修改透明度
- backpack — dsh backpack plugin
- balance-dock — Cao-zhi-hao/balance-dock discovered from GitHub.
- Baton — Pass your project, not your context.
- beav-deepseek-harness — Beav Creator for Xiaohongshu/RED, social-media AI operations, research, copywriting, images and video in DeepSeek Harness|小红书与社媒AI运营
- Better_Deepseek_Harness — Better Deepseek Harness, with some functional extensions to webui and Deepseek Harness·更好的deepseek harness,对webui和deepseek harness进行了一些功能扩展
- better-deepseek-harness — DSH 图片/音视频托管插件:自动拉起 8899 静态服务 + 3080 /files/ 路由(HTTP Range 流式)+ WebUI 内点击即播(视频静音/音频 20% 音量/互斥懒加载)
- better-model-provider — Per-model capability declaration for DeepSeek Harness: reasoning-effort levels (wire spellings) + request modalities (vision) for OpenAI-compatible providers. Settings section, zero runtime harness deps, no YAML.
- bilibili-downloader-dsh — DeepSeek Harness 插件(Agent Preset):B站(bilibili) 音视频下载助手。整合 bilidown CLI 与下载技能:官方API直链 / HTTP 412 反爬规避 / 扫码登录高清 / AV1 自动规避 / 合集秒下 / 片段截取。
- billion-context-dsh — Model-driven context management (Active Context Pruning / ACP) for the DeepSeek Harness — the model decides when and what to compress. Ported from billion-context-pi (ranxianglei); acp-kernel reused verbatim. CompactionEngine backend with compress/decompress/search_context/acp_status tools.
- bing-web-search — DeepSeek Harness 网页搜索插件:有 Tavily key 走 Tavily,没有自动退回免费无 key 的 Bing,搜索永远可用(零配置起步)
- blocker-notify — dsh-blocker-notify — Real-time attention alerts for DeepSeek Harness: a global banner + flashing workspace entries when the agent is blocked (approval request / sandbox denial).
- brockdsaver — Pre-boot rescue toolkit for DeepSeek Harness — validates profile composition, detects broken plugins, and provides one-click recovery without starting DSH.
- btw4DeepseekHarness — /btw system command for deepseek harness
- capital-generation — 面向中国股市小散户的金融投资智能体
- Catppuccin-dsh-theme — 🐱 Soothing pastel theme for DeepSeek Harness
- CazzPatent — AI patent disclosure drafting plugin for DeepSeek Harness - 8-stage pipeline, LaTeX to OMML, diagram generation, self-improving memory
- cc-dsh-notifier — Windows desktop notifications for Claude Code and DeepSeek Harness sessions. Click any toast to restore the session window — unlike similar tools that only notify without focus actions. Zero external npm dependencies.
- chat2skill — Extracting and iterating skills from daily conversations with AI
- chicheng-cron — DSH 定时任务插件:侧栏「定时任务」入口,cron 定时执行 shell / python / node 脚本、Skill 与 Agent 任务;支持 chicheng-push 与 messaging-core 推送通知、会话归档、移动端适配。
- chicheng-gate — DSH Web 插件:局域网/远程访问控制、frpc 内网穿透、面板密码门禁与手机端 UI 适配。
- chicheng-push — DSH(DeepSeek Harness) Web 消息推送插件:多渠道推送(Server酱/PushPlus/Bark/钉钉/企微/Telegram/飞书/Webhook等),设置界面提供「推送插件」入口,可被其他插件调用(pushNotifier 服务 / /push/api 接口)
- chicheng-stats — dsh 全局用量统计插件:侧边栏展示今日/总请求数与今日/总 Token 数(跨所有会话)
- chiral-pulse — Death Stranding skin for DeepSeek Harness UI + live heartbeat feed that pulses on agent thinking/tool execution. Whale keeps brand blue.
- chrome-faithful — Faithful control of your real, logged-in Chrome profiles: MCP server + MV3 extension + authenticated localhost bridge. No copied profiles, no debug profile, no remote-debugging port, no Edge.
- citeguard — Citation extraction and evidence verification for DeepSeek Harness.
- claude2dsh — kirkchinese/claude2dsh discovered from GitHub.
- Claudecode--DSH — To hell with ClaudeCode!
- clawock — AI argues. Code settles. The losses stay on the page. A real HK + US brokerage account run by agents that must debate every call, settled by code the model never touches. Install the same decision workflow into your own agent: OpenClaw, Claude Code, Codex, or DeepSeek Harness.
- cleverer-dsh — DSH execution-discipline plugin suite: 11 plugins + 6 skills, zero dependencies, 426 tests. 让 DeepSeek Harness 变聪明的插件套件。
- clippy-harness — Windows 98 skin + office assistant pet for DeepSeek Harness — It looks like you're writing code. This time I can actually help.
- Co-Engram — Self-evolving team memory
- Cobsidian — Agent-agnostic workflow skill for maintaining Obsidian knowledge bases
- Code2Skill — Generate Function, MCP, Agent Skill, and offline test packages from existing code; installable as a DeepSeek Harness bundle.
- codex-plugin-dsh — Use local Codex App Server as a model provider in DeepSeek Harness
- coding-coach — xiehuan123/coding-coach discovered from GitHub.
- coloured-favicon — 为 DeepSeek Harness (DSH) 网页提供彩色渐变流动小鲸鱼 favicon,并将页面内品牌元素一并彩虹化的 Cordis 客户端插件 A colour-gradient animated whale favicon and rainbow branding plugin for DeepSeek Harness (Cordis)
- command-scout — dsh plugin: scans a project's declared build commands (Makefile, package.json scripts, justfile, deno tasks) and exposes them as agent tools
- commercial-ui-ux-codex-skill — Installable Codex skill for commercial UI/UX/GUI design, review, repair, and implementation.
- CommonTrustProtocol — Common Trust Protocol (CTP) 共同信任协议 | Intelligentics 智能论,研究智能系统存续的底层结构条件
- conservative-code-edits — 面向各类 AI 编程代理的保守代码修改守则 Skill,用于约束代理在已有项目中进行最小必要改动,避免无关重构,保护公共基础代码,并在支持深色模式的项目中优先使用动态颜色资源 An agent skill for keeping code changes small, scoped, and project-safe. Works with any AI coding tool that supports skills
- context-pruner — Session context triage plugin for DeepSeek Harness (dsh): prunes stale, repeated, failed and oversized context to save token budget.
- context-vista — 为 DeepSeek Harness 提供右侧悬浮栏以及 /context 命令,用环形图实时展示当前上下文 token 用量与分配,compact指令效果,同时支持估算费用消耗,对标 Claude Code 的 /context。
- cordis-transfer-plugin — A persistent DSH plugin for importing and exporting dynamic Cordis Plugins.
- corti — Persistent memory layer for AI agent swarms. Postgres-backed retrieval, Markdown as source of truth, sub-second cascade sync. Self-hosted.
- cot-lint — Lint your repo for chain-of-thought leakage — the session-transcript residue AI assistants leave in docs and comments.
- craft-mermaid — Portable Craft-style Mermaid generation, rendering, and visual review skill for AI coding agents
- crazy-lab — DeepSeek Harness 插件:让 agent 读/抓/解析知乎(回答·专栏·搜索)
- cronjob-dsh-plugin — 尝试开发适配deepseek harness的定时任务插件,支持在前端页面直接设置定时任务,实现内部驱动的定时请求,满足一定程度上的脱手需求
- dafy-whale-theme — DeepSeek Harness 蓝色大肥鱼主题插件:海洋配色、鱼群、气泡、吉祥物与品牌替换
- dash — DASH — a pi-tui terminal front door for DeepSeek Harness, installed as a dsh bundle plugin
- dash — DASH — Deepseek Agentic Service Harness, a TUI Plugin of Deepseek Harness
- deep-design — Design mode for DeepSeek Harness: the design-loop agent preset plus design-principles and design-qa skill packs
- deepagent — The agent that gets your work done. Built on DeepSeek Harness: Everything is a Plugin. 帮你完成工作的智能体。基于 DeepSeek Harness 构建:一切皆插件。
- DeepJIT — JIT compiler plugin for deepseek-harness: compiles recurring agent workflows into hot skills and flow templates
- deepsee — Vision + smart model routing for DeepSeek Harness. Gemini sees. DeepSeek codes.
- DeepSeek_Prism — 为纯文本模型按需识图:DSH 零补丁 Cordis 插件(prism_see 工具 + 图片 VEP 降级 + 技能运行时注册)+ Codex Skill;多 Provider 视觉 API,VEP/1 低 Token 视觉证据包
- deepseek-account — sunyuhuirong/deepseek-account discovered from GitHub.
- deepseek-ai-dsh-api-cost — DSH生态的DeepSeek API费用监控插件
- deepseek-billing-plugin — DeepSeek Harness (DSH) 插件:DeepSeek 官方 API 余额与当前会话费用估算
- deepseek-cost-usage-status-plugin — Live DeepSeek API cost, usage & balance status line for the DeepSeek Harness (DSH) web UI. Packaged DSH plugin — on/off-peak (Beijing-time), session cost, burn rate, account balance.
- deepseek-design — DeepSeek Harness 可编辑设计系统:AI 生成、可视化编辑、模板市场与 PPT|Native Design & PPT Studio for DeepSeek Harness.
- deepseek-eyes — Community plugin for DeepSeek Harness: give text-only models eyes - paste images natively, described via an OpenAI-compatible vision API
- deepseek-forge — DeepSeek Harness 开发锻造工坊:审批守卫、开发 Skills、GitHub/浏览器能力与 Token Watch 消耗监督,装上就能干活。
- deepseek-harness-angelina-themes — Angelina light and dark glass themes with parallax for DeepSeek Harness
- deepseek-harness-antigravity-oauth — Google Antigravity OAuth Gemini provider for DeepSeek Harness
- Deepseek-Harness-Api-monitor — DeepSeek Harness API 余额监测 | DeepSeek Harness API balance monitor
- deepseek-harness-app — DeepSeek Harness Desktop — A native desktop app for DeepSeek Harness (dsh). Open the app and start using the agent harness immediately — no terminal, no browser, no setup
- Deepseek-Harness-as-Desktop — Turn DeepSeek Harness into a Codex-style desktop app: native WebView2 shell, system tray, auto-start, Windows toasts, and a Desktop settings tab with a one-of-N skin center.
- deepseek-harness-auth — DeepSeek Harness auth插件
- DeepSeek-Harness-biaoqingbao — 一个在DSH上使用的表情包插件,在和agent聊天时让ta自然的插入表情包
- DeepSeek-Harness-Core — DeepSeek Harness Core (DHC) · AI 人格核心进化插件 / AI personality core evolution plugin for DeepSeek Harness
- deepseek-harness-desktop — 0reki/deepseek-harness-desktop discovered from GitHub.
- deepseek-harness-desktop — 为 DeepSeek Harness (DSH) 插件生态打造的现代化桌面端解决方案
- deepseek-harness-desktop — Compact DeepSeek Harness desktop host. macOS downloads under 90 MB with Tauri; Windows uses Electron.
- deepseek-harness-desktop — 这是一个独立的 Cordis 应用:不改动上游仓库,以官方扩展方式(自定义 profile + bundle + Cordis 插件)把 dsh 跑成原生桌面应用。
- deepseek-harness-desktop — Catnap Studio 的 Windows 桌面版,基于 DeepSeek Harness 构建。非 DeepSeek 官方产品。
- deepseek-harness-desktop — DeepSeek Harness 原生 macOS 桌面端 · A native macOS desktop app for DeepSeek Harness.
- deepseek-harness-desktop — Open-source Windows desktop client and GUI for DeepSeek Harness — zero-setup installer with Codex, plugins, skills, SSH, mobile remote access, and 11 skins.
- DeepSeek-Harness-Desktop — dsh-desktop: DeepSeek Harness 桌面插件 - click-to-launch Codex-like native window over the live dsh web UI. Everything is a plugin - this one is the window.
- deepseek-harness-desktop-app — DeepSeek Harness Desktop App: a local AI desktop workspace for DSH Sessions, projects, files, web research, plugins, and Office artifacts.
- deepseek-harness-desktop-windows — 把 DeepSeek Harness 装进 Windows 桌面的应用:不用装 Node.js、不用敲命令,双击启动即用。进程内集成官方 DSH、零端口 IPC 传输;内置侧边栏工作台(文件 / 终端 / Git / 浏览器)与社区插件商店,托盘常驻、一键更新。非官方,仅供开源 DSH 封装。
- DeepSeek-harness-dingtalk — DingTalk Stream text and image channel plugin for DeepSeek Harness
- deepseek-harness-docker — Community Docker and Kubernetes packaging for DeepSeek Harness (@deepseek-ai/dsh), with a hardened image, Compose stack, Helm chart, Web UI, and headless CLI.
- deepseek-harness-evolver — Complement to DSH Creator mode: stage, score, and solidify in-memory plugin trials to disk.
- deepseek-harness-external-migration — DeepSeek-Harness Migration Plugin 是一款专为 DeepSeek-Harness 设计的插件,旨在帮助开发者无缝迁移其他主流 AI 编程助手(Codex、Claude Code、Qcoder、OpenCode)的个性化配置及历史会话记录。无需手动复制粘贴,即可在 DeepSeek-Harness 中继续之前的工作流,大幅降低切换成本。
- deepseek-harness-flow — Visual workflows and multi-model evaluation for DeepSeek Harness
- deepseek-harness-flowchart — Beautiful themed SVG flowchart tool bundle for DeepSeek Harness
- deepseek-harness-forge-plugins — Forge-plus: math/logic/regex/eprover/system/repair gates + TCM diagnosis + memory recall plugins for DeepSeek Harness (dsh)
- deepseek-harness-genui — Code-first generative UI for DeepSeek Harness
- DeepSeek-Harness-Hanako-Memory — 把openhanako的记忆系统搬进DSH的插件!
- deepseek-harness-hub — windows desktop project as plugin for deepseek harness
- DeepSeek-harness-lark — Feishu and Lark text and image channel plugin for DeepSeek Harness
- Deepseek-Harness-Lifelong-Agent — A governed long-term memory core for AI agents, with technical-preview adapter contracts for DeepSeek Harness integration.
- DeepSeek-Harness-linux- — 一个基于官方WebUI二改的Linux桌面端,内置了一个外挂视觉插件(需手动接入API Key),已经迭代了四个版本,可能还是有些小毛病,不过目前用下来暂时没有什么大问题。
- DeepSeek-harness-marketplace — The plugin market of deepseekharness.
- deepseek-harness-memory — 2303572348/deepseek-harness-memory discovered from GitHub.
- deepseek-harness-mermaid-plugin — deepseek-harness mermaid 支持
- deepseek-harness-model-config — MarvekG/deepseek-harness-model-config discovered from GitHub.
- deepseek-harness-orchestrate — Declarative task-DAG orchestration plugin for DeepSeek Harness
- deepseek-harness-pets — 这是一个专为 DeepSeek-Harness 定制的桌宠皮肤包, DeepSeek 的标志性“大鲸鱼”等宠物养成。
- Deepseek-Harness-plug — 我的dsh插件
- deepseek-harness-plugin-from-scratch — Code-audited, progressive guide to production-grade DeepSeek Harness plugins
- deepseek-harness-plugin-manager — Web plugin manager for DeepSeek Harness (DSH): inspect, search, group, enable, and disable Cordis plugins.
- deepseek-harness-plugin-mcp — MCP server that lets any agent discover, install, and run DeepSeek Harness plugins (topic: dsh-plugin).
- deepseek-harness-plugins — Hanihahaha/deepseek-harness-plugins discovered from GitHub.
- deepseek-harness-plugins — Personal deepseek harness plugins
- deepseek-harness-plugins — Community plugins for DeepSeek Harness: local-vision (Ollama image description) and claude-to-dsh (Claude Code migration). MIT and Repetition guard and content cleaner plug-in.
- deepseek-harness-plugs-manage — Deepseek Harness 插件管理工具,方便搜索安装官方插件库
- deepseek-harness-prompt-optimizer — LLM-backed prompt optimization bundle for DeepSeek Harness
- DeepSeek-harness-qqbot — QQ Bot text and image channel plugin for DeepSeek Harness
- deepseek-harness-quota-monitor — DeepSeek Harness 多供应商额度监控插件:余额型 API 查询 + 限额型本地用量计量,侧边栏实时卡片 + 可视化配置。
- deepseek-harness-remote — 基于 DeepSeek Harness 插件机制的多端远程访问方案,让桌面端与 Android 端安全连接并操作远程 Harness。(A multi-device remote access solution built on the DeepSeek Harness plugin system, enabling desktop and Android clients to securely connect to and operate a remote Harness.)
- DeepSeek-Harness-Remote — (手机远程对话)DeepSeek Harness 的安全远程访问层与手机 Companion。支持局域网、公网、P2P模式。本项目不是"把 3080 端口开放到局域网"的小插件,而是在远程世界与 Harness localhost 信任域之间建立一个新的、明确的、可审计的 Remote Access Security Layer
- deepseek-harness-skillx — DeepSeek Harness plugin for safely discovering, auditing, and adopting external Agent Skills — prompt-injection and AgentBaiting defense.
- deepseek-harness-skin — Anime background skin plugin for DeepSeek Harness Web UI
- deepseek-harness-terminal-plugin — DeepSeek Harness 网页版终端插件
- deepseek-harness-themes — A collection of UI themes for deepseek-harness.
- DeepSeek-Harness-Token-Free — A token-free desktop client for the DeepSeek Harness,enjoy!为 DeepSeek Harness (DSH) 生态打造的全免Token费的桌面端 ,极简极易
- deepseek-harness-tool-palette — Progressive tool discovery and per-agent unlocking for DeepSeek Harness
- deepseek-harness-toolkit — Windows emergency toolkit for DeepSeek Harness
- deepseek-harness-tui — Terminal-native interactive TUI for DeepSeek Harness (dsh) — built with Ink, React for terminals
- deepseek-harness-tui — The plugin can use terminal UI like opencode/claude code and other CLI/TUI agents.
- deepseek-harness-usage — DeepSeek Harness plugin for account balance and evidence-bounded daily CNY consumption
- DeepSeek-harness-wecom — WeCom AI Bot text and image bridge for DeepSeek Harness
- DeepSeek-harness-weixin — Weixin ClawBot channel plugin for DeepSeek Harness with QR login and text/image messaging
- deepseek-harness-workbench-plugin — Deepseek-harness-workbench-plugin
- DeepSeek-Harness-yizi-themes — 为 DeepSeek Harness(dsh)Web UI 提供的 19 个精品风格主题,完整移植自 YiziMarkdown 的设计语言。
- deepseek-harness-zh_pro — Chinese enhancement plugin for DeepSeek Harness (DSH) - DSH 中文增强插件
- deepseek-heartflow — HeartFlow (心虫) as a DSH plugin — AGI 第1层辨别门禁: heartflow_check tool + automatic output supervision
- deepseek-herness-login — dsh-login-plugin
- deepseek-pet — 在你的deepseek-harness上养一只吃白饭的大蓝鲸
- deepseek-plugin-store — DeepSeek Harness 独立社区插件商店:发现、安装并提交经过验证的插件、工具与扩展。 | Independent community plugin directory.
- deepseek-protocol-doctor — Checks DeepSeek tool loops, reasoning_content, strict schemas, and captured SSE. Also works as a DSH plugin.
- DeepSeek-TUI — dsh --profile tui:DeepSeek Harness 的终端交互客户端(out-of-tree profile bundle)
- deepseek-vision — GOU-GEE/deepseek-vision discovered from GitHub.
- deepseek-vision — ToryReina/deepseek-vision discovered from GitHub.
- deepseek-visionary — 使用 DeepSeek 官方多模态视觉模型让你的 Agent 不再眼瞎(支持 DSH、Zed、OpenCode、Codex、Claude Code、Cursor、Claude Desktop)
- DeepSeek-VisionPlus — DeepSeek VisionPlus — official-grade vision extension for DeepSeek Harness. Routes image understanding to a free vision-model pool (Zhipu GLM, SiliconFlow Qwen) with automatic fallback, rate limiting, one-click platform tests and live status lines; text stays on DeepSeek. One-command install. MIT.
- deepseekeyes — Auditable vision and cross-platform Computer Use runtime for DeepSeek Harness — strict evidence, health-checked failover, original pixels, and Token accounting.
- delivery-review-dsh-plugin — 双 Agent 交付协作工作流的 DeepSeek Harness 原生插件。基于 DSH 的 Cordis 插件系统,以 bundle 方式分发,不改动 DSH 源码。
- design-playbook — Design I/O plugin for Claude Code & coding agents — declarations + contracts that make UI generation constrained, reviewable, and recirculatable. Not a style pack; composes with ui-ux-pro-max + frontend-design.
- desktop-gui-automation-cua — Cross-platform macOS desktop GUI automation & computer-use skill built on cua-driver: AX→pixel→desktop graceful degradation, vision-based element locating, privacy(automation) handling, and ready-made recipes for WeChat / iPhone Mirroring / QQ.
- DevTools-Custom-Beautification-Plugin-for-DeepseekHarness-Class — DeepseekHarness类DevTools自定义美化
- dhs-theme-plugin — dsh 主题管理插件,可以自定义主题
- Digital-Sweet-Heart — DSH means Digital Sweet Heart — A DSH Plugin to turn your DeepSeek Harness to AI lovers. 一个DSH插件将你的DeepSeek Harness改造成AI恋人(们)。
- DIzzy-DSH — My DSH plugins
- dockyard-dsh — A macOS-only native account-pool and provider plugin for DeepSeek Harness.
- docs-retriever — doctrove:面向编码 agent 的版本化库文档检索 MCP server(零依赖,dsh 插件 bundle 接入)
- douyin-plugin-dsh-plugin — 在使用dsh等待的过程中刷抖音
- dph-endfield-theme — Unofficial Endfield-inspired theme and animated mascot for DeepSeek Harness Web
- drive9-dsh — drive9-ai/drive9-dsh discovered from GitHub.
- ds-balance — Lateautumns/ds-balance discovered from GitHub.
- ds-turn-notify — reimu-create/ds-turn-notify discovered from GitHub.
- ds-vision-plugin — Paste images into DeepSeek Harness with a four-model vision race, OCR, and an automatic text bridge.
- ds-whale-send-button — jinyu
- dsh — Home of dsh-plugin-hub: discover, evaluate, and install DeepSeek Harness (dsh) community plugins from inside dsh — plugin_search / plugin_info / plugin_install / plugin_remove tools, supply-chain trust tiers, and a Web Plugins marketplace tab. Also powers dsh.qomob.ai: a Chinese 0-to-1 Wiki and a daily-updated dsh plugin directory
- DSH — DSH插件
- dsh_center-column-shift — Draggable conversation-column shift plugin for DeepSeek Harness — slide the chat left/right to free space for side panels, offset survives session switches
- dsh_codex_style_plugin — CEQ151/dsh_codex_style_plugin discovered from GitHub.
- dsh_omnivision — GUI agent plugin for DeepSeek Harness: OmniParser screen recognition, desktop automation, and an OmniVision vision dock
- dsh_plugin — Neplich/dsh_plugin discovered from GitHub.
- dsh_plugin_swift_cycle — Swift Cycle governance skill adapter for DeepSeek Harness; user-invoked, version-pinned, and offline-verifiable.
- DSH_plugins_4U — DSH 自建插件集合:微信桥接器 + GUI 微信入口补丁,一键安装
- dsh_PromptRecall — 仿 Codex 的 DSH Web GUI 输入历史插件:会话输入框按 ↑/↓ 浏览历史 prompt,Esc清除当前对话框并进入历史,跨会话、跨重启持久保留,仅存纯文本,安全接管不误伤草稿。 A Codex-style input-history plugin for the DSH Web GUI: recall previous prompts with ↑/↓ in the composer, persisted across conversations and restarts, text-only storage with safe key routing.
- dsh_Rhine_Lab_themo — Arknights Rhine Lab (莱茵生命) skin for the DeepSeek Harness Web GUI
- DSH_WebNotification — It is a plug-in that helps sending notifications when agent finishes in DSH. 这是一个DSH的网页提示插件,让Agent跑完任务时会有明确提示
- dsh-1bot — yuyi2439/dsh-1bot discovered from GitHub.
- dsh-2048 — 🎮 在 DeepSeek Harness 里玩 2048
- dsh-2origin — Evidence-first 2Origin state projection, diff and immutable freeze for DeepSeek Harness
- dsh-815-skin — 1945-08-15 世界名画 dsh皮肤
- dsh-a-stock-select — 基于 a-stock-data(A股数据源) 开发的 DSH 技能插件:将 a-stock-data V3.6.1 的全部 47 个数据端点内嵌合并,叠加四大策略筛选逻辑、持仓诊断流程与强制风控纪律,做成自包含的 SKILL.md——零外部依赖、开箱即用。同时打包为 npm 插件,支持 dsh 命令一键安装。
- dsh-a2a — Agent2Agent mesh for the Harness
- dsh-about-updater — DeepSeek Harness (dsh) 插件:设置页「关于」- 版本显示/检查更新/一键重启
- dsh-abyss — 🌊 深海事务所 · Abyss — 把 DeepSeek Harness 的多 agent 运行画成一间看得见的事务所:委派谱系、每个 agent 的成本与失败归因、上下文水位、考勤时间线,历史案子可回放并一键导出 Markdown 复盘。A DeepSeek Harness plugin that turns an agent fleet into an office you can watch.
- dsh-academic-research — Evidence-grounded bilingual academic research plugin for DeepSeek Harness and OnPeople
- dsh-access-gate — bamboostrip/dsh-access-gate discovered from GitHub.
- dsh-access-mode — Session access-mode plugin (Default / No Edit / Auto) for DeepSeek Harness (DSH). dsh-plugin
- dsh-account-usage — 为dsh增加「设置:账户」页面,可快捷查看deepseek余额、用量信息,以及opencode go额度信息,同时可快速跳转至对应官网。Add a "Settings: Account" page for dsh, allowing quick viewing of DeepSeek balance, usage information, and OpenCode Go quota details, while also providing quick links to the respective official websites.
- dsh-accounts — DSH multi-tenant auth plugin: PostgreSQL-backed accounts, admin management, per-user workspace isolation. #dsh-plugin
- dsh-achievements — DeepSeek Harness achievement & gamification plugin: cross-session badges for turns, tool calls, sessions and daily streaks, with a badge panel, unlock toasts and a ctx.achievements service. Zero core changes.
- dsh-achievements — WJNCT55555/dsh-achievements discovered from GitHub.
- dsh-acp — ACP server for DeepSeek Harness — bridges Zed and other IDEs to dsh agents
- dsh-acp-enhanced — Enhanced ACP (Agent Client Protocol) server for DeepSeek Harness (dsh) — drop-in bridge for the Zed editor: block-level streaming, usage/stat telemetry, model & reasoning-effort switching, permission presets, session resume & archive. Install: dsh plugin add
- dsh-acp-paseo — dsh (DeepSeek Harness) ⇄ Paseo ACP integration bundle: auto-discovered model catalog, plan/execute modes, thinking levels, and native dsh slash commands in Paseo.
- dsh-acp-plugin — Agentic Control Plane for DeepSeek Harness — policy-check every tool call before it runs
- dsh-action-ledger — Bounded action-lifecycle projection for DeepSeek Harness: /action-ledger reconstructs a human-readable action ledger from the durable session log.
- dsh-action-outbox — Review-before-commit transactions for DeepSeek Harness tool side effects
- dsh-action-parity — Cross-surface action binding and replay parity evidence for DeepSeek Harness
- dsh-active-context-pruning — Model-authored context pruning for DeepSeek Harness through the official compaction API.
- dsh-add-headers-to-completions — 添加headers到dsh的ChatCompletions请求中,可用于接入OpenCode的免费v4-flash、hy3等模型
- dsh-admin — DeepSeek Harness Web GUI admin plugin: manual restart + auto version check (header button + settings page)
- dsh-admin-gateway — dsh-admin-gateway DeepSeek Harness (dsh) 管理员验证网关插件。 只需一个绑定在 Cloudflare 的域名
- dsh-advanced-model-editor — DSH WebUI plugin for managing custom LLM providers, model parameters, thinking budgets, and request settings.
- dsh-advisor — 给 DeepSeek Harness 的 Agent 增加一位"顾问":日常任务使用较弱模型(默认模型),遇到真正困难的决策时,Agent 会自动向一个更强的模型咨询。
- dsh-advisor — Advisor - Pair a second model that passively reviews each turn and injects notes. 搭配一个会在每轮对话被动注入见解和审查的副模型。
- dsh-advisor — Independent-model advisory review for DeepSeek Harness: after each tool step, a reviewer model audits the agent's operations and injects concerns/guidance into the next step.
- dsh-aemeath-pet — 爱弥斯 · DeepSeek Harness 桌宠 — DeepSeek Harness Web GUI 的像素风宠物插件。
- dsh-agency-agents — DSH agency agents 基于 DeepSeek Harness 的全行业智能体
- dsh-agency-agents-zh — 267 个即插即用的 AI 专家角色定义——从前端开发到区块链安全,从小红书运营到抖音策略(移植自 agency-agents-zh)
- dsh-agent-arena — Isolated multi-model coding matches with deterministic verification, scoring, and reports
- dsh-agent-arena — Interactive multi-agent collaboration, meetings, group chats, and task execution for DeepSeek Harness.
- dsh-agent-canvas — Agent / Subagent / Workflow canvas tab for DSH Web
- dsh-agent-compact — DSH plugin for agent-driven span compaction: compress chosen conversation spans into self-written checkpoints instead of the official head-anchored full-context sweep.
- dsh-agent-conductor — ⚡ DSH 指挥家(动态插件/热更新版):在会话里派活给 11 种外部 agent CLI(Codex/Claude Code/TraeCode…),cordis_define 秒级安装,不碰 profile。
- dsh-agent-context — DSH plugin: dsh-agent-context
- dsh-agent-doctor — DeepSeek Harness health and safety diagnostics: /doctor inspects the effective model-visible tool surface.
- dsh-agent-evaluator — agent evaluation
- dsh-agent-life — DSH plugin: dsh-agent-life
- dsh-agent-md — dsh agents.md manager
- dsh-agent-memory — Self-evolving memory for DeepSeek Harness: capture → dream consolidation → retrieval injection → evolve. User profile, project memory, correction learning, resume narrative — with provenance back to the replayable session log. 自进化记忆插件。
- dsh-agent-memory — Agent-driven long-term memory for DeepSeek Harness (DSH)
- dsh-agent-message — DeepSeek Harness 跨会话 Agent 通信插件|Cross-session agent-to-agent messaging with offline delivery, receipts and session navigation for DeepSeek Harness.
- dsh-agent-messaging — Cross-session verification, claims and a decision ledger for DeepSeek Harness — so two agent sessions don't repeat, contradict or deadlock each other.
- dsh-agent-preset-recommender — Privacy-safe local Codex, Claude Code, WorkBuddy and CodeBuddy activity scanner that recommends DSH agent presets.
- dsh-agent-pricing — Real-time session cost preview for DeepSeek Harness: live cost readout, today usage chart, price_estimate/session_cost tools, prices kept in sync with the DeepSeek official site (peak/off-peak aware)
- dsh-agent-relay — Local multi-agent collaboration relay for DeepSeek Harness — HMAC-authenticated loopback message broker for dsh, Codex, Claude Code & Hermes.
- dsh-agent-replay — DeepSeek Harness 会话回放与脱敏分享插件:将真实 Agent 轨迹导出为独立交互 HTML,用于文档、演示和问题反馈。
- dsh-agent-run-logger — Local JSONL run tracing plugin for DeepSeek Harness — records agent runs, model steps, tool calls, timings, outcomes, and token usage.
- dsh-agent-team-gui — Persistent multi-model agent squads for DeepSeek Harness — reusable teams, per-agent model/tool policies, and ordinary-chat collaboration.
- dsh-agent-team-room — Native DSH rooms for connecting independent Sessions and provider-backed AI members—without bundled roles or scenarios.
- dsh-agent-teams-meta — A better, independent Agent Teams for DeepSeek Harness — durable teams, dynamic routing, task graph, mailboxes, token ledger, and a sidebar panel.
- dsh-agentfuse-plugin — Deterministic fail-closed tool-call authorization for DSH with evidence: allow/block/ask policy gate plus approval-chain deferral.
- dsh-agentmemory — agentmemory for DeepSeek Harness (dsh): full memory_* tools, capture hooks, and context injection over the local REST server
- dsh-agentmemory — a DSH (DeepSeek Harness) Cordis plugin that bridges a session's activity into agentmemory, a local, self-hosted memory daemon.
- dsh-agentsoul — Local personality, memory and distillation layer for DeepSeek Harness — SOUL/IDENTITY/USER/STATE persona files, cross-session memory and LLM distillation, auto-loaded on startup.
- dsh-AgentTask — knGear/dsh-AgentTask discovered from GitHub.
- dsh-agfs — Agent FileBrowser for DeepSeek Harness
- dsh-agnes-omni — Agnes omni-modal plugin for DeepSeek Harness: agnes_vision (image understanding) + agnes_image (text-to-image / image-to-image) + a vision bridge that lets you send images in chat. API key via DSH credentials, never in code.
- dsh-agnes-paseo — vvlife/dsh-agnes-paseo discovered from GitHub.
- dsh-agy — Google Antigravity (agy) OAuth auth + model access plugin for DeepSeek Harness: multi-account pool, 429 rotation, device fingerprinting, CLI and web login.
- dsh-ai-prompt-optimizer — DeepSeek Harness(DSH)Web 聊天页面的提示词优化插件,帮助你把粗略想法整理成更清晰、完整、可直接发送给 AI 的提示词
- dsh-aicc-zhunao — Public DeepSeek Harness preset for AICC main-brain orchestration and execution gating.
- dsh-airbag — 呱来点人口牙...再也不会误把api key粘贴喂给ai了!!!可自定义的安全等级与安全措施,解决容易泄漏api key的底层问题。同时有报告记录可查!!!
- dsh-aitoearn — AiToEarn content-creation suite as a DeepSeek Harness plugin: creative director, script writer, image-text/video generation, Douyin publishing.
- dsh-all-search — dsh search: AnySearch web search provider for DeepSeek Harness (ctx.web)
- dsh-all-warmup — Global frictionless warm-up layer plugin for DeepSeek Harness | DeepSeek Harness 全局无感热身层插件:任何会话首轮自动热身,第二轮起恢复完整模式
- dsh-ambience — Hyna-hla/dsh-ambience discovered from GitHub.
- dsh-analytics — hccccc01333/dsh-analytics discovered from GitHub.
- dsh-analyze-image-tool — 给纯文本 DeepSeek Harness 模型加上识图能力:analyze_image 把图片转发到任意 OpenAI 兼容视觉端点 | Vision bridge for text-only DSH models
- dsh-anchored-preset-installer — kirkchinese/dsh-anchored-preset-installer discovered from GitHub.
- dsh-anchored-standard — Two-phase DeepSeek Harness preset: Minimal-aligned bootstrap (bash+read), then full Standard tools after the first tool call or reply
- dsh-anchored-subagent — DS的伟哥补丁,subagent都能满血!
- dsh-anchored-wsl — Two-phase DeepSeek Harness preset: first turn = official Minimal mode (We-chain anchor), then full Standard tools on Windows (Git Bash / WSL). 首轮极简锚定 + 第二轮标准工具
- dsh-ankh-guard — 防止 Agent 自我修改把服务改崩的守护插件(dsh 插件):绿色构建凭证绑定 git HEAD,改坏不许重启;watchdog 无感重启 + canary 自动回滚
- dsh-annotation-plugin — boboozeng/dsh-annotation-plugin discovered from GitHub.
- dsh-answer-sound — Agent answer sound effects for the DeepSeek Harness web GUI: start/done/error tones following the answering lifecycle, per-kind volume, custom audio files, master switch.
- dsh-anthropic-fonts — Isilsolme/dsh-anthropic-fonts discovered from GitHub.
- dsh-antigravity-auth — DeepSeek Hardness 插件,用于在 DSH 中使用 Antigravity 提供的模型
- dsh-any-attachment — dsh bundle: attach any file type in the DeepSeek Harness Web UI — text-likes inline, binaries as workspace path references, rasters via the built-in pipeline
- dsh-any-background — 一个自定义主题插件,包括背景图(大小和位置),主界面和设置界面(透明度,色轮全色主题色)插件
- dsh-anywhere-web — CsBpRd/dsh-anywhere-web discovered from GitHub.
- dsh-APEX_Plugin — Experimental APEX plugin for DeepSeek Harness: Minimal-anchored bootstrap with on-demand Standard tools. Current baseline: Minimal Max v0.2.
- dsh-apex-standard — DeepSeek V4 Pro/Flash unified anchored agent preset for DeepSeek Harness (official API & opencode-go): two-stage RL-aligned bootstrap, model-aware path routing, epoch-aware long-session stability
- dsh-api-balance — 安装在deepseek的插件,能够实时显示当前api的余额,30秒自动刷新一次
- dsh-api-balance — DeepSeek account balance readout for DSH Web (dsh-plugin)
- dsh-api-balance — DeepSeek Harness 动态 Cordis 插件:可拖动、可缩放、亚克力质感的 API 余额悬浮徽章
- dsh-api-contract — 接口契约助手:解析 OpenAPI 3.x,生成 TypeScript/Python 类型化客户端并检测破坏性变更
- dsh-api-cost — DeepSeek Harness 插件:实时显示本会话 API 用量开销 / Real-time per-session API cost meter for DeepSeek Harness
- dsh-api-gateway — DeepSeek Harness的开源 API Gateway 插件:任何第三方客户端(包括飞书/钉钉等即时通讯)都能通过REST + SSE接口与你的 Agent 会话交互。
- dsh-api-key-pool — API Key rotation pool for DeepSeek Harness: multi-key round-robin, failover on 401/403/429, cooldown & recovery, Web UI management panel
- dsh-api-mock — 接口模拟服务器:解析 OpenAPI 3.x,生成零依赖 Node Mock 服务器并按 schema 生成示例数据
- dsh-api-testgen — 接口测试生成:解析 OpenAPI 3.x,生成覆盖成功/缺参/非法枚举的 pytest/vitest 接口测试骨架
- dsh-api-tools — dsh API usage metering and one-click refresh plugins for DeepSeek Harness
- dsh-api-usage — 在 DSH Web 界面侧边栏底部提供常驻小部件,实时展示 DeepSeek API 的当前余额、今日消费、Token 用量与请求次数,并附 24 小时消费柱状图,点击即可直达 DeepSeek 充值页。
- dsh-api-usage-bar — Cache-aware API token usage bar for the DeepSeek Harness Web UI
- dsh-api-usage-monitor — DeepSeek Harness 动态 Cordis 插件:实时读取当前使用的 LLM API,在设置页呈现当前用量、分对话用量,并可扫描会话日志读取历史用量。
- dsh-app-launcher — 把 DSH Web GUI 变成"桌面应用":以独立应用窗口打开,关闭窗口即优雅退出整个 DSH 进程
- dsh-appearance — DeepSeek Harness Web UI 的外观设置插件,一键个性化你的 Web UI
- dsh-approval-ai — AI approval answerer for DeepSeek Harness (DSH) using the unified LLM route with fail-closed policy checks.
- dsh-approval-comment — DSHWeb 审批增强插件:无感替代内置审批窗口,支持「拒绝并附言」,并在拒绝后终止当前回合、让模型重新结合附言思考
- dsh-approval-flow-poc — Non-official fail-closed approval policy PoC for DeepSeek Harness
- dsh-approval-gate — DeepSeek Harness 自动审批门控:Flash 预判不可回补操作,安全自动批准、危险转人工(fail-safe)
- dsh-approval-guardian — 模仿codex auto-review 的自动审批机制
- dsh-approval-mode — DSH 审批模式插件,在 DSH 窗口的权限下拉框(Read Only / Workspace Write / Full Access)旁边加一个「审批模式」按钮,在 Workspace Write 模式下工具调用自动放行
- dsh-approval-voice — DSH Web GUI 审批语音提示插件:需要审批/回答的弹窗出现时播放提示音并语音播报
- dsh-approve-for-me — 为DeepSeek Harness添加“代我审核”功能,让 AI 替你审查 DSH 的敏感操作,而不是直接交出全部权限。Fail-closed automatic approval for DeepSeek Harness with selectable reviewer models and visible WebUI decisions.
- dsh-approve-for-me — DeepSeek Harness plugin for rule-gated automatic sandbox approval with optional LLM review, one-time grants, fixed high-risk checks, and native human fallback.
- dsh-arbitrary-host — FairyScript/dsh-arbitrary-host discovered from GitHub.
- dsh-arcaea-theme — An original Arcaea-inspired high-key prismatic UI theme plugin for DeepSeek Harness.
- dsh-archify — DeepSeek Harness 插件:用 JSON 规格生成可验证的架构图、流程图、时序图、数据流图与生命周期图(移植自 tt-a1i/archify)
- dsh-archive-manager — Archive panel for DSH WebUI: reopen, unarchive, or permanently delete sessions — with search and native-feel UI
- dsh-archive-manager — DSH Archive Manager 基于 DeepSeek Harness 的归档会话管理插件
- dsh-archive-manager — Archived-session management (show/unarchive/permanently delete) for the DSH Web GUI, with zero changes to official packages.
- dsh-archive-manager — DSH 设置新增「归档」页:按工作区分组查看已归档会话,支持筛选/排序、取消归档、二次确认彻底删除。Add an Archive page to DSH Settings: view archived sessions grouped by workspace, filter/sort, unarchive, and permanently delete one or all with confirmation.
- dsh-archive-manager — Codex-style archived session manager for DSH Web UI — view, search, restore, and delete archived sessions from the settings page
- dsh-archive-manager — zimixvx/dsh-archive-manager discovered from GitHub.
- dsh-archive-vault — dsh 插件:在设置面板中查看、恢复与永久删除归档会话
- dsh-archive-viewer — DeepSeek Harness(DSH)归档增强插件:自动定期归档、文件夹归档整理、LLM 摘要沉淀经验库、会话收藏与便签、会话删除与优雅关机。Archive enhancement plugin for DeepSeek Harness: auto-archive, folder organization, LLM knowledge library, bookmarks & notes, session delete.
- dsh-archive-viewer — List and restore archived sessions from the DeepSeek Harness Web settings
- dsh-archive-viewer — DeepSeek Harness 归档会话管理插件:查看/恢复已归档会话(回到原工作区分组)+ 右上角一键关闭 dsh。MIT 许可,欢迎收录到任何插件合集,注明出处即可。
- dsh-archived-chats — DeepSeek Harness 已归档会话管理页:在设置里查看、搜索、取消归档、删除已归档的聊天,按项目分组。An Archived Chats settings page for DeepSeek Harness: browse, search, unarchive, and delete archived sessions, grouped by workspace.
- dsh-archived-conversations — Show archived conversations in the DSH Web sidebar footer with read-only message previews.
- dsh-archived-sessions — hashdiana/dsh-archived-sessions discovered from GitHub.
- dsh-archived-sessions — dsh 已归档会话
- dsh-archived-sessions — DeepSeek Harness 插件-归档会话管理,支持释放、清除归档会话
- dsh-archived-sessions — DSH Session Manager: manage conversations, archive/restore, delete safely, open record folders.
- DSH-arena — Local-first experiment and evaluation workbench plugin for DeepSeek Harness (DSH).
- dsh-arknights — DSH Web 明日方舟主题皮肤合集,支持社区创作者提交 PR
- dsh-article-publish — Publish articles from DeepSeek Harness to CSDN / Juejin / CNBlog. dsh plugin.
- dsh-artifact — Claude-Code-style artifacts for DeepSeek Harness: an artifact tool, an authoring skill, and an in-app sandboxed HTML browser
- dsh-artifact — Inline ECharts rendering plugin for DeepSeek Harness
- dsh-artifacts — Claude-Artifacts-style rendering for DeepSeek Harness: Markdown + JSON -> beautiful self-contained HTML documents, cards, dashboards, and galleries. Zero runtime dependencies.
- dsh-arxiv-search — dsh-arxiv-search skill
- dsh-asc — lmst2/dsh-asc discovered from GitHub.
- dsh-asimovbox — AsimovBox video tools for DeepSeek Harness
- dsh-ask-guard — Timeout guard for ask_user_question in DeepSeek Harness: a lost or unanswered question resolves as ASK_TIMEOUT instead of hanging the turn forever
- dsh-assistant-message-forge — DSH assistant message forge: create/modify/inject test assistant messages, import session.jsonl(.zstd) session logs (client plugin)
- dsh-at — KureKaruna/dsh-at discovered from GitHub.
- dsh-at-github — GitHub issue and pull request references for the DeepSeek Harness web GUI
- dsh-at-mention — DSH 配置档插件(profile bundle):像 Claude Code / Codex Desktop 一样,在输入框输入
@ 提及当前会话所在工作区的文件/目录,支持带优先级的模糊搜索与键盘补全。
- dsh-atlascloud — Atlas Cloud skills and opt-in MCP tools for DeepSeek Harness
- dsh-atomgit — AtomGit plugin bundle for DeepSeek Harness (dsh): atomgit-skills workflows + ag CLI + platform-hosted AtomGit/GitCode MCP tools
- dsh-attachment-formats — Extend DeepSeek Harness composer to accept PDFs and more attachment formats Codex-style, with zero core changes and native pipeline reuse.
- dsh-attachment-formats — Codex-style attachment formats for the DeepSeek Harness Web GUI: PDF text-layer extraction, Office text extraction, scanned-PDF OCR, long-document spill + index cards, image-to-PNG.
- dsh-attachments — CocoSgt/dsh-attachments discovered from GitHub.
- dsh-attachments — Cross-platform DSH WebUI multimedia input and workspace attachments
- dsh-attachments — DeepSeek Harness plugin. 支持直接把图片、文件等拖入到dsh中。更方便地拖拽;image & file drop.
- dsh-atuin — dsh atuin-history: record dsh user prompts into atuin shell history
- dsh-audio-alert — dsh中断声音提示喵(可配置音频喵)Browser audio alerts for dsh attention edges: approval requests, ask-user questions, and finished turns.
- dsh-audio-dub — Dub video and audio into 10 languages with voice cloning, from a DeepSeek Harness agent | DSH 视频/音频配音插件
- dsh-audit-bundle — Content-addressed audit indexes across independent DeepSeek Harness evidence producers
- dsh-aura-scheduler — Proactive scheduling for DeepSeek Harness: Aura heartbeat + value network (official is model-driven only)
- dsh-auth — radaren/dsh-auth discovered from GitHub.
- dsh-auth-everying — 导入本地 Claude、Codex、Grok、Gemini、Copilot、OpenCode 与 CC Switch 配置。 为支持的官方供应商提供 OAuth 登录。 从 OpenAI 兼容网关的 /v1/models 与 /models 发现 CC Switch 模型。
- dsh-auth-gate — DSH Web UI 的认证门禁插件,提供 SVG 图形验证码与防暴力破解保护
- dsh-auth-gate — Login gate for the DeepSeek Harness (dsh) web surface: password or shared-token authentication, session cookies, rate limiting, and a user-management CLI. | DeepSeek Harness (dsh) 网页版登录门插件:账号口令或共享令牌认证、会话 cookie、登录限速,附用户管理 CLI。
- dsh-auth-proxy — wxyzh/dsh-auth-proxy discovered from GitHub.
- dsh-auth-tunnel — Password-gated Cloudflare Tunnel access for the DeepSeek Harness Web GUI, with quick and named tunnel modes.
- dsh-AuthInOne — Self-contained DeepSeek Harness (DSH) plugin for Provider/Auth login, model switching, image fallback, token/cost analytics, and same-port Web restart. Useful? A star helps.
- dsh-authorize-app — DeepSeek Harness plugin: a 'Connected Apps' settings section — a central platform where other DSH plugins surface themselves.
- dsh-auto — dsh Auto Approve
- dsh-auto-approval — Andy8647/dsh-auto-approval discovered from GitHub.
- dsh-auto-approval — LLM-gated auto approval for DeepSeek Harness: a model judges every approval ask first, low-risk operations pass without prompting (fail-closed)
- dsh-auto-approval-plugin — Trusted Auto: a middle permission tier for DeepSeek Harness between workspace-write and danger-full-access, auto-approving harmless commands and trusted-area targets
- dsh-auto-approve — 为 DeepSeek Harness 增加介于 Workspace Write 与 Full access 之间的自动批准权限档,危险或不确定操作仍转人工审批。An auto-approval permission preset between workspace-write and full access for DeepSeek Harness.
- dsh-auto-classifier — PAKIKNOWLEDGE/dsh-auto-classifier discovered from GitHub.
- dsh-auto-coding — 一个代码流水线,前期磨合好了以后,会有个很舒服的 vibe coding 体验,也可以更好的把闲时 token 利用起来(白天人肉测试+写需求+审核前一天的计划和决策,晚上让流水线自己挂着跑)
- dsh-auto-collapse — a179-sanae/dsh-auto-collapse discovered from GitHub.
- dsh-auto-continue — Aki2519/dsh-auto-continue discovered from GitHub.
- dsh-auto-fold-turn — ycp424c/dsh-auto-fold-turn discovered from GitHub.
- dsh-auto-goal-resume — DeepSeek Harness 插件:重启后自动续跑有活跃目标(goal)的会话,无需人工说继续。
- dsh-auto-memory — DSH 会话级记忆插件:收尾提醒 + MEMORY.md 记忆索引维护 + 实时对话日志 + LLM 摘要压缩,配置面板在 设置→插件。Session memory for DeepSeek Harness.
- dsh-auto-memory — DSH 自动记忆插件:三层记忆(用户级/项目笔记/每日日志)自动注入与检索、每日反思、可视化面板与设置页,支持继承其他 AI 工具的历史记忆。An auto-memory plugin for the DeepSeek Harness Web GUI: three-layer memory (user-level / project notes / daily logs) with automatic injection and retrieval, daily reflections, a visual panel and settings page, and inheritance of memories from other AI tools.
- dsh-auto-mode — Safe automatic permissions for DeepSeek Harness.
- dsh-auto-model — AL-spiritphoenix/dsh-auto-model discovered from GitHub.
- dsh-auto-model-router — 根据问题复杂度自动切换模型
- dsh-auto-open-web — deepseek harness自动打开浏览器插件,内置WebView2程序实现轻量级桌面化。DeepSeek Harness automatically opens browser plugins and includes a built-in WebView2 program to achieve a lightweight desktop experience.
- dsh-auto-review — DSH Auto Mode — native security review plugin for DeepSeek Harness: pre-execution rule interception + delivery-time independent subagent review. Built for long-running agents.
- dsh-auto-review — Second-model AI auto-review for DeepSeek Harness approval requests: a read-only reviewer subagent returns structured allow/deny verdicts with reasons, fail-closed by default, fully auditable from the session log (approval/asked -> autoReview/verdict -> approval/decided).
- dsh-auto-update — Startup auto-updater for DeepSeek Harness (dsh): checks the npm registry once on boot and optionally installs newer versions.
- dsh-autocount-cloud — DeepSeek Harness tools for AutoCount Cloud connector commands.
- dsh-autogate — DeepSeek Harness 自动审批插件:在 workspace-write 沙箱之上叠加确定性规则 + LLM 安全审批,自动模式不放宽沙箱、fail-closed。 Safe auto-approval for DeepSeek Harness — deterministic rules + LLM review on top of the workspace-write sandbox. Auto mode without ever granting full-access.
- dsh-autonomy — DSH 自主性切换器:五档滑块按会话调节模型自主性(严格遵循 → 天马行空),提示词注入即时生效、每会话独立记忆
- dsh-autonomy — Switch between Chat and Agent without leaving your DeepSeek Harness session.
- dsh-autopilot — Acceptance-driven autonomous completion for DeepSeek Harness. Done means verified.
- DSH-AUX — Auxiliary model system for DeepSeek Harness: unified aux-LLM routing (per-task model, timeout, concurrency, failure cooldown, main-model fallback) + vision_analyze / web_extract / compress_text tools, settings page, and session image lifecycle cleanup.
- dsh-auxiliary — Auxiliary models for DeepSeek Harness: vision understanding and context compression through dedicated model routes.
- dsh-awiki — AWiki identity and messaging plugin for DeepSeek Harness
- dsh-background — DeepSeek Harness Web 背景图片插件:本地图片路径替换网页背景,外观设置行 + 实时预览
- dsh-background-agents — Interactive long-session background agents for DeepSeek Harness: start a durable continuable child agent, watch its progress in the Web UI sidebar, message it any time, and interrupt it - all through the official subagent seam.
- dsh-backup-sync — DeepSeek Harness(DSH)备份/恢复 + 跨机同步插件:本地快照、WebDAV 推送/拉取、自动备份与失效归档清理。Snapshot backup, restore and cross-machine sync plugin for DeepSeek Harness: local snapshots, incremental WebDAV push/pull, auto-backup retention and stale archive sweep.
- dsh-balance — DeepSeek account balance chip for DeepSeek Harness Web: 3-min auto refresh with total/topped-up/granted breakdown
- dsh-balance — DeepSeek Harness balance plugin for the Settings page
- dsh-balance — DSH plugin: /balance command, composer-dock balance readout with top-up link, session-cost estimate
- dsh-balance — 一个适用于deepseek-harness的插件,功能是显示当前账户余额以及当前会话预估的费用消耗 | A plugin for deepseek-harness that displays the current account balance and the estimated cost consumption of the current session.
- dsh-balance — DeepSeek API 余额 + OpenCodeGo 余量实时显示插件(dsh web GUI):可拖拽双段徽章与详情弹层 + DeepSeek/OpenCodeGo 两个设置页;Key 仅存本机 ~/.dsh/ds-balance.json,OpenCodeGo Key 自动读取 DSH 凭据
- dsh-balance — DSH Web 插件:悬浮显示 DeepSeek 账户余额,点击直达充值页 | DSH widget showing your DeepSeek balance with a top-up link
- dsh-balance — 模型账户余额悬浮窗插件 for DeepSeek Harness Web GUI — floating model-account balance monitor with a settings master switch
- dsh-balance — DSH plugin: query and display the DeepSeek account balance (dsh_balance tool + web UI widget)
- dsh-balance — DSH plugin: show DeepSeek account balance below the conversation · 在对话下方显示 DeepSeek 账户余额
- dsh-balance — dsh余额插件. A DeepSeek Harness plugin for real-time token tracking and highly accurate session cost estimation, featuring dynamic peak/off-peak pricing support.
- dsh-balance — Yogioo/dsh-balance discovered from GitHub.
- dsh-balance-bubble — A floating DeepSeek account-balance bubble for the DSH web UI — glassy, draggable, low-balance alert, dark-mode ready.
- dsh-balance-display — DeepSeek API balance overlay for DeepSeek Harness
- dsh-balance-display — DeepSeek Harness 余额显示插件
- dsh-balance-display — DeepSeek API 余额显示插件:左下角余额胶囊、低余额预警、余额趋势、一键充值。密钥不出主机端。
- dsh-balance-float — DSH 悬浮余额/一键退出插件
- dsh-balance-guard — DeepSeek Harness 插件:状态栏实时余额 + 本会话花费追踪 + 低余额暂停输出并引导充值
- dsh-balance-meter — healing1/dsh-balance-meter discovered from GitHub.
- dsh-balance-monitor — DeepSeek 账户余额、剩余比例条与今日花费,显示在 dsh 侧边栏底部 · DeepSeek balance, remaining-ratio bar and today's spend in the dsh sidebar footer.
- dsh-balance-monitor — 一个好看、简单、实用的余额监视器|DeepSeek Harness 插件:官方余额快照 + ds_balance 工具 + 峰谷计价区间 + Matrix/原生双风格徽章
- dsh-balance-plugin — deepSeek 余额监控与用量统计(DSH 动态 Cordis 插件):余额监控 · 官方充值入口 · 用量统计 · 三方插件管理
- dsh-balance-plugin — Deepseek Harness插件,支持实时展示deepseek余额
- dsh-balance-stats — Balance, session cost, token usage, and invoice summaries for DeepSeek Harness Web.
- dsh-balance-tide — DeepSeek Harness (DSH) Web 插件: 余额 + 峰谷计价潮汐提示。显示 DeepSeek 账户余额与本会话花费, 并在余额前提示当前峰/谷价格档位、距切换倒计时与使用建议。
- dsh-balanced-search — Balanced web search plugin/MCP server for DeepSeek Harness: Keenable / Exa / Tavily round-robin with failover. / 均衡搜索插件:Keenable / Exa / Tavily 轮流调用,自动故障切换。
- dsh-ballute — Zlyraz/dsh-ballute discovered from GitHub.
- dsh-baoyu-skills — 宝玉技能库(移植自 JimLiu/baoyu-skills)
- dsh-bash-rtk — DeepSeek Harness bash executor plugin that routes eligible commands through rtk (Rust Token Killer) to compress tool output and save tokens.
- dsh-bash-win — 在 Windows 环境中为 DeepSeek Harness 提供 Git Bash 与 WSL 2 bash 工具,含 bwrap 沙箱、审批模式、后台任务
- DSH-Basic-Right-Sidebar — Basic Right Sidebar — a right sidebar plugin for DeepSeek Harness: two-level navigation (Functions / Sessions), workspace/session breadcrumb, session overview with log download, native trajectory view, and configurable topbar decluttering.
- dsh-Basics-Panel — DSH Web 插件「基础能力面板」:在 DSH 设置中可视化并管理 MCP 服务器、技能 与 规则。采用模块化 feature 注册表,后续的 DSH 可视化功能只需新增一个 feature 目录并在注册表加一行即可,无需改动面板骨架。
- dsh-batch-regression — DSH plugin: run a command N rounds, judge by median/distribution — 批量回归取统计结论
- dsh-beacons — Right-edge prompt navigator (Codex/OpenChamber-style scrub rail with scroll-spy) plus Windows toast notifications — a DeepSeek Harness plugin
- dsh-bell-notify — DeepSeek Harness (dsh) 社区插件:为 Agent 生命周期事件合成铃声 + 右下角呼吸状态点,每个事件可上传自定义音频。dsh plugin that rings bells and shows a breathing status dot for Agent lifecycle events.
- dsh-benchmark — Deterministic revision-pinned benchmarks and regression evidence for DeepSeek Harness
- dsh-better-archive — DeepSeek Harness (DSH) web-GUI plugin: archived-session panel with unarchive & delete
- dsh-better-browser — DSH 真实浏览器插件:通过 Kimi WebBridge 让 Agent 操作用户已登录的浏览器,并提供 13 个 webbridge_* 工具。 / Let DSH Agents use your signed-in browser through thirteen Kimi WebBridge tools.
- dsh-better-chat-history — A plugin for DSH to optimize session loading speed and reduce disk read/write consumption.
- dsh-better-codex-subagent — ivwumupy/dsh-better-codex-subagent discovered from GitHub.
- dsh-better-deepseek — DeepSeek Harness bridge plugin for Better DeepSeek Chrome extension.
- dsh-better-edit — Hash-anchored read/edit/batch_edit/undo_last_edit tools for DeepSeek Harness (dsh) — dsh port of pi-hashline-edit-lsz
- dsh-better-markdown — DeepSeek Harness Web plugin powered by markstream-react for resilient streaming Markdown, Mermaid diagrams, KaTeX math, and safe renderer fallback.
- dsh-better-model-selector — 将模型选择器和思考强度选择器拆成两个组件,并替换为更合理的交互方式
- dsh-better-plan-reviewer — 更好的plan确认窗口,可以替换执行模型、暂存计划
- dsh-better-sidebar-lite — a simple plugin to improve web UX/UI for "Deepseek Harness (dsh)"
- dsh-better-status — DeepSeek Harness 插件:把文本形式的会话统计(轮/步、LLM/工具耗时、首 token、tok/s、缓存命中、输入/输出 token)替换为页面右侧直观醒目的图表面板。
- dsh-bgwall-plugin — hubo980205/dsh-bgwall-plugin discovered from GitHub.
- dsh-bib — Embed a controllable real-browser viewport inside DeepSeek Harness — shared by humans and AI agents via an Edge extension + local relay bridge.
- dsh-bili-taskmaster — 等你的小鲸鱼跑任务时随机播放b站视频,愉快做监工
- dsh-bili-widget — 🎬 DSH (DeepSeek Harness) B站悬浮看片插件:边 coding 边刷视频。推荐/热门/排行/搜索/关注UP主、自动连播、迷你模式、历史持久化
- dsh-bilibili — CZX2244/dsh-bilibili discovered from GitHub.
- dsh-bilibili — DeepSeek Harness plugin: Bilibili video search, metadata, and subtitle transcripts (bilibili_search / bilibili_video / bilibili_subtitles) · DeepSeek Harness 插件:B 站视频检索、元数据与字幕文稿,匿名可用,可选 SESSDATA 解锁登录字幕
- dsh-bill — DSH (DeepSeek Harness) plugin: per-session cost line + cost attribution report, priced by llm-pricing
- dsh-billing — DSH web GUI realtime billing monitor: token/cost metering, DeepSeek v4 peak pricing, balance anchoring, sidebar pill + settings page, billing_balance agent tool
- dsh-billing — DeepSeek Harness plugin: 账户余额 + 会话费用(/balance /cost 命令、deepseek_billing 工具、Web UI 双胶囊),官方价格每 12 小时自动同步
- dsh-billing — Wanbinyu/dsh-billing discovered from GitHub.
- dsh-billing-glass — Liquid-glass billing overlay for the DeepSeek Harness Web GUI: provider balances, session cost, daily spend and token buckets. DeepSeek-first and extensible.
- dsh-bio-genie — 🧬 dsh bio analysis plugin for DeepSeek Harness — wish-style bioinformatics & biology analysis: Biopython-powered sequence analysis, genomics, zero-install Python env (uv+venv)
- dsh-biomemory — 生物仿生记忆系统插件:Biomimetic memory for DeepSeek Harness — transparent Markdown memory, approval-gated writes, frozen snapshot injection
- dsh-birdman-plugins — Community plugins for DeepSeek Harness (DSH): model metadata autofill and workspace artifacts view.
- dsh-bisect-debug — DSH plugin: bisect bugs (code / boundary / commit) — 二分法定位 bug 根因
- dsh-black-whale — DeepSeek Harness 黑鲸实验室主题:官网黑鲸 × 夕小瑶 IP,真实 profile 可安装的 Web UI 插件
- dsh-blackhole — Asaiuta/dsh-blackhole discovered from GitHub.
- dsh-blackjack — 谁不想coding的时候急头白脸的和大肥鱼来一场紧张刺激的21点呢
- dsh-blue-archive-shiroko — Blue Archive-inspired DSH theme with a Shiroko desktop companion, Codex-style reply bubbles, petting effects, and completion chime.
- dsh-blue-whale — 复刻 DeepSeek Chat 蓝鲸配色的皮肤,亮色/深色跟随系统外观。
- dsh-blue-whale-maid — 运行在 deepseek harness 上的女仆酱
- dsh-board — DeepSeek Harness 侧栏用量与成本面板:官方峰谷计价 · 1M 上下文 · 词勋段位 · 成就与热力图
- dsh-book2skill — DSH book-to-skill plugin: a 5-stage long task (fetch → parse → understand → generate → install) with 3 human gates, host tools for the agent and a browser timeline panel
- dsh-bookmarks — Bookmark assistant replies in DeepSeek Harness: per-message bookmarks with notes/tags, a cross-session center, and one-click Markdown export.
- dsh-boot-guard — A loader-independent rescue console for DeepSeek Harness when a broken plugin prevents the Web UI from starting.
- dsh-bottom-bar — 用于提供更丰富的DeepSeek Harness底栏信息显示插件
- dsh-bottom-info-bar — Bottom Info Bar — an information bar plugin for DeepSeek Harness: provider/model, live balance, peak/off-peak pricing with countdown, and real persisted per-session spend in a single line.
- dsh-bottom-stats — DSH plugin: full-width conversation stats line (no truncation) + context occupancy progress bar for the DeepSeek Harness web UI
- dsh-bridges — 将 DeepSeek Harness 桥接到已配置其它 Harness Agent 的项目。支持 CodeBuddy / Codex / OpenCode / Claude Code / ...
- dsh-bring-local-llm — 让本地 LLM(Ollama/KoboldCpp/LM Studio/任意 OpenAI 兼容端点)接入 DeepSeek Harness,本地优先处理一部分信息,难点交给云端主模型:省在线 token、用上本地冗余算力。
- dsh-browser — Playwright-powered browser automation for DeepSeek Harness
- dsh-browser — 给 DeepSeek Harness 的浏览器插件:AI 直接开真实的 Edge 浏览器逛网页、点击、填表、截图,无需 CDP 或 MCP。
- dsh-browser — Shared real browser plugin for DeepSeek Harness
- dsh-browser — Browser capability for DeepSeek Harness: headed Edge/Playwright provider, SSRF-safe navigation, a11y-ref clicking, permission gate with auto-remember, gated evaluate
- dsh-browser-bridge — Prompt-scoped bridge between DSH and explicitly attached Chrome tabs
- dsh-browser-companion — A personal DSH browser plugin: persistent profile, visible window, human-in-the-loop login, and safe agent browser tools.
- dsh-browser-control — Let an AI control a real visible Chrome browser via Playwright MCP, with a live view of every action inside the DeepSeek Harness GUI.
- dsh-browser-control — DSH plugin for controlling browsers (CDP/Playwright) — DeepSeek Harness 操控浏览器插件
- dsh-browser-fs — dsh(DeepSeek Harness)插件:让 agent 读写浏览器所在机器的本地文件——File System Access 授权 + WS 中继,含非安全上下文兼容模式
- dsh-browser-playwright — Snapshot-first Playwright browser automation for DeepSeek Harness: accessibility-tree interaction with stable refs, per-session browser contexts, 17 browser_* tools.
- dsh-browseruse — browser-use style browser automation plugin for DeepSeek Harness: drives a dedicated Chrome instance (persistent profile) via playwright-core — fine-grained tools, autonomous tasks, scheduling, dangerous-action confirmation, captcha hand-off
- dsh-btw — 个人很喜欢 Claude Code 的 /btw,于是为 DSH 做了复刻:共享当前上下文快速旁路提问,不中断主任务,也不写入主会话历史。
- dsh-build-diff — Agent-loop change review for the DeepSeek Harness web GUI
- dsh-bundle-updater — DSH 整合包插件管理器:检查更新 / 搜索 / 安装 / 卸载 / 安全审计(npm / GitHub / 本地链接)|Full-lifecycle plugin manager for DSH profile bundles
- dsh-bundle-vision — Zero-core-change vision capability for DeepSeek Harness: the describe_image tool + profile bundle, installable via 'dsh plugin add'
- dsh-butler-memory — A dsh plugin that uses the butler memory mcp server to achieve better and organized memory for dsh. Long term and short term memories seperated.
- dsh-cache-hit-decimal — Two-decimal cache-hit rate for the DeepSeek Harness Web GUI
- DSH-Cache-Hit-Precision — dsh状态栏显示两位小数缓存命中率
- dsh-cache-miss — 在cache miss的时候提示
- dsh-cache-precision — DSH client plugin: render the built-in session cache-hit percentage with three decimal places.
- dsh-cache-stabilizer — Cache-prefix stabilization and evidence-based cache metrics for DeepSeek Harness
- dsh-cad-review — Evidence-first ASCII DXF inspection and deterministic CAD rule review for DeepSeek Harness
- dsh-calendar — DeepSeek Harness 日历插件:calendar_list/create/update/delete/search 五工具,CalDAV 协议支持 Google/iCloud/Nextcloud/自定义端点,RRULE 重复事件自动展开,插件级 proxyUrl 代理,配置缺失不崩启动;纯 Node 全平台。· CalDAV calendar tools for DeepSeek Harness agents.
- dsh-capability-index — 给 DSH agent 的插件库"起飞前检查单"——任务型请求时自动预检插件库并注入 Top-K 适用插件提示,让插件库利用率可预期、不靠运气。Pre-flight plugin-library check for DSH agents — task-type requests trigger a Top-K hint of suitable plugins injected into the runtime context, making plugin usage predictable instead of opportunistic.
- 其余 2991 个待分类插件未在此列出,可在在线网站搜索或浏览完整目录。
免责声明
本项目是社区维护的插件索引。插件由各自作者开发和维护,收录不构成安全、质量或维护状态背书。安装插件会在本机运行第三方代码,请在安装前自行审阅源码和依赖。
许可证
本仓库采用分区许可:
目录中列出的第三方插件不属于本仓库,其源代码分别遵循各自仓库的许可证。