What problem does it solve? Building a standalone DeepSeek Harness (DSH) Cordis plugin involves many error-prone stages—planning the plugin form, scaffolding the package, implementing behavior, composing profile bundles, testing, and preparing for release. This Skill orchestrates that entire workflow through staged sub-skills so nothing is skipped and every stage has explicit exit conditions. ## Core Features & Use Cases - Staged workflow orchestration: Sequences six stage skills (plan, scaffold, implement, compose, test, release) with defined entry and exit conditions for each. - Shared handoff contract: Maintains a structured handoff (objective, packageName, pluginId, pluginForm, config, invariant, testTiers, distribution) across stages so decisions are never lost. - Hard-stop guardrails: Enforces rules such as function plugins named-exporting name/inject/Config/apply, never mixing plugin forms, never committing credentials, and never claiming unrun checks passed. - Use Case: You want to create a new DSH plugin package from the template repository. Load this Skill, answer the required-input questions, and it walks you through planning, scaffolding, implementation, profile composition, testing, and release readiness with verifiable checks at each step. ## Quick Start Use the dsh-plugin-development skill to develop a new standalone DSH plugin from planning through verified release readiness.