dsh-plugin-inspector 0.2.1 → 0.4.0
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 +48 -392
- package/lib/checks/tier-a.js +18 -7
- package/lib/checks/tier-b.js +38 -6
- package/lib/checks/tier-c.js +25 -0
- package/lib/cli.js +5 -0
- package/lib/cordis-yaml.js +78 -42
- package/lib/files.js +2 -0
- package/lib/injection.js +16 -0
- package/lib/inspect.js +15 -2
- package/lib/knowledge.js +38 -0
- package/lib/manifest.js +1 -0
- package/lib/publish.js +2 -0
- package/lib/registry.js +1 -0
- package/lib/report.js +5 -0
- package/lib/source.js +11 -8
- package/lib/types/checks/tier-b.d.ts +20 -0
- package/lib/types/cordis-yaml.d.ts +15 -2
- package/lib/types/inspect.d.ts +12 -2
- package/lib/types/knowledge.d.ts +24 -0
- package/lib/types/source.d.ts +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
**Know what a plugin does before you install it.**
|
|
4
4
|
|
|
5
|
-
`dsh-inspect` reads a DeepSeek Harness plugin — a directory, an npm tarball, or a published
|
|
6
|
-
|
|
5
|
+
`dsh-inspect` reads a DeepSeek Harness plugin — a directory, an npm tarball, or a published package
|
|
6
|
+
fetched by name and checked against the hash the registry published — and tells you what it
|
|
7
7
|
declares and what its code is capable of. It does not install it, build it, import it, spawn it, or
|
|
8
8
|
evaluate any part of it.
|
|
9
9
|
|
|
@@ -11,122 +11,33 @@ evaluate any part of it.
|
|
|
11
11
|
$ dsh-inspect --from-npm some-dsh-plugin@1.4.0
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
📖 **[Full documentation](https://charlotten7.github.io/dsh-plugin-inspector/)**
|
|
15
|
+
|
|
16
|
+
## Why
|
|
17
|
+
|
|
18
|
+
`dsh plugin add` is a thin pnpm forwarder: it passes your arguments to pnpm verbatim, and a plugin
|
|
19
|
+
is ordinary Node code that runs in the agent's process at the agent's uid. Nothing between the
|
|
20
|
+
registry and that process tells you what the code can reach.
|
|
21
|
+
|
|
22
|
+
[The full argument →](https://charlotten7.github.io/dsh-plugin-inspector/)
|
|
23
|
+
|
|
14
24
|
## Install
|
|
15
25
|
|
|
16
|
-
Node `^22.19.0 || >=24`.
|
|
26
|
+
Node `^22.19.0 || >=24`.
|
|
17
27
|
|
|
18
28
|
```console
|
|
19
29
|
npm install -g dsh-plugin-inspector
|
|
20
30
|
dsh-inspect --help
|
|
21
31
|
```
|
|
22
32
|
|
|
23
|
-
|
|
24
|
-
`dsh-inspect` until it is built:
|
|
33
|
+
From a checkout instead — `lib/` is generated, so a fresh clone has no `dsh-inspect` until built:
|
|
25
34
|
|
|
26
35
|
```console
|
|
27
36
|
git clone https://github.com/CharlotteN7/dsh-plugin-inspector
|
|
28
37
|
cd dsh-plugin-inspector
|
|
29
|
-
pnpm install
|
|
30
|
-
|
|
31
|
-
node lib/cli.js --help # or `pnpm link --global` for a `dsh-inspect` on PATH
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
To run it from source without building, `pnpm run inspect <target>`.
|
|
35
|
-
|
|
36
|
-
---
|
|
37
|
-
|
|
38
|
-
## Why
|
|
39
|
-
|
|
40
|
-
`dsh plugin add` is a thin pnpm forwarder. It passes your arguments to pnpm verbatim — no spec
|
|
41
|
-
parsing, no added flags, no subcommand allowlist, no confirmation prompt — and then reconciles
|
|
42
|
-
the profile's layer list from the installed state. Any package whose `package.json` declares
|
|
43
|
-
`dsh.bundle.patch` is promoted to a **mounted patch layer**: an ESM module imported into the
|
|
44
|
-
harness process at the agent's uid, with ungated top-level side effects, and a YAML layer that
|
|
45
|
-
applies *after* `@deepseek-ai/dsh-base` and can therefore override any field of any core row by
|
|
46
|
-
id — or set `disabled: true` on it.
|
|
47
|
-
|
|
48
|
-
The only thing `dsh plugin add` prints is a warning for the harmless case:
|
|
49
|
-
|
|
38
|
+
pnpm install && pnpm run build
|
|
39
|
+
node lib/cli.js --help
|
|
50
40
|
```
|
|
51
|
-
dsh: warning: <pkg> declares no dsh.bundle — installed as a plain dependency, not a profile layer
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
The dangerous case prints nothing.
|
|
55
|
-
|
|
56
|
-
There are over 5,000 repos tagged `dsh-plugin` — 5,071 when this was last counted, on 16 August
|
|
57
|
-
2026 — and no registry, no review, and no signing between any of them and your process. This tool
|
|
58
|
-
exists so that the moment before you install one is not a blank.
|
|
59
|
-
|
|
60
|
-
## What you get
|
|
61
|
-
|
|
62
|
-
The report has two halves, and the first one is the point of the tool.
|
|
63
|
-
|
|
64
|
-
**Facts** — no severity, always printed. Whether the package mounts as a patch layer and from
|
|
65
|
-
which file, whether it ships a browser bundle, which rows it inserts and which existing rows it
|
|
66
|
-
modifies, the `!!js` inventory of the mounted layer, cordis YAML it ships that nothing mounts,
|
|
67
|
-
commands it puts on your PATH, its dependencies, what model-visible text it ships, and how much of
|
|
68
|
-
it could be read. A well-behaved plugin has a full facts section and an empty findings section.
|
|
69
|
-
That is a useful answer, not an empty one.
|
|
70
|
-
|
|
71
|
-
**Findings** — ranked, in three tiers:
|
|
72
|
-
|
|
73
|
-
| Tier | What it reads | What it can say |
|
|
74
|
-
|---|---|---|
|
|
75
|
-
| **A** | Structured declarations: `package.json` keys, Cordis patch rows, the `!!js` expression inventory | A verdict. Confidence is `certain`, because the harness reads the same bytes the same way |
|
|
76
|
-
| **B** | Shipped source, through the TypeScript parser | A capability report: "this plugin **can** do X" |
|
|
77
|
-
| **C** | Whether the package could be read at all — minification, computed names, sourceless builds, binaries | That the analysis is degraded, and that no Tier B negative can be trusted |
|
|
78
|
-
|
|
79
|
-
Every Tier B and Tier C finding carries a `bypass` field naming the one-line evasion for that
|
|
80
|
-
specific check. It is inside the finding, not in a footnote, so a report cannot be rendered
|
|
81
|
-
without its caveat.
|
|
82
|
-
|
|
83
|
-
A finding is **per package, not per syntax site**. A package importing `node:fs` from eleven files
|
|
84
|
-
gets one finding with `occurrences: 11` and three example locations, because the eleventh import
|
|
85
|
-
warrants no decision the first did not. Findings are grouped by check and `subject` — the module
|
|
86
|
-
specifier, the row id, the seam name, the matched rule — so `node:child_process` and
|
|
87
|
-
`node:worker_threads` stay two findings, and a gate can accept `B13`/`node:fs` without accepting
|
|
88
|
-
every `B13`.
|
|
89
|
-
|
|
90
|
-
## What it reports on the real ecosystem
|
|
91
|
-
|
|
92
|
-
Measured **2026-08-16** against the 40 most-starred GitHub repositories tagged `dsh-plugin` that
|
|
93
|
-
publish a resolvable npm package, each pinned to the version current that day. Re-run it with
|
|
94
|
-
`pnpm run sweep`; the corpus is `scripts/ecosystem-corpus.json` and the recorded measurement is
|
|
95
|
-
`tests/ecosystem-baseline.json`.
|
|
96
|
-
|
|
97
|
-
Both columns come from the same corpus and the same pinned versions, so the difference is this
|
|
98
|
-
tool's doing and not the ecosystem's. "0.1" is the published `dsh-plugin-inspector@0.1.0`; "0.2" is
|
|
99
|
-
this tree, which still reports version `0.1.0` because the release is not published yet.
|
|
100
|
-
|
|
101
|
-
| | 0.1 | 0.2 |
|
|
102
|
-
|---|---|---|
|
|
103
|
-
| Findings | 1,420 | **295** |
|
|
104
|
-
| Critical | 252 | **3** |
|
|
105
|
-
| Median findings per package | 10.5 | **5.5** |
|
|
106
|
-
| Packages with a high or critical | 27 of 40 (68 %) | **21 of 40 (53 %)** |
|
|
107
|
-
| Packages failing `--fail-on critical` | 40 of 40 | **1 of 40** |
|
|
108
|
-
| Clean packages | 0 of 40 | **0 of 40** |
|
|
109
|
-
|
|
110
|
-
**The 0.1 README quoted "49 findings, 0 critical" and that number was worthless.** It was measured
|
|
111
|
-
on twelve targets — the harness's own bundles and our own sibling plugins — which is a sample
|
|
112
|
-
selected for being trusted already. Against published third-party plugins the same build produced
|
|
113
|
-
1,420 findings and 252 criticals, and no package came out clean.
|
|
114
|
-
|
|
115
|
-
Read the 0.2 column honestly:
|
|
116
|
-
|
|
117
|
-
- **`--fail-on critical` is now a usable gate.** It stops one package in forty. That package,
|
|
118
|
-
`@struktoai/mirage-dsh`, ships a patch layer that switches off `fs-sandbox`, `bash-sandbox` and
|
|
119
|
-
`pwsh-sandbox`, and its three findings lead the report. Under 0.1 the same three sat somewhere in
|
|
120
|
-
a list of 252.
|
|
121
|
-
- **The default `--fail-on high` still stops a majority of the ecosystem**, and that is not a
|
|
122
|
-
finished job. The largest remaining driver is `C2` — the analyzer saying it could not read the
|
|
123
|
-
package, on 33 % of the corpus. That is a true statement rather than a false positive, but a gate
|
|
124
|
-
that fires on a third of npm for reasons about the *tool* is not yet a gate.
|
|
125
|
-
- **No package is clean, and that is expected rather than alarming.** `C3` alone — "ships built
|
|
126
|
-
output and no source" — fires on 65 % of published packages, because that is what publishing a
|
|
127
|
-
package is. It is `low`, it does not degrade the analysis, and it is not a defect.
|
|
128
|
-
|
|
129
|
-
A readable report is not yet an installable gate.
|
|
130
41
|
|
|
131
42
|
## Usage
|
|
132
43
|
|
|
@@ -134,21 +45,14 @@ A readable report is not yet an installable gate.
|
|
|
134
45
|
dsh-inspect <target> [options]
|
|
135
46
|
dsh-inspect --from-npm <name>[@<version>] [options]
|
|
136
47
|
|
|
137
|
-
<
|
|
138
|
-
|
|
139
|
-
Options
|
|
140
|
-
--from-npm <spec> Fetch a published package from the registry, verify its
|
|
141
|
-
dist.integrity hash, and analyse it in memory.
|
|
48
|
+
--from-npm <spec> Fetch from the registry, verify dist.integrity, analyse in memory.
|
|
142
49
|
--registry <url> Registry base URL for --from-npm.
|
|
143
|
-
(default: https://registry.npmjs.org)
|
|
144
50
|
--json Emit the machine-readable JSON document on stdout.
|
|
145
|
-
--fail-on <severity> Exit 1 at or above this severity.
|
|
146
|
-
critical | high | medium | low | none (default: high)
|
|
51
|
+
--fail-on <severity> Exit 1 at or above this severity. (default: high)
|
|
147
52
|
--no-color Plain text, no ANSI.
|
|
148
|
-
--version, --help
|
|
149
53
|
```
|
|
150
54
|
|
|
151
|
-
**Exit codes
|
|
55
|
+
**Exit codes are the CI contract:**
|
|
152
56
|
|
|
153
57
|
| Code | Meaning |
|
|
154
58
|
|---|---|
|
|
@@ -156,300 +60,52 @@ Options
|
|
|
156
60
|
| `1` | Analysis completed; at least one finding at or above `--fail-on` |
|
|
157
61
|
| `2` | Analysis could not be performed |
|
|
158
62
|
|
|
159
|
-
`2` is deliberately distinct from `1`. A job that cannot tell "the analyzer broke" from "the
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
### Getting a package without installing it
|
|
63
|
+
`2` is deliberately distinct from `1`. A job that cannot tell "the analyzer broke" from "the plugin
|
|
64
|
+
is clean" is the failure this split exists to prevent.
|
|
163
65
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
```console
|
|
167
|
-
# From the registry, in one step. Reads the ~3 KB version document, downloads the tarball into
|
|
168
|
-
# memory, verifies dist.integrity BEFORE anything parses it, and analyses it there.
|
|
169
|
-
dsh-inspect --from-npm <name>@<version>
|
|
170
|
-
|
|
171
|
-
# From git. Clone shallow and point the tool at the directory — do NOT use `npm pack` on a git
|
|
172
|
-
# spec, which runs the package's `prepare` script.
|
|
173
|
-
git clone --depth 1 https://github.com/… /tmp/plugin
|
|
174
|
-
dsh-inspect /tmp/plugin
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
`--from-npm` is the only mode that opens a socket, and it is one flag per invocation: it cannot be
|
|
178
|
-
combined with a local target, and a directory or tarball scan can never reach it — the fetch lives
|
|
179
|
-
in a module the analysis path does not import. **A network fetch is not execution.** No subprocess,
|
|
180
|
-
no disk write, no lifecycle script, and no `npm pack`. The report records the tarball URL, the
|
|
181
|
-
digest that matched, and the registry's own `hasInstallScript` flag under `target.registry`.
|
|
182
|
-
|
|
183
|
-
If the hash does not match what the registry published, the tool refuses and parses nothing. If the
|
|
184
|
-
package predates `dist.integrity` entirely, the weaker `dist.shasum` is used and the report says
|
|
185
|
-
`sha1` rather than claiming more. If neither is published, that is a refusal too.
|
|
186
|
-
|
|
187
|
-
A tarball is decoded **entirely in memory**, from a file or from a fetch alike. Nothing is written
|
|
188
|
-
to disk, which makes tar path traversal structurally impossible rather than something a filter has
|
|
189
|
-
to catch. Every read ceiling is applied to the arriving stream rather than to a finished buffer, so
|
|
190
|
-
a 28 MB archive holding one 8 GB member is a refusal in under two seconds, not an out-of-memory
|
|
191
|
-
kill.
|
|
192
|
-
|
|
193
|
-
### Directory mode reads the working tree, not "the package"
|
|
194
|
-
|
|
195
|
-
The two targets are not the same thing and the report says which one you gave it.
|
|
196
|
-
|
|
197
|
-
A **tarball** is the published package: exactly the bytes a user installs. A **directory** is a
|
|
198
|
-
repository checkout, which holds far more — tests, fixtures, CI config, build scratch. None of that
|
|
199
|
-
is installed, none of it is mounted, and none of it can act on anybody, so the directory reader is
|
|
200
|
-
narrowed to the set `npm pack` would produce: the `files` allowlist when the manifest declares one,
|
|
201
|
-
otherwise `.npmignore` or `.gitignore` under npm's defaults. The facts section names which rule it
|
|
202
|
-
used and how many working-tree files it skipped.
|
|
203
|
-
|
|
204
|
-
This matters more than it sounds. Reading a checkout whole means a hostile *test fixture* — a file
|
|
205
|
-
that ships nowhere and mounts nothing — is reported at `critical` with `certain` confidence. That
|
|
206
|
-
is not a conservative error; it is the tool being confidently wrong about the one tier it treats as
|
|
207
|
-
a verdict.
|
|
66
|
+
[Full usage, and getting a package without installing it →](https://charlotten7.github.io/dsh-plugin-inspector/usage.html)
|
|
208
67
|
|
|
209
68
|
## What it looks for
|
|
210
69
|
|
|
211
|
-
|
|
70
|
+
Findings are tiered by how much you should trust them:
|
|
212
71
|
|
|
213
|
-
|
|
|
72
|
+
| Tier | What it means |
|
|
214
73
|
|---|---|
|
|
215
|
-
|
|
|
216
|
-
|
|
|
217
|
-
|
|
|
218
|
-
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
| `modelVisibleFiles` — shipped `SKILL.md` / skills / `AGENTS.md` / `CLAUDE.md` | file walk |
|
|
222
|
-
| `filesRead`, `bytesRead`, `sourceFilesParsed` | analysis run |
|
|
223
|
-
|
|
224
|
-
### Tier A — decidable, structured declaration, a real verdict
|
|
225
|
-
|
|
226
|
-
Tier A reads declarations, not code. It is *much* harder to hide from than Tier B, because the
|
|
227
|
-
harness itself must be able to read these fields literally in order to act on them: an attacker
|
|
228
|
-
cannot obfuscate `disabled: true` and still have it disable anything. Every Tier A finding has
|
|
229
|
-
confidence `certain`.
|
|
230
|
-
|
|
231
|
-
| id | Check | Severity | Method |
|
|
232
|
-
|---|---|---|---|
|
|
233
|
-
| A1 | Install lifecycle script (`preinstall`, `install`, `postinstall`, `prepare`, `prepublish`, `preprepare`, `postprepare`) | medium | `package.json.scripts` key set. `dsh plugin add` forwards to pnpm verbatim and adds no `--ignore-scripts`, but pnpm ≥ 10 blocks a dependency's lifecycle scripts by default until the package is listed under `allowBuilds`, and `apps/cli/src/plugin.ts` prints that instruction when a build is blocked. The script is one approval away from running, not already running |
|
|
234
|
-
| A2 | Patch row sets `disabled` **truthily** on a **security-relevant** core row (`approval`, `permission`, `sandbox`, `sandbox-policy`, `bash-sandbox`, `pwsh-sandbox`, `fs-sandbox`, `fs-observation-policy`, `subprocess`, `credentials`, `timeout-policy`, `spill-policy`, `session-persistence-jsonl`) | **critical** | patch YAML row with `id ∈ SECURITY_ROWS`. The loader coerces — `disabledOf` is `Boolean(options.disabled)` (`vendor/loader/src/config/entry.ts`) — so `null`, `0` and `""` leave the row **running** and are not this finding. A `!!js` node is an object and stays truthy, so an expression is judged by what it can evaluate to |
|
|
235
|
-
| A3 | Patch row disables any other known core row | high for a `@deepseek-ai/dsh-base` row, medium for one only a surface bundle inserts | same, `id ∈ CORE_ROWS`. The row inventory records which of the three shipped bundles inserts each row, because they are not one profile: a `ui-*` row exists only where the web bundle is mounted. Suppressed entirely when the package under analysis *is* one of the three bundles — `@deepseek-ai/dsh-web-app` disabling two dozen rows `@deepseek-ai/dsh-base` inserted is what composing a surface bundle is |
|
|
236
|
-
| A4 | Patch row carries a `name` that does not match the targeted row's `name` | medium | `applyEntryPatches` treats `name` on a non-insert patch as an **assertion guard**, not an override: on mismatch it warns and `continue`s, skipping the whole patch. So this row does nothing at all. Either the author is targeting a row that has been renamed, or the patch is stale — in both cases what the user reads and what mounts disagree |
|
|
237
|
-
| A5 | Patch row overrides `config` / `inject` / `isolate` / `intercept` / `group` / any other key of an existing core row | medium (high for a security row) | patch YAML. Override is a **shallow whole-value replacement** (`target[key] = value`), never a deep merge, so overriding `config` discards the core row's entire configuration. `PatchOptions` carries a `[key: string]: any` index signature, so *any* key that is not `id`/`insert`/`name` is copied onto the target verbatim |
|
|
238
|
-
| A6 | `!!js` expression inventory, with AST sub-classification (see the `!!js` table below) | low → critical by class | dialect parse + `new Function` parse-compile, never evaluated |
|
|
239
|
-
| A7 | `!!js` in a field where the loader never interpolates it (`id`, `name`, `group`, `inject`, `intercept`, `isolate`) | medium | mirrors `metadataExpressionErrors`. Signal: the author believes it is live when it is inert — the plugin was very likely never validated |
|
|
240
|
-
| A8 | `!js` (single bang) anywhere in the patch YAML | medium | `!js` is a **hard YAML parse error**, verified. Its presence proves the plugin has never been successfully loaded by any harness |
|
|
241
|
-
| A9 | `insert` row naming a module that is neither this package nor any of its declared dependencies | high | set difference against `dependencies` ∪ `peerDependencies` ∪ own name. The layer mounts code whose provenance the manifest does not admit to |
|
|
242
|
-
| A10 | MCP server row — an `insert`ed row whose `name` is `@deepseek-ai/dsh-mcp-client`. `transport: stdio` → **critical**; `transport: streamable-http` → high | **critical** / high | The stdio config is `{ command, args, env, cwd }` and it spawns that executable directly — **not** through `ctx.subprocess` or `ctx.sandbox`, with no approval and no tool gate. Every tool the server advertises is then registered as `mcp__<serverName>__<tool>` with model-visible descriptions this package does not control. `streamable-http` does not spawn but still imports an untrusted remote tool catalogue. Structured declaration, so Tier A |
|
|
243
|
-
| A11 | Non-registry dependency specifier (`git+`, `github:`, `http(s):`, `file:`, `link:`) | high | the referenced code can change under a fixed version string |
|
|
244
|
-
| A12 | Shipped model-visible instruction text (`SKILL.md`, `**/skills/*/SKILL.md`, `**/skills/*.md`, `AGENTS.md`, `CLAUDE.md`) | low as presence; escalated by B10 | file walk. See the reach note below |
|
|
245
|
-
| A13 | No `files` allowlist in `package.json` | low | the published tarball is whatever happened to be in the working tree |
|
|
246
|
-
| A14 | `dsh.bundle.patch` climbs out of the package directory — contains a `..` that escapes | **critical** | `loadProfile` computes the patch path as `join(packageDir, declared)` with **no sanitization** of `declared`, and `..` segments survive that join. An **absolute** path does not escape and is not this finding: `join('/…/pkg', '/etc/passwd')` is `/…/pkg/etc/passwd`, which is inside the package and simply does not exist — that is A16 |
|
|
247
|
-
| A15 | Patch row redirects skill discovery into this package — sets `customSkillDirs` or `bundledSkillDir` on the `skill-filesystem` row | high | this is the declaration that turns shipped markdown into model-visible instructions. `bundledSkillDir` additionally carries `trustedHost: true`, which reads through raw Node `fs` and **bypasses the `ctx.fs` sandbox** |
|
|
248
|
-
| A16 | `dsh.bundle.patch` names a file the package does not ship | medium | commonly a `files` allowlist that forgets it. Mounting the bundle fails the profile boot |
|
|
249
|
-
| A17 | The declared patch layer does not parse | medium | the layer cannot load, and nothing inside it could be analysed |
|
|
250
|
-
| A18 | `package.json` field of the wrong shape | low | the field was ignored. A manifest that npm and the harness read differently is worth knowing about |
|
|
251
|
-
| A19 | Patch row sets `disabled` **falsily** on a core row | medium | the inverse of A2 and A3, and the one the coercion rule makes visible. Bundle layers apply after the profile's own, so a row the user deliberately switched off is switched back on by this one while the user's file still reads `disabled: true` |
|
|
252
|
-
| A20 | `dsh.profile.bundles` names packages to mount as bundles | high | the launcher resolves each named package, reads its `dsh.bundle.patch`, and mounts that layer (`packages/boot/app-boot/src/profile.ts`). This package is then a profile, and everything those packages declare composes into it — none of which is in this analysis |
|
|
253
|
-
| A21 | Injection phrasing in shipped instruction markdown | high | **Tier A rather than Tier B, and exempt from the Tier C downgrade.** There is no syntax between a `SKILL.md` and the model: the shipped bytes *are* the prompt, so there is nothing to obfuscate and nothing for a degraded parse to have made unreliable. What is heuristic is the reading of the sentence, not the reading of the file. Tool `description` hits stay Tier B (B10), because code assembles those |
|
|
254
|
-
| A22 | `bin` installs a command on the user's PATH | low | linked into the profile's `node_modules/.bin` at install time. The harness never runs it; the user, a script, or an agent shell tool can |
|
|
255
|
-
| A23 | Inserted row carries `isolate` or `intercept` on a catalogued service | **critical** for a security seam, high otherwise | `vendor/loader/src/config/isolate.ts` re-maps the named service to a fresh symbol realm for the row and every row beneath it, so a descendant injecting that name receives this subtree's implementation instead of the profile's. The same substitution as replacing the service in code, declared in YAML |
|
|
256
|
-
|
|
257
|
-
**Reach note for A12, stated because getting this wrong would be dishonest.** Shipping a `SKILL.md`
|
|
258
|
-
inside an npm package does **not** by itself put it in front of the model. There is no
|
|
259
|
-
`dsh.skills` manifest field. The filesystem provider scans a fixed root set —
|
|
260
|
-
`<project>/.dsh/skills`, `<project>/.agents/skills`, `$DSH_HOME/skills`,
|
|
261
|
-
`$DSH_AGENTS_HOME/skills`, `bundledSkillDir` — at depth 1 only (`<root>/<name>/SKILL.md` or `<root>/<name>.md`), and a plugin's own `node_modules`
|
|
262
|
-
directory is none of those. The three ways shipped text actually reaches the model are: the plugin
|
|
263
|
-
calls `ctx.skills.register()` / `ctx.skills.registerProvider()` (→ B10 on the registered body), a
|
|
264
|
-
patch row redirects a skill root into the package (→ A15), or the file is copied into the user's
|
|
265
|
-
workspace by something else. `AGENTS.md` / `CLAUDE.md` are a separate subsystem again — discovered
|
|
266
|
-
by walking the *workspace*, not the profile. So A12 on its own is `low` and its text says
|
|
267
|
-
"shipped, reaches the model only if registered or redirected"; it escalates to `high` only when
|
|
268
|
-
A15 or a `ctx.skills.register*` call is also present, or when B10's injection heuristics fire.
|
|
269
|
-
|
|
270
|
-
### Tier B — AST capability detection, "this plugin CAN do X"
|
|
271
|
-
|
|
272
|
-
Tier B parses shipped `.ts`/`.mts`/`.cts`/`.js`/`.mjs`/`.cjs` with the `typescript` compiler API —
|
|
273
|
-
`ts.createSourceFile`, syntax only, **no program, no type checker, no module resolution, no
|
|
274
|
-
transpilation, no execution**. Default confidence `high`, dropped to `moderate` when any Tier C
|
|
275
|
-
readability finding fires.
|
|
276
|
-
|
|
277
|
-
| id | Check | Severity | Method |
|
|
278
|
-
|---|---|---|---|
|
|
279
|
-
| B1 | Replaces a core capability seam — `ctx.provide(<seam>, …)` / `ctx.set(<seam>, …)` where `<seam>` is a key from `api-catalog.ts` | **critical** | call expression, literal first argument matched against the seam key set |
|
|
280
|
-
| B2 | Auto-approves — a listener on `approval/request` that returns an approving verdict with no user interaction | **critical** | listener body return analysis |
|
|
281
|
-
| B3 | `tools/pre-execute` listener returning `allow` | high | same |
|
|
282
|
-
| B4 | Waterfall listener that never references `next` | high | The waterfall set is exactly 13 events: `agent/pre-step`, `agent/request`, `agent/request-error`, `approval/request`, `fs/edit-intent`, `fs/write-intent`, `llm/stream`, `session-telemetry/record`, `system-prompt/assemble`, `tools/code-dispatch-log`, `tools/execute`, `tools/post-execute`, `tools/pre-execute`. Per the harness's own rule, returning without calling `next()` short-circuits the chain **including the built-in behavior**, silently disabling the default for everyone downstream. Note there is **no** `fs/read-intent` — the intent family is write and edit only |
|
|
283
|
-
| B5 | System-prompt mutation — `system-prompt/assemble` listener, or `ctx.systemPrompt.{section,context,variable,tools,suppressRuntimeContext}` | high | call matching |
|
|
284
|
-
| B6 | Credential read — `process.env.*(TOKEN\|KEY\|SECRET\|PASSWORD\|CREDENTIAL)*`, `~/.dsh/credentials`, `~/.npmrc`, `~/.aws`, `~/.ssh`, `ctx.credentials.*` | medium alone | identifier + literal matching |
|
|
285
|
-
| B7 | Network egress — `fetch`, `node:http(s).request`, `node:net`, `WebSocket`, `undici` | medium alone | import + call matching |
|
|
286
|
-
| B8 | **Exfiltration pair** — B6 ∧ B7 in the same package | high | set intersection. Reported explicitly as *capability, not dataflow*: the tool cannot prove the credential value reaches the socket. `high` rather than critical because it fires on 18 % of published plugins |
|
|
287
|
-
| B9 | Direct `node:child_process` / `node:worker_threads` / `node:vm` | medium alone, high paired with B8's two halves | import specifier. Bypasses `ctx.subprocess` and `ctx.sandbox` entirely. `medium` alone because a bare import fires on half the published ecosystem |
|
|
288
|
-
| B10 | Prompt-injection heuristics on **model-visible text only** — registered tool `description` string literals, and shipped skill/instruction files | high | imperative-override phrasing, role reassignment, exfiltration instructions, hidden-text markers. Run on *exactly* the text that reaches the model, never on ordinary source comments |
|
|
289
|
-
| B11 | Nested plugin mounting — `ctx.plugin(…)`, loader manipulation | high | call matching. A layer that mounts further layers moves the analysis target |
|
|
290
|
-
| B12 | Dynamic code construction — `eval`, `new Function`, `vm.runInNewContext`, `module._load` | high | call matching |
|
|
291
|
-
| B13 | Filesystem access outside `ctx.fs` — imports `node:fs` or `node:fs/promises` | medium | Reads and writes through the Node API are invisible to `fs/write-intent`, `fs/edit-intent`, `fs/observed`, and the `fs-sandbox` row, so no policy in the profile sees them and nothing appears in the session log |
|
|
292
|
-
|
|
293
|
-
**The framing B7, B9, and B13 share.** The harness's own dynamic-package sandbox
|
|
294
|
-
(`cordis-host-runner/src/sandbox.ts`) traps exactly `require`, `setTimeout`, `setInterval`,
|
|
295
|
-
`setImmediate`, `clearTimeout`, `clearInterval`, and `fetch`, redirecting each to a `ctx` service;
|
|
296
|
-
it leaves `process` `undefined` and exposes only the seven `HOST_BUILTIN_INSPECTION` globals.
|
|
297
|
-
**An installed npm bundle layer gets none of that** — it is a plain ESM import into the harness
|
|
298
|
-
process. So these three checks report a gap the harness itself defines: *the harness denies
|
|
299
|
-
untrusted code this capability, and this package uses it from a position where nothing denies it.*
|
|
300
|
-
That is the harness's reckoning, not a rule invented here.
|
|
301
|
-
|
|
302
|
-
### Tier C — heuristic; "we cannot read this" is itself the finding
|
|
303
|
-
|
|
304
|
-
| id | Check | Severity | Effect |
|
|
305
|
-
|---|---|---|---|
|
|
306
|
-
| C1 | Minified or obfuscated source — long lines that are **most of the file**, or a dense file of under five lines. One long line is an embedded prompt or a base64 asset, not minification, and the harness's own web bundle has one | medium | **degrades** |
|
|
307
|
-
| C2 | Dynamic dispatch — computed member access on `ctx` (`ctx[expr]`), non-literal `import()`/`require()`, `atob`/`Buffer.from(…, 'base64')`, an assembled name passed to `.on`/`.set`/`.emit` **on a known context binding**. The receiver guard is the whole check: `.set` and `.get` are `Map`'s names too, and ``this.steps.set(`${turn}:${step}`, t)`` is a composite key, not evasion | high | **degrades** |
|
|
308
|
-
| C3 | Ships built output with no corresponding source (`lib/` without `src/`) | low | **does not degrade** — the bytes were read exactly as written and exactly as they will run; what cannot be checked is whether they match the repository. Treating that as an unreadable package marks every ordinary published tarball degraded, because shipping built output and no source is what publishing *is* |
|
|
309
|
-
| C4 | Unreadable payload — `.node`, `.wasm`, binaries, files over the size cap | medium | **degrades** |
|
|
310
|
-
| C5 | The mounted layer hit a walk ceiling — nesting depth or node count | high | **degrades**. Rows past the ceiling were not read |
|
|
311
|
-
| C6 | A `.min.js` artifact | low | **degrades** |
|
|
312
|
-
|
|
313
|
-
### `!!js` sub-classification (A6)
|
|
314
|
-
|
|
315
|
-
Every `!!js` node is inventoried with its YAML path and text, then parse-compiled with
|
|
316
|
-
`new Function('return (' + expr + ')')` — compilation only; the constructor never executes the
|
|
317
|
-
body — and the resulting AST is classified.
|
|
318
|
-
|
|
319
|
-
Classification is by **reach**, not by syntactic form. `dshHomePath('sessions')` and `steal()` are
|
|
320
|
-
both `CallExpression`s; the first is a helper `dsh-app-boot` puts in scope with
|
|
321
|
-
`ctx.provide('dshHomePath', dshHomePath)` before any entry mounts, documented as such in that
|
|
322
|
-
package's README, and used by the base bundle's own `session-persistence-jsonl` row.
|
|
323
|
-
|
|
324
|
-
| Class | Example | Severity | Finding |
|
|
325
|
-
|---|---|---|---|
|
|
326
|
-
| `literal` | `true`, `3` | — | fact only |
|
|
327
|
-
| `inert-read` | `process.env.DSH_TOOLS_MODE`, `process.platform === 'win32'`, `ctx.webStartup.host` | — | fact only |
|
|
328
|
-
| `harness-call` | `dshHomePath('sessions')`, `process.cwd()` | low | A6 |
|
|
329
|
-
| `call` | a call this tool cannot resolve | medium | A6 |
|
|
330
|
-
| `mutation` | `process.env.X = …` | high | A6 |
|
|
331
|
-
| `module-access` | `require(…)`, `import(…)`, `globalThis[…]` | **critical** | A6 |
|
|
332
|
-
| `unparseable` | syntax error | medium — and it means the plugin cannot boot | A6 |
|
|
333
|
-
|
|
334
|
-
The two classes with no reach are counted in `facts.jsExpressions` and never raised: a constant, or
|
|
335
|
-
a read of a service the profile already handed the row, warrants no decision, and the shipped
|
|
336
|
-
bundles are mostly made of them.
|
|
337
|
-
|
|
338
|
-
The escalation of the rest is justified: the evaluator is
|
|
339
|
-
`new Function('ctx', 'expr', 'with (ctx) { return eval(expr) }')` — unrestricted eval, with `ctx`
|
|
340
|
-
in scope. And `disabled` re-evaluates at **every mount decision**, so a `!!js` there is not a
|
|
341
|
-
one-shot: it is a recurring execution point that user patch layers HMR-reload live.
|
|
74
|
+
| **Facts** | No severity, always emitted — what the package declares about itself |
|
|
75
|
+
| **Tier A** | Decidable from a structured declaration. A real verdict. |
|
|
76
|
+
| **Tier B** | AST capability detection — "this plugin *can* do X" |
|
|
77
|
+
| **Tier C** | Heuristic; "we cannot read this" is itself the finding |
|
|
78
|
+
|
|
79
|
+
[Every check, by tier →](https://charlotten7.github.io/dsh-plugin-inspector/checks.html)
|
|
342
80
|
|
|
343
81
|
## The ceiling
|
|
344
82
|
|
|
345
|
-
**This is
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
A seam at which an install *could* be stopped does exist — `dsh plugin add` runs pnpm in the
|
|
352
|
-
profile directory, pnpm honours a `.pnpmfile.cjs` there, and throwing from its async `readPackage`
|
|
353
|
-
hook aborts the install with nothing written to `node_modules`. Nothing in 0.2 uses it.
|
|
354
|
-
[`ADR.md`](./ADR.md) §11 records the seam and why shipping a gate on this release's calibration
|
|
355
|
-
would have burned the idea.
|
|
356
|
-
|
|
357
|
-
### What is not statically decidable
|
|
358
|
-
|
|
359
|
-
1. **`!!js` semantics.** The loader evaluates these with
|
|
360
|
-
`new Function('ctx', 'expr', 'with (ctx) { return eval(expr) }')` — unrestricted eval, under
|
|
361
|
-
`with (ctx)` scoping. Which identifiers resolve, and to what, depends on the runtime context
|
|
362
|
-
object. This tool reports the expression text and its syntactic class. It cannot tell you what
|
|
363
|
-
the expression will do.
|
|
364
|
-
2. **Transitive dependencies.** One package is read. A clean package with one hostile dependency
|
|
365
|
-
reads as clean. The dependency list is printed as a fact for exactly this reason.
|
|
366
|
-
3. **Runtime-fetched code.** Anything downloaded and evaluated after mount is invisible.
|
|
367
|
-
4. **Post-install mutation of `node_modules`.** The bytes analysed are not guaranteed to be the
|
|
368
|
-
bytes that run.
|
|
369
|
-
5. **A later version acquiring `dsh.bundle`.** Reconciliation is by *installed state*, not by
|
|
370
|
-
dependency diff. A package installed today as a plain library that gains a `dsh.bundle`
|
|
371
|
-
declaration in a patch release is mounted automatically by the next `dsh plugin update`, with
|
|
372
|
-
no notice. This is the most likely real-world bypass, and it means **a verdict is about one
|
|
373
|
-
version and only that version.**
|
|
374
|
-
6. **Intent.** Tier B's `B8` is the sharpest case: the tool proves a package *can* read a
|
|
375
|
-
credential and *can* open a socket. It has not shown that the value flows between them, and it
|
|
376
|
-
cannot — that needs value tracking this tool does not do. Any telemetry library or
|
|
377
|
-
authenticated API client trips `B8` legitimately. It fires on 18 % of published plugins, which
|
|
378
|
-
is why it is `high` and not `critical`.
|
|
379
|
-
7. **Injection phrasing that is not spelled in ASCII.** The injection heuristics are Latin-alphabet
|
|
380
|
-
regexes. Substituting Cyrillic homoglyphs — `о` U+043E for `o`, `е` U+0435 for `e` — defeats
|
|
381
|
-
**every one of the ten rules**, including the zero-width-character rule, which looks for
|
|
382
|
-
invisible characters and not for visible ones that are the wrong letter. Verified against the
|
|
383
|
-
rule table, not assumed. Normalisation is not in 0.2; do not read a clean `A21`/`B10` as
|
|
384
|
-
evidence that shipped markdown carries no instructions.
|
|
385
|
-
|
|
386
|
-
### Every Tier B check has a one-line bypass
|
|
387
|
-
|
|
388
|
-
`ctx['pro' + 'vide']('approval', …)` defeats seam detection. A computed specifier defeats every
|
|
389
|
-
import check. A base64 event name defeats every listener check. Splitting a credential read and a
|
|
390
|
-
network call across two packages defeats `B8`. A Cyrillic `о` defeats every injection rule.
|
|
391
|
-
|
|
392
|
-
**Tier A is much harder to hide from, because it is structured declaration rather than code.**
|
|
393
|
-
The harness must read `disabled: true` literally in order to disable anything, so there is no
|
|
394
|
-
obfuscation that leaves it working. That asymmetry is why Tier A issues verdicts and Tier B
|
|
395
|
-
issues capability reports.
|
|
396
|
-
|
|
397
|
-
### And when the tool cannot read the package
|
|
398
|
-
|
|
399
|
-
If any Tier C check that says something could not be *read* fires, every Tier B confidence drops to
|
|
400
|
-
`moderate`, `analysis.integrity` becomes `degraded`, `analysis.negativesReliable` becomes `false`,
|
|
401
|
-
and the human report is **forbidden from printing "no findings"**. A clean-looking report on a
|
|
402
|
-
minified bundle would be worse than no report, so the tool refuses to produce one.
|
|
403
|
-
|
|
404
|
-
The honest form of a clean result is: *nothing was found at or above the threshold, in the parts
|
|
405
|
-
that could be read.*
|
|
83
|
+
**This is not a malware scanner and it cannot be one.** Capability is decidable from source;
|
|
84
|
+
intent is not. Every Tier B check has a one-line bypass, and the tool says so per finding rather
|
|
85
|
+
than implying a completeness it does not have. What it does guarantee is that it never runs the
|
|
86
|
+
code it analyses — asserted from outside the unit suite by a CI canary whose fixture writes
|
|
87
|
+
sentinel files from `preinstall`, `postinstall`, `prepare`, `!!js` config and module top level. Any
|
|
88
|
+
sentinel on disk after a full analysis is a release blocker.
|
|
406
89
|
|
|
407
|
-
|
|
90
|
+
[What is not statically decidable →](https://charlotten7.github.io/dsh-plugin-inspector/ceiling.html) ·
|
|
91
|
+
[What it reports on the real ecosystem →](https://charlotten7.github.io/dsh-plugin-inspector/ecosystem.html)
|
|
408
92
|
|
|
409
|
-
|
|
410
|
-
checkout: every registry case injects its own `fetch`, and one of them replaces the global with a
|
|
411
|
-
throwing stub to prove a directory or tarball scan never calls it.
|
|
93
|
+
## Development
|
|
412
94
|
|
|
413
|
-
```
|
|
95
|
+
```sh
|
|
96
|
+
nvm use 22 # Node ^22.19.0 || >=24, and pnpm 11
|
|
414
97
|
pnpm install
|
|
415
98
|
pnpm run typecheck
|
|
416
|
-
pnpm run test
|
|
417
|
-
pnpm run test:
|
|
418
|
-
pnpm run test:e2e # builds, then runs the real binary as a subprocess
|
|
419
|
-
pnpm run inspect <target> # run from source without building
|
|
420
|
-
pnpm run sweep -- --check # the one thing here that DOES use a network
|
|
99
|
+
pnpm run test:coverage
|
|
100
|
+
pnpm run test:e2e
|
|
421
101
|
```
|
|
422
102
|
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
distribution, and with `--check` exits non-zero when a fresh run is worse than
|
|
426
|
-
`tests/ecosystem-baseline.json`. `--discover` rebuilds the corpus from the most-starred repositories
|
|
427
|
-
carrying the topic; `--pin` moves every entry to the version current now; `--record` rewrites the
|
|
428
|
-
baseline. It runs from its own weekly workflow, never from CI — every other workflow here runs
|
|
429
|
-
without a network, and a unit suite that cannot reach one is easier to trust.
|
|
430
|
-
|
|
431
|
-
Hostile fixtures live in `tests/fixtures/` and are authored here — a plugin that disables the
|
|
432
|
-
approval row, one whose `!!js` calls `child_process`, one with a `postinstall`, one pairing a
|
|
433
|
-
credential read with `fetch`, one shipping a `SKILL.md` full of injection text, one declaring an
|
|
434
|
-
MCP stdio server, a minified one, one using the `!js` tag, one whose bundle patch path escapes the
|
|
435
|
-
package, and a benign control that must produce **zero** findings. They are deliberately hostile
|
|
436
|
-
and structurally inert; [`tests/fixtures/README.md`](./tests/fixtures/README.md) says why, and
|
|
437
|
-
which of them is a live prompt-injection payload you should not copy anywhere.
|
|
438
|
-
|
|
439
|
-
`tests/fixtures/execution-canary/` is the proof that nothing runs: its install scripts, its `!!js`
|
|
440
|
-
expressions, and its module top level all write a sentinel file, and the test asserts the sentinel
|
|
441
|
-
does not exist after a full analysis. `node:child_process` and the write half of `node:fs` are
|
|
442
|
-
mocked to throw for the whole suite, so a stray call fails the tests rather than passing quietly.
|
|
443
|
-
|
|
444
|
-
Design decisions are in [`ADR.md`](./ADR.md); the check catalogue is under
|
|
445
|
-
[What it looks for](#what-it-looks-for).
|
|
446
|
-
|
|
447
|
-
## Reporting a problem
|
|
103
|
+
Severity calibration is pinned against a corpus of published packages, so a change that starts
|
|
104
|
+
firing on ordinary code fails CI rather than shipping.
|
|
448
105
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
ordinary code is a real defect — please open a normal issue for it.
|
|
106
|
+
Design decisions and their rationale live in [ADR.md](ADR.md). Security policy is in
|
|
107
|
+
[SECURITY.md](SECURITY.md).
|
|
452
108
|
|
|
453
109
|
## License
|
|
454
110
|
|
|
455
|
-
MIT
|
|
111
|
+
MIT
|
package/lib/checks/tier-a.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
import { isJsExpr } from "../cordis-yaml.js";
|
|
12
12
|
import { boundedJson, lineColumn, normalizePackagePath, snippet } from "../files.js";
|
|
13
13
|
import { scanInjection } from "../injection.js";
|
|
14
|
-
import { CORE_ROWS, HARNESS_BUNDLE_PACKAGES, INSTALL_LIFECYCLE_SCRIPTS, MCP_CLIENT_PACKAGE, SECURITY_ROW_IDS, SECURITY_SEAM_KEYS, SEAM_KEYS, SKILL_FILESYSTEM_ROW, SKILL_ROOT_CONFIG_KEYS, } from "../knowledge.js";
|
|
14
|
+
import { CORE_ROWS, HARNESS_BUNDLE_PACKAGES, INSTALL_LIFECYCLE_SCRIPTS, LIFECYCLE_SIGNALS, MCP_CLIENT_PACKAGE, SECURITY_ROW_IDS, SECURITY_SEAM_KEYS, SEAM_KEYS, SKILL_FILESYSTEM_ROW, SKILL_ROOT_CONFIG_KEYS, } from "../knowledge.js";
|
|
15
15
|
import { declaredPackages } from "../manifest.js";
|
|
16
16
|
/**
|
|
17
17
|
* Checks that read a Cordis patch row. None of them may produce a finding
|
|
@@ -103,6 +103,7 @@ function coreRowSeverity(id) {
|
|
|
103
103
|
*/
|
|
104
104
|
function coreRowOrigin(id) {
|
|
105
105
|
const row = CORE_ROWS.get(id);
|
|
106
|
+
/* v8 ignore next -- only called once `coreRowSeverity` has found the id in the same map. */
|
|
106
107
|
if (row === undefined)
|
|
107
108
|
return 'a shipped bundle';
|
|
108
109
|
return row.bundles.map(bundle => `@deepseek-ai/dsh-${bundle}`).join(' and ');
|
|
@@ -205,16 +206,16 @@ function checkOverriddenRows(input) {
|
|
|
205
206
|
const rewritten = override.overriddenKeys.filter(key => key !== 'disabled');
|
|
206
207
|
if (rewritten.length === 0)
|
|
207
208
|
continue;
|
|
208
|
-
const
|
|
209
|
+
const provides = SECURITY_ROW_IDS.get(override.id);
|
|
209
210
|
findings.push(tierA({
|
|
210
211
|
checkId: 'A5',
|
|
211
212
|
name: 'core-row-overridden',
|
|
212
213
|
subject: `${override.id}:${rewritten.join(',')}`,
|
|
213
|
-
severity:
|
|
214
|
+
severity: provides === undefined ? 'medium' : 'high',
|
|
214
215
|
title: `Patch layer rewrites ${rewritten.map(key => `\`${key}\``).join(', ')} on the core row "${override.id}"`,
|
|
215
216
|
detail: `The row is ${coreName}. Patch overrides are shallow whole-value replacements, not merges, so `
|
|
216
217
|
+ `overriding \`config\` discards that row's entire shipped configuration rather than adding to it.`
|
|
217
|
-
+ (
|
|
218
|
+
+ (provides === undefined ? '' : ` This row provides ${provides}.`),
|
|
218
219
|
evidence: { file: patch.file, path: override.path, snippet: snippet(rewritten.join(', ')) },
|
|
219
220
|
}));
|
|
220
221
|
}
|
|
@@ -421,19 +422,27 @@ function checkManifest(input) {
|
|
|
421
422
|
const { manifest, source } = input;
|
|
422
423
|
const lifecycle = INSTALL_LIFECYCLE_SCRIPTS.filter(name => name in manifest.scripts);
|
|
423
424
|
for (const name of lifecycle) {
|
|
425
|
+
/* v8 ignore next -- `name` came from filtering the same object's own keys. */
|
|
426
|
+
const command = manifest.scripts[name] ?? '';
|
|
427
|
+
const signals = LIFECYCLE_SIGNALS.filter(signal => signal.pattern.test(command));
|
|
424
428
|
findings.push(tierA({
|
|
425
429
|
checkId: 'A1',
|
|
426
430
|
name: 'install-lifecycle-script',
|
|
427
431
|
subject: name,
|
|
428
|
-
severity: 'medium',
|
|
432
|
+
severity: signals.length === 0 ? 'medium' : 'high',
|
|
429
433
|
title: `Declares a \`${name}\` script, which runs at install time once allowed`,
|
|
430
434
|
detail: 'This command would run at the user\'s uid as part of `dsh plugin add`, before the user has read a '
|
|
431
435
|
+ 'line of the package. Two things stand between it and execution, and neither is this package\'s doing: '
|
|
432
436
|
+ '`dsh plugin add` forwards its arguments to pnpm verbatim and adds no --ignore-scripts, but pnpm ≥10 '
|
|
433
437
|
+ 'blocks dependency lifecycle scripts by default until the exact package is listed under `allowBuilds` in '
|
|
434
438
|
+ 'the profile\'s pnpm-workspace.yaml — and the harness prints that instruction itself when a build is '
|
|
435
|
-
+ 'blocked (apps/cli/src/plugin.ts). Approving the prompt runs this command.'
|
|
436
|
-
|
|
439
|
+
+ 'blocked (apps/cli/src/plugin.ts). Approving the prompt runs this command.'
|
|
440
|
+
+ (signals.length === 0
|
|
441
|
+
? ''
|
|
442
|
+
: ` The command ${signals.map(signal => signal.meaning).join(', and ')}. A build hook runs something `
|
|
443
|
+
+ 'this package shipped; this one does not. The whole of it is in `package.json`, with no module to '
|
|
444
|
+
+ 'read.'),
|
|
445
|
+
evidence: { file: 'package.json', path: `scripts.${name}`, snippet: snippet(command) },
|
|
437
446
|
}));
|
|
438
447
|
}
|
|
439
448
|
for (const command of manifest.binNames) {
|
|
@@ -553,6 +562,7 @@ function checkModelVisibleText(input) {
|
|
|
553
562
|
+ 'in an npm package does not by itself put it in front of the model: it is discovered only when the plugin '
|
|
554
563
|
+ 'registers it through ctx.skills, when a patch row redirects a skill root into this package (A15), or when '
|
|
555
564
|
+ 'something copies it into the user\'s workspace. The text itself is scored separately by B10.',
|
|
565
|
+
/* v8 ignore next -- the caller returns early on an empty list. */
|
|
556
566
|
evidence: { file: input.modelVisibleFiles[0] ?? '', snippet: snippet(input.modelVisibleFiles.join(', ')) },
|
|
557
567
|
})];
|
|
558
568
|
}
|
|
@@ -602,6 +612,7 @@ function checkInjectionText(input) {
|
|
|
602
612
|
const findings = [];
|
|
603
613
|
for (const path of input.modelVisibleFiles) {
|
|
604
614
|
const text = input.source.files.get(path);
|
|
615
|
+
/* v8 ignore next -- `modelVisibleFiles` is filtered from `source.files`'s own keys, so the lookup always hits. */
|
|
605
616
|
if (text === undefined)
|
|
606
617
|
continue;
|
|
607
618
|
for (const match of scanInjection(text)) {
|