Persistent memory and orchestration for Claude Code
Claude remembers what you teach it across sessions. Knowledge, patterns, and observations stored locally.
Specialized personas for Rust, Python, TypeScript, DevOps, Security, and more. Right expert for every task.
Every LLM call scanned for PII and prompt injection. Audit trail in your database. Built in, not bolted on.
Submit tasks, dispatch to AI agents, track completion. Parallel agents work while you sleep.
curl -sSL https://greymatter.axiomworks.ai/install | bash
The installer checks for Claude Code (installs it if missing), downloads GreyMatter, sets up your database, and configures everything. Takes about 2 minutes.
If you have an Anthropic API key:
export ANTHROPIC_API_KEY=your-key-here
If you have a Claude Pro or Team subscription, start Claude and type:
/login
cd your-project-directory claude
Claude starts with GreyMatter's 17 tools loaded automatically. Type /mcp to see them.
Ollama enables vector/semantic search — finding conceptually related knowledge even when exact words don't match. GreyMatter works without it (keyword search only).
# Install Ollama curl -fsSL https://ollama.com/install.sh | sh # Start the server ollama serve # Pull the models GreyMatter uses ollama pull nemotron-3-nano # reasoning ollama pull nomic-embed-text # embeddings for search
Everything lives in ~/.greymatter/greymatter.db — a single SQLite database on your machine. Nothing is sent to any server. Back this file up; it's your knowledge graph.
Built into every installation. Every LLM call is scanned for:
PII: Social security numbers, credit cards, API keys, credentials, phone numbers, private keys
Prompt Injection: Instruction override, system prompt extraction, role hijacking, delimiter attacks
Actions: allow (clean), redact (mask PII), block (reject injection). Full audit trail in your database.
GreyMatter comes with agent personas — specialists that give Claude deep context for specific domains. Add your own by creating .md files in ~/.greymatter/soul/experts/.
Solo works standalone. When you're ready for multi-machine collaboration, toggle on Teams mode to sync work items and knowledge across nodes. Your personal observations stay private — always.