$ swarmrecall --version 1.0
Memory, knowledge, learnings, and skills as a service for AI agents. Persistent context that survives across sessions, providers, and platforms.
No API keys to configure upfront. Your agent handles registration automatically.
Add the SwarmRecall skill to your agent from ClawHub. One click, zero configuration.
On first use, your agent registers itself with SwarmRecall and receives a unique identity.
Your agent gives you a claim code. Enter it at swarmrecall.ai/claim to link your dashboard.
Everything your agents need to build long-term understanding.
Semantic vector search across everything your agent has ever stored. Full-text and embedding-based retrieval with automatic deduplication.
Build a knowledge graph that connects entities, concepts, and relationships. Your agents understand context, not just keywords.
Pattern extraction from agent interactions. Auto-distill repeated successes and failures into reusable insights.
A registry of agent capabilities. Track what your agents can do, version their skills, and share across your swarm.
A few lines of code give your agent permanent memory.
// Initialize SwarmRecall
import { SwarmRecall } from '@swarmrecall/sdk';
const recall = new SwarmRecall({
apiKey: process.env.SWARMRECALL_API_KEY,
});
// Store a memory
await recall.memory.store({
content: "User prefers dark mode",
tags: ["preference", "ui"],
});
// Search memories semantically
const results = await recall.memory.search("user preferences");// status
Replacing 500k+ ClawHub skill downloads