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.

Native Playbook — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
N

dsh-native-playbook

Native Playbook

Task-aware native capability manager for DeepSeek Harness — use, prepare, and verify built-in DSH tools before adding another plugin.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:cyanseek/dsh-native-playbook#994465be9fff633a20ad582caeee2741fbba9ea3
READMECompatibilityVersions

Compatibility and provenance

Native Playbook is published as dsh-native-playbook and currently resolves to version 0.2.1. 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/28/2026

Versions

0.2.1stable
8/28/2026

Related plugins

Loading related plugins…

Latest
0.2.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 4
Weekly downloads
0
Last push
9/12/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 productivity-workflow.

Client Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Rewind Plugindsh-rewind-pluginIn-window conversation rewind with workspace file restore · 同窗口内对话回退并可还原工作区文件Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-base

README

dsh-native-playbook

Unlock the DeepSeek Harness you already installed.

Use what DeepSeek Harness already ships before building more.

dsh-native-playbook is a community plugin for DeepSeek Harness, not a separate agent runtime. It adds one native_capability tool that routes a task to official DSH tools, checks whether the complete capability is operational, and safely activates a reviewed native path when possible.

简体中文

Quick start

Install the prebuilt GitHub package into your DSH profile:

dsh plugin --profile web add github:cyanseek/dsh-native-playbook

That's it. Use DSH normally. Ask for the outcome, not the package:

Run the test suite in the background and tell me when it finishes.
Find every reference to this symbol.
Search previous sessions for the deployment decision.

There is no repository clone, local build, build approval, account, project API key, project config file, daemon, second install, or manual verification step in this path. The npm package name is reserved for a later release; until then, the GitHub command above is the supported install route.

What changes for common tasks

TaskPreferred native pathBehavior
Long-running commandbash(run_in_background=true) → job_outputReady on supported Unix-like profiles; use pwsh on Windows.
Symbol navigationlspUses LSP only with a working provider; otherwise falls back to grep and glob.
Prior-session searchsession_searchUses the official workspace-authorized query tools. A reviewed first-use activation is available on tested DSH versions and reports when a DSH restart is required.
Delegated investigationsubagent → list_agents / send_messageUses DSH's built-in child-agent lifecycle.
Fixed multi-step workworkflowPrefers the deterministic native workflow engine over shell orchestration.

The plugin never treats “a package exists” or “a tool name is visible” as proof that a capability works.

Readiness you can trust

Every recommendation separates five lifecycle facts:

FactQuestion answered
shippedDoes the tested DSH catalog include it?
mountedIs its tool or service in the effective profile?
visibleCan the calling Agent currently see it?
providerReadyAre provider prerequisites actually satisfied?
operationalCan the Agent use it now?

The summary state is one of ready, platform-dependent, opt-in, requires-provider, disabled, or unsupported. Conditional changes also report their effect as immediate, next-turn, new-session, or restart.

Safe activation

Activation is deliberately narrow:

  • Only reviewed recipes shipped in this repository can change a profile.
  • The active DSH version must pass an explicit compatibility gate.
  • Credentials, security policy, network providers, and arbitrary commands are outside the activation surface.
  • Every change is checked against DSH and is reversible; failed verification leaves the original profile in place.
  • Deactivation restores the exact saved content and refuses to overwrite later user edits.

The first Tier-1 recipe enables DSH's official, workspace-authorized session full-text search with a lazy local index. DSH 0.1.0-rc.6 is the currently verified activation target. Static lookup remains useful on other versions, while mutation is withheld.

Agent Skill

The same native-first guidance is available as an Agent Skill:

npx skills@latest add cyanseek/dsh-native-playbook \
  --skill dsh-native-playbook \
  --agent codex \
  --yes

The Skill is focused and loads only the reference needed for the current task.

CLI

The CLI is an advanced inspection and automation surface. Every command supports stable JSON output where shown:

dsh-native lookup "<task>" [--profile <name>] [--json]
dsh-native status --profile <name> [--json]
dsh-native list [--profile <name>] [--json]
dsh-native explain <capability> [--profile <name>] [--json]
dsh-native doctor [--json]
dsh-native install --target project|dsh [--json]
dsh-native plan <capability> --profile <name> [--json]
dsh-native activate <capability> --profile <name> [--json]
dsh-native deactivate <capability> --profile <name> [--json]
dsh-native verify <capability> --profile <name> [--json]

Examples from a development checkout:

pnpm dsh-native lookup "find all symbol references" --json
pnpm dsh-native status --profile web --json
pnpm dsh-native plan session_search --profile web --json

Node API

import {
  inspectDshProfile,
  lookupNativeCapability,
  planNativeActivation,
} from 'dsh-native-playbook'

const profile = await inspectDshProfile({ profile: 'web' })
const result = await lookupNativeCapability('run a long test in background', { profile })
const plan = await planNativeActivation('session_search', { profile: 'web' })

The public API also exports listNativeCapabilities, explainNativeCapability, activateNativeCapability, deactivateNativeCapability, and verifyNativeCapability. Public API functions never prompt.

Compatibility and privacy

  • Requires Node.js 22 or 24 and DeepSeek Harness.
  • Capability facts are pinned to an official DSH source revision.
  • Static lookup works without DSH; live readiness needs an existing DSH profile.
  • No telemetry is collected.
  • No API accesses credential stores or private session contents.
  • This project is a community extension and is not affiliated with or endorsed by DeepSeek.

Remove

dsh plugin --profile web remove dsh-native-playbook

Development

corepack enable
pnpm install --frozen-lockfile
pnpm lint
pnpm typecheck
pnpm test
pnpm build
pnpm validate:skill
pnpm validate:plugin
pnpm validate:dsh-plugin
pnpm verify:upstream
pnpm smoke:json
pnpm smoke:consumer
pnpm metrics

CI runs the gates on Linux, macOS, and Windows with Node.js 22 and 24, plus a clean GitHub consumer-install check.

See CONTRIBUTING.md, SECURITY.md, and CHANGELOG.md.

License

MIT