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.

Skill Authoring — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-skill-authoring

Skill Authoring

DSH plugin dsh-skill-authoring

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

npx -y @deepseek-ai/dsh plugin --profile web add github:boomzikazita/dsh-skill-authoring#dd3b0857eca584425d92d7455f5a0abf483a92e6
READMECompatibilityVersions

Description

DSH plugin dsh-skill-authoring

Compatibility and provenance

Skill Authoring is published as dsh-skill-authoring and currently resolves to version 0.1.0. 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/20/2026

Versions

0.1.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
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

dsh-skill-authoring

A DeepSeek Harness plugin for creating and maintaining high-quality agent skills. It scaffolds new skills from a compliant skeleton, audits existing SKILL.md files against a 9-point quality gate, and validates skill names against the DSH naming convention — so every skill in your library ships with structure, boundaries, examples, and verification paths.

The 9-gate standard is derived from vibe-coding-cn (adapted for DSH).

Features

ToolDescription
skill_scaffoldGenerate a compliant SKILL.md skeleton (frontmatter / whenToUse / Boundaries / QuickRef / Examples placeholders) plus references/index.md for a new skill.
skill_auditAudit an existing SKILL.md against the 9 quality gates, printing a ✓/✗ table per gate.
skill_check_nameValidate a skill name against the DSH regex ^[a-z0-9]+(-[a-z0-9]+)*$ (lowercase + hyphens).

The plugin also installs a skill-write-guard hook: when write/edit targets a SKILL.md under ~/.dsh/skills/, it runs the audit automatically and warns the agent if the file does not pass the 9 gates yet.

The 9 quality gates

  1. name — matches ^[a-z0-9]+(?:-[a-z0-9]+)*$, ≤ 64 chars
  2. description — "what + when", 20–1024 chars
  3. whenToUse — ≥ 3 decidable trigger conditions
  4. boundaries — ≥ 3 "Not For / Boundaries" statements
  5. quickref — 1–20 directly reusable patterns (Quick Reference)
  6. examples — ≥ 3 end-to-end examples with Input / Steps / Acceptance
  7. references — references/index.md exists (long content split out)
  8. verification — uncertain claims marked with source/evidence level
  9. style — operational-manual style (short imperative sentences, not a doc dump)

Installation

dsh plugin --profile web add github:boomzikazita/dsh-skill-authoring

Or clone/pin a specific release:

dsh plugin --profile web add github:boomzikazita/dsh-skill-authoring@v0.1.0

After installing, restart your dsh web instance (or the profile you installed into) so the tools register.

Configuration

The plugin ships with no required configuration (config: {} in cordis.patch.yml). Optional dsh config keys passed to the bundle are accepted and currently unused.

  • Skills directory — defaults to ~/.dsh/skills (derived from the OS home directory at runtime; no hardcoded paths).
  • Python — the gate engine (scripts/skill_gate.py) is invoked via python3; a Python 3.8+ interpreter must be on PATH.
  • Scaffold target — skill_scaffold accepts an optional dir argument to generate the skeleton outside the default skills directory.

Development

node --check index.js                     # syntax check the plugin
python3 -m py_compile scripts/skill_gate.py  # syntax check the gate engine

License

MIT © 2026 boomzikazita — see LICENSE.