Skip to content

Install & setup

remindy is not a CLI you keep running. After init it lives inside your editor as an MCP server. The CLI is only for setup, seeding, and the dashboard.

It’s published on npm, so every npx remindy command below works with no clone.

Supermemory Local is the shared, on-machine store. It is a Unix binary; on Windows, run it inside WSL2.

Terminal window
curl -fsSL https://supermemory.ai/install | bash
supermemory-server # listens on http://localhost:6767

Copy the API key it prints on first boot into your .env as SUPERMEMORY_API_KEY.

Terminal window
npx remindy init --seed

This does three things:

  • Registers the remindy MCP server in every detected editor (Kiro, Cursor, Windsurf, Antigravity).
  • Appends a one-line project rule to your agent rules file (AGENTS.md, CLAUDE.md, or .cursorrules).
  • Seeds standards inferred from your repo, so recall is useful immediately (--seed).

Your editor spawns the MCP server on reload. That’s it, now just code with your agent.

Terminal window
npx remindy doctor

doctor checks everything in one shot:

  • resolved config (secrets masked)
  • one real compression
  • Supermemory Local probe + active backend

Anything other than Supermemory Local means cross-tool sharing and persistence are off: fix it before you rely on shared memory.

If you are running from a clone rather than npx:

Terminal window
npm install
npm run build
node dist/bin/remindy.js doctor
node dist/bin/remindy.js init --seed