deepbom 1.98.0 → 1.99.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/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "deepbom.npm_release.v1",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.99.1",
|
|
4
4
|
"source": {
|
|
5
|
-
"git_commit": "
|
|
5
|
+
"git_commit": "e745104b3ee64cf0257d84ac96a530da5ea532c4",
|
|
6
6
|
"git_state": "clean",
|
|
7
7
|
"distribution": "public_channel"
|
|
8
8
|
},
|
package/skills/deepbom/SKILL.md
CHANGED
|
@@ -17,7 +17,7 @@ If no exact local installation is available, ask before running:
|
|
|
17
17
|
node "<skill-root>/scripts/verify-deepbom.mjs" --allow-download
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
That explicit fallback may download `deepbom@1.
|
|
20
|
+
That explicit fallback may download `deepbom@1.99.1` through npm. Use the returned `invocation.command` and `invocation.prefix_args` for subsequent commands. Do not silently replace a version mismatch or network failure with an unverified executable.
|
|
21
21
|
|
|
22
22
|
## Start with discovery
|
|
23
23
|
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
5. For remote input, require an immutable identity: a full Hugging Face commit, GCS object generation, or HTTPS SHA-256 fragment.
|
|
8
8
|
6. Do not raise download, response, or memory limits without explaining the cost and obtaining user approval.
|
|
9
9
|
7. If no shell, local MCP, or local file access exists, explain that actual analysis cannot run in that client and provide the pinned `npx` command.
|
|
10
|
-
8. Registry download is opt-in. Prefer a verified exact-version installation; use `npx -y deepbom@1.
|
|
10
|
+
8. Registry download is opt-in. Prefer a verified exact-version installation; use `npx -y deepbom@1.99.1` only after network and installation permission is clear.
|
|
@@ -6,7 +6,7 @@ import path from "node:path";
|
|
|
6
6
|
import process from "node:process";
|
|
7
7
|
import { fileURLToPath } from "node:url";
|
|
8
8
|
|
|
9
|
-
const VERSION = "1.
|
|
9
|
+
const VERSION = "1.99.1";
|
|
10
10
|
const allowDownload = process.argv.slice(2).includes("--allow-download");
|
|
11
11
|
const attempts = [];
|
|
12
12
|
const candidates = localCandidates();
|