# Send Shieldcortex Skill to your agent
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
## Fast path
- Open the source page via Open source listing.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "shieldcortex-skill",
    "name": "Shieldcortex Skill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/jarvis-drakon/shieldcortex-skill",
    "canonicalUrl": "https://clawhub.ai/jarvis-drakon/shieldcortex-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/shieldcortex-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shieldcortex-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "shieldcortex-skill",
      "status": "source_issue",
      "reason": "not_found",
      "recommendedAction": "review_source",
      "checkedAt": "2026-05-03T16:34:13.362Z",
      "expiresAt": "2026-05-04T16:34:13.362Z",
      "httpStatus": 404,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shieldcortex-skill",
      "contentType": "text/plain",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shieldcortex-skill",
        "contentDisposition": null,
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "shieldcortex-skill"
      },
      "scope": "item",
      "summary": "Known item issue.",
      "detail": "This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.",
      "primaryActionLabel": "Open source listing",
      "primaryActionHref": "https://clawhub.ai/jarvis-drakon/shieldcortex-skill"
    },
    "validation": {
      "installChecklist": [
        "Open the source listing and confirm there is a real package or setup artifact available.",
        "Review SKILL.md before asking your agent to continue.",
        "Treat this source as manual setup until the upstream download flow is fixed."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/shieldcortex-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/shieldcortex-skill",
    "agentUrl": "https://openagent3.xyz/skills/shieldcortex-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/shieldcortex-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/shieldcortex-skill/agent.md"
  }
}
```
## Documentation

### ShieldCortex — Persistent Memory & Security for AI Agents

Give your AI agent a brain that persists between sessions — and protect it from memory poisoning attacks.

### Description

ShieldCortex is a complete memory system with built-in security. It gives AI agents persistent, intelligent memory with semantic search, knowledge graphs, decay-based forgetting, and contradiction detection. Every memory write passes through a 6-layer defence pipeline that blocks prompt injection, credential leaks, and poisoning attacks.

Use when:

You want your agent to remember things between sessions (decisions, preferences, architecture, context)
You need semantic search across past memories (not just keyword matching)
You want automatic memory consolidation, decay, and cleanup
You want knowledge graph extraction from memories (entities, relationships)
You need to protect memory from prompt injection or poisoning attacks
You want credential leak detection in memory writes
You want to audit what's been stored in and retrieved from memory
You want to scan agent instruction files (SKILL.md, .cursorrules, CLAUDE.md) for hidden threats

Do NOT use when:

You only need simple key-value storage (use a config file)
You want ephemeral session-only context (use the agent's built-in context window)
You need a vector database for RAG pipelines (ShieldCortex is agent memory, not document retrieval)

### Prerequisites

Node.js >= 18
npm or pnpm

### Install

npm install -g shieldcortex

For OpenClaw integration (installs the cortex-memory hook):

shieldcortex openclaw install

For Claude Code / VS Code / Cursor MCP integration:

shieldcortex install

### As an OpenClaw hook (automatic)

After shieldcortex openclaw install, the hook activates on next restart:

Auto-saves important session context on compaction
Injects relevant past memories on session start
"remember this: ..." keyword trigger saves memories inline

### CLI Commands

# Check status
shieldcortex status

# Scan content for threats
shieldcortex scan "some text to check"

# Full security audit of your agent environment
shieldcortex audit

# Scan all installed skills/instruction files for hidden threats
shieldcortex scan-skills

# Scan a single skill file
shieldcortex scan-skill ./path/to/SKILL.md

# Build knowledge graph from existing memories
shieldcortex graph backfill

# Start the visual dashboard
shieldcortex --dashboard

### As a Library (programmatic)

import {
  addMemory,
  getMemoryById,
  runDefencePipeline,
  scanSkill,
  extractFromMemory,
  consolidate,
  initDatabase
} from 'shieldcortex';

// Initialize
initDatabase('/path/to/memories.db');

// Add a memory (automatically passes through defence pipeline)
addMemory({
  title: 'API uses OAuth2',
  content: 'The payment API requires OAuth2 bearer tokens, not API keys',
  category: 'architecture',
  importance: 'high',
  project: 'my-project'
});

// Scan content before processing
const result = runDefencePipeline(untrustedContent, 'Email Import', {
  type: 'external',
  identifier: 'email-scanner'
});

if (result.allowed) {
  // Safe to process
}

// Extract knowledge graph entities
const { entities, triples } = extractFromMemory(
  'Database Migration',
  'We switched from MySQL to PostgreSQL for the auth service',
  'architecture'
);
// entities: [{name: 'MySQL', type: 'service'}, {name: 'PostgreSQL', type: 'service'}, ...]
// triples: [{subject: 'auth service', predicate: 'uses', object: 'PostgreSQL'}, ...]

### Memory System Features

FeatureDescriptionPersistent StorageSQLite-backed, survives restarts and compactionSemantic SearchFind memories by meaning, not just keywordsProject ScopingIsolate memories per project/workspaceImportance LevelsCritical, high, normal, low with auto-decayCategoriesArchitecture, decisions, preferences, context, learnings, errorsDecay & ForgettingOld, unaccessed memories fade — like a real brainConsolidationAutomatic merging of similar/duplicate memoriesContradiction DetectionFlags when new memories conflict with existing onesKnowledge GraphExtracts entities and relationships from memoriesActivation ScoringRecently accessed memories get retrieval prioritySalience ScoringImportant memories surface first in search

### Security Features

LayerProtectionInput SanitisationStrip control characters, null bytes, dangerous formattingPattern DetectionRegex matching for known injection patternsAnomaly ScoringEntropy analysis, behavioural deviation detectionCredential Leak DetectionBlocks API keys, tokens, private keys (25+ patterns, 11 providers)Trust ScoringSource-based reliability scoring for memory writesAudit TrailFull forensic log of every memory operationSkill ScannerDetect prompt injection in SKILL.md, .cursorrules, CLAUDE.md

### ShieldCortex Cloud (Optional)

Sync audit data to a team dashboard for cross-project visibility:

shieldcortex config set-api-key <your-key>

Free local package is unlimited. Cloud adds team dashboards, audit aggregation, and alerts.

### Links

npm: https://www.npmjs.com/package/shieldcortex
GitHub: https://github.com/Drakon-Systems-Ltd/ShieldCortex
Website: https://shieldcortex.ai
Docs: https://github.com/Drakon-Systems-Ltd/ShieldCortex#readme

### 70 Exported APIs

The library exports 70 named functions and types covering defence, memory, knowledge graph, skill scanning, and audit. Full list in the CHANGELOG.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jarvis-drakon
- Version: 2.10.5
## Source health
- Status: source_issue
- Known item issue.
- This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
- Health scope: item
- Reason: not_found
- Checked at: 2026-05-03T16:34:13.362Z
- Expires at: 2026-05-04T16:34:13.362Z
- Recommended action: Open source listing
## Links
- [Detail page](https://openagent3.xyz/skills/shieldcortex-skill)
- [Send to Agent page](https://openagent3.xyz/skills/shieldcortex-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/shieldcortex-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/shieldcortex-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/shieldcortex-skill)