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.

Resource Guard — DSH Plugin for DeepSeek Harness
← Plugins

dsh-resource-guard

Resource Guard

DeepSeek Harness plugin: intelligently guards local-model memory (semaphore + memory budget + queue + live overview) so image/voice/LLM tasks never exhaust RAM. Exposes the dsh_resource tool and a resourceGuard service other plugins consume.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-resource-guard@0.1.7
READMECompatibilityVersions

Compatibility and provenance

Resource Guard is published as dsh-resource-guard and currently resolves to version 0.1.7. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.1.7stable
9/1/2026
0.1.6stable
9/1/2026
0.1.5stable
8/31/2026
Show 5 more versionsCollapse versions
0.1.4stable
8/31/2026
0.1.3stable
8/31/2026
0.1.2stable
8/31/2026
0.1.1stable
8/31/2026
0.1.0stable
8/31/2026

Related plugins

Loading related plugins…

Latest
0.1.7
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
22.7 kB
Files
8
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
51
Last push
8/31/2026
View source ↗Project homepage ↗
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 models-usage.

Whale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.Ui Usage Billing@kenz1117/dsh-ui-usage-billingUsage billing dashboard for DeepSeek Harness: sidebar cost metrics plus a full dashboard modal, priced from a current multi-provider catalog with real usage aggregated from session logs.

README

dsh-resource-guard

Language: English · Česky

DeepSeek Harness plugin that intelligently guards local-model memory. It acts as a semaphore + memory budget so image generation, voice synthesis and local LLM tasks can never exhaust RAM on the same machine — for example, it refuses a new local image job while a local LLM is already loaded.

Features

  • resourceGuard service — other plugins call ctx.get("resourceGuard") to acquire()/release() reservations before starting a local model.
  • dsh_resource tool — model-callable: status, models, reserve, release.
  • Settings section — configure the policy and memory budget from the Harness settings UI, with a live RAM/reservation overview.
  • Three policies — auto (one local model within budget), strict (one at a time), off (no guarding).

Install

dsh plugin --profile web add dsh-resource-guard

Then add dsh-resource-guard to dsh.profile.bundles and dependencies in ~/.dsh/profiles/web/package.json, and run dsh plugin --profile web install.

Usage

Ask the agent:

  • dsh_resource action=status — RAM, reservations, running Ollama models.
  • dsh_resource action=models — list local Ollama models with sizes.
  • dsh_resource action=reserve label="image job" estGb=6 — reserve memory.
  • dsh_resource action=release reservationId=rsv-1 — free a reservation.

Settings

FieldTypeDefaultMeaning
policyauto|strict|offautoReservation policy.
memoryBudgetGbnumber0Memory budget; 0 = 85% of total RAM.

Settings are stored in the resource-guard namespace of the Harness settings document (~/.dsh/settings.yaml).

Architecture

  • Host (lib/index.js) — provides the resourceGuard service, registers the dsh_resource tool, publishes a status snapshot into the read-only resource-guard-status namespace.
  • Client (lib/client.js) — a settings.section slot showing policy/budget controls and the live status.

License

MIT