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.
1. Start Supermemory Local
Section titled “1. Start Supermemory Local”Supermemory Local is the shared, on-machine store. It is a Unix binary; on Windows, run it inside WSL2.
curl -fsSL https://supermemory.ai/install | bashsupermemory-server # listens on http://localhost:6767Copy the API key it prints on first boot into your .env as SUPERMEMORY_API_KEY.
2. Initialise remindy in your project
Section titled “2. Initialise remindy in your project”npx remindy init --seedThis 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).
3. Reload your editor
Section titled “3. Reload your editor”Your editor spawns the MCP server on reload. That’s it, now just code with your agent.
Verify
Section titled “Verify”npx remindy doctordoctor 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.
Setup for reviewers
Section titled “Setup for reviewers”If you are running from a clone rather than npx:
npm installnpm run buildnode dist/bin/remindy.js doctornode dist/bin/remindy.js init --seed