@guava-parity/guard-scanner 16.0.0 → 16.0.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/README.md +14 -1
- package/README_ja.md +14 -1
- package/SKILL.md +6 -0
- package/dist/cli.cjs +6 -5
- package/dist/cli.mjs +6 -5
- package/dist/index.cjs +6 -5
- package/dist/index.mjs +6 -5
- package/dist/mcp-server.cjs +6 -5
- package/dist/mcp-server.mjs +6 -5
- package/dist/openclaw-plugin.cjs +6 -5
- package/dist/openclaw-plugin.mjs +6 -5
- package/docs/data/benchmark-ledger.json +1 -1
- package/docs/data/fp-ledger.json +1 -1
- package/docs/spec/capabilities.json +2 -2
- package/guard-scanner +4 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Traditional security tools catch malware. **guard-scanner** catches what they mi
|
|
|
29
29
|
```
|
|
30
30
|
$ npx @guava-parity/guard-scanner ./skills/ --strict --soul-lock --compliance owasp-asi
|
|
31
31
|
|
|
32
|
-
guard-scanner v16.0.
|
|
32
|
+
guard-scanner v16.0.1
|
|
33
33
|
|
|
34
34
|
⚠ CRITICAL identity-hijack SOUL_OVERWRITE_ATTEMPT
|
|
35
35
|
skills/imported-tool/SKILL.md:47
|
|
@@ -63,6 +63,13 @@ npx -y @guava-parity/guard-scanner ./my-skills/ --strict
|
|
|
63
63
|
npx -y @guava-parity/guard-scanner ./my-skills/ --compliance owasp-asi
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
+
**Installed CLI**:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
npm install -g @guava-parity/guard-scanner
|
|
70
|
+
guard-scanner ./my-skills/ --strict
|
|
71
|
+
```
|
|
72
|
+
|
|
66
73
|
**Start as MCP server** — works with Cursor, Windsurf, Claude Code, OpenClaw:
|
|
67
74
|
|
|
68
75
|
```bash
|
|
@@ -93,6 +100,12 @@ guard-scanner watch ./skills/ --strict --soul-lock
|
|
|
93
100
|
guard-scanner ./skills/ --compliance owasp-asi --format json
|
|
94
101
|
```
|
|
95
102
|
|
|
103
|
+
**`npm exec` compatibility path**:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
npm exec --yes --package=@guava-parity/guard-scanner -- guard-scanner ./skills/ --strict
|
|
107
|
+
```
|
|
108
|
+
|
|
96
109
|
---
|
|
97
110
|
|
|
98
111
|
## What It Detects
|
package/README_ja.md
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
```
|
|
34
34
|
$ npx @guava-parity/guard-scanner ./skills/ --strict --soul-lock --compliance owasp-asi
|
|
35
35
|
|
|
36
|
-
guard-scanner v16.0.
|
|
36
|
+
guard-scanner v16.0.1
|
|
37
37
|
|
|
38
38
|
⚠ CRITICAL identity-hijack SOUL_OVERWRITE_ATTEMPT
|
|
39
39
|
skills/imported-tool/SKILL.md:47
|
|
@@ -67,6 +67,13 @@ npx -y @guava-parity/guard-scanner ./my-skills/ --strict
|
|
|
67
67
|
npx -y @guava-parity/guard-scanner ./my-skills/ --compliance owasp-asi
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
+
**インストール済み CLI**:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
npm install -g @guava-parity/guard-scanner
|
|
74
|
+
guard-scanner ./my-skills/ --strict
|
|
75
|
+
```
|
|
76
|
+
|
|
70
77
|
**MCPサーバーとして起動** — Cursor, Windsurf, Claude Code, OpenClaw対応:
|
|
71
78
|
|
|
72
79
|
```bash
|
|
@@ -97,6 +104,12 @@ guard-scanner watch ./skills/ --strict --soul-lock
|
|
|
97
104
|
guard-scanner ./skills/ --compliance owasp-asi --format json
|
|
98
105
|
```
|
|
99
106
|
|
|
107
|
+
**`npm exec` 互換パス**:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
npm exec --yes --package=@guava-parity/guard-scanner -- guard-scanner ./skills/ --strict
|
|
111
|
+
```
|
|
112
|
+
|
|
100
113
|
---
|
|
101
114
|
|
|
102
115
|
## 検出対象
|
package/SKILL.md
CHANGED
|
@@ -20,6 +20,12 @@ npx -y @guava-parity/guard-scanner ./skills/ --soul-lock --strict
|
|
|
20
20
|
|
|
21
21
|
# Filter to OWASP ASI mapped findings only
|
|
22
22
|
npx -y @guava-parity/guard-scanner ./skills/ --compliance owasp-asi --format json
|
|
23
|
+
|
|
24
|
+
# Installed CLI
|
|
25
|
+
guard-scanner ./skills/ --strict
|
|
26
|
+
|
|
27
|
+
# npm exec compatibility
|
|
28
|
+
npm exec --yes --package=@guava-parity/guard-scanner -- guard-scanner ./skills/ --strict
|
|
23
29
|
```
|
|
24
30
|
|
|
25
31
|
## Core Commands
|
package/dist/cli.cjs
CHANGED
|
@@ -1671,7 +1671,7 @@ var require_package = __commonJS({
|
|
|
1671
1671
|
"package.json"(exports2, module2) {
|
|
1672
1672
|
module2.exports = {
|
|
1673
1673
|
name: "@guava-parity/guard-scanner",
|
|
1674
|
-
version: "16.0.
|
|
1674
|
+
version: "16.0.1",
|
|
1675
1675
|
publishConfig: {
|
|
1676
1676
|
access: "public",
|
|
1677
1677
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1716,7 +1716,7 @@ var require_package = __commonJS({
|
|
|
1716
1716
|
"./dist/openclaw-plugin.cjs"
|
|
1717
1717
|
],
|
|
1718
1718
|
bin: {
|
|
1719
|
-
"guard-scanner": "
|
|
1719
|
+
"guard-scanner": "guard-scanner"
|
|
1720
1720
|
},
|
|
1721
1721
|
scripts: {
|
|
1722
1722
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1762,13 +1762,14 @@ var require_package = __commonJS({
|
|
|
1762
1762
|
},
|
|
1763
1763
|
repository: {
|
|
1764
1764
|
type: "git",
|
|
1765
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1765
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1766
1766
|
},
|
|
1767
1767
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1768
1768
|
files: [
|
|
1769
1769
|
"dist/",
|
|
1770
1770
|
"hooks/",
|
|
1771
1771
|
"docs/",
|
|
1772
|
+
"guard-scanner",
|
|
1772
1773
|
"openclaw-plugin.mts",
|
|
1773
1774
|
"openclaw.plugin.json",
|
|
1774
1775
|
"SKILL.md",
|
|
@@ -4337,8 +4338,8 @@ var require_ci_reporter = __commonJS({
|
|
|
4337
4338
|
var require_capabilities = __commonJS({
|
|
4338
4339
|
"docs/spec/capabilities.json"(exports2, module2) {
|
|
4339
4340
|
module2.exports = {
|
|
4340
|
-
package_version: "16.0.
|
|
4341
|
-
plugin_version: "16.0.
|
|
4341
|
+
package_version: "16.0.1",
|
|
4342
|
+
plugin_version: "16.0.1",
|
|
4342
4343
|
static_pattern_count: 358,
|
|
4343
4344
|
threat_category_count: 35,
|
|
4344
4345
|
runtime_check_count: 27,
|
package/dist/cli.mjs
CHANGED
|
@@ -1677,7 +1677,7 @@ var require_package = __commonJS({
|
|
|
1677
1677
|
"package.json"(exports, module) {
|
|
1678
1678
|
module.exports = {
|
|
1679
1679
|
name: "@guava-parity/guard-scanner",
|
|
1680
|
-
version: "16.0.
|
|
1680
|
+
version: "16.0.1",
|
|
1681
1681
|
publishConfig: {
|
|
1682
1682
|
access: "public",
|
|
1683
1683
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1722,7 +1722,7 @@ var require_package = __commonJS({
|
|
|
1722
1722
|
"./dist/openclaw-plugin.cjs"
|
|
1723
1723
|
],
|
|
1724
1724
|
bin: {
|
|
1725
|
-
"guard-scanner": "
|
|
1725
|
+
"guard-scanner": "guard-scanner"
|
|
1726
1726
|
},
|
|
1727
1727
|
scripts: {
|
|
1728
1728
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1768,13 +1768,14 @@ var require_package = __commonJS({
|
|
|
1768
1768
|
},
|
|
1769
1769
|
repository: {
|
|
1770
1770
|
type: "git",
|
|
1771
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1771
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1772
1772
|
},
|
|
1773
1773
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1774
1774
|
files: [
|
|
1775
1775
|
"dist/",
|
|
1776
1776
|
"hooks/",
|
|
1777
1777
|
"docs/",
|
|
1778
|
+
"guard-scanner",
|
|
1778
1779
|
"openclaw-plugin.mts",
|
|
1779
1780
|
"openclaw.plugin.json",
|
|
1780
1781
|
"SKILL.md",
|
|
@@ -4343,8 +4344,8 @@ var require_ci_reporter = __commonJS({
|
|
|
4343
4344
|
var require_capabilities = __commonJS({
|
|
4344
4345
|
"docs/spec/capabilities.json"(exports, module) {
|
|
4345
4346
|
module.exports = {
|
|
4346
|
-
package_version: "16.0.
|
|
4347
|
-
plugin_version: "16.0.
|
|
4347
|
+
package_version: "16.0.1",
|
|
4348
|
+
plugin_version: "16.0.1",
|
|
4348
4349
|
static_pattern_count: 358,
|
|
4349
4350
|
threat_category_count: 35,
|
|
4350
4351
|
runtime_check_count: 27,
|
package/dist/index.cjs
CHANGED
|
@@ -1686,7 +1686,7 @@ var require_package = __commonJS({
|
|
|
1686
1686
|
"package.json"(exports2, module2) {
|
|
1687
1687
|
module2.exports = {
|
|
1688
1688
|
name: "@guava-parity/guard-scanner",
|
|
1689
|
-
version: "16.0.
|
|
1689
|
+
version: "16.0.1",
|
|
1690
1690
|
publishConfig: {
|
|
1691
1691
|
access: "public",
|
|
1692
1692
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1731,7 +1731,7 @@ var require_package = __commonJS({
|
|
|
1731
1731
|
"./dist/openclaw-plugin.cjs"
|
|
1732
1732
|
],
|
|
1733
1733
|
bin: {
|
|
1734
|
-
"guard-scanner": "
|
|
1734
|
+
"guard-scanner": "guard-scanner"
|
|
1735
1735
|
},
|
|
1736
1736
|
scripts: {
|
|
1737
1737
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1777,13 +1777,14 @@ var require_package = __commonJS({
|
|
|
1777
1777
|
},
|
|
1778
1778
|
repository: {
|
|
1779
1779
|
type: "git",
|
|
1780
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1780
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1781
1781
|
},
|
|
1782
1782
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1783
1783
|
files: [
|
|
1784
1784
|
"dist/",
|
|
1785
1785
|
"hooks/",
|
|
1786
1786
|
"docs/",
|
|
1787
|
+
"guard-scanner",
|
|
1787
1788
|
"openclaw-plugin.mts",
|
|
1788
1789
|
"openclaw.plugin.json",
|
|
1789
1790
|
"SKILL.md",
|
|
@@ -3907,8 +3908,8 @@ var require_asset_auditor = __commonJS({
|
|
|
3907
3908
|
var require_capabilities = __commonJS({
|
|
3908
3909
|
"docs/spec/capabilities.json"(exports2, module2) {
|
|
3909
3910
|
module2.exports = {
|
|
3910
|
-
package_version: "16.0.
|
|
3911
|
-
plugin_version: "16.0.
|
|
3911
|
+
package_version: "16.0.1",
|
|
3912
|
+
plugin_version: "16.0.1",
|
|
3912
3913
|
static_pattern_count: 358,
|
|
3913
3914
|
threat_category_count: 35,
|
|
3914
3915
|
runtime_check_count: 27,
|
package/dist/index.mjs
CHANGED
|
@@ -1676,7 +1676,7 @@ var require_package = __commonJS({
|
|
|
1676
1676
|
"package.json"(exports, module) {
|
|
1677
1677
|
module.exports = {
|
|
1678
1678
|
name: "@guava-parity/guard-scanner",
|
|
1679
|
-
version: "16.0.
|
|
1679
|
+
version: "16.0.1",
|
|
1680
1680
|
publishConfig: {
|
|
1681
1681
|
access: "public",
|
|
1682
1682
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1721,7 +1721,7 @@ var require_package = __commonJS({
|
|
|
1721
1721
|
"./dist/openclaw-plugin.cjs"
|
|
1722
1722
|
],
|
|
1723
1723
|
bin: {
|
|
1724
|
-
"guard-scanner": "
|
|
1724
|
+
"guard-scanner": "guard-scanner"
|
|
1725
1725
|
},
|
|
1726
1726
|
scripts: {
|
|
1727
1727
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1767,13 +1767,14 @@ var require_package = __commonJS({
|
|
|
1767
1767
|
},
|
|
1768
1768
|
repository: {
|
|
1769
1769
|
type: "git",
|
|
1770
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1770
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1771
1771
|
},
|
|
1772
1772
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1773
1773
|
files: [
|
|
1774
1774
|
"dist/",
|
|
1775
1775
|
"hooks/",
|
|
1776
1776
|
"docs/",
|
|
1777
|
+
"guard-scanner",
|
|
1777
1778
|
"openclaw-plugin.mts",
|
|
1778
1779
|
"openclaw.plugin.json",
|
|
1779
1780
|
"SKILL.md",
|
|
@@ -3897,8 +3898,8 @@ var require_asset_auditor = __commonJS({
|
|
|
3897
3898
|
var require_capabilities = __commonJS({
|
|
3898
3899
|
"docs/spec/capabilities.json"(exports, module) {
|
|
3899
3900
|
module.exports = {
|
|
3900
|
-
package_version: "16.0.
|
|
3901
|
-
plugin_version: "16.0.
|
|
3901
|
+
package_version: "16.0.1",
|
|
3902
|
+
plugin_version: "16.0.1",
|
|
3902
3903
|
static_pattern_count: 358,
|
|
3903
3904
|
threat_category_count: 35,
|
|
3904
3905
|
runtime_check_count: 27,
|
package/dist/mcp-server.cjs
CHANGED
|
@@ -1671,7 +1671,7 @@ var require_package = __commonJS({
|
|
|
1671
1671
|
"package.json"(exports2, module2) {
|
|
1672
1672
|
module2.exports = {
|
|
1673
1673
|
name: "@guava-parity/guard-scanner",
|
|
1674
|
-
version: "16.0.
|
|
1674
|
+
version: "16.0.1",
|
|
1675
1675
|
publishConfig: {
|
|
1676
1676
|
access: "public",
|
|
1677
1677
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1716,7 +1716,7 @@ var require_package = __commonJS({
|
|
|
1716
1716
|
"./dist/openclaw-plugin.cjs"
|
|
1717
1717
|
],
|
|
1718
1718
|
bin: {
|
|
1719
|
-
"guard-scanner": "
|
|
1719
|
+
"guard-scanner": "guard-scanner"
|
|
1720
1720
|
},
|
|
1721
1721
|
scripts: {
|
|
1722
1722
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1762,13 +1762,14 @@ var require_package = __commonJS({
|
|
|
1762
1762
|
},
|
|
1763
1763
|
repository: {
|
|
1764
1764
|
type: "git",
|
|
1765
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1765
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1766
1766
|
},
|
|
1767
1767
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1768
1768
|
files: [
|
|
1769
1769
|
"dist/",
|
|
1770
1770
|
"hooks/",
|
|
1771
1771
|
"docs/",
|
|
1772
|
+
"guard-scanner",
|
|
1772
1773
|
"openclaw-plugin.mts",
|
|
1773
1774
|
"openclaw.plugin.json",
|
|
1774
1775
|
"SKILL.md",
|
|
@@ -3892,8 +3893,8 @@ var require_asset_auditor = __commonJS({
|
|
|
3892
3893
|
var require_capabilities = __commonJS({
|
|
3893
3894
|
"docs/spec/capabilities.json"(exports2, module2) {
|
|
3894
3895
|
module2.exports = {
|
|
3895
|
-
package_version: "16.0.
|
|
3896
|
-
plugin_version: "16.0.
|
|
3896
|
+
package_version: "16.0.1",
|
|
3897
|
+
plugin_version: "16.0.1",
|
|
3897
3898
|
static_pattern_count: 358,
|
|
3898
3899
|
threat_category_count: 35,
|
|
3899
3900
|
runtime_check_count: 27,
|
package/dist/mcp-server.mjs
CHANGED
|
@@ -1677,7 +1677,7 @@ var require_package = __commonJS({
|
|
|
1677
1677
|
"package.json"(exports, module) {
|
|
1678
1678
|
module.exports = {
|
|
1679
1679
|
name: "@guava-parity/guard-scanner",
|
|
1680
|
-
version: "16.0.
|
|
1680
|
+
version: "16.0.1",
|
|
1681
1681
|
publishConfig: {
|
|
1682
1682
|
access: "public",
|
|
1683
1683
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1722,7 +1722,7 @@ var require_package = __commonJS({
|
|
|
1722
1722
|
"./dist/openclaw-plugin.cjs"
|
|
1723
1723
|
],
|
|
1724
1724
|
bin: {
|
|
1725
|
-
"guard-scanner": "
|
|
1725
|
+
"guard-scanner": "guard-scanner"
|
|
1726
1726
|
},
|
|
1727
1727
|
scripts: {
|
|
1728
1728
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1768,13 +1768,14 @@ var require_package = __commonJS({
|
|
|
1768
1768
|
},
|
|
1769
1769
|
repository: {
|
|
1770
1770
|
type: "git",
|
|
1771
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1771
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1772
1772
|
},
|
|
1773
1773
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1774
1774
|
files: [
|
|
1775
1775
|
"dist/",
|
|
1776
1776
|
"hooks/",
|
|
1777
1777
|
"docs/",
|
|
1778
|
+
"guard-scanner",
|
|
1778
1779
|
"openclaw-plugin.mts",
|
|
1779
1780
|
"openclaw.plugin.json",
|
|
1780
1781
|
"SKILL.md",
|
|
@@ -3898,8 +3899,8 @@ var require_asset_auditor = __commonJS({
|
|
|
3898
3899
|
var require_capabilities = __commonJS({
|
|
3899
3900
|
"docs/spec/capabilities.json"(exports, module) {
|
|
3900
3901
|
module.exports = {
|
|
3901
|
-
package_version: "16.0.
|
|
3902
|
-
plugin_version: "16.0.
|
|
3902
|
+
package_version: "16.0.1",
|
|
3903
|
+
plugin_version: "16.0.1",
|
|
3903
3904
|
static_pattern_count: 358,
|
|
3904
3905
|
threat_category_count: 35,
|
|
3905
3906
|
runtime_check_count: 27,
|
package/dist/openclaw-plugin.cjs
CHANGED
|
@@ -1686,7 +1686,7 @@ var require_package = __commonJS({
|
|
|
1686
1686
|
"package.json"(exports2, module2) {
|
|
1687
1687
|
module2.exports = {
|
|
1688
1688
|
name: "@guava-parity/guard-scanner",
|
|
1689
|
-
version: "16.0.
|
|
1689
|
+
version: "16.0.1",
|
|
1690
1690
|
publishConfig: {
|
|
1691
1691
|
access: "public",
|
|
1692
1692
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1731,7 +1731,7 @@ var require_package = __commonJS({
|
|
|
1731
1731
|
"./dist/openclaw-plugin.cjs"
|
|
1732
1732
|
],
|
|
1733
1733
|
bin: {
|
|
1734
|
-
"guard-scanner": "
|
|
1734
|
+
"guard-scanner": "guard-scanner"
|
|
1735
1735
|
},
|
|
1736
1736
|
scripts: {
|
|
1737
1737
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1777,13 +1777,14 @@ var require_package = __commonJS({
|
|
|
1777
1777
|
},
|
|
1778
1778
|
repository: {
|
|
1779
1779
|
type: "git",
|
|
1780
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1780
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1781
1781
|
},
|
|
1782
1782
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1783
1783
|
files: [
|
|
1784
1784
|
"dist/",
|
|
1785
1785
|
"hooks/",
|
|
1786
1786
|
"docs/",
|
|
1787
|
+
"guard-scanner",
|
|
1787
1788
|
"openclaw-plugin.mts",
|
|
1788
1789
|
"openclaw.plugin.json",
|
|
1789
1790
|
"SKILL.md",
|
|
@@ -3907,8 +3908,8 @@ var require_asset_auditor = __commonJS({
|
|
|
3907
3908
|
var require_capabilities = __commonJS({
|
|
3908
3909
|
"docs/spec/capabilities.json"(exports2, module2) {
|
|
3909
3910
|
module2.exports = {
|
|
3910
|
-
package_version: "16.0.
|
|
3911
|
-
plugin_version: "16.0.
|
|
3911
|
+
package_version: "16.0.1",
|
|
3912
|
+
plugin_version: "16.0.1",
|
|
3912
3913
|
static_pattern_count: 358,
|
|
3913
3914
|
threat_category_count: 35,
|
|
3914
3915
|
runtime_check_count: 27,
|
package/dist/openclaw-plugin.mjs
CHANGED
|
@@ -1681,7 +1681,7 @@ var require_package = __commonJS({
|
|
|
1681
1681
|
"package.json"(exports, module) {
|
|
1682
1682
|
module.exports = {
|
|
1683
1683
|
name: "@guava-parity/guard-scanner",
|
|
1684
|
-
version: "16.0.
|
|
1684
|
+
version: "16.0.1",
|
|
1685
1685
|
publishConfig: {
|
|
1686
1686
|
access: "public",
|
|
1687
1687
|
registry: "https://registry.npmjs.org/"
|
|
@@ -1726,7 +1726,7 @@ var require_package = __commonJS({
|
|
|
1726
1726
|
"./dist/openclaw-plugin.cjs"
|
|
1727
1727
|
],
|
|
1728
1728
|
bin: {
|
|
1729
|
-
"guard-scanner": "
|
|
1729
|
+
"guard-scanner": "guard-scanner"
|
|
1730
1730
|
},
|
|
1731
1731
|
scripts: {
|
|
1732
1732
|
build: "tsup --config tsup.config.ts",
|
|
@@ -1772,13 +1772,14 @@ var require_package = __commonJS({
|
|
|
1772
1772
|
},
|
|
1773
1773
|
repository: {
|
|
1774
1774
|
type: "git",
|
|
1775
|
-
url: "https://github.com/koatora20/guard-scanner.git"
|
|
1775
|
+
url: "git+https://github.com/koatora20/guard-scanner.git"
|
|
1776
1776
|
},
|
|
1777
1777
|
homepage: "https://github.com/koatora20/guard-scanner",
|
|
1778
1778
|
files: [
|
|
1779
1779
|
"dist/",
|
|
1780
1780
|
"hooks/",
|
|
1781
1781
|
"docs/",
|
|
1782
|
+
"guard-scanner",
|
|
1782
1783
|
"openclaw-plugin.mts",
|
|
1783
1784
|
"openclaw.plugin.json",
|
|
1784
1785
|
"SKILL.md",
|
|
@@ -3902,8 +3903,8 @@ var require_asset_auditor = __commonJS({
|
|
|
3902
3903
|
var require_capabilities = __commonJS({
|
|
3903
3904
|
"docs/spec/capabilities.json"(exports, module) {
|
|
3904
3905
|
module.exports = {
|
|
3905
|
-
package_version: "16.0.
|
|
3906
|
-
plugin_version: "16.0.
|
|
3906
|
+
package_version: "16.0.1",
|
|
3907
|
+
plugin_version: "16.0.1",
|
|
3907
3908
|
static_pattern_count: 358,
|
|
3908
3909
|
threat_category_count: 35,
|
|
3909
3910
|
runtime_check_count: 27,
|
package/docs/data/fp-ledger.json
CHANGED
package/guard-scanner
ADDED
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "guard-scanner",
|
|
3
3
|
"name": "guard-scanner",
|
|
4
4
|
"description": "Runtime guard plugin for OpenClaw before_tool_call enforcement with capability-scoped policy rationale.",
|
|
5
|
-
"version": "16.0.
|
|
5
|
+
"version": "16.0.1",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guava-parity/guard-scanner",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"./dist/openclaw-plugin.cjs"
|
|
46
46
|
],
|
|
47
47
|
"bin": {
|
|
48
|
-
"guard-scanner": "
|
|
48
|
+
"guard-scanner": "guard-scanner"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "tsup --config tsup.config.ts",
|
|
@@ -91,13 +91,14 @@
|
|
|
91
91
|
},
|
|
92
92
|
"repository": {
|
|
93
93
|
"type": "git",
|
|
94
|
-
"url": "https://github.com/koatora20/guard-scanner.git"
|
|
94
|
+
"url": "git+https://github.com/koatora20/guard-scanner.git"
|
|
95
95
|
},
|
|
96
96
|
"homepage": "https://github.com/koatora20/guard-scanner",
|
|
97
97
|
"files": [
|
|
98
98
|
"dist/",
|
|
99
99
|
"hooks/",
|
|
100
100
|
"docs/",
|
|
101
|
+
"guard-scanner",
|
|
101
102
|
"openclaw-plugin.mts",
|
|
102
103
|
"openclaw.plugin.json",
|
|
103
104
|
"SKILL.md",
|