Cursor 3.0
What is Cursor 3.0?
Section titled βWhat is Cursor 3.0?βCursor 3.0 (released April 2, 2026) is a major architectural update to the Cursor IDE β a VS Code fork built around AI agents. It shifts from a single chat interface to a full multi-agent workspace: you can run several agents in parallel, each working in an isolated environment.
This makes it qualitatively different from GitHub Copilot. Copilot assists you. Cursor 3.0 agents work independently on tasks while you review and direct them.
What is new in Cursor 3.0
Section titled βWhat is new in Cursor 3.0βAgents window β parallel agents
Section titled βAgents window β parallel agentsβYou can now run multiple agents at the same time in separate isolated workspaces. Each agent can work on a different task β one refactoring a component, another writing tests, another debugging an error β without interfering with each other.
For a student team, this means different team members can direct separate agents on separate features simultaneously.
Design Mode
Section titled βDesign ModeβPoint at any UI element in the browser. The agent sees exactly what you see and makes precise edits to the code that produced it. This is the fastest way to iterate on a frontend component β show it the problem, describe the fix.
/worktree and /best-of-n
Section titled β/worktree and /best-of-nβ| Command | What it does |
|---|---|
/worktree | Runs the agent in an isolated git branch β changes are safe to discard if the result is wrong |
/best-of-n | Runs the same task on multiple models in parallel and shows you the results side by side β you pick the best one |
/best-of-n is particularly useful when you are not sure how to solve a problem: give it to three models, compare their approaches, choose what you understand best.
BugBot reviews your pull requests automatically, identifies bugs, and can open a cloud agent to propose fixes. If your team uses pull requests on GitHub, BugBot runs in the background on every PR.
Pricing
Section titled βPricingβCursor has a free tier with a monthly cap on fast requests. Beyond that cap, it falls back to slower models.
Bringing your own API key is a Pro feature. On the free tier, you cannot swap in China-accessible models (Qwen, DeepSeek, etc.) β you are limited to Cursorβs hosted models, which are U.S.-based and blocked in mainland China. The free tier does not solve the China access problem.
Student Pro β not available for Chinese university emails
Section titled βStudent Pro β not available for Chinese university emailsβCursor offers one free year of Pro with a verified university email. XJTLU email addresses (.edu.cn) are not accepted β the student verification rejects Chinese university domains. This option is not available to most students in this course.
If you have a non-Chinese university email from an exchange program or dual degree: it may work β check cursor.com/students.
Cursor vs GitHub Copilot β when to use which
Section titled βCursor vs GitHub Copilot β when to use whichβ| Situation | Use |
|---|---|
| You are on the XJTLU campus network | Copilot β Cursor does not work |
| You need inline completions while typing | Copilot β Cursorβs completions exist but Copilotβs are smoother |
| You want to build an entire feature from a description | Cursor β its agents handle more files and more complexity |
| You are iterating on a UI and want to point at the problem | Cursor Design Mode β nothing else does this |
| You want to try two approaches and pick the better one | Cursor /best-of-n β runs multiple models in parallel |
| You are not sure what is wrong with your code | Either β Cursor is stronger for multi-file reasoning; Copilot is sufficient for single-file debugging |
- Download from cursor.com β available for macOS, Windows, Linux
- Open Cursor β it imports your VS Code extensions and settings automatically
- Sign in with your student account
- Start with Cmd/Ctrl + I to open the Composer β describe a task in plain English
Was this page helpful?