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 on npm. Install it globally so editors get a stable server path:
npm i -g remindy1. 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. (remindy itself runs on the host; WSL forwards localhost:6767 to Windows.)
curl -fsSL https://supermemory.ai/install | bash~/.local/bin/supermemory-server # listens on http://localhost:6767Hand the key it prints on first boot to remindy (it writes to remindy’s gitignored .env):
remindy config set --supermemory-key <key-from-first-boot># and your compression model, e.g. b.ai:remindy config set --provider bai --key <bai-key> --model claude-sonnet-52. 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, GitHub Copilot (VS Code), Claude Code, and Antigravity. For Codex/ChatGPT and Trae,
initprints a one-line command to paste. - 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 --seedUninstall
Section titled “Uninstall”npx remindy uninstallThis reverses init in every detected editor:
- Removes the
remindyentry from the MCP config (.kiro/settings/mcp.json,.cursor/mcp.json,.windsurf/mcp.json, or.agents/mcp_config.json). - Strips the rule block between
<!-- remindy -->and<!-- /remindy -->fromAGENTS.md,CLAUDE.md, or.cursorrules.
Then reload your editor. Your stored standards stay in Supermemory Local; clear them from the dashboard for a clean slate, or run npm rm -g remindy if you installed globally.