Agentrecall — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Agentrecall (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Plug-and-play persistent memory for AI agents. Open source, zero config.
Python · Node.js · Local-first · Semantic search · Auto-compression · Confidence decay
| Package | Install | Description |
|---|---|---|
| Python SDK | pip install agentrecall-sdk | Full-featured memory store with embeddings support |
| Node.js SDK | npm install agentrecall-ai-sdk | TypeScript-first with SQLite and optional embeddings |
Python:
from agentrecall import MemoryStore
store = MemoryStore()
store.remember("User prefers dark mode", agent="assistant")
memories = store.recall("What theme should I use?", agent="assistant")Node.js:
import { MemoryStore } from "agentrecall";
const store = new MemoryStore();
await store.remember("User prefers dark mode", { agent: "assistant" });
const memories = await store.recall("What theme should I use?", { agent: "assistant" });Both SDKs support a cloud mode that connects to the AgentRecall Cloud API:
Python:
from agentrecall import CloudClient, AgentMemoryConfig
config = AgentMemoryConfig(cloud_url="https://api.agentrecall.cloud", api_key="your-key")
client = CloudClient(config)
client.remember("User prefers dark mode", agent="assistant")
memories = client.recall("What theme should I use?", agent="assistant")Node.js:
import { CloudClient } from "agentrecall";
const client = new CloudClient("https://api.agentrecall.cloud", "your-key");
await client.remember("User prefers dark mode", { agent: "assistant" });
const memories = await client.recall("What theme should I use?", { agent: "assistant" });| Tier | Price | What you get |
|---|---|---|
| Open Source | Free | Full SDK, unlimited memories, local SQLite |
| Cloud | $3/agent/mo | Managed hosting, dashboard, graph memory, AI processing |
packages/python or packages/node)cd packages/python && python -m pytest tests/cd packages/node && npm testMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.