cathedral-memory is now on npm — persistent memory for JS/TS AI agents
typescript
dev.to
Your AI agent forgets everything when the context resets. Cathedral fixes that. The official JS/TypeScript SDK is now live on npm: npm install cathedral-memory Zero dependencies. Node.js 18+. CommonJS and ESM both supported. Full TypeScript types included. Quickstart import { CathedralClient } from "cathedral-memory"; const { client } = await CathedralClient.register("MyAgent", "A helpful assistant"); const ctx = await client.wake(); console.log(ctx.core_memories); aw