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.

Prompt Forge — DSH Plugin for DeepSeek Harness
← Plugins
P

dsh-prompt-forge

Prompt Forge

DSH 提示词锻炉:零配置流式优化(复用会话模型)+ 轻量词库(JSON 文件)+ 一键存技能。Prompt Forge: zero-config streaming optimization + file-based prompt library + one-click skills.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:nina27486486/dsh-prompt-forge#12d09c6ea34361ff8dc86d991a31f4b1156b4e3b
READMECompatibilityVersions

Compatibility and provenance

Prompt Forge is published as dsh-prompt-forge and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.1.0stable
9/13/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/13/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in productivity-workflow.

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 WebAcp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseAutomation@michengai/dsh-automationExecute coding tasks on a schedule in an independent DSH Session, with dual-entry management via a Web settings page and Agent.Easyrewritedsh-easyrewriteDSH Web内目前最无感的消息撤回、重编辑插件,原版体验,兼容性强,功能简单可开关,设置丰富,现代化轻量ui框架。The most seamless message recall & re-edit plugin for DSH Web — native experience, strong compatibility, simple toggles, rich settings, modern lightweight UI. DSH Web で最もシームレスなメッセージ撤回・再編集プラグイン——ネイテ

README

dsh-prompt-forge ⚒ 点词成金

DeepSeek Harness 提示词锻炉「点词成金」:零配置流式优化 + 文件词库 + 一键存技能。 取「点石成金」之意——把烂草稿锻成好提示词。 一个刻意保持小体量的原生 dsh 插件(宿主 + 客户端 ≈ 700 行,零运行时依赖)。

功能

  • ⚒ 一键优化:输入框草稿 → 点 ⚒(或卡片内切模式)→ SSE 流式输出,推理过程可见
    • 三档模式:轻量(单句润色)/ 标准(结构化改写)/ 专家(任务推断 + 输出契约 + {{变量}} 占位)
    • 零配置:直接复用当前会话模型(agentDefaultModel + llm.stream),无需任何 API Key 配置
  • 动作:替换草稿 / 撤回(恢复优化前草稿)/ 复制 / 重新优化
  • 词库:纯 JSON 文件存储($DSH_HOME/prompt-forge/prompts.json),可直接编辑、可进 git; 卡片内「词库」tab 浏览,点击条目插入输入框;记录使用次数与标签
  • 存为技能:优化满意的结果一键写成 dsh 技能($DSH_HOME/skills/forge-<slug>/SKILL.md), 之后用 /forge-<slug> 触发

安装(自包含部署内)

# 目录名带空格时,先建无空格联接(dsh plugin 转发器按空格拆参会切断路径)
cmd /c mklink /J D:\prompt-forge-dev "D:\deepseek harness\plugins\dsh-prompt-forge"
./dsh.sh plugin --profile web add D:/prompt-forge-dev   # pnpm 以 link 模式安装,改源码重启即生效
# 重启 dsh web

设计取舍(对比社区三个同类插件)

取舍理由
零配置会话模型(来自 optimizer)免 Key 免填端点,默认路径零摩擦
三档模式(来自 enhancer)一键单模式不够,记忆链/模型链复杂度不值
#快插 + {{变量}} + 转技能(来自 prompt-library)管理侧精华;SQLite 换成纯 JSON 文件:可审计、可同步、无锁
无遥测、无 CDN、无自更新、无原生编译供应链面清零;更新走 npm/重装
全路径遵循 DSH_HOME数据全部落在自包含部署文件夹内

数据落点

内容位置
词库$DSH_HOME/prompt-forge/prompts.json
生成的技能$DSH_HOME/skills/forge-*/SKILL.md

已知边界

  • 优化质量取决于当前会话模型;API Key 无效时错误会流式显示在卡片里
  • 草稿读写走 composer DOM(原生 setter + input 事件),与官方渲染器的 textarea 实现耦合; 渲染器大改时需同步调整 findComposer()
  • 0.1.1-rc.2 的槽位契约是旧形态({session, input} props);升级到 ≥0.1.2-rc.1 的宿主时 需按新契约(sessionId + hooks)适配