dsh-plugin-shop 0.4.8 → 0.4.10

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
@@ -6,6 +6,8 @@
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)
9
+ [![plugins](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2FLivXue.github.io%2Fdsh-plugin-shop%2Fv1%2Findex.json&query=count&label=plugins&color=blue)](https://LivXue.github.io/dsh-plugin-shop/v1/index.json)
10
+ [![filtered](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2FLivXue.github.io%2Fdsh-plugin-shop%2Fv1%2Findex.json&query=rejected&label=filtered&color=orange)](https://LivXue.github.io/dsh-plugin-shop/v1/index.json)
9
11
  [![license](https://img.shields.io/npm/l/dsh-plugin-shop?color=blue)](https://github.com/LivXue/dsh-plugin-shop/blob/main/LICENSE)
10
12
  [![plugin CI](https://github.com/LivXue/dsh-plugin-shop/actions/workflows/plugin.yml/badge.svg)](https://github.com/LivXue/dsh-plugin-shop/actions/workflows/plugin.yml)
11
13
  [![catalog](https://github.com/LivXue/dsh-plugin-shop/actions/workflows/daily.yml/badge.svg)](https://github.com/LivXue/dsh-plugin-shop/actions/workflows/daily.yml)
@@ -50,9 +52,9 @@ install them once with `npm install -g @deepseek-ai/dsh pnpm` and verify with
50
52
  # holds back very recent releases, so a bare `add dsh-plugin-shop` can hand
51
53
  # you an older version for a while. Pin the current release — refresh it
52
54
  # with `npm view dsh-plugin-shop version`.
53
- dsh plugin --profile web add dsh-plugin-shop@0.4.8
55
+ dsh plugin --profile web add dsh-plugin-shop@0.4.10
54
56
  # or straight through npx, nothing installed:
55
- npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-shop@0.4.8
57
+ npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-shop@0.4.10
56
58
  ```
57
59
 
58
60
  Replace `web` with your profile if you use another one. Then restart `dsh` once — a
@@ -82,7 +84,7 @@ ls -1 "${DSH_HOME:-$HOME/.dsh}/profiles" | grep -v '^node_modules$'
82
84
  cooldown, and deterministic installs are the point of the agent path.
83
85
 
84
86
  ```sh
85
- dsh plugin --profile <profile> add dsh-plugin-shop@0.4.8
87
+ dsh plugin --profile <profile> add dsh-plugin-shop@0.4.10
86
88
  ```
87
89
 
88
90
  **3. Verify — do not skip this.** A zero exit from step 2 means pnpm resolved the
@@ -115,7 +117,7 @@ bundle is not.
115
117
 
116
118
  | | |
117
119
  |---|---|
118
- | **Browse & search** | 1800+ packages harvested from npm by the `dsh-plugin` keyword, shown with the author's own summary when they declared one |
120
+ | **Browse & search** | 1800+ packages harvested from npm by the `dsh-plugin` and `deepseek-harness` keywords, shown with the author's own summary when they declared one |
119
121
  | **Install** | One confirmation. An unreviewed plugin requires an explicit acknowledgement first — an installed plugin holds the same privileges as a built-in one |
120
122
  | **Enable / disable** | Applies to an installed plugin without a restart |
121
123
  | **Installed state** | An installed plugin shows an Installed label on its card — or an Update button when the catalog has a newer version — plus an Uninstall button; the Installed filter in the category bar shows only installed plugins |
@@ -144,7 +146,7 @@ Compromising the browser half buys an attacker those nine calls and nothing more
144
146
 
145
147
  Built daily from the public npm registry and published as static JSON:
146
148
 
147
- - [`/v1/index.json`](https://LivXue.github.io/dsh-plugin-shop/v1/index.json) — the pointer, carrying `schemaVersion`, `builtAt`, and the content hash
149
+ - [`/v1/index.json`](https://LivXue.github.io/dsh-plugin-shop/v1/index.json) — the pointer, carrying `schemaVersion`, `builtAt`, the entry `count` and `rejected` totals (the badges above read them live), and the content hash
148
150
  - `/v1/plugins.<sha256>.json` — the data, content-addressed and safe to cache indefinitely
149
151
 
150
152
  The pointer is small enough to poll. The shop verifies the data file's sha256 against
@@ -162,8 +164,10 @@ actually given — so passing review once cannot buy trust for every future rele
162
164
 
163
165
  ## 🏷️ For plugin authors
164
166
 
165
- Add `"keywords": ["dsh-plugin"]` to `package.json` and publish. The daily build finds
166
- you; nothing is submitted to this project. Declare a `dsh.catalog` section to control
167
+ Add a harvest keyword — `"keywords": ["dsh-plugin"]` or `"keywords": ["deepseek-harness"]` to
168
+ `package.json` and publish. Or, without npm: add the keyword as a GitHub repo *topic* and keep a
169
+ `package.json` at the root with a `name` and `dsh.bundle` — the catalog lists the repo and pins the
170
+ default-branch commit as its version. The daily build finds you; nothing is submitted to this project. Declare a `dsh.catalog` section to control
167
171
  your own category, summary and capabilities — or omit it, and the catalog derives a
168
172
  listing from your npm `description`.
169
173