@f4bioo/berry-shield 2026.3.3-2 → 2026.3.20
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 +39 -29
- package/dist/index.js +4908 -1429
- package/docs/wiki/deploy/installation.md +11 -1
- package/docs/wiki/layers/root.md +2 -0
- package/docs/wiki/layers/stem.md +5 -3
- package/docs/wiki/layers/vine.md +40 -0
- package/docs/wiki/operation/cli/README.md +18 -2
- package/docs/wiki/operation/cli/add.md +1 -1
- package/docs/wiki/operation/cli/remove.md +24 -2
- package/docs/wiki/operation/cli/rules.md +47 -8
- package/docs/wiki/operation/cli/status.md +12 -0
- package/docs/wiki/operation/cli/test.md +21 -6
- package/docs/wiki/operation/cli/vine.md +37 -0
- package/docs/wiki/tutorials/README.md +1 -0
- package/docs/wiki/tutorials/choose-vine-confirmation.md +94 -0
- package/docs/wiki/tutorials/incident-triage-report.md +1 -1
- package/openclaw.plugin.json +42 -2
- package/package.json +13 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@f4bioo/berry-shield",
|
|
3
|
-
"version": "2026.3.
|
|
3
|
+
"version": "2026.3.20",
|
|
4
4
|
"description": "OpenClaw plugin for policy checks, command/file blocking, and sensitive-data redaction.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openclaw",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"homepage": "https://github.com/F4bioo/berry-shield#readme",
|
|
26
26
|
"engines": {
|
|
27
|
-
"node": ">=
|
|
27
|
+
"node": ">=22.16.0"
|
|
28
28
|
},
|
|
29
29
|
"type": "module",
|
|
30
30
|
"files": [
|
|
@@ -44,27 +44,32 @@
|
|
|
44
44
|
"scripts": {
|
|
45
45
|
"test": "vitest run",
|
|
46
46
|
"test:watch": "vitest",
|
|
47
|
+
"pretest": "npm run plugin:manifest:sync",
|
|
47
48
|
"typecheck": "tsc --noEmit",
|
|
48
|
-
"
|
|
49
|
+
"pretypecheck": "npm run plugin:manifest:sync",
|
|
50
|
+
"plugin:manifest:sync": "node scripts/sync-manifest.mjs",
|
|
51
|
+
"prebuild": "npm run plugin:manifest:sync",
|
|
52
|
+
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:openclaw/plugin-sdk --target=node22",
|
|
49
53
|
"build:types": "tsc -p tsconfig.build.json",
|
|
50
54
|
"//release": "Preflight gates run before version bump",
|
|
51
|
-
"
|
|
55
|
+
"prerelease:preflight": "npm run plugin:manifest:sync",
|
|
56
|
+
"release:preflight": "npm run typecheck && npm test && npm run build && npm run wiki:claim",
|
|
52
57
|
"release": "npm run release:preflight && npm run version:update",
|
|
53
58
|
"version:update": "npx ts-node --esm scripts/update-version.ts",
|
|
54
59
|
"update-patterns": "npx ts-node --esm scripts/update-patterns.ts",
|
|
55
60
|
"wiki:claim": "npx ts-node --esm scripts/doc-sanity.ts"
|
|
56
61
|
},
|
|
57
62
|
"peerDependencies": {
|
|
58
|
-
"openclaw": "^2026.
|
|
63
|
+
"openclaw": "^2026.3.12"
|
|
59
64
|
},
|
|
60
65
|
"dependencies": {
|
|
61
|
-
"@clack/prompts": "^0.
|
|
66
|
+
"@clack/prompts": "^1.0.1"
|
|
62
67
|
},
|
|
63
68
|
"devDependencies": {
|
|
64
69
|
"@iarna/toml": "^2.2.5",
|
|
65
70
|
"@types/node": "^25.2.2",
|
|
66
|
-
"esbuild": "^0.27.
|
|
71
|
+
"esbuild": "^0.27.4",
|
|
67
72
|
"typescript": "^5.3.0",
|
|
68
|
-
"vitest": "^4.0
|
|
73
|
+
"vitest": "^4.1.0"
|
|
69
74
|
}
|
|
70
75
|
}
|