← 返回列表
需源码安装
面向 DeepSeek HarnessDSH 的插件、插件起步项目、工具与一手资料精选索引。
暂不能直接安装(需源码编译或环境不满足):仓库缺少 package.json,无法用 dsh 插件安装命令安装。 · 最近上游提交 2026/9/15 · 已提供中文文档
一个精选目录,收录经过来源验证的 DeepSeek Harness (DSH) 插件、工具、设计工作流和官方资源。
综合分
49.8
GitHub 分
49.8
用户评分
—
★ Stars
24
周下载量
—
安装插件(需先安装 dsh CLI 引擎:npm install -g @deepseek-ai/dsh)
dsh plugin --profile web add walkinglabs/awesome-deepseek-harness-plugins仓库缺少 package.json,无法用 dsh 插件安装命令安装,改用 GitHub 源安装
🟢实装验证通过· 2026/9/19
由 dsh-plugin-verify(GitHub Actions)在真实 dsh 环境安装成功,非静态推断。
数据截至 2026/9/17(元数据每日更新 · 实装验证按队列轮转,单条结论的验证时间见上方)
安装兼容性检查需源码安装
以下结论由程序自动检查 npm 包、engines 声明与入口文件得出,未做人工实机验证——能装不等于用着没问题。
✗npm 包awesome-deepseek-harness-plugins(未发布到 npm,仅可源码安装)
✓Node 引擎未声明 engines.node
✓dsh CLI 依赖未声明 dsh 版本约束
✗入口文件缺少入口声明
仓库缺少 package.json,无法用 dsh 插件安装命令安装
验证方式:npm registry 存在性 + package.json 静态校验 · 最后验证 2026/9/17 11:38:10
用户评分
还没有人投票,来当第一个
订阅周报,不错过优质插件更新
每周一封 · 高评分插件 + 新用户活动
README
Awesome DeepSeek Harness Plugins Awesome
面向 DeepSeek Harness(DSH) 的插件、插件起步项目、工具与一手资料精选索引。
DeepSeek Harness 是 DeepSeek AI 开源的插件优先 Agent Harness:模型、工具、技能、会话、沙箱、文件系统、循环、编排和界面都可以作为插件组合。完整英文目录见 README.md;两个入口维护同一套严格收录标准。
开发者预览版:DSH 迭代很快,可能出现破坏性变更。本仓库是独立社区整理,不代表 DeepSeek AI 或 walkinglabs 的背书。安装第三方插件前请审查源码,并固定 DSH 版本或 commit。
flowchart LR
User["开发者 / 用户"] --> Web["DSH Web UI 或 CLI"]
Web --> Runtime["DeepSeek Harness 运行时"]
Runtime --> Agent["Agent Loop"]
Agent --> Model["模型提供方"]
Agent --> Tools["工具与技能"]
Runtime -. 装载 .-> Plugins["插件"]
Plugins --> Tools
Plugins --> UI["Web UI 扩展"]
Plugins --> State["会话、设置与服务"]
classDef core fill:#0b65c2,color:#fff,stroke:#084c94;
classDef plugin fill:#e6f4ff,color:#083b66,stroke:#4fa3e3;
class Runtime,Agent core;
class Plugins,UI,State plugin;
快速教程:安装 DSH 并写出第一个插件
1. 安装并运行 DeepSeek Harness
先安装当前版本的 Node.js,然后执行:
npx @deepseek-ai/dsh web
打开 http://127.0.0.1:3080。在 Settings → Models 中填写 DeepSeek API Key;再选择一个工作区,即可开始会话。更多步骤见官方 Web UI 使用指南。
2. 从源码创建最小插件
当前官方插件开发流程需要先获得 DSH 源码:
git clone https://github.com/deepseek-ai/deepseek-harness.git
cd deepseek-harness
pnpm install
pnpm run build
mkdir -p scratch-plugin/src
创建 scratch-plugin/src/hello-plugin.ts:
import type { Context } from '@deepseek-ai/cordis'
export const name = 'hello-plugin'
export function apply(ctx: Context) {
console.log('[hello-plugin] loaded')
}
再创建 scratch-plugin/cordis.yml。把下方路径替换成在 DSH 源码目录执行 pwd 后得到的绝对路径:
- insert:
- id: hello
name: '/absolute/path/to/deepseek-harness/scratch-plugin/src/hello-plugin.ts'
使用这个 overlay 启动:
pnpm dsh web --patch ./scratch-plugin/cordis.yml
DSH 启动后,终端应显示 [hello-plugin] loaded。这就是最小的 DSH 插件:导出 apply(ctx),并通过 Cordis 上下文注册能力。若要添加 Agent 可调用的工具,请声明 export const inject = ['tools'],再通过官方 DSH 工具 API 注册。完整且随版本更新的写法请查看官方第一个插件教程和 Tool 插件教程。
3. 插件机制如何工作
flowchart TD
Overlay["cordis.yml overlay"] -->|装载| Module["插件模块"]
Module --> Contract["name · inject · apply(ctx, config)"]
Contract --> Inject["inject:等待所需服务就绪"]
Contract --> Config["Config schema:校验配置并填充默认值"]
Contract --> Apply["apply:注册能力"]
Apply --> Capabilities["工具 · 命令 · 事件 · UI · 服务"]
Capabilities --> Runtime["Cordis / DSH 运行时"]
Runtime --> Effects["生命周期管理的 effect"]
Effects --> Cleanup["卸载或 HMR:自动清理旧注册"]
DSH 基于 Cordis,后者是一个运行时组合框架。插件不只是一个 npm 依赖包,而是 DSH 会装载到运行中上下文的模块。它声明 name,可选声明 inject 依赖(例如 ['tools']),并导出 apply(ctx, config)。Cordis 会等待 inject 所需服务准备完成,校验导出的 Config schema 并填充默认值,然后调用 apply。
在 apply 内,插件可以注册供 Agent 调用的工具、供人使用的命令、设置 schema、事件监听器、Web UI 组件,或提供给其他插件的服务。这些注册是由生命周期管理的 effect:配置修改触发热替换,或插件卸载时,Cordis 会自动移除旧注册。只有当插件自行持有需要显式释放的资源(如定时器、网络连接)时,才使用 ctx.effect() 返回清理函数。详见官方配置指南、服务指南及能力接缝说明。
4. 设计与创意工具 / Design & Creative Tools
DSH 的设计类插件可将 Agent 的规划和工具调用连接到视觉理解、设计画布、界面生成与图像工作流。与其他条目一样,安装前请审查源码和所需权限。
flowchart LR
Brief["设计需求\n或源码修改"] --> Agent["DSH Agent"]
Agent --> Vision["视觉理解\n图片 · OCR · UI 定位"]
Agent --> Canvas["设计画布\n预览 · 编辑 · 检查"]
Agent --> GenUI["生成式 UI\n组件 · 图表 · 表单"]
Vision --> Feedback["结构化视觉反馈"]
Canvas --> Feedback
GenUI --> Feedback
Feedback --> Agent
Agent --> Output["更新后的设计、代码或产物"]
- dsh-openpencil - 多帧预览、交互式画布与受管理编辑器工作台。 / Multi-frame previews, an interactive canvas, and managed editor workbenches.
- dsh-genui - 在回复中渲染交互组件、图表、表单、Mermaid 与 3D 场景,并回传操作事件。 / Inline generated UI with an action loop.
- dsh-web-review - 网页预览与元素批注反馈,帮助 Agent 改源码。 / Web preview and annotated visual feedback for source editing.
- dsh-vision-toolkit - 图片问答、OCR、UI 还原、定位、像素差分与视觉产物。 / Image Q&A, OCR, UI restoration, grounding, and pixel diffs.
- dsh-ernie-image - 以 DSH bundle patch 打包的图像生成集成。 / Image-generation integration packaged for DSH.
- dsh-visualize - 在受限 CSP 的沙箱 iframe 中渲染行内交互 HTML 卡片,并导出到工作区。 / Inline interactive HTML cards in a sandboxed iframe with constrained CSP and workspace export.
- dsh-image-to-path - 仅同源、具备大小与图片魔数校验的粘贴/拖放上传,保存到当前会话工作区。 / Same-origin image paste/drop uploads with size and magic-byte checks, saved in the active session workspace.
- dsh-image-gen - 使用 Google、OpenAI 兼容接口、Seedream、DashScope 或本地 ComfyUI 生成和编辑图片;凭据保存在 DSH 只写凭据服务中。 / Generate and edit images with Google, OpenAI-compatible, Seedream, DashScope, or local ComfyUI providers; credentials stay in DSH's write-only credential service.
5. 这个 Awesome 仓库收录什么
flowchart TB
Discover["GitHub 发现\n(近期公开候选)"] --> Verify["DSH 源码级验证"]
Verify -->|"清单/package + 官方 DSH 扩展接缝"| Plugin["已验证 DSH 插件"]
Verify -->|"明确、可检查的 DSH 集成"| Resource["客户端、启动器、示例或开发资源"]
Verify -->|"仅 topic、命名或自称"| Exclude["排除\n(不是 DSH 插件)"]
Plugin --> List["本列表的插件分类"]
Resource --> List
List --> Daily["每日复核\n仅真实变更才提交"]
本仓库会区分“已验证 DSH 插件”与启动器、客户端、生态目录等“有用但非插件”的资源。新增条目需要的证据详见完整收录规范。
5. 同一运行时,不同插件组合
DSH 的 profile 是插件组合,而不是分别维护的多套产品。官方基础 bundle 包含模型适配器、工具、持久化、沙箱与审批策略、设置、凭据和遥测;Web 与 headless bundle 在此基础上增加不同的入口界面;Agent preset 还能为单个会话选择不同的能力集合。
flowchart TB
Base["dsh-base\n模型 · 工具 · 持久化 · 沙箱\n审批 · 设置 · 遥测"]
Base --> WebProfile["Web profile\n浏览器应用"]
Base --> HeadlessProfile["Headless profile\n一次性运行器"]
Base --> Preset["Agent preset\n按会话组合能力"]
Preset --> Loop["Agent Loop"]
Preset --> Toolset["工具集合"]
Preset --> Providers["LLM / 文件系统 / 子 Agent Provider"]
Preset --> Policy["权限与沙箱策略"]
因此,“模式”主要是某一套插件图与策略集的选择,而不是另一套独立产品。这不保证每种组合都稳定或适合每项任务;DSH 仍处于开发者预览阶段。
6. 工具调用走同一条受控执行流水线
flowchart LR
Call["模型产出工具调用"] --> LoggedCall["记录 tool/call"]
LoggedCall --> Pre["tools/pre-execute\nhook · 权限 · 沙箱"]
Pre --> Ask{"需要审批?"}
Ask -->|已批准| Guards["不可绕过的 guard"]
Ask -->|拒绝 / 不可用| Denied["跳过工具主体"]
Guards --> Execute["tools/execute\n超时 · 重试 · 指标"]
Execute --> Body["工具 execute()"]
Body --> Post["tools/post-execute\n接受 · 阻止 · 改写"]
Denied --> Post
Post --> Result["最终化并记录 tool/result"]
Result --> UI["UI 结果卡片"]
Result --> Next["下一次模型请求"]
插件可以在官方规定的阶段插入策略、可观测性、超时或结果处理,而无需修改 Agent Loop。官方流水线也让 Code Mode 分派的子调用通过同一条路径,从而保留审批、沙箱和日志边界。
7. Agent 的 Turn、Step 与追加式会话日志
sequenceDiagram
participant U as 用户
participant A as Agent Loop
participant P as Prompt 组装器
participant M as 模型
participant T as 工具流水线
participant L as 追加式会话日志
U->>A: followup(message)
A->>L: turn/start + user/message
A->>P: 组装 Prompt 区块与工具 schema
P->>M: request
M-->>L: assistant/chunk*
M-->>L: assistant/message
M->>T: tool/call*
T-->>L: tool/result*
A->>L: step/end
alt 仍有输入或工具结果待处理
A->>P: 下一 Step
else 没有待处理工作
A->>L: turn/end
end
会话日志是模型上下文的事实来源:它持久记录 turn、消息、工具调用/结果和原始流式 chunk。分叉、恢复、回放、转录、遥测与持久化都从该事件流派生;任何模型可见内容都必须能从中重建。
8. 多 Agent 与 Workflow 扩展接缝
flowchart TB
Parent["父 Agent\n规划、委派、汇总"] --> Subagent["子 Agent 能力接缝"]
Subagent --> Fresh["全新子 Agent"]
Subagent --> Fork["分叉 / 可继续会话"]
Subagent --> External["外部产品 Provider\n(如 ACP 后端)"]
Parent --> Workflow["Workflow 能力"]
Workflow --> Parallel["并行分支"]
Workflow --> Pipeline["流水线阶段"]
Workflow --> Background["后台工作"]
Fresh --> Events["subagent/* + session/event"]
Fork --> Events
External --> Events
Workflow --> Events
Events["持久 Session Event + 实时 Agent Event"] --> Inspect["UI、轨迹、回放、遥测"]
DSH 提供了以层级委派为主的表面与 workflow 组件;子 Agent 接缝后的 provider 可以替换。其架构关键在于可替换性和共享可观测性,而不是声称创造了全新的多 Agent 范式。
快速开始:官方 DSH 资料
- DeepSeek Harness 官方源码 - 版本、issue 与兼容性的唯一首要依据。
- 官方文档指南 - DSH 官方文档入口。
- 运行 DSH - 通过 npx @deepseek-ai/dsh web 启动本地 Web UI。
- 架构 - 了解插件优先运行时的结构。
- 能力接缝 - 官方定义的扩展边界。
- Cordis 入门 - DSH 所依赖的可组合框架。
- 开发指南 - 从源码构建及贡献官方项目。
- 防御性模式 - 更安全地扩展 DSH 的官方建议。
- 测试 - 官方测试方式。
- 官方示例 - Headless、JSON-RPC、MCP Memory、定时 Web、Cordis 示例。
如何找插件
- GitHub dsh-plugin topic - 官方建议用于 DSH 插件发现的 topic;仅用于发现,不构成收录证据。
- 插件注册表 - Repository-plugin 控制台和 make-dsh-plugin 开发指导。
- 插件工作坊 - 社区插件市场和注册表实践。
收录保证
我们不因为名称、topic 或 README 自称 DSH 插件就收录。每个新插件都必须通过源码级收录规范:存在真实 DSH 清单/插件包,或能在官方 DSH 扩展接缝中验证的实现。每日只检索过去 48 小时的新/更新项目,并对脚本、依赖、入口、工作流及敏感操作做静态安全初筛;只有两项都通过才会收录。没有合格候选就不修改仓库。这不是完整安全审计或兼容性保证。
完整目录 / Full index
英文完整目录 按下列分类维护项目的英文说明;每一类均只收录符合上述 DSH 规则的项目:
- 生产力与 Agent 工作流 / Productivity & Agent Workflow
- 上下文、记忆与可观测性 / Context, Memory & Observability
- 工具、集成与自动化 / Tools, Integrations & Automation
- 设计与创意工具 / Design & Creative Tools
- 浏览器、计算机操作与远程执行 / Browser, Computer Use & Remote Execution
- 终端与 Web 界面 / Interfaces & Web UI
- 开发工具 / Developer Tooling
- 实用工具 / Utilities
- 创意与个性化 / Creative & Personal
- 游戏与游玩 / Games & Play
- 启动器与客户端(不是插件)/ Launchers & Clients (not plugins)
- 生态目录(不是插件)/ Ecosystem Indexes (not plugins)
游戏与游玩 / Games & Play
- dsh-minigames - DSH Web 右侧离线小游戏面板,包含恐龙跳一跳、俄罗斯方块、坦克大战、五子棋、扫雷等 18 款游戏。 / An offline DSH Web side panel with 18 mini-games, including Dino, Tetris, Tanks, Gomoku, and Minesweeper.
近期通过核验的新增 / Recently verified additions
- Busabase - 可检索的知识与结构化记录,支持人工审核拟议写入、MCP 工具及 Web UI 卡片;@busabase/dsh-plugin 0.1.6 声明 DSH 0.1.1-rc.2 peer 依赖。 / Searchable knowledge and structured records with human-reviewed proposed writes, MCP tools, and Web UI cards; @busabase/dsh-plugin 0.1.6 declares DSH 0.1.1-rc.2 peer dependencies.
- dsh-crew - 从 Claude Code 或 Codex 调度 DSH Worker,提供宿主内会话、实时进度、工作区锁与递归防护;外部 CLI Worker 需显式选择,且会使用其文档所述的始终批准模式。 / Dispatch DSH workers from Claude Code or Codex with in-host sessions, live progress, workspace locks, and recursion guards; external CLI workers are an explicit opt-in and use their documented always-approve modes.
- dsh-schematic - 实时插件拓扑与活动查看器,带受保护的组合工作台:编辑先预览、校验、备份,且可回滚;已使用 DSH 0.1.0-rc.8 测试。 / Live plugin-topology and activity viewer with a guarded composition workbench: edits are previewed, validated, backed up, and reversible; tested with DSH 0.1.0-rc.8.
- dsh-product-subagent-console - 面向 DSH 对话的多 Agent 工作台:支持可编辑任务方案、真实子会话观测、计划与实际运行对照,以及基于证据的恢复预览;已使用 DSH 0.1.1-rc.2 测试。 / Conversation-level multi-agent workbench for editable task planning, real child-session observation, plan-versus-runtime comparison, and evidence-backed recovery previews; tested with DSH 0.1.1-rc.2.
- dsh-tmux-cc - 为 DSH Web 提供持久的 tmux 控制模式驾驶舱,在停靠栏中镜像原生窗格。 / Persistent tmux control-mode cockpit for DSH Web that mirrors native panes in a dock.
- dsh-mobile - 为 Android App 和手机浏览器提供经过配对认证的 DSH HTTPS 访问,包含独立移动布局、相互分离的局域网与可选 Funnel/cpolar 远程通道;已验证兼容 DSH 0.1.1-rc.2。 / Paired HTTPS access to the native DSH Web profile from Android or mobile browsers, with a dedicated mobile layout, separate LAN and optional Funnel/cpolar routes; verified with DSH 0.1.1-rc.2.
- dsh-llm-verifier - 经审批的 3/5 路编码 Agent 优选编排:隔离 Git worktree、宿主验证命令、LLM 验证器与独立赢家应用步骤,并包含凭据和进程输出防护。 / Approval-gated best-of-3/5 coding-agent orchestration with isolated Git worktrees, host validation commands, an LLM verifier, and a separate winner-apply step with credential and process-output safeguards.
- DeepSeek Harness Brain - 带来源引用的学习与开发资源,含白话指南、Obsidian 知识库、辅助 Skill 与可移植性指引;基于固定 DSH 上游提交审阅。 / Source-cited learning and development resource with a plain-English guide, Obsidian knowledge base, assistant skill, and portability guidance; reviewed against a pinned upstream DSH commit.
- dsh-smooth-stream - 为 DeepSeek Harness Web UI 提供流畅流式渲染和丝滑滚动;已使用 DSH 0.1.0-rc.6 测试。 / Fluid streaming rendering and smooth scrolling for the DeepSeek Harness Web UI; tested with DSH 0.1.0-rc.6.
- odai-dsh-plugin - 面向整个 DSH profile 的治理与路由 bundle,提供用于职责与证据检查的 Web Control Center,以及压缩、本地作用域语义记忆、安全连续性与真实验收;兼容 DSH 0.1.5-rc.1。 / Profile-wide DSH governance and routing with a Web Control Center for responsibility and evidence inspection, plus compaction, scoped semantic memory, safety continuity, and verified delivery; compatible with DSH 0.1.5-rc.1.
- dsh-mqtt - 通过 MQTT 提交、引导、观察和取消 DSH 会话的协议驱动与 Agent Worker 网关;已使用 DSH 0.1.0-rc.7 测试。 / MQTT protocol driver and agent worker gateway for submitting, steering, observing, and cancelling DSH sessions; tested with DSH 0.1.0-rc.7.
- dsh-file-claim - 为同一工作区的并行 DSH 会话提供文件认领/释放保护,含过期心跳接管与待处理三路合并区。 / File claim/release protection for parallel DSH sessions in one workspace, with stale-heartbeat takeover and a pending three-way-merge area.
- dsh-context-proxy - 基于官方 session-query 与 subprocess 接缝,按需通过 context_query、context_slice、context_grep 读取已持久化会话历史。 / On-demand context tools over persisted session history, using the official session-query and subprocess seams.
- dsh-fail-logger - 将原生、Code Mode 与内嵌工具调用失败按错因去重写入本地维护的 Skill 区段;落盘前会脱敏已支持的秘密模式。 / Deduplicates failed tool calls into a locally maintained skill section; supported secret patterns are redacted before persistence.
- dsh-figma-to-lottie - 将 SVG 路径与关键帧数据编译为自包含的 Lottie JSON 动画文件。 / Compile SVG paths and keyframe data into self-contained Lottie JSON animation files.
- dsh-reviewer-bot - 面向 GitHub 与 GitLab 的可配置 DSH 原生代码评审 bundle,写操作默认拒绝,并支持本地回放。 / Configurable DSH-native code-review bundle for GitHub and GitLab, with fail-closed write mode and local replay support.
- dsh-reasoning-effort - 遵循模型适配器实际声明档位的 Codex 风格会话模型与思考强度选择器,并为自定义 provider 提供只读声明指引。 / Codex-style session model and reasoning-effort selector that follows adapter-advertised levels, with read-only guidance for custom-provider declarations.
- dsh-auto-mode - 默认拒绝的自动权限策略,含受保护路径与凭据检查;歧义工具调用会使用脱敏后的分类器兜底。 / Fail-closed automatic-permission policy with protected-path and credential checks, plus a redacted classifier fallback for ambiguous tool calls.
- dsh-toy - 通过 Intiface 或 MonsterParty 控制兼容个人设备;可选 Intiface 助手会在缺失时下载固定版本、经 SHA-256 校验的上游引擎。 / Control compatible personal devices through Intiface or MonsterParty; the optional helper downloads a pinned, SHA-256-verified upstream engine when absent.
- Tabbit Browser for DSH - 浏览器自动化 Skill,支持通过显式工具在所需浏览器缺失或过期时下载对应地区的 Tabbit Browser 安装器。 / Browser-automation skill with an explicit tool that can download the region-appropriate Tabbit Browser installer when the supported browser is absent or outdated.
- Code2Skill - 从已授权源码生成并复核 Function、MCP 与 Agent Skill 包的 3 个 DSH Skills bundle(固定版本 v1.1.3)。 / A three-skill DSH bundle for generating and reviewing Function, MCP, and Agent Skill packages from authorized source code (version-pinned at v1.1.3).
- dsh-passwords - 面向远程、多用户 DSH Web 的登录网关,提供 HTTPS、配额、沙箱限制与审计日志。 / Login gateway for remote, multi-user DSH Web access, with HTTPS, quotas, sandbox restrictions, and audit logs.
- dsh-compaction-instant - 离线、确定性的 DSH 基础上下文压缩替代实现,并提供 append-only 会话日志的回溯工具。 / Offline deterministic replacement for the DSH basic compaction seam, with append-only-log recall tools.
- dsh-cost-meter - 会话与当日 API 费用、预算与官方余额统计(DSH Web),带历史看板与官方价格一键同步(峰谷计价)。 / Per-session and daily API cost, budget, and official-balance tracking for the DSH Web UI, with a history dashboard and one-click official price sync (peak/off-peak pricing).
- dsh-web-billing - DeepSeek Harness 人民币/美元计费插件:官方政策自动计价(含峰谷)、按 Provider 计费(按量/订阅/白嫖/本地)、来源分组费用页、时间段筛选、预算、余额、CSV/JSON 导出。
- dsh-visualize - 受限 CSP 的沙箱可视化卡片。 / Sandboxed visualization cards with a constrained CSP.
- dsh-image-to-path - 带同源、大小与图片类型检查的工作区图片上传。 / Workspace image upload with same-origin, size, and image-type checks.
- dsh-ux-simple - 保留原生界面的同时,提供两档工具调用卡片与白话说明。 / Two-mode tool-call cards with plain-language explanations while preserving the native view.
- dsh-any-background - 在本地浏览器保存主题色、壁纸、透明度与模糊度设置。 / Local-browser theme color, wallpaper, opacity, and blur customization.
- dsh-telemetry-redactor - 对导出的 session-telemetry/record 副本脱敏已支持的秘密模式,不改写权威会话日志;以 DSH 提交 47f943859bef60e4160492346772ded9b24f765a 为审计基线,并用 dsh-session-telemetry rc.6 实测。 / Redacts supported secret patterns from exported telemetry copies without changing the canonical session log; audited against DSH commit 47f943859bef60e4160492346772ded9b24f765a and tested with dsh-session-telemetry rc.6.
- dsh-verification-receipt - 将每轮工具结果与启发式验证信号摘要写入本地 JSONL,不保存提示词、工具参数或结果正文;以 DSH 提交 47f943859bef60e4160492346772ded9b24f765a 为审计基线,并用 dsh-session rc.6 实测。 / Writes local JSONL summaries of per-turn tool outcomes and heuristic verification signals without storing prompts, tool arguments, or result text; audited against DSH commit 47f943859bef60e4160492346772ded9b24f765a and tested with dsh-session rc.6.
- dhicoc/dsh-reverse-skill - 完整 reverse-skill(85 个 SKILL.md)的 DSH 技能路由包,覆盖逆向工程、授权渗透测试与安全研究。 / An 85-skill DSH router pack for reverse engineering, authorized penetration testing, and security research.
- dsh-context - 上下文洞察面板:一眼看清模型上下文窗口的组成与变化——构成对照窗口大小、按请求历史趋势、压缩/注入事件、消息级 token 统计。 / Context insight panel: see what the model's context window is made of and how it evolves — composition vs. window size, per-request history, compression/injection events, and per-message token stats.
- dsh-bell-notify - 生命周期铃声 + 状态点:为每个环节(启动、工具调用、命令、等待审批、回合完成、空闲)播放专属提示音,Web Audio 实时合成零音频文件,可上传自定义音;经 dsh.bundle manifest 与 Cordis patch 声明安装。 / Per-lifecycle-event chimes for DSH, synthesized live with Web Audio (zero audio files), plus a breathing status dot; declarable via a dsh.bundle manifest with a Cordis patch.
- dsh-plugin-guide - 插件开发知识库(按需 agent 技能)+ dsh-plugin-dev CLI 工具链;经 dsh.bundle manifest 安装(npm dsh-plugin-guide),维护于 dsh-v0.1.5-rc.2 宿主线。 / Plugin-development knowledge base as an on-demand agent skill plus the dsh-plugin-dev CLI toolchain; installs via the dsh.bundle manifest (npm dsh-plugin-guide).
- dsh-plugin-upgrade-015 - 合并后的锁版本升级走廊(0.1.3-alpha.1 → 0.1.5-rc.1 两条封闭迁移腿):带证据的版本卡 + 零依赖 20 接缝扫描器;经 dsh.bundle manifest 安装(npm dsh-plugin-upgrade-015),另有 npx 扫描 CLI。 / Merged version-locked upgrade corridor with an evidence-bound version card plus a 20-seam scanner; installs via the dsh.bundle manifest (npm dsh-plugin-upgrade-015).
- dsh-test-drive - 一次性 DSH_HOME 中的隔离「安装→冒烟→卸载」实测,输出结构化 dsh-test-drive/v1 结果矩阵;经 dsh.bundle manifest 安装(npm dsh-test-drive)。 / Isolated install-smoke-uninstall test drives for DSH plugins in a throwaway DSH_HOME, emitting structured dsh-test-drive/v1 pass/fail matrices; installs via the dsh.bundle manifest (npm dsh-test-drive).
贡献
请阅读中文贡献指南或English guide。提交条目时,请提供源码中 DSH 集成的具体证据。
许可证
本仓库采用 CC0 1.0。同作者(walkinglabs)的其他插件
扫码进群