Get Started in Three Commands
From zero to persistent memory in under a minute.
The Memory Layer
Claude Code forgets. SHIVA remembers.
Cross-project. Cross-session. Cross-device.
From zero to persistent memory in under a minute.
Your sessions are temporary.
Your knowledge should be eternal.
What is SHIVA?
Not another tool. A memory layer that sits between you and Claude, ensuring your context, preferences, and project knowledge persist forever.
Built because re-explaining your project to AI every session is broken.
Transparent architecture. No magic, just smart engineering.
Automatically writes relevant memories to CLAUDE.md. Claude reads these at every session start.
Local JSON files you can read, edit, and version control. Human-readable, git-friendly format.
Encrypted cloud sync for cross-device access. Opt-in only. Your data stays local by default.
Six types of memory that make Claude truly understand your projects.
Project-specific guidelines and coding standards Claude should follow.
Your personal coding style, naming conventions, and preferred patterns.
Project architecture, tech stack, file structure, and important context.
Technical limitations, compatibility requirements, and things to avoid.
Past architectural choices and the reasoning behind them.
Current work state, recent changes, and ongoing development focus.
See what persistent memory actually looks like.
SHIVA transforms how Claude remembers.
Persistent memory across all sessions. Your preferences, decisions, and context - never lost again.
Cross-project awareness. Claude knows what happened in Project A when working on Project B.
100% local storage. No cloud dependency, no telemetry. Your knowledge stays on your machine.
See what persistent memory actually means for your workflow.
| Feature | Claude Standard | Claude + SHIVA |
|---|---|---|
| Remembers Your Coding Preferences | β Every session starts fresh | β Persistent across all sessions |
| Project Context | β Manual explanation required | β Automatically injected |
| Team Knowledge Sharing | β Not possible | β Shared memory pools |
| Reproducibility | β Varies between sessions | β Deterministic responses |
| Audit Trail | β No history | β Complete memory log |
| Cross-Project Awareness | β Isolated per session | β Knowledge transfer enabled |
Understanding the fundamental difference.
Privacy-first architecture. No compromises.
All data encrypted at rest with AES-256. Cloud sync uses TLS 1.3 with perfect forward secrecy.
We can't read your memories. Encryption keys never leave your device. Not even we can decrypt your data.
SOC 2 Type II compatible. GDPR compliant. Full data export and deletion capabilities on demand.
Next external security audit planned for Q2 2026 with a leading security firm. All findings will be publicly disclosed.
Your memories stay on your machine. No cloud sync unless you explicitly enable it.
No analytics. No tracking. No data collection. We don't know what you're building.
Plain JSON you can read, edit, and version control. No proprietary formats.
Full source code available. Audit it. Fork it. Trust but verify.
Three steps to eternal knowledge.
npm install -g shiva-code Install SHIVA globally. One command. Done.
shiva init SHIVA scans your projects and integrates automatically into Claude Code.
claude Claude never forgets again. Persistent memory activated. Cross-project awareness enabled.
Technical transparency. No black boxes.
Every memory is a typed, structured object with full provenance.
{
"id": "mem_a7x9k2",
"type": "preference",
"content": "User prefers TypeScript over JavaScript",
"confidence": 0.92,
"source": "explicit",
"created": "2026-01-15T10:30:00Z",
"last_used": "2026-01-18T14:22:00Z",
"usage_count": 47,
"tags": ["coding", "language-preference"],
"project_scope": "proj_frontend"
} When memories conflict, SHIVA applies deterministic resolution rules.
User-stated preferences always override inferred behaviors.
More recent memories take precedence over older ones.
Memories with higher confidence scores win ties.
Usage count breaks remaining ties.
How SHIVA enriches every prompt with relevant memory.
Full transparency into what SHIVA injects.
SHIVA manages your projects and syncs memories.
shiva sync Store project-specific memories for consistent context.
shiva search Search and manage memories across all projects.
.shiva/ Version-controllable config folder. Share project memories with your team via Git.
βββββββββββββββββββββββββββββββββββββββββββ
β YOUR PROMPT β
ββββββββββββββββββ¬βββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββ
β SHIVA MEMORY LAYER β
β βββββββββββ βββββββββββ βββββββββββββ β
β β Retrieveβ β Rank β β Write β β
β βββββββββββ βββββββββββ βββββββββββββ β
ββββββββββββββββββ¬βββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββ
β CLAUDE.md β CLAUDE CODE β
βββββββββββββββββββββββββββββββββββββββββββ
Build custom integrations with the SHIVA SDK.
Coming Soonimport { Shiva } from '@anthropic-memory/sdk';
const shiva = new Shiva({ projectId: 'proj_xyz' });
const response = await shiva.chat({
model: 'claude-opus-4-5',
message: 'Refactor the auth module',
memoryScope: ['project', 'user']
});
// Access injected memories
console.log(response.injectedMemories);
// β ['Uses JWT', 'TypeScript preferred', ...] Shared context for collaborative development.
Team memories are synced via Git or SHIVA Cloud. Personal preferences stay local.
The philosophy behind persistent AI memory.
Context is the foundation of intelligent AI interaction. Without memory, every conversation starts at zero.
Full transparency into what's stored, what's injected, and why. You control your AI's knowledge.
Encryption and local-first as the default. Your memories are yours. Period.
No vendor lock-in. Export your data anytime in standard formats. Your knowledge belongs to you.
The journey to universal AI memory.
Full integration with Claude Code CLI. The foundation.
Shared memory pools for teams working on the same projects.
Extend persistent memory to GPT-4, Gemini, and more.
Full programmatic access for custom integrations.
CLI is free. Cloud features for teams and power users.