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.

We Need First — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-we-need-first

We Need First

DeepSeek Harness plugin: make the chain of thought open with "We need" instead of "Let me"

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

npx -y @deepseek-ai/dsh plugin --profile web add github:XiaoWind/dsh-WeNeedFirst#b94f82782e2d19f1e5e996b3927318dc992c3f54
READMECompatibilityVersions

Compatibility and provenance

We Need First is published as dsh-we-need-first 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
any
Release source
github
Registry updated
8/21/2026

Versions

0.1.0stable
8/21/2026
Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/28/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

README

dsh-we-need-first

English | 中文

A DeepSeek Harness (DSH) plugin that changes how the model opens its chain of thought. DeepSeek reasoning models habitually begin their thinking with "Let me"; this plugin registers a global system-prompt section that instructs the model to open every reasoning block with "We need" instead.

There is no build step and no extra runtime state — the plugin contributes one prompt section to the systemPrompt registry and does nothing else.

Install

# from GitHub (works immediately — no npm publish required)
dsh plugin --profile web add git+https://github.com/XiaoWind/dsh-WeNeedFirst.git

# or from npm, once published
dsh plugin --profile web add dsh-we-need-first

The dsh plugin command forwards to pnpm inside the web profile directory, then reconciles the profile's dsh.profile.bundles layer list. Because this package declares dsh.bundle.patch, it joins the layer stack automatically. Restart the Web app after installing.

The plugin injects the systemPrompt service, so it activates in every profile that composes a system prompt — the shipped web profile does.

Update

dsh plugin --profile web update dsh-we-need-first

Restart the Web app after updating — the bundle layer is composed at boot, so a running Web process does not hot-reload an installed plugin.

Configuration

The instruction is generated from two phrases, both configurable in your profile's cordis.patch.yml:

ConfigDefaultMeaning
openingPhraseWe needThe phrase every chain-of-thought block must open with.
avoidPhraseLet meThe phrase the model is told to stop using as its opening.
# your profile's cordis.patch.yml
- id: we-need-first
  config:
    openingPhrase: "We need"
    avoidPhrase: "Let me"

Development

# syntax check
node --check lib/index.js

# unit tests
node --test test/

The plugin is a single-file ESM Cordis function plugin (lib/index.js). It exports apply, inject, and name, and the bundle layer cordis.patch.yml inserts it into the profile composition.

License

MIT