dsh-thinking-language-zh
ayanJava111
deepseek harness思考过程中文插件
JoukoPuro/dsh-prompt-polish
一个 DeepSeek Harness(DSH)插件: 在 Web 输入框的工具行中添加一个 ✨ 图标按钮。点击后选择打磨风格,已接入的大模型 会把你草稿中的提示词改写得更专业、更易被 AI 理解 。A DeepSeek Harness plugin: icon-only composer button that rewrites your prompt via the connected LLM (balanced/concise/detailed/code styles, i18n)
PROJECT TOPICS
PROJECT README
English | 中文
A DeepSeek Harness (DSH) plugin that adds a ✨ sparkle button to the web composer's tool row. Click it, pick a rewrite style, and the already-connected LLM rewrites your draft prompt to be more professional and easier for an AI to understand — then replaces the draft so you can review before sending.
agentDefaultModel), or an explicit provider/model from config.@deepseek-ai/dsh) web profile running, with a model
adapter configured (e.g. the DeepSeek provider with an API key in Settings).# from a checkout of this repository (or the directory containing it)
dsh plugin --profile web add ./dsh-prompt-polish
Then restart dsh web so the profile picks up the new bundle:
dsh web
Open the web UI, type a draft, and click the sparkle button in the composer tool row.
The plugin accepts optional config in the profile's cordis.patch.yml
(user layer, applied after the bundle layer):
- id: prompt-polish
config:
provider: deepseek-official # explicit route (optional)
model: deepseek-v4-flash # must be paired with provider
style: balanced # default rewrite style: balanced | concise | detailed | code
maxTokens: 2048 # output cap for the rewrite call
# system: '...' # custom rewrite instruction (replaces the built-in per-style prompts)
Without provider/model, the plugin uses
agentDefaultModel.currentSelection() — the same default model the session
uses.
| Half | File | Role |
|---|---|---|
| Host | lib/index.js |
Registers POST /prompt-polish on the web server; streams one LLM rewrite via ctx.llm |
| Browser | lib/client.js |
Registers the sparkle button into conversation.input.right; opens a style menu; posts the draft and replaces it with the polished text |
The bundle's package.json declares both faces of the dual-face plugin:
dsh.bundle — the profile patch layer (cordis.patch.yml) that inserts the
prompt-polish loader row.dsh.client — the web boot row; client-modules serves lib/client.js at
/plugins/dsh-prompt-polish/client.js.Edit lib/index.js (host) and lib/client.js (browser). The browser bundle is
a hand-built closure-factory artifact (window.__ModuleLoader__.load({ id, factory })) — keep externals limited to the platform modules
(react, @deepseek-ai/dsh-client-ui-primitives) and inline everything else,
matching the loader's module-table rules.
Verify on a scratch port before touching the live profile:
dsh web --port 3099
curl -s http://127.0.0.1:3099/plugins/dsh-prompt-polish/client.js | head
curl -s -X POST http://127.0.0.1:3099/prompt-polish \
-H 'content-type: application/json' \
-d '{"text":"read a.csv and sort by b","style":"code"}'
MIT
CLASSIFICATION EVIDENCE
系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。