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.

Quick Prompts — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
Q

@max1997/dsh-quick-prompts

Quick Prompts

Quick prompts dock for the dsh web GUI: a row of user-defined prompt chips above the composer — click a chip to preview and edit its text (with {{placeholder}} fields), then sync it into the input or send it directly. Prompts are stored in the official settings document, not localStorage.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lcsdg/dsh-quick-prompts#20e8044aeb924487b65d267178434dc816331954
READMECompatibilityVersions
preview

Compatibility and provenance

Quick Prompts is published as @max1997/dsh-quick-prompts and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.1.2stable
8/25/2026

Related plugins

Loading related plugins…

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

Better Sidebardsh-better-sidebarDSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

dsh-quick-prompts

把常用指令做成输入框上方的一排胶囊,点一下就填好、就能发。 少打字,少重复复述需求。

快捷指令面板 —— DSH Web GUI 输入区上方的一排指令胶囊。点击胶囊预览并编辑指令(支持 {{占位符}}),同步到输入框或直接发送。指令存储在官方 settings 文档(ctx.settingsScope),清除浏览器缓存不会丢失。

A row of user-defined prompt chips above the composer. Click a chip to preview/edit its template (with {{placeholder}} fields), then sync it into the input or send directly. Prompts live in the official settings document — browser cache clears never touch them.

预览 / Preview

输入框上方的指令行预览弹窗(占位符橙色高亮)两栏管理弹窗
dockpreviewmanager

功能 / Features

  • 点胶囊 → 预览弹窗:编辑指令全文(本次草稿,不改已保存指令)、填写 {{占位符}}、同步到输入框或直接发送
  • 胶囊旁纸飞机 → 一键直接发送;指令含占位符时自动转预览填写
  • ⚙️ 管理弹窗:左侧功能区(增/删/改名/计数),右侧该功能下的指令(新增/编辑/删除/↑↓排序)
  • 编辑弹窗:大文本区 + 占位符橙色高亮,改动点保存才生效
  • 删除确认:删功能会连同其下指令一并删除(不会丢到"未分类")
  • 分类记忆:每个会话独立记住当前选中的功能,切换窗口不丢
  • 指令存官方 settings 文档(ctx.settingsScope)+ 导入/导出 JSON,清浏览器缓存不丢失

安装 / Install

在已初始化的 DSH profile 中执行(把 web 换成你的 profile 名):

# 方式一:npm(推荐,一条命令)
dsh plugin --profile web add @max1997/dsh-quick-prompts

# 方式二:Git
dsh plugin --profile web add git@github.com:lcsdg/dsh-quick-prompts.git

安装后刷新 Web GUI 页面即可看到输入区上方的指令行(host 半区需要重启 dsh 进程才会完整加载)。

配置说明 / Configuration

指令列表保存在 settings namespace quick-prompts(schema 驱动,官方设置页同样可见)。结构:

{
  "categories": [
    { "id": "review", "name": "代码审查" }
  ],
  "prompts": [
    { "id": "review-changes", "label": "审查当前改动", "text": "审查当前 git 改动…", "categoryId": "review" }
  ]
}

text 中的 {{任意名字}} 会成为预览弹窗里的填写字段(橙色高亮),同步/发送时替换为填写值;未填写的占位符原样保留。

开发 / Development

pnpm watch          # 增量构建 lib/client.js
pnpm typecheck

结构:

  • src/index.ts — host 半区:注册 quick-prompts settings namespace(schemastery schema + 示例指令作为 base 层)
  • src/client/ — 浏览器半区:conversation.input.dock slot(order 100)
    • QuickPromptsDock.tsx — dock 行(胶囊 + 悬停发送 + 齿轮)
    • PreviewModal.tsx — 预览/编辑弹窗(占位符填写、追加/覆盖、同步/发送)
    • ManagerModal.tsx — 管理弹窗(增删改排序、导入导出)
    • placeholder.ts — {{name}} 解析与替换

License

MIT