@drakon-systems/shieldcortex-realtime 4.7.7 → 4.8.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "shieldcortex-realtime",
3
- "version": "4.7.7",
3
+ "version": "4.8.0",
4
4
  "name": "ShieldCortex Real-time Scanner",
5
5
  "description": "Real-time defence scanning on LLM input, memory extraction on LLM output, and active tool call interception with approval gating.",
6
6
  "uiHints": {
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "configSchema": {
61
61
  "type": "object",
62
- "additionalProperties": true,
62
+ "additionalProperties": false,
63
63
  "properties": {
64
64
  "enabled": {
65
65
  "type": "boolean"
@@ -95,6 +95,7 @@
95
95
  "enabled": { "type": "boolean", "default": true },
96
96
  "severityActions": {
97
97
  "type": "object",
98
+ "additionalProperties": false,
98
99
  "properties": {
99
100
  "low": { "type": "string", "enum": ["log", "warn", "require_approval"], "default": "log" },
100
101
  "medium": { "type": "string", "enum": ["log", "warn", "require_approval"], "default": "warn" },
@@ -104,6 +105,7 @@
104
105
  },
105
106
  "failurePolicy": {
106
107
  "type": "object",
108
+ "additionalProperties": false,
107
109
  "properties": {
108
110
  "low": { "type": "string", "enum": ["allow", "deny"], "default": "allow" },
109
111
  "medium": { "type": "string", "enum": ["allow", "deny"], "default": "allow" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drakon-systems/shieldcortex-realtime",
3
- "version": "4.7.7",
3
+ "version": "4.8.0",
4
4
  "description": "OpenClaw plugin for ShieldCortex real-time defence scanning and optional memory extraction.",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -26,6 +26,9 @@
26
26
  "peerDependencies": {
27
27
  "shieldcortex": "^4.6.0"
28
28
  },
29
+ "engines": {
30
+ "node": ">=18.0.0"
31
+ },
29
32
  "publishConfig": {
30
33
  "access": "public"
31
34
  },