dsh-output-styles 0.3.1 → 0.3.2

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/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project are documented in this file. The format
4
4
  follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the
5
5
  project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.3.2] - 2026-08-15
8
+
9
+ ### Fixed
10
+
11
+ - **Bundle install on DSH 0.1.0-rc.6**: the bundle patch now configures the
12
+ storage rows it inserts (`storage-json` root, `storage-domain` backend),
13
+ fixing a load-time `invalid config` failure when installing into a
14
+ headless profile via `dsh plugin add`. Found and verified against a real
15
+ rc.6 profile boot.
16
+
17
+ ### Added
18
+
19
+ - `package.json#dsh.client` declaration for the Web picker client half.
20
+ - `package.json#dshWorkshop` (`omdsh-workshop-package/v1`) intake manifest
21
+ for the omdsh-dev/dsh-hub-workshop Registry.
22
+
7
23
  ## [0.3.1] - 2026-08-15
8
24
 
9
25
  ### Added
@@ -68,6 +84,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
68
84
  persistence, `systemPrompt.section()` injection, four bundled styles
69
85
  (`concise`, `explanatory`, `formal`, `step-by-step`).
70
86
 
87
+ [0.3.2]: https://github.com/PerryLink/dsh-output-styles/releases/tag/v0.3.2
71
88
  [0.3.1]: https://github.com/PerryLink/dsh-output-styles/releases/tag/v0.3.1
72
89
  [0.3.0]: https://github.com/PerryLink/dsh-output-styles/releases/tag/v0.3.0
73
90
  [0.2.0]: https://github.com/PerryLink/dsh-output-styles/releases/tag/v0.2.0
package/README.es.md CHANGED
@@ -183,7 +183,7 @@ Se contrastó con el ecosistema DSH antes del desarrollo (instantánea 2026-08):
183
183
  ```sh
184
184
  pnpm install
185
185
  pnpm run typecheck # ambos proyectos tsc
186
- pnpm test # vitest — 92 pruebas
186
+ pnpm test # vitest — 93 pruebas
187
187
  pnpm run verify # typecheck + pruebas + verificación autocontenida (puerta de prepublishOnly)
188
188
  pnpm run build # artefactos lib/ (bundles de host + cliente)
189
189
  pnpm pack # tarball para dsh plugin add
package/README.ja.md CHANGED
@@ -183,7 +183,7 @@ frontmatter フィールド:
183
183
  ```sh
184
184
  pnpm install
185
185
  pnpm run typecheck # 両方の tsc プロジェクト
186
- pnpm test # vitest — 92 テスト
186
+ pnpm test # vitest — 93 テスト
187
187
  pnpm run verify # typecheck + テスト + 自己完結チェック(prepublishOnly ゲート)
188
188
  pnpm run build # lib/ 成果物(ホスト + クライアント bundle)
189
189
  pnpm pack # dsh plugin add 用の tarball
package/README.ko.md CHANGED
@@ -183,7 +183,7 @@ frontmatter 필드:
183
183
  ```sh
184
184
  pnpm install
185
185
  pnpm run typecheck # 두 tsc 프로젝트
186
- pnpm test # vitest — 92 테스트
186
+ pnpm test # vitest — 93 테스트
187
187
  pnpm run verify # typecheck + 테스트 + 자체 포함 검사(prepublishOnly 게이트)
188
188
  pnpm run build # lib/ 산출물(호스트 + 클라이언트 번들)
189
189
  pnpm pack # dsh plugin add용 tarball
package/README.md CHANGED
@@ -183,7 +183,7 @@ Screened against the DSH ecosystem before development (2026-08 snapshot): no `st
183
183
  ```sh
184
184
  pnpm install
185
185
  pnpm run typecheck # both tsc projects
186
- pnpm test # vitest — 92 tests
186
+ pnpm test # vitest — 93 tests
187
187
  pnpm run verify # typecheck + tests + self-contained (the prepublishOnly gate)
188
188
  pnpm run build # lib/ artifacts (host + client bundles)
189
189
  pnpm pack # tarball for dsh plugin add
package/README.zh.md CHANGED
@@ -183,7 +183,7 @@ frontmatter 字段:
183
183
  ```sh
184
184
  pnpm install
185
185
  pnpm run typecheck # 两个 tsc 工程
186
- pnpm test # vitest —— 92 个测试
186
+ pnpm test # vitest —— 93 个测试
187
187
  pnpm run verify # typecheck + 测试 + 自包含检查(prepublishOnly 闸门)
188
188
  pnpm run build # lib/ 产物(宿主 + 客户端两个 bundle)
189
189
  pnpm pack # 供 dsh plugin add 使用的 tarball
package/cordis.patch.yml CHANGED
@@ -6,14 +6,20 @@
6
6
  # and completes a bare headless profile.
7
7
  #
8
8
  # The plugin injects `storageDomain`; a headless profile has none of the
9
- # storage rows, so the layer brings the routed kv backend along.
9
+ # storage rows, so the layer brings the routed kv backend along, including
10
+ # the config the rc.6 schemas require (root for storage-json, backend for
11
+ # storage-domain) — without it the rows fail their config validation.
10
12
  - insert:
11
13
  - id: storage
12
14
  name: '@deepseek-ai/dsh-storage'
13
15
  - id: storage-json
14
16
  name: '@deepseek-ai/dsh-storage-json'
17
+ config:
18
+ root: !!js dshHomePath('storages')
15
19
  - id: storage-domain
16
20
  name: '@deepseek-ai/dsh-storage-domain'
21
+ config:
22
+ backend: json
17
23
  - id: output-styles
18
24
  name: 'dsh-output-styles'
19
25
  # config: # schema defaults shown for reference
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-output-styles",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Claude Code outputStyles-equivalent runtime output-style switching for DeepSeek Harness",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -79,6 +79,57 @@
79
79
  "dsh": {
80
80
  "bundle": {
81
81
  "patch": "./cordis.patch.yml"
82
+ },
83
+ "client": {
84
+ "platform": "web",
85
+ "inject": [
86
+ "@deepseek-ai/dsh-client-runtime",
87
+ "@deepseek-ai/dsh-api-remotes",
88
+ "@deepseek-ai/dsh-client-ui-commands",
89
+ "@deepseek-ai/dsh-client-locale"
90
+ ]
91
+ }
92
+ },
93
+ "dshWorkshop": {
94
+ "schema": "omdsh-workshop-package/v1",
95
+ "type": "plugin",
96
+ "integration": {
97
+ "protocol": "harness-profile",
98
+ "artifact": "cordis.patch.yml"
99
+ },
100
+ "install": {
101
+ "mode": "transactional",
102
+ "adapter": "harness-profile",
103
+ "failurePolicy": "generation-rollback",
104
+ "touchesCurrentBeforeActivation": false
105
+ },
106
+ "lifecycle": {
107
+ "activation": "hot-reload",
108
+ "dispose": "supported"
109
+ },
110
+ "permissions": [
111
+ "fs:read",
112
+ "fs:watch",
113
+ "storage:read",
114
+ "storage:write",
115
+ "settings:read"
116
+ ],
117
+ "compatibility": {
118
+ "dshVersions": [
119
+ "0.1.0-rc.6"
120
+ ]
121
+ },
122
+ "capability": {
123
+ "id": "style-command",
124
+ "kind": "command",
125
+ "invocation": "/style concise",
126
+ "expected": "the command replies 'switched to concise' and the next assembled system prompt contains the concise style body"
127
+ },
128
+ "evidence": {
129
+ "install": null,
130
+ "failureIsolation": null,
131
+ "hotReload": null,
132
+ "remove": null
82
133
  }
83
134
  },
84
135
  "dependencies": {