Skip to content

112 Cursor Tips That Actually Change How You Work

You have read the official docs. You have watched the YouTube tutorials. You know Cursor has agent mode and tab completion. And yet, you still spend half your day fighting the tool instead of shipping features. The gap is not knowledge — it is applied knowledge. Knowing that Cmd+K exists is different from knowing that Cmd+K on an empty line with no selection generates code from scratch, while Cmd+K with a selection rewrites it in place.

This collection closes that gap. Every tip here was tested in real codebases, refined through actual development workflows, and written with enough detail that you can apply it in your next session.

  • 112 numbered tips organized into 8 categories, from initial setup to team-wide deployment
  • Copy-paste prompts and commands you can use immediately — no “insert your project here” filler
  • A clear progression from foundational configuration through expert-level techniques
  • Specific guidance on which tips compound together for outsized productivity gains

Do not read all 112 tips in one sitting. That is a recipe for forgetting everything by tomorrow. Instead:

  1. Start with Setup and Configuration (Tips 1-15) — even experienced users discover 3-4 missed settings here
  2. Pick the section that matches your biggest current pain point
  3. Implement 2-3 tips per day over a week, practicing each one until it is automatic
  4. Return to this index when you hit a new challenge or feel your workflow plateau

Tip Combinations That Multiply Your Output

Section titled “Tip Combinations That Multiply Your Output”

Individual tips are useful. Combinations are transformative. These pairings have the highest impact-to-effort ratio:

YOLO Mode + Test-Driven Agent Prompts (Tips 5 + 65) Tell agent to write tests first, then implementation, then run tests and iterate. With YOLO mode enabled, the agent runs your test suite automatically and fixes failures without you lifting a finger. This single combination turns Cursor from “code suggestion tool” to “autonomous developer.”

Project Rules + Context References (Tips 11 + 62) Commit a .cursor/rules/ directory to your repo with coding standards, architecture decisions, and naming conventions. When you reference files with @ in the agent panel, the rules automatically apply. The result: AI-generated code that actually matches your team’s style on the first try.

Multi-Root Workspaces + Agent Mode (Tips 6 + 68) Open your frontend, backend, and shared library as a single multi-root workspace. Agent mode can now edit an API endpoint, update the TypeScript types in the shared library, and adjust the frontend fetch call — all in one conversation.

Checkpoints + Aggressive Experimentation (Tips 26 + 91) Cursor creates a checkpoint before every agent edit. This means you can tell the agent to try risky refactors with zero downside. If it breaks, roll back to the checkpoint. If it works, commit. This changes how aggressively you use the tool.

Not every tip works for every situation. Common failure patterns:

  • YOLO mode on a project with destructive scripts: If your package.json has scripts that delete data or deploy to production, configure a deny-list before enabling YOLO mode
  • Over-indexing on agent mode: Some tasks are genuinely faster with manual editing. If you catch yourself writing a five-sentence prompt for a one-line change, just type the line
  • Ignoring checkpoint history: Checkpoints are automatic, but they are not infinite. If you need a guaranteed restore point, commit to git before starting a large agent task

Start with Setup and Configuration (Tips 1-15) to make sure your foundation is solid, then pick the section that addresses your current bottleneck. If you are not sure where to start, Core Features (Tips 16-30) gives you the highest density of immediately useful shortcuts.