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.

Turbo Agent — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
T

@dsh-external/dsh-turbo-agent

Turbo Agent

Selectable DeepSeek Harness TurboAgent mode with hidden Best-of-N routing for Flash, Pro, and Vision.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:qianen6/dsh-turbo-agent#6186588dd3c5fa9a32f81d39447556c546061b32
READMECompatibilityVersions

Compatibility and provenance

Turbo Agent is published as @dsh-external/dsh-turbo-agent and currently resolves to version 0.3.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.3.0stable
8/25/2026
0.2.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.3.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 agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

README

DSH TurboAgent

Managed, loopback-only TurboAgent integration for DeepSeek Harness. Tested with DeepSeek Harness 0.1.1-rc.2, TurboAgent 0.2.1, and LLM-as-a-Verifier 0.2.0 on Windows.

The plugin installs a selectable TurboAgent 模式, starts a pinned Python TurboAgent environment, reuses the Harness DEEPSEEK_API_KEY credential reference without writing the secret to disk, and registers a hidden turbo-agent transport through the official DeepSeek adapter. The native deepseek-official route and its model catalog are not changed.

Models

  • DeepSeek-V4-Flash
  • DeepSeek-V4-Pro
  • DeepSeek-V4-Flash-Vision-Exp

Ordinary presets keep their normal model route. Selecting TurboAgent 模式 automatically maps the session's official Flash, Pro, or Vision choice to a hidden Best-of-N route; users do not change the provider or select duplicate Verified models. The hidden provider advertises an empty catalog, so the model picker continues to show only the three official entries above.

Each request generates three candidates from the model selected in Harness; models are never mixed into one candidate pool. Vision requests forward the same prepared images to every candidate and to deepseek-v4-flash-vision-exp for the fine-grained verifier pass. Text-only requests use DeepSeek V4 Flash as the verifier. Both paths keep the two-pivot tournament; only text requests use the majority-vote short circuit, because identical Vision answers still need to be checked against the image.

Requirements

  • Windows 10/11
  • Python 3.10 or newer
  • DeepSeek Harness 0.1.1-rc.2 or newer compatible release
  • A DEEPSEEK_API_KEY configured in the Harness Models settings

Install

git clone https://github.com/qianen6/dsh-turbo-agent.git
cd dsh-turbo-agent
.\scripts\Install.ps1 -DshCmd 'C:\path\to\dsh.cmd'

The installer creates a repository-local .venv, installs the pinned Python dependency, creates or migrates the non-secret configuration at %USERPROFILE%\.dsh\turbo-agent\turbo-agent.yaml, and adds the plugin to the selected Harness profile and installs the Agent preset. Existing Flash/Pro candidate and reasoning settings are preserved when the Vision entry is added. Restart Harness and choose TurboAgent 模式 from the mode selector.

Mode settings

Open Settings → TurboAgent in Harness to configure:

  • Flash candidate concurrency: 1–16
  • Pro candidate concurrency: 1–16
  • Vision candidate concurrency: 1–16
  • Reasoning effort: off, low, high, or max

Saving restarts only the managed proxy. Harness and existing conversations stay online. The values are stored in the non-secret runtime YAML.

Command-line configuration

Flash, Pro, and Vision are independently configurable from 1 through 16 candidates. The official self-verification tiers, Best-of-3 and Best-of-5, are included. For example:

.\scripts\Set-TurboAgentCandidates.ps1 -Flash 3 -Pro 5 -Vision 3
.\scripts\Set-TurboAgentCandidates.ps1 -ReasoningEffort max

The plugin watches ~/.dsh/turbo-agent/turbo-agent.yaml and automatically restarts only the managed proxy after an atomic change; Harness stays running.

Candidate cost grows with the selected count and verification comparisons. Start with 3; use 5 for the official higher self-verification tier.

Security

The managed proxy is locked to 127.0.0.1:18888. The upstream CLI defaults to 0.0.0.0; this plugin does not invoke that default. API keys are resolved from the Harness credential service and passed only in the child-process environment.

TurboAgent traces can contain prompts, responses, and tool arguments. Do not publish the runtime-data directory. See SECURITY.md.

Runtime data

%USERPROFILE%\.dsh\turbo-agent contains the non-secret YAML configuration, managed PID metadata, TurboAgent traces, and logs.

The visualizer is available locally at http://127.0.0.1:18888/visualizer.

Development

node --check lib/index.js
npm test
$env:PYTHONPATH = Join-Path $PWD 'python'
.\.venv\Scripts\python.exe -m unittest discover -s test -p 'test_*.py' -v

Upstream licenses

This integration is MIT licensed. TurboAgent is Apache-2.0 licensed; LLM-as-a-Verifier is MIT licensed. They are installed as Python dependencies and are not vendored into this repository.