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.

Just Enough Tools — DSH Plugin for DeepSeek Harness
← Plugins
J

dsh-just-enough-tools

Just Enough Tools

Progressive tool and skill selection for DeepSeek Harness, powered by Jev

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

npx -y @deepseek-ai/dsh plugin --profile web add github:RickT34/dsh-just-enough-tools#5693f5ae4278122dc3e710f42e5aca195e4cb1fe
READMECompatibilityVersions

Compatibility and provenance

Just Enough Tools is published as dsh-just-enough-tools and currently resolves to version 0.5.3. 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/23/2026

Versions

0.5.3stable
9/23/2026
0.4.3stable
9/23/2026
0.4.0stable
9/22/2026

Related plugins

Loading related plugins…

Latest
0.5.3
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
9/23/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 developer-tools.

MarketdshmarketVisual plugin market inside DeepSeek Harness — browse, search, and one-click install community plugins. · DSH 可视化插件市场:逛一逛,点一下,装好。Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundleSsh@linxin666/dsh-sshRemote SSH operations for the dsh web GUI: host config store (~/.dsh/dsh-ssh.json, import from ~/.ssh/config), a persistent ssh2 connection pool with jump-host support, exec / PTY web terminal / SFTP transfer / local port-forward tunnels / cluster executiDoctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery console

README

Just enough tools

Think first. Bring in tools and skills when they matter.

简体中文 · Install · Contributing

Our goal: nearly half the agent cost, with accuracy intact.

Just enough tools is a DeepSeek Harness plugin for progressive tool and skill selection, powered by Jev, with an optional OpenAI-compatible scorer.

Agents often receive more capabilities than a task needs:

  • Extra input cost: unused tool and skill schemas and descriptions consume tokens on repeated requests.
  • Overuse: unnecessary tool and skill invocations add steps, latency and cost.

The plugin puts tools and skills in one candidate pool and exposes only the capabilities selected for the task. Each agent has its own enabled set.

How it works

flowchart TD
    A(["Agent: Think first<br/>No tools or skills"]) -->|Answer or plan| B["Scorer: Evaluate tools and skills<br/>Jev or configured chat model"]
    B -->|Capabilities above threshold| C["Agent: Use selected capabilities"]
    C -->|More work: updated progress| B

Each capability receives an independent score. Tools above the shared threshold become callable; selected skills load their full instructions. Enabled capabilities remain available, while later decisions consider the remaining candidates. A skill's required tools are scored separately.

For simple tasks, the Agent can provide a complete first-response answer beginning with No external capabilities needed. If discovery is complete and all scores are strictly below the threshold, the plugin skips the second Agent call. Scoring still runs; failed scoring does not approve an early finish.

Example

For “Fix the login error and run the tests,” the scorer can first enable the login-debug skill and grep/read, then add edit and bash as the task progresses. A writing task may need only a style skill, or no external capabilities at all.

Install

Requires Node.js 22.19+, DeepSeek Harness 0.1.7-alpha.1, and Cordis 4.0.3.

Build from the repository:

npm ci
npm pack

Install the package and start dsh:

npx @deepseek-ai/dsh@0.1.7-alpha.1 plugin --profile web add /absolute/path/to/dsh-just-enough-tools-0.5.3.tgz
npx @deepseek-ai/dsh@0.1.7-alpha.1 web
  1. Open Plugins → dsh-just-enough-tools.
  2. Choose a provider protocol, configure credentials and model, and save.
  3. Start a new conversation in Just enough tools mode.

The acting model remains the one configured in dsh. The mode includes file, search and terminal tools, and discovers model-invocable skills through dsh.

Providers and settings

ProtocolDefault base URLModelKey environment variable
System One / TypeSafehttps://api.typesafe.ai/v1jev-latestTYPESAFE_API_KEY
Vercel AI Gateway (Evaluation)https://ai-gateway.vercel.sh/v4/aitypesafe-ai/jevAI_GATEWAY_API_KEY
OpenAI-compatible / LM Studiohttp://127.0.0.1:1234/v1Required: provider model IDOPENAI_API_KEY

Custom compatible base URLs and full endpoints are supported. Credentials are resolved in this order: saved key → JEV_API_KEY → provider environment variable. Reset a saved key to use an environment variable. Unauthenticated local chat servers may leave the key blank. dsh reads .env at startup; restart it after changing that file.

System One and Vercel return native decision probabilities. OpenAI-compatible scoring requires a generative model that returns JSON scores; these are model estimates, not calibrated decision probabilities. Encoder-only models require a separate decision service. There is no automatic fallback between protocols.

SettingDefault
Tool / skill threshold0.5
Maximum steps per user turn12
Routing operation timeout60000 ms
Terminal routing diagnosticsEnabled

Provider settings and diagnostics apply immediately; start a new conversation after changing routing limits. Diagnostics show per-capability scores, threshold and admission results in the dsh terminal. Scoring or registration failures stop execution with an explicit error.

Add a skill

Create .dsh/skills/login-debug/SKILL.md (or use dsh's other configured skill directories):

---
name: login-debug
description: Diagnose login and session failures before changing authentication code.
---
Reproduce the failure, inspect the relevant code, make a focused fix, and run the affected tests.

The scorer initially sees the summary; the Agent receives full instructions only after selection. Capability selection controls availability and instruction injection, not filesystem permissions.

Contribute

Help improve capability selection, provider support, thresholds and examples. See CONTRIBUTING.md, design, and integration details.

Independent community project · MIT license.