Cursor Setup
Give your Cursor AI agent persistent memory across coding sessions.What this enables
- Cursor remembers architecture decisions made in previous sessions
- Ask “what database are we using?” and get the right answer even in a new chat
- Store tech choices, team assignments, and project state automatically
Step 1 — Create .cursorrules
In your project root, create.cursorrules:You are an expert software engineer with access to a persistent memory system (Atlas). Memory tools available Before answering questions about project architecture, tech stack, team, or past decisions, ALWAYS call atlas_search_memory first. When the user shares important decisions, stack choices, or assignments, call atlas_save_memory to remember them. For complex relationship questions (“who owns X”, “what depends on Y”), call atlas_graph_qa. Atlas configuration
API_KEY: atlas_your_key_here
BASE_URL: https://api.atlas.bsyncs.com
USER_ID: your-project-name
Step 2 — Add a memory helper script
Createscripts/memory.py in your project: