@drakon-systems/shieldcortex-realtime 4.47.40 → 4.48.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.
- package/dist/index.js +4 -0
- package/dist/openclaw.plugin.json +1 -1
- package/index.ts +4 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1936,6 +1936,10 @@ export async function scanLlmInput(event, _ctx) {
|
|
|
1936
1936
|
model: event.model, reason: result.summary,
|
|
1937
1937
|
chars: text.length,
|
|
1938
1938
|
contentSha256: createHash('sha256').update(text).digest('hex').slice(0, 16),
|
|
1939
|
+
// Whether this detection tainted the session (threat-graph Phase D:
|
|
1940
|
+
// lets the threat graph attribute taint-raising events). Metadata
|
|
1941
|
+
// only — no content, same as the fields above.
|
|
1942
|
+
tainted: trust.mayTaint,
|
|
1939
1943
|
ts: new Date().toISOString(),
|
|
1940
1944
|
};
|
|
1941
1945
|
await auditLog(entry);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "shieldcortex-realtime",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.48.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
|
"kind": null,
|
package/index.ts
CHANGED
|
@@ -2319,6 +2319,10 @@ export async function scanLlmInput(event: LlmInputEvent, _ctx: AgentCtx): Promis
|
|
|
2319
2319
|
model: event.model, reason: result.summary,
|
|
2320
2320
|
chars: text.length,
|
|
2321
2321
|
contentSha256: createHash('sha256').update(text).digest('hex').slice(0, 16),
|
|
2322
|
+
// Whether this detection tainted the session (threat-graph Phase D:
|
|
2323
|
+
// lets the threat graph attribute taint-raising events). Metadata
|
|
2324
|
+
// only — no content, same as the fields above.
|
|
2325
|
+
tainted: trust.mayTaint,
|
|
2322
2326
|
ts: new Date().toISOString(),
|
|
2323
2327
|
};
|
|
2324
2328
|
await auditLog(entry);
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "shieldcortex-realtime",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.48.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
|
"kind": null,
|
package/package.json
CHANGED