dsh-plugin-guide 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,165 +1,179 @@
1
- <div align="center">
2
-
3
- # 🐳 dsh-plugin-guide
4
-
5
- **Everything you need to build [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) plugins.**
6
-
7
- Official docs archive · Cordis primer · community deep-dives · battle-tested pitfalls · agent skill
8
-
9
- [English](README.md) · [中文](README.zh-CN.md) · [Español](README.es.md) · [Português](README.pt.md) · [हिन्दी](README.hi.md)
10
-
11
- [![GitHub stars](https://img.shields.io/github/stars/PerryLink/dsh-plugin-guide?style=for-the-badge&color=yellow&label=%E2%AD%90%20Stars)](https://github.com/PerryLink/dsh-plugin-guide/stargazers)
12
- [![GitHub forks](https://img.shields.io/github/forks/PerryLink/dsh-plugin-guide?style=for-the-badge&color=blue&label=Forks)](https://github.com/PerryLink/dsh-plugin-guide/network/members)
13
- [![verify-kit CI](https://img.shields.io/github/actions/workflow/status/PerryLink/dsh-plugin-guide/verify.yml?branch=main&style=for-the-badge&label=CI)](https://github.com/PerryLink/dsh-plugin-guide/actions/workflows/verify.yml)
14
- [![npm version](https://img.shields.io/npm/v/dsh-plugin-guide?style=for-the-badge&label=npm)](https://www.npmjs.com/package/dsh-plugin-guide)
15
- [![npm downloads](https://img.shields.io/npm/dm/dsh-plugin-guide?style=for-the-badge&label=downloads)](https://www.npmjs.com/package/dsh-plugin-guide)
16
- [![License: Apache-2.0](https://img.shields.io/badge/License-Apache_2.0-blue?style=for-the-badge)](LICENSE)
17
- [![Topic: dsh](https://img.shields.io/badge/Topic-dsh-4D6BFE?style=for-the-badge)](https://github.com/topics/dsh)
18
- [![Topic: dsh-plugin](https://img.shields.io/badge/Topic-dsh--plugin-8257D0?style=for-the-badge)](https://github.com/topics/dsh-plugin)
19
- [![Docs: EN/ZH](https://img.shields.io/badge/Docs-EN%2FZH-8257D0?style=for-the-badge)](references/official-docs/)
20
-
21
- </div>
22
-
23
- > 🗺️ **Every fact links to its origin** — official docs, upstream repos, or community repos. When in doubt, the verbatim official copy wins.
24
- >
25
- > ⏱️ **Last verified 2026-08-15** — official docs byte-identical to upstream `master` (47f9438, see [SNAPSHOT.md](references/official-docs/SNAPSHOT.md)); npm tags and the `dsh-plugin` topic (API total_count climbed **2668 → 2671** during the 08-15 snapshot, ~1000 repos captured, see [sources.md](references/sources.md) §D.2) re-checked live. Upstream HEAD unchanged (47f9438), npm `@deepseek-ai/dsh` unchanged (0.1.0-rc.6).
26
-
27
- ## 📊 At a glance
28
-
29
- | Official docs | Community deep-dives | Battle-tested pitfalls | `dsh-plugin` topic | Languages | Agent skill |
30
- |---|---|---|---|---|---|
31
- | 215 pages (EN + ZH) | 114 repos | 20+ | 998 snapshot (API ≈2670) | EN · 中文 · ES · PT · HI | `dsh-plugin-guide` |
32
-
33
- ## 🚀 Quick start
34
-
35
- ### 🧩 Install as a DSH plugin (recommended)
36
-
37
- This repository is an installable **DSH bundle**: it registers the whole knowledge base as the `dsh-plugin-guide` agent skill. The skill stays visible in every session catalog and loads its workflow steps, official docs, and community deep-dives on demand (`./guide/`, `./references/`) no copying, no searching.
38
-
39
- ```sh
40
- # from a git checkout (sources; pin a commit for reproducibility):
41
- dsh plugin --profile <profile> add github:PerryLink/dsh-plugin-guide#<sha>
42
-
43
- # or a packed tarball (no build step needed — the entry point is plain ESM JS):
44
- pnpm pack
45
- dsh plugin --profile <profile> add ./dsh-plugin-guide-<version>.tgz
46
- ```
47
-
48
- The bundle declares `dsh.bundle.patch` and pins the harness train via an optional peer dependency on `@deepseek-ai/dsh@0.1.0-rc.6`. Verify the layer landed with `dsh --profile <profile> --dump-config` (look for the `dsh-plugin-guide` layer).
49
-
50
- ### 🤖 Or copy it as a plain agent skill
51
-
52
- Copy the whole folder into your agent's skill directory (relative paths stay intact):
53
-
54
- **Windows (PowerShell)**
55
-
56
- ```powershell
57
- pwsh -File scripts/install-skill.ps1 `
58
- -Target "$env:USERPROFILE\.deepseek\skills\dsh-plugin-guide" # or <project>\.agents\skills\dsh-plugin-guide
59
- ```
60
-
61
- **macOS / Linux**
62
-
63
- ```bash
64
- pwsh -File scripts/install-skill.ps1 -Target ~/.deepseek/skills/dsh-plugin-guide # or <project>/.agents/skills/dsh-plugin-guide
65
- ```
66
-
67
- The installer skips `downloads/` (generated) and `.github/`, then verifies every copied file byte-for-byte. A manual `Copy-Item -Recurse` of the whole folder also works.
68
-
69
- Then just ask your agent: *"Use the dsh-plugin-guide skill to build me a … plugin."*
70
-
71
- ### 📖 Or just read
72
-
73
- | You want… | Read |
74
- |---|---|
75
- | The one-page cheat sheet | [`guide/quick-reference.md`](guide/quick-reference.md) |
76
- | The full 10-chapter path | [`guide/plugin-dev-guide.md`](guide/plugin-dev-guide.md) |
77
- | Official & community doc links | [`guide/links.md`](guide/links.md) · [`references/community-ecosystem.md`](references/community-ecosystem.md) |
78
- | Exact service/event APIs | `references/official-docs/docs/subsystems/` and `docs/cordis-api/` |
79
-
80
- ## 🧭 What's inside
81
-
82
- | Path | What it is |
83
- |---|---|
84
- | `SKILL.md` | The `dsh-plugin-guide` agent skill: hard rules + task-based development paths |
85
- | `package.json` · `cordis.patch.yml` · `index.js` | The installable DSH bundle: `dsh.bundle.patch` manifest + entry point that registers the knowledge base as the `dsh-plugin-guide` skill |
86
- | `guide/plugin-dev-guide.md` | The complete development guide (10 chapters) |
87
- | `guide/quick-reference.md` | One-page cheat sheet (5 languages) |
88
- | `guide/links.md` | Curated URL index: official dev docs (site ↔ local copies) + community doc links |
89
- | `references/official-docs/` | Verbatim copy of the official repo docs (EN + ZH) |
90
- | `references/*.md` | Research reports: repo docs, website, Cordis, the paper, community ecosystem, 114-repo archive (15 deep-dived) |
91
- | `scripts/` | Idempotent download scripts + integrity checker + topic snapshot generator |
92
- | `downloads/` | Raw snapshots — generated by `scripts/`, not committed |
93
-
94
- ## ✨ Highlights
95
-
96
- - 📜 **Plugin contract & hard rules** — effects/disposers, waterfall `next()`, model-visible ⇔ logged, Schemastery config.
97
- - 🕰️ **Mechanism timeline**repository-plugin introduced 0809, removed 0811; the two install channels (bundle vs plain cordis plugin).
98
- - 🕳️ **20+ real-world pitfalls** with root cause + fix: cordis dual copies, tsconfig trio, `tsc` emitting on errors, Windows junctions, multi-frame zstd sessions, `DSH_*` env layers, stale npm `latest`…
99
- - 🔬 **111 community repos archived** (15 deep-dived) — templates, scaffolds, pitfalls archives, plugin-check rules, Fabric layer, MCP bridge, plus a 15-language guide, an s01–s23 course, handbooks, TS/Rust SDKs, and a fresh 2026-08-15 batch (desktop shells, QQ bridge, security PoCs, Python port).
100
- - 🔗 **Full source index** — every fact links to its origin (official docs, upstream repos, community repos).
101
- - 🗃️ **1654 official GitHub Discussions archived** (comments included for selected threads) + 100+ community articles (zh/en/HN) snapshotted — refresh with `scripts/archive-discussions.ps1` / `scripts/download-community-articles.ps1`.
102
- - 🆕 **Freshness stamp** — re-verified against upstream `master`, npm, and the live `dsh-plugin` topic on 2026-08-15.
103
-
104
- ## 🔄 Keeping it fresh
105
-
106
- ```sh
107
- pwsh -File scripts/sync-official-docs.ps1 # verbatim docs copy from a local checkout (origin/master only)
108
- pwsh -File scripts/download-sources.ps1 # official site/docs, Cordis, paper
109
- pwsh -File scripts/download-community-repos.ps1 # 111 community repositories (codeload tarballs, ETag refresh)
110
- pwsh -File scripts/download-community-articles.ps1 # zh/en/HN community articles (HTML snapshots)
111
- pwsh -File scripts/archive-discussions.ps1 # official Discussions (needs $env:GH_TOKEN)
112
- pwsh -File scripts/gen-topic-snapshot.ps1 -OutDir <dir> # dsh-plugin topic census
113
- pwsh -File scripts/verify-kit.ps1 -Checkout <checkout> # critical paths + link scan + docs drift report
114
- ```
115
-
116
- CI runs `verify-kit` on every push and pull request.
117
-
118
- ## 🏷️ Topics
119
-
120
- This repository is discoverable under the GitHub topics **[`dsh`](https://github.com/topics/dsh)** and **[`dsh-plugin`](https://github.com/topics/dsh-plugin)** browse both topic pages to find hundreds of plugins and developer resources.
121
-
122
- ## 🤝 Get involved
123
-
124
- - ⭐ **Star the repo** — it helps other DSH plugin authors discover it.
125
- - Found an error, a new pitfall, or a missing repo to deep-dive? Open an [issue](https://github.com/PerryLink/dsh-plugin-guide/issues) or a pull request see [CONTRIBUTING.md](CONTRIBUTING.md).
126
- - Join the community: [DeepSeek Harness Discord](https://discord.gg/Ycq5dCaS4) · [official discussions](https://github.com/deepseek-ai/deepseek-harness/discussions) · [`dsh-plugin` topic](https://github.com/topics/dsh-plugin).
127
-
128
- ## 💛 Contributors
129
-
130
- - [PerryLink](https://github.com/PerryLink) — creator and maintainer: knowledge-base content, the installable-bundle transformation, ecosystem submissions, and community engineering.
131
- - Day-to-day maintenance is assisted by DeepSeek Harness agents (they hold no GitHub account and are listed here for transparency, not as contributors).
132
-
133
-
134
- ## 📄 License & attribution
135
-
136
- - Our own text (`SKILL.md`, `guide/`, `references/` reports, `scripts/`, this README): **Apache-2.0** see [LICENSE](LICENSE).
137
- - Bundled third-party content is documented in [NOTICE.md](NOTICE.md), including its distribution boundaries
138
- (e.g. `downloads/` is local-only; `awesome-dsh-plugins` must not be redistributed).
139
-
140
- ## ⚖️ Disclaimer
141
-
142
- Community-maintained, **not** an official DeepSeek product. DeepSeek Harness is in developer preview and ships
143
- breaking changes; when in doubt, the official docs in `references/official-docs/` are the source of truth.
144
-
145
- ## PerryLink DSH Plugin Family
146
-
147
- This project is one of the [15 DeepSeek Harness plugins](https://github.com/PerryLink) maintained by [PerryLink](https://github.com/PerryLink). If this one helps you, the others likely will too:
148
-
149
- | Plugin | One-liner |
150
- |---|---|
151
- | [dsh-mcp-panel](https://github.com/PerryLink/dsh-mcp-panel) | Read-only MCP runtime panel: /mcp command + Settings tab with status, tools and errors |
152
- | [dsh-doublecheck](https://github.com/PerryLink/dsh-doublecheck) | Engineering-discipline guard: requirements grill, test gates, adversary review |
153
- | [dsh-background-agents](https://github.com/PerryLink/dsh-background-agents) | Durable background child agents with a Web UI sidebar, messaging and interrupt |
154
- | [dsh-lsp-actions](https://github.com/PerryLink/dsh-lsp-actions) | LSP diagnostics, formatting, completion, code actions and rename over language servers |
155
- | [dsh-output-styles](https://github.com/PerryLink/dsh-output-styles) | Claude Code outputStyles-equivalent runtime style switching |
156
- | [dsh-checkpoint-rewind](https://github.com/PerryLink/dsh-checkpoint-rewind) | Claude Code /rewind-equivalent: snapshots, session forks, one-shot restore |
157
- | [dsh-permission-rules](https://github.com/PerryLink/dsh-permission-rules) | Claude Code-style declarative allow/deny/ask permission rules with audit |
158
- | [dsh-auto-review](https://github.com/PerryLink/dsh-auto-review) | Second-model auto-review on the approval chain, fail-closed by default |
159
- | [dsh-memento](https://github.com/PerryLink/dsh-memento) | Approval-gated cross-session memory: ctx.memory seam + SQLite + memory tool |
160
- | [dsh-skill-pack-security](https://github.com/PerryLink/dsh-skill-pack-security) | Security-audit skill pack: secret scan, dependency and supply-chain review |
161
- | [dsh-session-pin](https://github.com/PerryLink/dsh-session-pin) | Pin sessions in the Web sidebar with durable ordering |
162
- | [dsh-composer-history](https://github.com/PerryLink/dsh-composer-history) | Terminal-style input history for the web composer: arrows, Ctrl+R search |
163
- | [dsh-github](https://github.com/PerryLink/dsh-github) | GitHub PR/issues integration for DSH, every write gated by approval |
164
- | **[dsh-plugin-guide](https://github.com/PerryLink/dsh-plugin-guide)** | Plugin-development knowledge base as an on-demand agent skill |
165
- | [dsh-claude-move](https://github.com/PerryLink/dsh-claude-move) | Migrate Claude Code sessions, memory, skills and CLAUDE.md into DSH |
1
+ <div align="center">
2
+
3
+ # 🐳 dsh-plugin-guide
4
+
5
+ **Everything you need to build [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) plugins.**
6
+
7
+ *Official docs archive · Cordis primer · community deep-dives · battle-tested pitfalls · agent skill*
8
+
9
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
10
+ [![DSH plugin](https://img.shields.io/badge/dsh-plugin-✅-green)](https://github.com/topics/dsh-plugin)
11
+ [![Node](https://img.shields.io/badge/node-%5E22.19%20%7C%7C%20%3E%3D24-brightgreen.svg)](#)
12
+ [![CI](https://img.shields.io/github/actions/workflow/status/PerryLink/dsh-plugin-guide/verify.yml?branch=main&label=CI)](https://github.com/PerryLink/dsh-plugin-guide/actions)
13
+ [![Version](https://img.shields.io/github/v/tag/PerryLink/dsh-plugin-guide?label=version)](https://github.com/PerryLink/dsh-plugin-guide/releases)
14
+ [![npm version](https://img.shields.io/npm/v/dsh-plugin-guide)](https://www.npmjs.com/package/dsh-plugin-guide)
15
+ [![npm downloads](https://img.shields.io/npm/dm/dsh-plugin-guide)](https://www.npmjs.com/package/dsh-plugin-guide)
16
+
17
+ [English](README.md) · [简体中文](README.zh.md) · [Español](README.es.md) · [Português](README.pt.md) · [हिन्दी](README.hi.md)
18
+
19
+ </div>
20
+
21
+ ---
22
+
23
+ ## Compatibility
24
+
25
+ | Surface | Status |
26
+ |---|---|
27
+ | Harness | DeepSeek Harness `0.1.0-rc.8` |
28
+ | Node | `^22.19.0 || >=24.0.0` (DeepSeek Harness runtime) |
29
+ | Platforms | All (plain ESM bundle; no native code, no network) |
30
+ | Model | Any (no model interaction) |
31
+
32
+ ## What you get
33
+
34
+ `dsh-plugin-guide` is the DSH plugin-development knowledge base, packaged as an installable bundle that registers the whole thing as the `dsh-plugin-guide` agent skill. The skill stays visible in every session catalog and loads its workflow steps, official docs, and community deep-dives on demand.
35
+
36
+ - **Plugin contract & hard rules** — effects/disposers, waterfall `next()`, model-visible ⟺ logged, Schemastery config.
37
+ - **Official docs archive** a verbatim copy of the official repo docs (EN + ZH), byte-identical to upstream at the last verified snapshot.
38
+ - **Cordis primer** — the five concepts and the mechanism timeline (repository-plugin introduced 0809, removed 0811; the two install channels).
39
+ - **20+ real-world pitfalls** with root cause + fix (cordis dual copies, tsconfig trio, multi-frame zstd sessions, Windows junctions, stale npm `latest`, …).
40
+ - **Community deep-dives** 114 community repositories archived (15 deep-dived), plus a full source index where every fact links to its origin.
41
+
42
+ ## Knowledge base
43
+
44
+ | Path | What it is |
45
+ |---|---|
46
+ | `SKILL.md` | The `dsh-plugin-guide` agent skill: hard rules + task-based development paths |
47
+ | `package.json` · `cordis.patch.yml` · `index.js` | The installable DSH bundle: `dsh.bundle.patch` manifest + entry point that registers the skill |
48
+ | `guide/plugin-dev-guide.md` | The complete development guide (10 chapters) |
49
+ | `guide/quick-reference.md` | One-page cheat sheet (5 languages) |
50
+ | `guide/links.md` | Curated URL index: official dev docs (site ↔ local copies) + community doc links |
51
+ | `references/official-docs/` | Verbatim copy of the official repo docs (EN + ZH) |
52
+ | `references/*.md` | Research reports: repo docs, website, Cordis, the paper, community ecosystem, 114-repo archive (15 deep-dived) |
53
+ | `scripts/` | Idempotent download scripts + integrity checker + topic snapshot generator |
54
+ | `downloads/` | Raw snapshots — generated by `scripts/`, not committed |
55
+
56
+ ## Quick start
57
+
58
+ ```sh
59
+ # 1. install the bundle into your profile
60
+ dsh plugin --profile web add "github:PerryLink/dsh-plugin-guide#main"
61
+
62
+ # or from npm (published releases)
63
+ dsh plugin --profile web add dsh-plugin-guide
64
+
65
+ # 2. restart and verify the row
66
+ dsh --profile web --dump-config | grep -A3 'id: dsh-plugin-guide'
67
+ ```
68
+
69
+ Then just ask your agent: *"Use the dsh-plugin-guide skill to build me a … plugin."*
70
+
71
+ ## Install & uninstall
72
+
73
+ - **git channel** (latest `main`): `dsh plugin --profile web add github:PerryLink/dsh-plugin-guide#<sha>` — pin a commit for reproducibility; the entry point is plain ESM JS, no build step.
74
+ - **npm channel** (published releases): `dsh plugin --profile web add dsh-plugin-guide`.
75
+ - **tarball channel**: `pnpm pack` in this repo, then `dsh plugin --profile web add ./dsh-plugin-guide-<version>.tgz`.
76
+ - **uninstall**: `dsh plugin --profile web remove dsh-plugin-guide`.
77
+
78
+ ## Copy as a plain agent skill
79
+
80
+ You can also copy the whole folder into your agent's skill directory (relative paths stay intact):
81
+
82
+ ```powershell
83
+ # Windows (PowerShell)
84
+ pwsh -File scripts/install-skill.ps1 `
85
+ -Target "$env:USERPROFILE\.deepseek\skills\dsh-plugin-guide" # or <project>\.agents\skills\dsh-plugin-guide
86
+ ```
87
+
88
+ ```bash
89
+ # macOS / Linux
90
+ pwsh -File scripts/install-skill.ps1 -Target ~/.deepseek/skills/dsh-plugin-guide # or <project>/.agents/skills/dsh-plugin-guide
91
+ ```
92
+
93
+ The installer skips `downloads/` (generated) and `.github/`, then verifies every copied file byte-for-byte. A manual `Copy-Item -Recurse` of the whole folder also works.
94
+
95
+ ## Configuration
96
+
97
+ `dsh-plugin-guide` exposes no Schemastery `Config` it registers the knowledge base as an agent skill with no tunable keys.
98
+
99
+ ## Tools & surfaces
100
+
101
+ | Surface | Kind | Notes |
102
+ |---|---|---|
103
+ | `dsh-plugin-guide` | skill | Registered via `ctx.skills`; loads `SKILL.md` + `./guide/` + `./references/` on demand |
104
+
105
+ ## Permissions & data
106
+
107
+ - **Permissions**: declares `filesystem:read` in its workshop manifest.
108
+ - **Data**: read-only — reads its own bundled `guide/` and `references/` files. No network requests, no writes, no model calls.
109
+
110
+ ## Security boundaries
111
+
112
+ - **Read-only knowledge base.** The bundle only reads its own files; it never writes, never calls the network, and never invokes a model.
113
+ - **Official docs are verbatim copies.** `references/official-docs/` is never edited here; report issues upstream and re-sync only with `scripts/sync-official-docs.ps1`.
114
+ - **Distribution boundaries.** Bundled third-party content keeps its upstream license; see [NOTICE.md](NOTICE.md) (e.g. `downloads/` is local-only; `awesome-dsh-plugins` must not be redistributed).
115
+
116
+ ## Known limitations
117
+
118
+ - **Official docs are a snapshot.** Re-sync with `scripts/sync-official-docs.ps1` when upstream moves; the freshness stamp and commit hash reference `references/official-docs/SNAPSHOT.md`.
119
+ - **`downloads/` is generated, not committed.** Raw snapshots (community repo archives, Discussions, articles) must be generated with the scripts before use.
120
+ - **`awesome-dsh-plugins` content is local-only.** Its upstream declares an internal-use constraint, so it is not redistributed with the repo.
121
+
122
+ ## Keeping it fresh
123
+
124
+ ```sh
125
+ pwsh -File scripts/sync-official-docs.ps1 # verbatim docs copy from a local checkout
126
+ pwsh -File scripts/download-sources.ps1 # official site/docs, Cordis, paper
127
+ pwsh -File scripts/download-community-repos.ps1 # community repositories (codeload tarballs)
128
+ pwsh -File scripts/download-community-articles.ps1 # zh/en/HN community articles
129
+ pwsh -File scripts/archive-discussions.ps1 # official Discussions (needs $env:GH_TOKEN)
130
+ pwsh -File scripts/gen-topic-snapshot.ps1 -OutDir <dir> # dsh-plugin topic census
131
+ pwsh -File scripts/verify-kit.ps1 -Checkout <checkout> # critical paths + link scan + docs drift
132
+ ```
133
+
134
+ ## Development
135
+
136
+ The bundle is plain ESM — no build step. CI runs the integrity gate on every push and pull request:
137
+
138
+ ```sh
139
+ pwsh -File scripts/verify-kit.ps1 # critical paths + link scan (+ docs drift with -Checkout <checkout>)
140
+ ```
141
+
142
+ ## Topics
143
+
144
+ `dsh`, `deepseek-harness`, `dsh-plugin`, `cordis`, `agent-skill`, `plugin-development`, `knowledge-base`
145
+
146
+ ## Contributors
147
+
148
+ - [PerryLink](https://github.com/PerryLink) — creator and maintainer: knowledge-base content, the installable-bundle transformation, ecosystem submissions, and community engineering.
149
+ - Day-to-day maintenance is assisted by DeepSeek Harness agents (they hold no GitHub account and are listed here for transparency, not as contributors).
150
+
151
+ ## PerryLink DSH Plugin Family
152
+
153
+ This project is one of the [15 DeepSeek Harness plugins](https://github.com/PerryLink) maintained by [PerryLink](https://github.com/PerryLink). If this one helps you, the others likely will too:
154
+
155
+ | Plugin | One-liner |
156
+ |---|---|
157
+ | [dsh-mcp-panel](https://github.com/PerryLink/dsh-mcp-panel) | Read-only MCP runtime panel: /mcp command + Settings tab with status, tools and errors |
158
+ | [dsh-doublecheck](https://github.com/PerryLink/dsh-doublecheck) | Engineering-discipline guard: requirements grill, test gates, adversary review |
159
+ | [dsh-background-agents](https://github.com/PerryLink/dsh-background-agents) | Durable background child agents with a Web UI sidebar, messaging and interrupt |
160
+ | [dsh-lsp-actions](https://github.com/PerryLink/dsh-lsp-actions) | LSP diagnostics, formatting, completion, code actions and rename over language servers |
161
+ | [dsh-output-styles](https://github.com/PerryLink/dsh-output-styles) | Claude Code outputStyles-equivalent runtime style switching |
162
+ | [dsh-checkpoint-rewind](https://github.com/PerryLink/dsh-checkpoint-rewind) | Claude Code /rewind-equivalent: snapshots, session forks, one-shot restore |
163
+ | [dsh-permission-rules](https://github.com/PerryLink/dsh-permission-rules) | Claude Code-style declarative allow/deny/ask permission rules with audit |
164
+ | [dsh-auto-review](https://github.com/PerryLink/dsh-auto-review) | Second-model auto-review on the approval chain, fail-closed by default |
165
+ | [dsh-memento](https://github.com/PerryLink/dsh-memento) | Approval-gated cross-session memory: ctx.memory seam + SQLite + memory tool |
166
+ | [dsh-skill-pack-security](https://github.com/PerryLink/dsh-skill-pack-security) | Security-audit skill pack: secret scan, dependency and supply-chain review |
167
+ | [dsh-session-pin](https://github.com/PerryLink/dsh-session-pin) | Pin sessions in the Web sidebar with durable ordering |
168
+ | [dsh-composer-history](https://github.com/PerryLink/dsh-composer-history) | Terminal-style input history for the web composer: arrows, Ctrl+R search |
169
+ | [dsh-github](https://github.com/PerryLink/dsh-github) | GitHub PR/issues integration for DSH, every write gated by approval |
170
+ | **[dsh-plugin-guide](https://github.com/PerryLink/dsh-plugin-guide)** | Plugin-development knowledge base as an on-demand agent skill |
171
+ | [dsh-claude-move](https://github.com/PerryLink/dsh-claude-move) | Migrate Claude Code sessions, memory, skills and CLAUDE.md into DSH |
172
+
173
+ ## Disclaimer
174
+
175
+ Community-maintained, **not** an official DeepSeek product. DeepSeek Harness is in developer preview and ships breaking changes; when in doubt, the official docs in `references/official-docs/` are the source of truth.
176
+
177
+ ## License
178
+
179
+ [Apache License 2.0](LICENSE) © 2026 dsh-plugin-guide contributors — our own text (`SKILL.md`, `guide/`, `references/`, `scripts/`, this README) is Apache-2.0; bundled third-party content is documented in [NOTICE.md](NOTICE.md).