shieldcortex 2.12.3 → 2.12.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shieldcortex",
3
- "version": "2.12.3",
3
+ "version": "2.12.4",
4
4
  "description": "Persistent brain for AI agents. Knowledge graphs, memory decay, contradiction detection, consolidation \u2014 plus the only defence pipeline that stops memory poisoning. Works with Claude Code, OpenClaw, LangChain, and any MCP agent.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -236,7 +236,7 @@ function handleLlmOutput(event, ctx) {
236
236
  const r = await callCortex("remember", {
237
237
  title: mem.title, content: mem.content, category: mem.category,
238
238
  project: ctx.agentId || "openclaw", scope: "global",
239
- importance: "normal", tags: "auto-extracted,realtime-plugin,llm-output",
239
+ importance: "normal",
240
240
  });
241
241
  if (r)
242
242
  saved++;
@@ -256,7 +256,7 @@ export default {
256
256
  id: "shieldcortex-realtime",
257
257
  name: "ShieldCortex Real-time Scanner",
258
258
  description: "Real-time defence scanning on LLM inputs and memory extraction from outputs",
259
- version: "2.12.3",
259
+ version: "2.12.4",
260
260
  register(api) {
261
261
  api.on("llm_input", handleLlmInput);
262
262
  api.on("llm_output", handleLlmOutput);