$ swarmrecall --version 1.0

> Your agents remember everything

Memory, knowledge, learnings, and skills as a service for AI agents. Persistent context that survives across sessions, providers, and platforms.

# How it works

No API keys to configure upfront. Your agent handles registration automatically.

> 01

Install the skill

Add the SwarmRecall skill to your agent from ClawHub. One click, zero configuration.

> 02

Agent auto-registers

On first use, your agent registers itself with SwarmRecall and receives a unique identity.

> 03

Claim your dashboard

Your agent gives you a claim code. Enter it at swarmrecall.ai/claim to link your dashboard.

# Four pillars of agent intelligence

Everything your agents need to build long-term understanding.

// Memory

Semantic vector search across everything your agent has ever stored. Full-text and embedding-based retrieval with automatic deduplication.

// Knowledge

Build a knowledge graph that connects entities, concepts, and relationships. Your agents understand context, not just keywords.

// Learnings

Pattern extraction from agent interactions. Auto-distill repeated successes and failures into reusable insights.

// Skills

A registry of agent capabilities. Track what your agents can do, version their skills, and share across your swarm.

$ Simple SDK, powerful results

A few lines of code give your agent permanent memory.

terminal
// 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