DeepSeek Harness plugin

dsh-skill-authoring

DSH skill authoring toolkit: scaffold new skills and audit them against a 9-gate quality checklist(skill 创建脚手架 + 9 项质量门禁审计)

Jump to install

Source facts

Repository
boomzikazita/dsh-skill-authoring
Latest update
Aug 20, 2026
Category
Development & Runtime
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/boomzikazita/dsh-skill-authoring
Plugin: dsh-skill-authoring
Author: boomzikazita

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

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. referencesreferences/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 targetskill_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](./LICENSE).