DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Snippets — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-snippets

Snippets

极简常用片段/命令工具箱 for DeepSeek Harness: JSONL-backed, five tools, no UI, no deps beyond the harness SDK. Save frequently used commands, code, URLs and prompts, then search them back in any session.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:taxueseek/dsh-snippets#3e1be27cae9f0c7ab2cb64db04a0042179d283f1
READMECompatibilityVersions

Compatibility and provenance

Snippets is published as dsh-snippets and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.1.1stable
8/22/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
8/23/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI

README

dsh-snippets

DeepSeek Harness 极简「常用片段/命令」工具箱:把高频命令、代码、网址、提示词存下来,任何会话里一条工具调用就能找回。

  • 一个 JSONL 文件(~/.dsh/snippets/snippets.jsonl),人类可读、可手工编辑、本身就是备份
  • 五个工具,语义一眼可懂,没有多余概念
  • 零 UI、零数据库、零网络:不加新运行时依赖,只有 harness SDK
  • 显式记忆:AI 不会自动记录你的对话,只有你明确说「存」才存

功能

工具作用
snippet_save保存或覆盖一条片段(同名覆盖并更新时间)
snippet_search按子串搜索(匹配名称/正文/标签,不区分大小写)
snippet_get按确切名字取回一条
snippet_delete删除一条
snippet_count统计总数

用法(模型视角)

  • 存:snippet_save(name: "docker-logs", text: "docker logs -f --tail 100 myapp", tags: ["ops"])
  • 找:snippet_search(query: "logs") → 返回 docker-logs
  • 取回:snippet_get(name: "docker-logs") → 拿到全文直接执行

为什么极简

  • 不占上下文:不自动注入记忆,只在调用工具时才取回
  • 可预期:存了什么、在哪、长什么样,一清二楚(就是那个 JSONL 文件)
  • 内容是你挑的:存的是你特意收藏的,不是 AI 替你判断的
  • 轻:无数据库、无向量库、无 UI 面板、无额外服务

数据

  • 路径:~/.dsh/snippets/snippets.jsonl
  • 每行一条 JSON:{"name","text","tags","updatedAt"}
  • 损坏行自动跳过,不影响其余数据
  • 片段名限制 [A-Za-z0-9._-]{1,80},单条上限 2 万字符

安装

# 从 GitHub 安装(与 taxueseek 其他插件一致)
dsh plugin --profile web add "github:taxueseek/dsh-snippets#main&path:."
# 重启 dsh web

(本地开发:dsh plugin --profile web add /path/to/dsh-snippets)

配置

- id: snippets-toolkit
  name: 'dsh-snippets'
  config:
    snippetsDir: '~/.dsh/snippets'   # 数据目录
    maxEntryChars: 20000             # 单条片段字符上限
    defaultLimit: 20                 # search 默认返回条数

开发

npm install --include=dev
npm test          # node --test 单元测试(11 项)
npm run build     # tsc 编译 host TS

许可

MIT

安装

```sh dsh plugin --profile web add taxueseek/dsh-snippets ```

贡献

欢迎提交 PR。