Heads up This site is currently under heavy development.
← all tools
◆ AI Coding Agents

Cursor

Start from scratch, without a repo commercial

Built to make you extraordinarily productive, agents turn ideas into code. Accelerate development by handing off tasks to Cursor.

Summary

Cursor is a commercial desktop application for AI-assisted software development, built around an editor where developers describe tasks in plain language and agents write, run, and test code on their behalf. It targets application developers and teams who want agent-driven coding folded into their existing workflow rather than a standalone chat assistant, and it extends beyond the desktop with an iOS app for launching and monitoring always-on cloud agents, handing sessions between laptop and phone, and reviewing or merging pull requests remotely. Teams can share configuration through a marketplace of plugins, skills, and MCPs, and automations can be triggered from Slack or GitHub events, putting it closer to a development platform than a simple code completion tool. Cursor sits in the ai-coding-agents category, and with 21 releases tracked and the latest just over a month old, it is under active development.

Built to make you extraordinarily productive, agents turn ideas into code. Accelerate development by handing off tasks to Cursor.

What Cursor answers

Do agents need my laptop running to keep working?

cloud agents move off a local session and keep running with your laptop closed, and can be started directly from the phone

What happens when an automation needs my attention while I'm away?

push notifications and lock-screen status alert you when an agent finishes, needs input, or is ready for review, and Remote Control lets you redirect it from your phone

Can non-developers or teammates trigger these agents without opening the editor?

yes, through a Slack emoji reaction or GitHub events like an issue comment or workflow run completing, which route straight into a configured automation

How do long-running or parallel tasks avoid tying up my main session?

a cloud subagent spins up in its own VM and branch to handle things like CI fixes or PR prep while the parent agent keeps running locally or in the cloud

Do I have to rebuild my cloud setup every time an agent starts?

a shared environment definition committed to the repo lets cloud agents provision from the same reusable snapshot instead of installing dependencies from scratch each run

Can I keep exploring an idea without derailing the task the agent is already running?

a side chat carries context from the main conversation but stays separate, so you can question or research without committing the main agent to a pivot

all 21 features, with the evidence for each →

Features

21 capabilities across 8 areas

Built from everything we hold on Cursor — every release we have summarised, its product documentation and how that documentation has changed, its README, its command-line surface and API, and runs we performed ourselves. Dates are when we first saw a capability, not when the vendor introduced it.

Capability area
AI Coding Agents 6 capabilities Cursor's core function is running AI agents that write, edit, and review code on behalf of the user. Agents operate locally or in the cloud and can work autonomously across entire codebases.
Cloud agents shipped Runs AI agents in isolated cloud VMs so work continues even when the user's laptop is closed. 8 releases · 4 other sources

release 8 total

  • Includes always-on cloud agents that build, test, and ship code in the background while the developer keeps working. Cursor Start · seen Jul 2026 · source · release history
  • New local-to-cloud handoff: agent sessions can be moved between local and cloud reliably, letting users offload long-running work or pull cloud agents back to local for manual testing. Cloud Environment Setup and Cloud Subagents in Agents Window · seen Jun 2026 · source · release history
  • Cloud agents can be moved from a local session to cloud so they keep running with your laptop closed. Cursor Mobile App for iOS · seen Jun 2026 · source · release history
  • New computer use tool for cloud agents: automations can now control a computer to produce demos or artifacts, enabled by default. Improvements to Cursor Automations · seen Jun 2026 · source · release history
  • Supports team-shared environment config via .cursor/environment.json, so cloud environment snapshots benefit the entire team when committed to the repo. Cloud Environment Setup and Cloud Subagents in Agents Window · seen Jun 2026 · source · release history
  • New /in-cloud slash command spins up a cloud subagent in its own VM and branch, isolating long-running or parallel tasks (CI work, issue investigation, codebase exploration) without affecting the local workspace. Cloud Environment Setup and Cloud Subagents in Agents Window · seen Jun 2026 · source · release history

example

  • Commit a shared cloud environment definition so every teammate's cloud agent starts from the same pre-built snapshot. Commit .cursor/environment.json to the repo after cloud environment setup completes Cloud Environment Setup and Cloud Subagents in Agents Window · seen Jun 2026 · source
  • Spin up a cloud subagent to fix a flaky CI pipeline while you keep coding locally — the subagent runs on its own VM and branch so nothing interrupts your local session. /in-cloud Fix the failing integration tests in the CI pipeline and open a PR when done Cloud Environment Setup and Cloud Subagents in Agents Window · seen Jun 2026 · source
  • Run the agent with a prompt from the CLI cursor-agent "fix the failing tests"
  • Start the Cursor agent in the terminal cursor-agent
Bugbot code review shipped Automatically reviews pull requests for bugs using AI, completing in roughly 90 seconds and avoiding duplicate reviews across GitHub and GitLab. 7 releases · 2 other sources

release 7 total

  • Supports toggling visibility of the routed model (hidden by default), giving teams the option to surface which model handled each request. Cursor Router · seen Jul 2026 · source · release history
  • Adds incremental review mode: configure Bugbot to review only what has changed since the last review, focusing feedback on the latest updates. Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source · release history
  • Bugbot (powered by Composer 2.5) now completes reviews in ~90 seconds (down from ~5 min), finds 10% more bugs per review, and costs ~22% less per run. Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source · release history
  • Enables /review to sync with Bugbot on GitHub and GitLab — if a PR is opened with the same diff, Bugbot skips the duplicate review and comments that it already reviewed that diff. Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source · release history
  • Bugbot now respects model block lists, allowing organizations to restrict which models power reviews. Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source · release history
  • Adds /review command to run Bugbot and Security Review locally before pushing, with interactive agent selection. Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source · release history

example

  • Surface the routed model on each request so your team can audit which model is being used for compliance or cost-tracking purposes. In the Cursor dashboard, go to Admin > Cursor Router settings and set 'Routed model visibility' to displayed (visible to members). Cursor Router · seen Jul 2026 · source
  • Run Bugbot and Security Review interactively before pushing — catch bugs and security issues without waiting for a CI PR comment. /review Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source
Cloud agent hooks shipped Lets users intercept agent responses and control subagent behavior programmatically to build self-correcting agent loops. 1 release · 1 other source

release

  • New cloud agent hooks (beforeSubmitPrompt, afterAgentResponse, afterAgentThought, stop, subagentStart, and more) enable observing and controlling prompts, responses, reasoning, subagents, compaction, and turn completion. Side Chats and Conversation Search · seen Jul 2026 · source · release history

example

  • Build a self-correcting agent loop by intercepting responses and controlling subagent behavior via new cloud agent hooks. In your cloud agent hook configuration, register handlers for beforeSubmitPrompt, afterAgentResponse, afterAgentThought, stop, and subagentStart to observe reasoning and inject corrections. Side Chats and Conversation Search · seen Jul 2026 · source
Cloud subagents shipped Spawns parallel background subagents in their own VMs to handle long-running or independent tasks without blocking the main session. 1 release · 1 other source

release

  • New /babysit command (also accessible via quick-action pill) lets a cloud subagent iterate remotely on a PR to prepare it for merge without tying up the local agent session. Cloud Environment Setup and Cloud Subagents in Agents Window · seen Jun 2026 · source · release history

example

  • Auto-run an automation and produce a screen-recorded demo artifact when a GitHub Actions workflow run completes on a branch. In the Cursor Automations console, add trigger "Workflow run completed", then in the Instructions field write: "Run the relevant tests, and use the computer use tool to record a short demo of the… Improvements to Cursor Automations · seen Jun 2026 · source
Security review shipped Runs a security-focused code review locally before a push, targeting sensitive code paths before changes reach CI. 1 release · 1 other source

release

  • Adds /review-bugbot and /review-security direct slash commands for targeted pre-push review. Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source · release history

example

  • Jump straight to a security-only pre-push review when you've made changes in sensitive code paths. /review-security Bugbot is now over 3x faster, 22% cheaper, and finds 10% more bugs · seen Jun 2026 · source
Side chats shipped Opens parallel agent conversations alongside the main thread, each a full durable session that can be revisited and referenced later. 1 release · 1 other source

release

  • New Side Chats: open parallel agent conversations via /side, /btw, or the plus button without interrupting the main agent thread — each is a durable, full agent conversation that can be revisited and @-mentioned. Side Chats and Conversation Search · seen Jul 2026 · source · release history

example

  • Spin up a side chat to sanity-check a design decision while the main agent keeps running — without losing your place. In the chat panel, type /side or /btw to open a new side chat that already has context from your main conversation. Side Chats and Conversation Search · seen Jul 2026 · source
Cloud and Remote Infrastructure 4 capabilities Cursor lets users choose where agents run — across cloud VMs, local machines, remote servers, and team-shared compute pools — from a single unified interface. It also supports accessing and controlling sessions remotely from other devices.
Multi-repo and multi-root workspace setup shipped Allows users to select multiple repositories or workspace roots for a single agent session via a unified picker. 3 releases · 1 other source

release

  • Supports named multi-repo environments from Slack, letting Cursor access frontend, backend, and shared code across separate repos in a single session. Improvements to Cursor in Slack · seen Jul 2026 · source · release history
  • Mid-task repo switching via a 'Switch repository' button lets Cursor resume work after changing to a different repo or environment. Improvements to Cursor in Slack · seen Jul 2026 · source · release history
  • Adds a Select Multiple toggle inside Cloud and This Computer flyouts for multi-repo and multi-root selection, replacing the separate Set Up Workspace builder. Side Chats and Conversation Search · seen Jul 2026 · source · release history

example

  • Kick off a task that spans multiple repos so Cursor automatically targets the right multi-repo environment instead of a single default repo. In Slack, mention @Cursor with your request (e.g., '@Cursor update the API contract in the backend and reflect it in the frontend'). Improvements to Cursor in Slack · seen Jul 2026 · source
Remote Control shipped Lets a user take over a desktop agent session from a phone or keep a remote machine awake and reachable, with admin controls for Teams and Enterprise. 3 releases · 1 other source

release

  • Adds Cursor for iOS with remote control to launch and steer agents from a mobile device. Cursor Start · seen Jul 2026 · source · release history
  • Remote Control mode lets you take an agent already running on your desktop and continue directing it from your phone. Cursor Mobile App for iOS · seen Jun 2026 · source · release history
  • Optional setting keeps your computer awake and reachable while you're away from your desk (Teams/Enterprise admins must enable Remote Control via the Cursor Dashboard). Cursor Mobile App for iOS · seen Jun 2026 · source · release history

example

  • Hand off a desktop agent session to your phone so you can keep directing it while away from your desk. In the Cursor iOS app, tap Remote Control → select the active desktop session → continue sending instructions from your phone. Cursor Mobile App for iOS · seen Jun 2026 · source
Remote machines shipped Provides a single selector that surfaces cloud, local, remote machines, team pools, and remote workspaces for choosing where an agent runs. 4 releases

release

  • In-message buttons are removed and replaced by compact footer links, which will change existing interaction patterns for users who relied on those buttons. Improvements to Cursor in Slack · seen Jul 2026 · source · release history
  • New 'Run on' picker surfaces where an agent can execute — Cloud, This Computer, or Remote Machines — in a single unified selector. Side Chats and Conversation Search · seen Jul 2026 · source · release history
  • Combines remote machines, team pools, and remote workspaces into one searchable Remote Machines menu. Side Chats and Conversation Search · seen Jul 2026 · source · release history
  • Redesigned project and repo pickers support creating a project and connecting GitHub, GitLab, or Azure DevOps without leaving the picker. Side Chats and Conversation Search · seen Jul 2026 · source · release history
Branch picker shipped Offers a branch picker that defaults to the default branch and recently used branches for faster navigation. 1 release

release

  • Branch picker now opens on the default branch and recently used branches instead of a flat list. Side Chats and Conversation Search · seen Jul 2026 · source · release history
Automation and Integrations 2 capabilities Cursor supports configurable automations that react to events from GitHub, GitLab, and Slack to open PRs or trigger agent tasks without manual intervention. These automations connect the AI agent loop to the tools development teams already use.
Automations shipped Lets users configure trigger-based automations in plain language that react to GitHub, GitLab, and Slack events and can open PRs automatically. 6 releases · 1 other source

release

  • Adds five new GitHub triggers: issue comment, PR review comment, PR review submitted, review thread updated, and workflow run completed. Improvements to Cursor Automations · seen Jun 2026 · source · release history
  • Automations can now be saved in an incomplete state, allowing navigation away (e.g., to complete MCP auth) without losing progress. Improvements to Cursor Automations · seen Jun 2026 · source · release history
  • New Slack emoji trigger: reacting to any Slack message with a designated emoji kicks off a configured automation. Improvements to Cursor Automations · seen Jun 2026 · source · release history
  • Automations can now open PRs by default without requiring manual tool selection in the UI. Improvements to Cursor Automations · seen Jun 2026 · source · release history
  • New /automate skill: describe a task in plain language inside a local agent session and Cursor auto-configures triggers, instructions, and tools. Improvements to Cursor Automations · seen Jun 2026 · source · release history
  • New Marketplace templates for triaging failed GitHub Actions runs and auto-fixing PR review comments. Improvements to Cursor Automations · seen Jun 2026 · source · release history

example

  • Instantly scaffold a new automation from your agent chat without opening the Automations UI. /automate When a PR review comment is left, read the comment and push a commit that addresses the feedback. Improvements to Cursor Automations · seen Jun 2026 · source
Slack integration shipped Triggers automations from Slack by reacting to messages with an emoji, routing failures to the appropriate team automatically. 4 releases · 2 other sources

release

  • Live status updates show each step as Cursor works through a task in Slack. Improvements to Cursor in Slack · seen Jul 2026 · source · release history
  • Cursor now shares a plan before starting a task in Slack, letting you redirect it before work begins. Improvements to Cursor in Slack · seen Jul 2026 · source · release history
  • Cross-channel workflows enable Cursor to read context from other Slack channels and threads and post updates back to the relevant channel or thread. Improvements to Cursor in Slack · seen Jul 2026 · source · release history
  • New Slack emoji trigger: reacting to any Slack message with a designated emoji kicks off a configured automation. Improvements to Cursor Automations · seen Jun 2026 · source · release history

example

  • Leverage cross-channel context so Cursor can pull information from a separate channel and post results back without manual copy-paste. In Slack, mention @Cursor in your thread (e.g., '@Cursor summarize the decisions from #architecture-review and draft an implementation plan here'). Improvements to Cursor in Slack · seen Jul 2026 · source
  • Trigger a triage automation from Slack by reacting to a failure alert, routing it to the right team automatically. In the Cursor Automations console, go to your automation's Triggers section, select "Slack emoji reaction", and choose the emoji (e.g. 🚨) that should fire the automation. Improvements to Cursor Automations · seen Jun 2026 · source
Team Administration and Governance 3 capabilities Cursor gives admins centralised control over which cyber tools, MCP servers, plugins, and models teams can access. Access policies can be enforced at the org or directory-group level and distributed to all surfaces without manual per-user setup.
Team marketplace shipped Provides a team-scoped marketplace for plugins and MCP servers with one-click install, leaderboard, and access control by org or SCIM directory group. 5 releases · 3 other sources

release

  • All five plugins are available to install from the Cursor Marketplace or the Customize page in Cursor. Google Workspace Plugins · seen Aug 2026 · source · release history
  • Bundles access to Grok 4.5 and Composer models alongside plugins, MCP servers, hooks, and skills. Cursor Start · seen Jul 2026 · source · release history
  • Adds organization group support for team marketplace access control, letting admins restrict marketplace visibility to specific org groups (in addition to existing SCIM directory groups). MCPs and Organizations in Team Marketplaces · seen Jul 2026 · source · release history
  • Team marketplaces now support plugin repository imports from GitLab, Bitbucket, and Azure DevOps for easier team-wide plugin distribution. Customize Cursor · seen Jun 2026 · source · release history
  • Adds a team marketplace leaderboard showing the most popular plugins, skills, and MCPs across your team, with one-click install. Customize Cursor · seen Jun 2026 · source · release history

example

  • Restrict a team marketplace to a specific organization group rather than the entire team or a SCIM directory group. In the Cursor dashboard, go to Dashboard -> Plugins -> Team Marketplaces, select the marketplace, and restrict access to the desired organization group. MCPs and Organizations in Team Marketplaces · seen Jul 2026 · source
  • Instantly surface the most-used team plugins and add them to your personal setup in one click. In the Cursor console, go to Customize > Marketplace Leaderboard, browse the top-ranked plugins and MCPs for your team, and click Add on any entry to enable it at the user level. Customize Cursor · seen Jun 2026 · source
  • Distribute an internal plugin from a self-hosted GitLab repo to your entire team without leaving Cursor. In the Cursor console, go to Customize > Team Marketplace > Import Repository, select GitLab, and paste your repository URL to publish the plugin to your team. Customize Cursor · seen Jun 2026 · source
Cursor Router shipped Routes each request to the most appropriate AI model based on task type and complexity, with admin controls to enforce routing policies and allow or block specific models. 7 releases

release 7 total

  • Adds three optimization modes under Auto — Cost, Balance, and Intelligence — letting users trade off token spend against model capability on a per-session basis. Cursor Router · seen Jul 2026 · source · release history
  • Adds admin controls to enable Cursor Router per team or group, restrict which optimization modes members can use, set the default mode, and maintain model allow/block lists. Cursor Router · seen Jul 2026 · source · release history
  • Introduces Cursor Router: an intelligent model router that classifies each request by task type and complexity and dispatches it to the appropriate model automatically. Cursor Router · seen Jul 2026 · source · release history
  • Adds Grok 4.5 as an available price-efficient routing option within the router. Cursor Router · seen Jul 2026 · source · release history
  • Adds soft and hard enforcement options so admins can standardize users on Auto mode. Cursor Router · seen Jul 2026 · source · release history
  • Supports toggling visibility of the routed model (hidden by default), giving teams the option to surface which model handled each request. Cursor Router · seen Jul 2026 · source · release history
Team MCP server management shipped Lets admins configure approved MCP servers once and push them to cloud agents, the IDE, and CLI so members never need to set them up manually. 2 releases · 1 other source

Shared capability: MCP server

release

  • Enables admins to configure Team MCP servers once and distribute them to cloud agents, the agents window, IDE, and CLI via a team marketplace — members install approved integrations locally without manual server setup. MCPs and Organizations in Team Marketplaces · seen Jul 2026 · source · release history
  • Supports custom (bring-your-own) MCPs alongside marketplace-sourced ones. Customize Cursor · seen Jun 2026 · source · release history

example

  • Centrally publish approved MCP servers so team members can install them locally without configuring servers themselves. In the Cursor dashboard, go to Dashboard -> Integrations & MCP, configure your Team MCP servers, then enable them in the team marketplace so members can install from the marketplace. MCPs and Organizations in Team Marketplaces · seen Jul 2026 · source
Customisation and Configuration 3 capabilities Cursor consolidates plugins, skills, rules, commands, memory, and hooks into a single settings surface manageable at the user, team, or workspace level. Users can also extend the interface with prebuilt canvases for data and project views.
Plugin canvases shipped Surfaces prebuilt plugin canvases — such as a data visualisation canvas and an Atlassian project view — directly inside the cyber tool. 6 releases · 1 other source

release

  • New Google Sheets plugin lets agents read ranges and find values, update cells, and create and edit spreadsheets. Google Workspace Plugins · seen Aug 2026 · source · release history
  • New Gmail plugin lets agents search and read mail, draft and send messages, apply labels, and manage threads. Google Workspace Plugins · seen Aug 2026 · source · release history
  • New Google Drive plugin lets agents search files and folders, open and download content, and create and organize files from within Cursor. Google Workspace Plugins · seen Aug 2026 · source · release history
  • New Google Calendar plugin lets agents read schedules, create and update events, and find free time. Google Workspace Plugins · seen Aug 2026 · source · release history
  • New Google Docs plugin lets agents open and read documents, write and edit text, and create new docs. Google Workspace Plugins · seen Aug 2026 · source · release history
  • Introduces prebuilt plugin canvases — including a Hex Canvas for data visualizations and an Atlassian Canvas for a real-time view of issues, projects, and documents. Customize Cursor · seen Jun 2026 · source · release history

example

  • Open a shared Atlassian Canvas to get a real-time view of all team issues, projects, and documents inside a plugin. In the Cursor console, go to Customize > Plugins, find the Atlassian plugin, and open the Atlassian Canvas from its canvas list. Customize Cursor · seen Jun 2026 · source
Customize page shipped Provides a single settings page where plugins, skills, MCPs, subagents, rules, commands, and hooks can all be managed at user, team, or workspace level. 2 releases

release

  • Bundles access to Grok 4.5 and Composer models alongside plugins, MCP servers, hooks, and skills. Cursor Start · seen Jul 2026 · source · release history
  • New Customize page consolidates plugins, skills, MCPs, subagents, rules, commands, and hooks in one place, manageable at user, team, or workspace level. Customize Cursor · seen Jun 2026 · source · release history
Memory management shipped Lets users delete memory entries directly in the UI or instruct an automation to remove outdated entries at runtime. 1 release

release

  • Enables deletion of memory files directly in the UI or by instructing an automation to remove outdated memories at runtime. Improvements to Cursor Automations · seen Jun 2026 · source · release history
Mobile and Remote Access 1 capability Cursor's iOS app lets developers launch and monitor cloud agents, provide voice input, and review or merge PRs from their phone. Push notifications and lock-screen Live Activities keep users informed of agent progress away from their desk.
Mobile app (iOS) shipped Provides an iOS app for launching, monitoring, and directing cloud agents with voice input, push notifications, and PR merge support from a phone. 13 releases · 4 other sources

release 13 total

  • Introduces an Inbox to track in-progress work, items needing attention, and PRs currently in review. Cursor, now on iPad · seen Jul 2026 · source · release history
  • Enables Apple Pencil markup on screenshots: tap to drop a comment at a specific point or draw directly on an image. Cursor, now on iPad · seen Jul 2026 · source · release history
  • Adds native iPad app (available on all paid plans) with a rebuilt layout featuring pinned sidebar chats for monitoring multiple agents simultaneously. Cursor, now on iPad · seen Jul 2026 · source · release history
  • Adds a full PR review surface on iPhone and iPad covering comments, checks, approvals, reviewer management, and agent-driven resolution. Cursor, now on iPad · seen Jul 2026 · source · release history
  • Enables switching between teams directly within the mobile app. Cursor, now on iPad · seen Jul 2026 · source · release history
  • Supports split-screen mode on iPad, keeping a PR review open alongside an active chat with full file diff rendering. Cursor, now on iPad · seen Jul 2026 · source · release history

example

  • Open a PR review alongside an active agent chat on iPad to read diffs and prompt the agent to resolve comments without switching screens. In the iPad app, open a PR from the Inbox, then use Split Screen to place the review alongside your active chat. Tap a comment and prompt the agent to resolve it directly from the review panel. Cursor, now on iPad · seen Jul 2026 · source
  • Annotate a screenshot with Apple Pencil to give the agent precise visual feedback on a UI issue. In a chat, attach a screenshot, then tap a specific point on the image to drop a comment, or draw on it with Apple Pencil before sending to the agent. Cursor, now on iPad · seen Jul 2026 · source
  • Start a cloud agent on a repo from your phone so it keeps running after you close your laptop. In the Cursor iOS app, tap a repo → tap New Agent → select a model → describe your task (or use voice input) → tap Run in Cloud. Cursor Mobile App for iOS · seen Jun 2026 · source
  • Review an agent's output and merge its PR without returning to your desk. In the Cursor iOS app, open the completed agent session → tap Artifacts to review diffs and screenshots → tap Merge PR to merge directly from the app. Cursor Mobile App for iOS · seen Jun 2026 · source
Search, Navigation, and Discoverability 1 capability Cursor provides tools for searching agent conversation history and navigating across sessions at scale. A local index supports fast full-text search across thousands of past agent transcripts.
Agent conversation search shipped Lets users search full agent conversation transcripts in-conversation or via the Agents Window using a local index that scales to thousands of sessions. 2 releases · 1 other source

release

  • Adds in-conversation search with Cmd+F, match counter, and jump-between-matches for long agent transcripts. Side Chats and Conversation Search · seen Jul 2026 · source · release history
  • Adds agent transcript search in the Agents Window via Cmd+K (command palette), with a local search index that scales to thousands of conversations. Side Chats and Conversation Search · seen Jul 2026 · source · release history

example

  • Find a specific past agent conversation by searching full transcripts, not just names or PR numbers. In the Agents Window, press Cmd+K and type keywords from the transcript content to locate the conversation. Side Chats and Conversation Search · seen Jul 2026 · source
Pricing and Plans 1 capability Cursor offers a subscription plan specifically priced for developers in India, payable in rupees via UPI or card. This plan is presented during onboarding for eligible users.
India Start plan shipped Offers a subscription plan priced in Indian rupees for developers in India, available via UPI or card during onboarding. 1 release · 1 other source

release

  • New Cursor Start plan (₹649/month, INR billing with UPI or card) targets developers in India with local pricing. Cursor Start · seen Jul 2026 · source · release history

example

  • Sign up as a new user in India and select the Start plan during onboarding. Visit cursor.com/signup and select the Start plan during onboarding to enroll at ₹649/month. Cursor Start · seen Jul 2026 · source
Capability
Evidence

Lines in monospace are the tool's own words — help text parsed from its source, or an endpoint from its API document. Everything else is our summary of a dated release or documentation change, linked back to the source it came from.

Release history

  1. docs update Aug 28, 2026 · issue 009

    Cursor Cloud Agent API gains worker pools, SSE queue streaming, hibernation support, and a claim-release endpoint.

    └──▷ TRY IT
    Drop a stale routing claim so a replacement worker can immediately pick up the agent — use this after a machine fails unrecoverably.
    $ curl --request POST --url 'https://api.cursor.com/v0/private-workers/claims/bc-00000000-0000-0000-0000-000000000002/release'
    • Adds POST /v0/private-workers/claims/<id>/release endpoint to drop the long-term routing claim that binds an agent to a self-hosted worker, enabling immediate re-claim by a replacement worker.
    • Adds workerReadyTimeoutSeconds field on durable pool registration — sets how long a claimed request waits for an offline worker to reconnect before the claim expires and the request returns to the queue; supports hibernate-and-revive machine patterns.
    • Adds agent lifecycle status field with three terminal/non-terminal states: ACTIVE (turn running or imminent), IDLE (turn finished or recoverable error, machine may hibernate/snapshot), and ARCHIVED (terminal, workspace state may be deleted).
    • Adds pool-scoped pending-request listing endpoint that also surfaces claimed-but-offline entries with claimedWorkerId and wakeTimeoutMs fields, enabling controllers to revive specific machines before reconnect windows lapse.
    • Adds SSE endpoint to stream pending-request lifecycle events (pending, claimed, claimed_offline) so controllers can react to queue changes without polling.
    +5 moreshow less
    • Adds POST endpoint to register a durable pool before any worker connects, allowing controllers to make a pool selectable on demand before provisioning capacity.
    • Adds --idle-release-timeout CLI flag (env var CURSOR_WORKER_IDLE_RELEASE_TIMEOUT) on the worker CLI to exit automatically after idle, distinct from the API-level claim release.
    • Adds 'Get Worker Summary' endpoint to retrieve a single pool worker by its ID, and a list-pool-workers endpoint returning workers for the authenticated service account's team, newest first.
    • Supports any-repo pools that remain selectable with zero connected workers; repo metadata fields (repoUrl and related) are omitted for any-repo workers and pools.
    • Adds one-hour user-scoped token creation for workers to run as active team members.
  2. Start from scratch, without a repo Aug 27, 2026 · issue 009

    Cursor Cloud Agents now work without a GitHub account — start from a prompt, preview live in-browser, and publish via Vercel.

    Start from scratch in the repo picker
    └──▷ HOW TO FIND IT
    Prototype a new app from a plain prompt — no repo, no SCM account required — then save it as a shareable Origin repo when ready.
    📍1. Open Cursor and click the repo picker. 2. Select 'Start from scratch'. 3. Prompt the agent to build your project. 4. When satisfied, click 'Create repo', enter a custom name, and set visibility to 'private' or 'internal'. 5. Navigate to the Codebase tab to access the newly created Origin repo.
    Preview the running app in the browser and ship it to a live URL via Vercel without leaving Cursor.
    📍1. With a cloud agent session running, open the in-browser preview to see the port-forwarded live environment. 2. Optionally enable design mode in the preview. 3. Connect a Vercel account under account settings. 4. Click 'Publish' to receive a live public URL for the project.
    • Adds 'Start from scratch' option in the repo picker so Cloud Agents can run without a connected GitHub or other third-party SCM provider.
    • Adds 'Create repo' button to save an in-progress agent build to a named Cursor Origin repo with configurable visibility (private or internal).
    • Adds the Codebase tab for navigating and accessing Origin repos after creation.
    • Port-forwards the cloud agent's live environment directly to the browser, enabling in-browser preview and design mode without extra tooling.
    • Adds Vercel account integration with a publish action that generates a live public URL for the built project.
  3. Cloud Agents Start 3x Faster with Builds seen Aug 19, 2026 · issue 001

    Cursor Cloud Agents gain Builds: pre-warmed environments that cut agent startup time 3x and add build history + resilience.

    Build details in the Cloud Agents dashboard, including logs and commit SHAs
    └──▷ HOW TO FIND IT
    Enable Builds on an existing Cloud Agents environment to get faster agent startup without reconfiguring from scratch.
    📍In the Cloud Agents dashboard, open your environment › go to the Builds tab › click 'Enable Builds'. To preview changes first, click 'Run setup agent' instead.
    • Introduces Builds for Cloud Agents: pre-prepared copies of your development environment (repos cloned, dependencies installed, install script run) that agents boot into instead of setting up from scratch each session.
    • Agents now start 3x faster (time to first token) thanks to environments that internally boot 10x faster via warm Build copies kept ready in the background.
    • Adds a Builds tab in the Cloud Agents dashboard for inspecting build status, logs, commit SHAs, and which build each agent run used.
    • Enables Enable Builds and Run setup agent actions on the Builds tab for migrating existing environments to Builds.
    • Supports manually triggering a Build and debugging failing Builds with an agent directly from the Cloud Agents dashboard.
    +3 moreshow less
    • Adds a configurable staleness threshold to control how often Builds refresh.
    • When a bad commit or dependency update breaks an environment, agents automatically continue using the last successful Build; the broken Build never becomes active and users are notified.
    • Agents can inspect and manage Builds using built-in agent tools.
  4. Cursor Start seen Aug 19, 2026 · issue 001

    Cursor launches Start plan for India at ₹649/month with UPI billing, cloud agents, and iOS remote control.

    • New Cursor Start plan (₹649/month, INR, tax-inclusive) available to developers in India, selectable at cursor.com/signup during onboarding or via the dashboard for existing Free users.
    • Supports UPI and card payment for Indian billing, making local payment methods a first-class option.
    • Always-on cloud agents that build, test, and ship code continuously in the background.
    • Cursor for iOS with remote control to launch and steer agents from a mobile device.
    • Includes plugins, MCP servers, hooks, and skills to extend Cursor across workflows.
  5. Cursor, now on iPad seen Aug 19, 2026 · issue 001

    Cursor launches on iPad with split-screen review, Apple Pencil markup, inbox, and Bitbucket/Azure DevOps support.

    Inbox on Cursor for iPad
    • Cursor is now available on iPad for all paid plan subscribers, with a rebuilt layout featuring pinned sidebar chats for monitoring multiple agents simultaneously.
    • Split-screen mode lets users keep a PR review open alongside a chat session with full file diff rendering.
    • Apple Pencil support enables drawing directly on attached screenshots; tap-to-place comments let users annotate images at specific points.
    • Full PR review surface on iPhone and iPad now covers comments, checks, approvals, reviewer management, and agent-driven resolution — through to merge.
    • New Inbox view surfaces in-progress work, items needing attention, and PRs currently in review.
    +3 moreshow less
    • Adds Bitbucket and Azure DevOps as supported SCM providers on iOS/iPadOS.
    • Multi-PR sessions now let users open every PR created by a single chat, not just the most recent one.
    • In-app team switching lets users move between teams they belong to without leaving the app.
  6. Google Workspace Plugins seen Aug 19, 2026 · issue 001

    Cursor gains Google Workspace plugins giving coding agents direct access to Gmail, Google Drive, and Calendar.

    • New Google Drive plugin lets agents search files and folders, open and download content, and create and organize files from within Cursor.
    • New Gmail plugin lets agents search and read mail, draft and send messages, apply labels, and manage threads.
    • New Google Calendar plugin lets agents read schedules, create and update events, and find free time.
    • New plugins are browseable and installable from the Cursor Marketplace or the Customize page in Cursor.
  7. Origin Code Hosting seen Aug 19, 2026 · issue 001

    Cursor launches Origin, a built-in code hosting platform with repos, pull requests, GitHub sync, and CI/CD app integrations.

    Vercel, Depot, and Buildkite apps connected to an Origin repoOrigin repo settings showing sync status, access, and connected apps
    • New Codebase tab in Cursor hosts Origin repos; click +New to create a repo whose URL follows the pattern cursor.com/codebase/<codebase-name>.
    • CLI install flow provided on repo creation with commands to clone a repo or push a local project to Origin.
    • GitHub sync lets you connect a GitHub org and pull repos into Origin alongside Cursor-hosted ones; synced repos update in real time, with pushes continuing to GitHub as source of truth.
    • Pull requests on every repo show timeline, commits, checks, diffs, and comments; PRs on synced repos sync bidirectionally with GitHub within seconds.
    • Agents integrated directly into repos can answer questions about browsed code, make changes, update PRs, or push a branch.
    +3 moreshow less
    • App integrations available from each repo's Apps tab: Vercel (preview deployments per PR), Depot (GitHub Actions CI), and Buildkite (GitHub Actions and native pipelines).
    • Per-repo Settings page exposes GitHub sync status, access management, and connected apps.
    • Origin is available in early beta on all paid plans (excluding enterprise orgs whose admins opt out).
  8. Cloud Agents and Cursor Harness Improvements Aug 19, 2026 · issue 002

    Cursor cloud agents gain event subscriptions, /goal, custom modes, isolated subagent VMs, and mid-run steering.

    └──▷ TRY IT
    Give a cloud agent a persistent objective so it keeps working until CI is fully green — no repeated prompting needed.
    $ /goal fix all flaky tests and make CI green
    Swarm independent subagents in isolated VMs to simultaneously test different parts of an app for bugs without environment collisions.
    $ run a swarm of subagents to test my app for bugs, each in its own environment
    Keep an agent focused on a specialised workflow by pinning a skill as a Custom Mode directly from the skill picker.
    📍In the chat, type / to open the skill picker, select a skill, then press Alt+Enter (Windows) or Option+Return (Mac) — or choose 'Use as Mode' — to pin it as a Custom Mode.
    • Adds Subscriptions for cloud agents: agents can monitor PR activity, watch a Slack thread, or run scheduled tasks, waking automatically when an event fires.
    • Cloud agents automatically subscribe to PRs they create and drive them to completion, fixing CI and addressing bot comments without manual re-triggering.
    • Adds /goal command — give an agent a long-lived objective it pursues across loops until fully complete; pairs with custom modes or /loop for recurring check-ins.
    • Adds Custom Modes: pin any skill as an always-on mode via ⌥⏎ (Mac) / Alt+Enter (Windows) or the 'Use as Mode' option from the / skill picker.
    • Subagents can now run on their own isolated virtual machines, each receiving a clean copy of the project — enables swarming independent fixes or testing parent-agent changes without collisions.
    +1 moreshow less
    • Adds mid-run steering: send a follow-up message while an agent is working via 'Send now' or double-; the message waits for the next tool call instead of interrupting mid-action.
my-toolchain — 0 tools
paste an install list to detect your tools

A brew list, a Brewfile, requirements.txt, a Dockerfile — or just the product names, free-form. Nothing leaves your browser.

    browse all tools →