Hey!
I’ve been collecting tips n tricks from the Cursor community and wanted to share the most popular ones I’ve found so far
Setup & Configuration
- Create proper Cursor rules in
.cursor/rules
with domain-specific knowledge - Tag all necessary files when providing context to ensure the model has complete information
Documentation & Context
- Create reference documentation (prd.md, specs.md) to give the model consistent context
- Use @ references to provide specific context from other files
- Maintain todo.md files to track progress and keep the model focused on current priorities
- Add detailed comments about your project goals to guide the models understanding
Workflow Optimization
- Break down tasks into small incremental steps instead of tackling everything at once
- Start new chats for each task to avoid context bloat
- Plan with “ask” mode, then implement with “agent” mode for clearer outcomes
- Use reasoning models (e.g., 3.7 max mode) for planning, regular models for implementation
Best Practices
- Be specific with prompts. Clear instructions consistently yield better results
- Adopt TDD when working with AI assistance
- Understand the limitations of AI coding assistance
- Avoid over-reliance on the tool for critical tasks
What else should be added here?