The integration, memory, and context layer your AI agents are missing. Bi-directional data sync with 100+ sources. Long-term and short-term memory. Shared context across teams. One secure hub for everything your agents need to know.
Every session starts from zero. Every prompt re-explains everything. Sound familiar?
Models have no memory across sessions. Same clarifications, same architecture, same decisions โ every single time.
As token count grows, recall drops. Important early context gets pushed out, forgotten, or hallucinated away.
Manually pasting project docs, meeting notes, and requirements into every prompt. Tedious and error-prone.
What one agent learns stays locked in that session. Other agents on your team can't access it.
API keys and credentials end up raw in conversation history. No encryption, no masking, no access control.
Agents can't pull from your tools โ Google Drive, Slack, CRMs, databases. They only know what you tell them.
Vault organizes agent intelligence into three layers โ each serving a different purpose, all working together.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Tier 1: Session State โ
โ Redis/MySQL checkpoints โ crash recovery, workflow state โ
โ Automatic context window management + auto-summarization โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Tier 2: Working Memory (Surface Memory) โ
โ Personal scratchpad per agent โ facts, insights, preferences โ
โ Deduplication (>80% similarity = update, not duplicate) โ
โ ChromaDB semantic search + keyword fallback โ
โ Secret masking with {{secret:KEY}} placeholders โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Tier 3: Knowledge Base (Bloqs + Pinecone) โ
โ Permanent, shared, RAG-indexed documents โ
โ PDF/CSV/TXT auto-extraction and vectorization โ
โ Cross-agent knowledge sharing โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Unlike file-based tools (fcontext, Context Layer) or standalone memory servers (Mem0), Vault is fully integrated โ memory, secrets, integrations, and RAG search in one platform. No glue code, no separate services to manage.
Persistent memory, bi-directional integrations, encrypted secrets, and semantic search โ all from your terminal.
Agents remember past conversations, decisions, and outcomes across sessions. Facts, insights, context, and preferences โ automatically deduplicated and importance-ranked.
Active task context, in-progress data, and session state โ available instantly without re-prompting. Auto-summarization when context windows fill up.
Pull data from Google Drive, Dropbox, Notion, Slack, CRMs โ and push results back. True two-way integration with 100+ sources.
Teams of agents share context. What one agent learns, others can access. Cross-agent knowledge graphs and relationship memories.
Upload PDFs, contracts, research, and specs. Vault extracts, vectorizes, and indexes them โ agents search your documents semantically without you pasting a single line.
Semantic search via ChromaDB + Pinecone. Agents find relevant context automatically โ 5-strategy retrieval cascade with keyword and vector fallback. Never re-process the same doc twice.
AES-256 encrypted secrets with {{secret:KEY}} placeholders. Resolved at runtime, masked in logs. Agent-scoped or global. Values never exposed in API responses.
From zero to persistent memory in under 60 seconds.
One command: curl -fsSL https://heyiris.io/install-iris.sh | bash โ or composer require iris-ai/sdk. Works on Mac, Linux, and Windows.
iris sdk:call memory.store agent_id=11 type=fact content="Client prefers morning meetings" topic=scheduling importance=8
iris sdk:call memory.search agent_id=11 query="meeting preferences" โ keyword search with ChromaDB semantic fallback, 5-strategy retrieval cascade.
Memory compounds over time. Every conversation, every workflow, every decision is stored. Your agents stop repeating and start learning.
Most memory tools store flat text strings. Vault stores structured entity relationships โ your agents don't just remember facts, they understand your business graph.
Lead: John Doe (#412)
โโโ Status: Negotiation
โโโ Notes: "Prefers aggressive outreach on Instagram"
โโโ Tasks
โ โโโ โ Scraped 30 competitor profiles
โ โโโ โป Send proposal PDF (due Friday)
โ โโโ โป Schedule demo call
โโโ Deliverables
โ โโโ website_design.fig (sent)
โ โโโ brand_guide.pdf (pending)
โโโ Invoices
โ โโโ #1042 โ $2,400 (paid)
โ โโโ #1089 โ $4,800 (unpaid)
โโโ Outreach Steps
โ โโโ Step 1: Initial email (completed)
โ โโโ Step 2: Follow-up DM (completed)
โ โโโ Step 3: Phone call (pending)
โโโ Working Memory
โโโ [fact] Budget is $50k/quarter
โโโ [insight] Opens emails Tuesdays 9am
โโโ [preference] Formal tone in proposals
When your sales agent wakes up, it doesn't search for keywords in a text file. One namespace for everything โ unstructured memories AND structured CRM entities:
# Unstructured working memory
iris sdk:call memory.search agent_id=11 query="John Doe preferences"
iris sdk:call memory.store agent_id=11 type=fact content="Budget is \$50k"
# Structured entities โ same memory.* namespace
iris sdk:call memory.entities agent_id=11 # All leads
iris sdk:call memory.entities agent_id=11 type=tasks # All tasks
iris sdk:call memory.entities agent_id=11 lead_id=412 # One lead's data
iris sdk:call memory.graph agent_id=11 # Full relationship map
The result: Your agent knows John's invoice is unpaid, his proposal is due Friday, and he prefers formal tone โ without you pasting a single thing into the prompt.
Whether you're building agents, automating workflows, or managing teams of AI assistants โ Vault is your context infrastructure.
Building with Claude Code, Cursor, or OpenCode daily. You need agents that remember decisions and don't re-ask the same questions.
Running multi-step workflows that span days. Heartbeat agents, scheduled jobs, and autonomous loops need persistent state.
Multiple agents serving multiple clients. Shared memory means one agent's insight benefits the whole team instantly.
Integrating CRMs, email, drive, and 100+ tools into agent workflows. Vault pulls from your stack and pushes results back.
fcontext, Context Layer, CLAUDE.md
Memory + Integrations + Secrets + RAG
Vault speaks MCP โ the protocol Claude, Cursor, and Cline use natively. Install once, context is everywhere.
# Install the Vault MCP context skill
iris marketplace install vault-context
# Or connect directly in your tool's MCP settings
# Server: https://heyiris.io/mcp/vault
# Auth: your IRIS API key
Once connected:
No glue code. No re-uploading. Upload once โ every tool uses it.
Vault doesn't lock you in. It speaks the protocols your stack already uses.
Model Context Protocol โ the standard for Claude, Cursor, Cline, and the next generation of AI tooling. Install the skill and your context is live.
Google Agent-to-Agent discovery via /.well-known/agent.json. Your agents are discoverable and composable by other AI systems.
Full programmatic access. Store, search, and retrieve context from any language, any stack. No SDK required.
Publish and install reusable agent capabilities. Memory management ships as a free skill โ one command to install.
Unlimited agents ยท Unlimited users ยท No subscription required
3,000 free credits to get started โ no credit card required
| Action | Credits |
|---|---|
| AI chat & agent response | 1 credit |
| Workflow step | 1 credit |
| Web search | 1 credit |
| Memory store & search | 1 credit |
| Document ingestion (per MB) | 5 credits |
| Lead enrichment | 50 credits |
| Image generation | 10 credits |
Need more? The Popular package gives you 11,500 credits for $100 โ that's a 15% bonus on top.