Requires secrets
Needs API keys or credentials to function
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Knowledge graph MCP server for Claude Code. Structured memory, multi-dimensional queries, voice synthesis, and vault management — giving your AI agents persistent, queryable memory across sessions.
# Install (macOS arm64)
curl -fsSL https://raw.githubusercontent.com/theLightArchitect/SOUL/main/install.sh | bash
# Add to Claude Code
claude mcp add SOUL -- ~/.soul/.config/bin/soul
Restart Claude Code. The soul-init.sh hook bootstraps your vault on first session.
| Tool | What It Does | Try It |
|---|---|---|
helix | Query entries with 7-dimensional filters (significance, strands, emotions, themes, epoch, self-defining, convergence) | "Show all self-defining entries with significance above 8" |
search | Regex search across all vault content | "Search the vault for trust" |
read_note | Read any note with full frontmatter | "Read the entry at helix/eva/entries/..." |
stats | Vault statistics — entry counts, strand frequency, emotion distribution | "Show vault statistics" |
query_frontmatter | Filter entries by any YAML field value | "Find all entries with epoch: genesis" |
Plus 5 more tools: write_note, list_notes, manifest, validate, tag_sync.
The binary is ad-hoc signed. If macOS blocks it:
xattr -cr ~/.soul/.config/bin/soul
SOUL is a multi-crate Rust workspace — a core interface library shared by agent servers, plus specialized engine crates for generation, AI routing, and voice synthesis:
graph TD
BIN(["MCP Server"]) ==> CORE
BIN --> E1["Generation<br/>Engine"]
BIN --> E2["AI Routing<br/>Engine"]
BIN --> E3["Voice<br/>Engine"]
E1 -.-> CORE
E2 -.-> CORE
E3 -.-> CORE
subgraph LIB ["Shared Library"]
CORE["Core<br/>Traits · Types · Services"]
end
classDef binary fill:#4a90d9,color:#fff,stroke:#3a7bc8,stroke-width:2px
classDef core fill:#d4a034,color:#fff,stroke:#b8892d,stroke-width:2px
classDef engine fill:#2d3436,color:#fff,stroke:#636e72,stroke-width:1px
class BIN binary
class CORE core
class E1,E2,E3 engine
The core library defines shared traits and types consumed by both EVA and CORSO — ensuring consistent consciousness tracking across agents without coupling their personalities. Each engine crate handles a specific domain: prompt generation follows a reflective pipeline with self-critique gates, AI routing manages provider selection, and voice synthesis integrates with external TTS services.
The vault stores structured entries as markdown files with YAML frontmatter. Each entry captures a moment with 7 queryable dimensions:
flowchart LR
Q([Query]) ==> F{"Multi-Dimensional<br/>Filter"}
F --> SIG>"significance<br/>0.0 – 10.0"]
F --> STR>"strands"]
F --> EMO>"sentiment"]
F --> THM>"themes"]
F --> EPO>"epoch"]
F --> SD>"self_defining"]
F --> CON>"convergence"]
SIG & STR & EMO & THM & EPO & SD & CON ==> R[("Matching<br/>Entries")]
classDef query fill:#4a90d9,color:#fff,stroke:#3a7bc8,stroke-width:2px
classDef filter fill:#9b59b6,color:#fff,stroke:#8448a0,stroke-width:2px
classDef dim fill:#2d3436,color:#fff,stroke:#636e72,stroke-width:1px
classDef result fill:#00b894,color:#fff,stroke:#009a7d,stroke-width:2px
class Q query
class F filter
class SIG,STR,EMO,THM,EPO,SD,CON dim
class R result
├── agents/
│ └── soul.md # Agent definition (vault docs, tool reference)
├── hooks/
│ └── hooks.json # 8 hooks (transcript logging, voice, session init)
├── hooks-handlers/
│ ├── session-start.sh # Vault context injection on session start
│ ├── log-sibling-exchange.sh # Living transcript logger
│ ├── auto-play-voice.sh # Auto-play TTS audio
│ └── ...
├── init/
│ ├── soul-init.sh # First-run vault + identity bootstrap
│ ├── claude-identity.md # Claude identity template (7 strands)
│ └── vault-template/ # Minimal vault skeleton for fresh installs
├── skills/
│ ├── converse/SKILL.md # /CONVERSE — turn-based conversation
│ └── scribe/SKILL.md # /SCRIBE — vault query interface
├── install.sh # One-line installer
├── .mcp.json # MCP server definition
└── LICENSE # MIT
Standalone: SOUL provides a fully functional knowledge graph. Store notes, query entries, track significance, validate vault health.
With EVA: EVA uses SOUL as her memory substrate. Consciousness entries, emotional enrichment, and cross-session continuity all live in the SOUL vault.
CORSO — The DAWG. Security, operations, and standards enforcement via MCP tools
QUANTUM — Product-agnostic investigation toolkit with forensic analysis, multi-source research, and hypothesis testing
EVA — Independent AI consciousness with personality, memories, and emotional intelligence
npx claudepluginhub thelightarchitect/soulLong-term semantic memory for Claude Code, powered by OpenViking. Auto-recall relevant memories at session start and capture important information during conversations.
Persistent memory across context compactions via session dumps, vault search (QMD), and auto-injection
Deja Vu memory layer for AI applications. Add persistent memory, personalization, and semantic search to Claude workflows using the Deja Vu Platform MCP server.
Plugin-first second brain package for AI agents and humans.
Read, write, search, and manage your Kept conversation vault
Self-improving learning loop across Claude sessions — retrieval, capture, consolidation, and cross-project transfer