dsh-plugin-shop 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +26 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # dsh-plugin-shop
4
4
 
5
- **The plugin store for [DeepSeek Harness](https://github.com/deepseek-harness)** — browse a catalog of
5
+ **The plugin store for [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness)** — browse a catalog of
6
6
  dsh plugins, install one with a single confirmation, and manage what you have, from a tab inside Settings.
7
7
 
8
8
  [![npm](https://img.shields.io/npm/v/dsh-plugin-shop?logo=npm&color=cb3837)](https://www.npmjs.com/package/dsh-plugin-shop)
@@ -16,7 +16,24 @@ English | [中文](https://github.com/LivXue/dsh-plugin-shop/blob/main/packages/
16
16
 
17
17
  ---
18
18
 
19
- ## Install
19
+ ## 🖼️ Screenshots
20
+
21
+ <div align="center">
22
+ <img src="https://raw.githubusercontent.com/LivXue/dsh-plugin-shop/main/docs/images/shelf-light.png" alt="The plugin store shelf inside dsh Settings" width="860">
23
+ </div>
24
+
25
+ <table>
26
+ <tr>
27
+ <td width="50%"><img src="https://raw.githubusercontent.com/LivXue/dsh-plugin-shop/main/docs/images/gate-light.png" alt="Installing an unreviewed plugin requires an explicit acknowledgement"></td>
28
+ <td width="50%"><img src="https://raw.githubusercontent.com/LivXue/dsh-plugin-shop/main/docs/images/shelf-dark.png" alt="The same shelf in the dark theme"></td>
29
+ </tr>
30
+ <tr>
31
+ <td align="center"><sub>Installing an unreviewed plugin requires an explicit acknowledgement</sub></td>
32
+ <td align="center"><sub>The same shelf in the dark theme</sub></td>
33
+ </tr>
34
+ </table>
35
+
36
+ ## 📦 Install
20
37
 
21
38
  Two tracks below. They do the same thing; pick the one that matches who is reading.
22
39
 
@@ -80,7 +97,7 @@ bundle is not.
80
97
  | `no profile directory found above <path>` | the plugin could not locate its profile | Please report it — this is resolved from `ctx.baseUrl` and should not fail |
81
98
  | The tab is missing after a restart | the bundle is not in the profile's `bundles` | Re-run step 3; if it is absent, step 2 did not complete |
82
99
 
83
- ## What it does
100
+ ## What it does
84
101
 
85
102
  | | |
86
103
  |---|---|
@@ -89,7 +106,7 @@ bundle is not.
89
106
  | **Enable / disable** | Applies to an installed plugin without a restart |
90
107
  | **Outdated installs** | Compared against the catalog's current version |
91
108
 
92
- ## How it is put together
109
+ ## 🧩 How it is put together
93
110
 
94
111
  Two halves ship in this one package, and the split between them is the security
95
112
  boundary:
@@ -101,13 +118,13 @@ boundary:
101
118
 
102
119
  Compromising the browser half buys an attacker those five calls and nothing more.
103
120
 
104
- ## Configuration
121
+ ## ⚙️ Configuration
105
122
 
106
123
  | Variable | Effect |
107
124
  |---|---|
108
125
  | `DSH_STORE_CATALOG_URL` | Point the store at your own catalog mirror instead of the public one |
109
126
 
110
- ## The catalog
127
+ ## 📚 The catalog
111
128
 
112
129
  Built daily from the public npm registry and published as static JSON:
113
130
 
@@ -117,7 +134,7 @@ Built daily from the public npm registry and published as static JSON:
117
134
  The pointer is small enough to poll. The store verifies the data file's sha256 against
118
135
  the pointer before trusting a byte of it.
119
136
 
120
- ## What it does not claim
137
+ ## ⚠️ What it does not claim
121
138
 
122
139
  A listing is not an endorsement.
123
140
 
@@ -127,7 +144,7 @@ list. The `verified` tier means a human read *that exact version*; a newer publi
127
144
  downgrades it to `verified-stale` and keeps the review pinned to the version it was
128
145
  actually given — so passing review once cannot buy trust for every future release.
129
146
 
130
- ## For plugin authors
147
+ ## 🏷️ For plugin authors
131
148
 
132
149
  Add `"keywords": ["dsh-plugin"]` to `package.json` and publish. The daily build finds
133
150
  you; nothing is submitted to this project. Declare a `dsh.catalog` section to control
@@ -136,6 +153,6 @@ listing from your npm `description`.
136
153
 
137
154
  Full reference: [docs/schema.md](https://github.com/LivXue/dsh-plugin-shop/blob/main/docs/schema.md).
138
155
 
139
- ## License
156
+ ## 📄 License
140
157
 
141
158
  [MIT](https://github.com/LivXue/dsh-plugin-shop/blob/main/LICENSE) © LivXue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-plugin-shop",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "The DeepSeek Harness plugin store: browse, install, enable, and update dsh plugins from a git-auditable catalog.",
5
5
  "repository": {
6
6
  "type": "git",