shieldcortex 2.11.6 → 2.12.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 +1 -1
- package/dashboard/.next/standalone/dashboard/.next/BUILD_ID +1 -1
- package/dashboard/.next/standalone/dashboard/.next/build-manifest.json +2 -2
- package/dashboard/.next/standalone/dashboard/.next/prerender-manifest.json +3 -3
- package/dashboard/.next/standalone/dashboard/.next/server/app/_global-error.html +2 -2
- package/dashboard/.next/standalone/dashboard/.next/server/app/_global-error.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.html +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/index.html +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/index.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/index.segments/_full.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/index.segments/_head.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/index.segments/_index.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/app/index.segments/_tree.segment.rsc +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/pages/404.html +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/pages/500.html +2 -2
- package/dashboard/.next/standalone/dashboard/.next/server/server-reference-manifest.js +1 -1
- package/dashboard/.next/standalone/dashboard/.next/server/server-reference-manifest.json +1 -1
- package/dist/database/init.d.ts +6 -0
- package/dist/database/init.d.ts.map +1 -1
- package/dist/database/init.js +8 -0
- package/dist/database/init.js.map +1 -1
- package/dist/defence/audit/logger.d.ts.map +1 -1
- package/dist/defence/audit/logger.js +3 -1
- package/dist/defence/audit/logger.js.map +1 -1
- package/dist/setup/openclaw.d.ts +3 -2
- package/dist/setup/openclaw.d.ts.map +1 -1
- package/dist/setup/openclaw.js +115 -3
- package/dist/setup/openclaw.js.map +1 -1
- package/package.json +1 -1
- package/plugins/openclaw/README.md +6 -18
- /package/dashboard/.next/standalone/dashboard/.next/static/{kmq_pJUt6lKEkpgWVkQgH → GvViLGCPDkS_moMbEM5aS}/_buildManifest.js +0 -0
- /package/dashboard/.next/standalone/dashboard/.next/static/{kmq_pJUt6lKEkpgWVkQgH → GvViLGCPDkS_moMbEM5aS}/_clientMiddlewareManifest.json +0 -0
- /package/dashboard/.next/standalone/dashboard/.next/static/{kmq_pJUt6lKEkpgWVkQgH → GvViLGCPDkS_moMbEM5aS}/_ssgManifest.js +0 -0
|
@@ -19,32 +19,20 @@ npx shieldcortex openclaw install
|
|
|
19
19
|
openclaw gateway restart
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
The plugin is
|
|
22
|
+
The plugin is copied to `~/.openclaw/extensions/shieldcortex-realtime/` where OpenClaw discovers it automatically.
|
|
23
23
|
|
|
24
24
|
### Manual
|
|
25
25
|
|
|
26
|
-
If you need to
|
|
27
|
-
|
|
28
|
-
```json
|
|
29
|
-
{
|
|
30
|
-
"plugins": {
|
|
31
|
-
"entries": {
|
|
32
|
-
"shieldcortex-realtime": {
|
|
33
|
-
"source": "/path/to/node_modules/shieldcortex/plugins/openclaw/index.ts"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
The `source` must be an absolute path. Find it with `npm root -g` (global) or `npm root` (local).
|
|
41
|
-
|
|
42
|
-
Then restart the gateway:
|
|
26
|
+
If you need to install manually, copy the compiled plugin files:
|
|
43
27
|
|
|
44
28
|
```bash
|
|
29
|
+
mkdir -p ~/.openclaw/extensions/shieldcortex-realtime
|
|
30
|
+
cp node_modules/shieldcortex/plugins/openclaw/dist/* ~/.openclaw/extensions/shieldcortex-realtime/
|
|
45
31
|
openclaw gateway restart
|
|
46
32
|
```
|
|
47
33
|
|
|
34
|
+
Find the package root with `npm root -g` (global) or `npm root` (local).
|
|
35
|
+
|
|
48
36
|
## Requirements
|
|
49
37
|
|
|
50
38
|
- OpenClaw v2026.2.15+ (needs `llm_input`/`llm_output` plugin hooks)
|
|
File without changes
|
|
File without changes
|