# dsh-suite docs The DSH productivity suite: plugins + agent skills for [DSH](https://www.npmjs.com/package/@deepseek-ai/dsh), installable in one command. ## Start here 1. [README](../README.md) — what it does, install, quick start. 2. [Architecture](architecture.md) — how the bundle wires into DSH: plugin dependencies, the bundle patch, skill discovery. 3. [Development](development.md) — repo layout, the local gate (`npm test`), how to add a skill. ## Reference in this repo - [cordis.patch.yml](../cordis.patch.yml) — the bundle patch: plugin rows plus the `skill-suite` row pointing discovery at this package's `skills/`. - [skills/](../skills/) — the nine bundled skills, each with its own `SKILL.md`: `dex`, `dex-plan`, `ponytail` (+ `ponytail-audit`, `ponytail-debt`, `ponytail-gain`, `ponytail-help`, `ponytail-review`), `strong-orchestrator`. - [scripts/validate.mjs](../scripts/validate.mjs) — the structural check behind `npm test`. ## FAQ **What does the single install command pull?** The package's `files` (`cordis.patch.yml`, `skills/`, `scripts/`, `README.md`, `LICENSE`) plus the `dependencies` (`dsh-model-router`, `deep-horizon`). **Where do my routes and credentials live?** In your own profile's `cordis.patch.yml` — never in this bundle. This repo ships no route config and no credentials. **How do the skills become visible to agents?** The bundle patch inserts a `skill-suite` row (`@deepseek-ai/dsh-skill-filesystem`) whose `customSkillDirs` points at this package's `skills/` directory. Restart the harness after install and all nine skills are live in that profile.