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.

Vibe Intent Compiler — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
V

dsh-vibe-intent-compiler

Vibe Intent Compiler

A conservative intent compiler for Vibe Coders in DeepSeek Harness: clarify messy drafts without inventing details, then fill the result back into the composer.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Shhaaawwww/vibe-intent-compiler#0ad5fb593b13ba086d7bc894418a15d33599233d
READMECompatibilityVersions

Compatibility and provenance

Vibe Intent Compiler is published as dsh-vibe-intent-compiler and currently resolves to version 0.4.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
8/25/2026

Versions

0.4.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.4.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/25/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 developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

Vibe Intent Compiler

简体中文

A one-click DeepSeek Harness plugin that turns a Vibe Coder's messy draft into a concise, faithful, and actionable instruction—without inventing details.

This is not a general-purpose prompt enhancer. It reads the complete, unsent draft in the DeepSeek Harness composer, reorganizes only what the user actually said, and fills the result back in place. When the user explicitly selects an @file, the plugin may use that file only to resolve references already present in the draft. The user reviews, edits, and sends the result.

Version 0.4 is the Faithful Context Beta: model rewriting is surrounded by deterministic input and output checks. If a safe, faithful result cannot be verified, the original draft stays unchanged.

Install

Requirements:

  • Node.js 22.19.x or 24+ (^22.19.0 || >=24.0.0).
  • DeepSeek Harness 0.1.1-rc.2 or later.
  • pnpm available on PATH. Harness uses it internally to manage profile plugins, even when Harness itself was installed with npm or launched through npx.
  • A default model configured in Harness.
npm install -g @deepseek-ai/dsh pnpm
pnpm --version
dsh plugin --profile web add "github:Shhaaawwww/vibe-intent-compiler#v0.4.0"
dsh web

The plugin command must complete successfully before starting the Web UI. Open or create a conversation; the ✦ Clarify button appears in the conversation composer, not on the landing page.

If you run Harness through npx:

npm install -g pnpm
npx @deepseek-ai/dsh plugin --profile web add "github:Shhaaawwww/vibe-intent-compiler#v0.4.0"
npx @deepseek-ai/dsh web

Installation troubleshooting

If Harness reports pnpm not found on PATH, the plugin has not been installed yet. Stop the Web UI, then run:

npm install -g pnpm
pnpm --version
dsh plugin --profile web add "github:Shhaaawwww/vibe-intent-compiler#v0.4.0"
dsh web

Warnings about node-domexception or peer dependencies are non-fatal when installation finishes with Done. If the button is still missing, restart dsh web, enter a conversation, and hard-refresh the page.

Use

  1. Write a natural, fragmented, or self-correcting request in the composer.
  2. Optionally type @ and pick up to three files from Harness. Only picked file chips are read; plain paths and manually typed mentions are not.
  3. Click ✦ Clarify. The button shows how many files will be used.
  4. Review the rewritten draft, edit it if needed, and send it yourself.

Example:

Before: Login keeps breaking lately, maybe it's the token. Make the UI nicer too—actually, leave the UI alone for now.

After: Fix the recent recurring login issue. Treat the token as a possible cause to investigate, and do not change the UI.

What makes it different

  • Uses only information explicitly present in the draft.
  • Treats later corrections as replacements only when they conflict with earlier wording.
  • Removes withdrawn ideas while preserving constraints, preferences, and uncertainty.
  • Preserves code, commands, paths, URLs, error messages, identifiers, schema keys, and technical terms.
  • Verifies protected text after rewriting and rejects results that omit it or introduce a new @reference.
  • Does not invent project facts, files, frameworks, implementation details, steps, tests, acceptance criteria, features, or permissions.
  • Can resolve an existing name or vague reference from explicitly selected files without searching the project, following imports, or starting an agent loop.
  • Keeps short inputs short; normal output is limited to roughly twice the effective source length.
  • Never executes the task or sends the message automatically.

Boundaries and privacy

  • Version 0.4 rewrites the complete draft, not a selected range.
  • It does not use a double-space shortcut, avoiding conflicts with IMEs, code, and Markdown.
  • It uses the default provider and model already configured in Harness, stores no additional API key, and explicitly requests low reasoning instead of inheriting the conversation's reasoning effort.
  • File context is deterministic, not agentic: only valid file chips recorded by the Harness composer are read. Structured chip offsets are verified, so references work beside Chinese text or punctuation while manually typed @text is not treated as a selected file.
  • Directories, binary/non-UTF-8 files, workspace escapes, and symlink escapes are rejected.
  • Sensitive paths such as .env, credential/secret files, SSH/AWS/Git metadata, and private-key formats are blocked. The draft and selected file text are also checked for common credential patterns before they can reach the model.
  • At most three files are accepted, up to 24 KiB each and 48 KiB in total. Files are never silently truncated; a rejected reference leaves the draft unchanged.
  • Selected file contents are sent to the same configured model provider as the draft. The plugin does not persist a separate copy, but the provider's own retention policy still applies.
  • Sensitive-content detection is a conservative, best-effort guard—not a secret manager. Never select a file that may contain credentials or private data.
  • The result must retain selected references and detectable code, commands, URLs, paths, and identifiers. It must not introduce a new @reference or copy a substantial file line. Failed validation leaves the draft unchanged.
  • If the draft changes during rewriting, the stale result is discarded instead of overwriting new input.
  • The raw draft is excluded from the command input log. The rewritten result remains in the Harness session as the command result.
  • Drafts longer than 20,000 characters are left unchanged rather than silently truncated.

Local installation

dsh plugin --profile web add /absolute/path/to/vibe-intent-compiler
dsh web

Prebuilt artifacts are committed, so installation does not run build scripts.

For vulnerability reporting and the supported security boundary, see SECURITY.md.

License

MIT. See LICENSE.