explainx.ai0k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

follow on google

Add explainx.ai as a preferred source

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

community

Join the community

learn

mind: share how you thinkpathways — start freeworkshopsbootcampscoursescompare Explainxcertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsmdx readeragentsllmsdesignsdictionarypeopleagi trackerfelony benchranks

company

aboutvisionmissionteaminstructorsteach on explainxpartnershipscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportcontactprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

explainx.ai

On this page

  • TL;DR
  • How Rollouts works, step by step
  • Why the monitoring plan is the interesting part
  • What Rollouts does not do
  • Security Reviewer: what changed
  • How this fits with Cursor Projects and cloud agents
  • What people are asking
  • How to trial it in the 10-day window
  • What "verified healthy" should mean to you
  • Where it can go wrong
  • Bottom line
  • Related reading
← Back to blog

explainx / blog

Cursor Rollouts and Security Reviewer: Agents That Watch Your Deploys, Plus How They Fit Cursor Projects

Cursor, AI Coding Agents, DevOps, Security Review, Observability, Cloud Agents

Cursor Rollouts writes a monitoring plan for each PR and watches the deploy; Security Reviewer is 21% faster at 3.8 minutes. Teams and Enterprise, with credits.

Sep 24, 2026·8 min read·Yash Thakker
add explainx.ai
go deep
Cursor Rollouts and Security Reviewer: Agents That Watch Your Deploys, Plus How They Fit Cursor Projects

Most AI coding tools stop at the moment code is written. Cursor Rollouts starts where they stop.

On September 24, 2026, Cursor introduced Rollouts: agents that "write a monitoring plan, then watch changes as they deploy," so "regressions are caught before users see them." A companion update makes Security Reviewer 21% faster. Both are available today on Teams and Enterprise plans, with usage credits included for 10 days.

This guide covers how Rollouts works, what Security Reviewer checks, how both fit with Cursor's recent releases (Projects, cloud agents on your own infrastructure), and how to trial them safely.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

TL;DR

table · 2 cols
QuestionAnswer
What is Rollouts?An agent that writes a monitoring plan for a PR, then verifies the change after deploy
When does it run?On PR open (plan) and on deploy events (verification)
What does it check?Logs, metrics and traces, per environment
Outcomes?Verified healthy, regression detected, or inconclusive
On regression?Names suspected change, notifies author, can open a revert PR or hand to a cloud agent
Autonomous rollback?No: does not merge or roll back on its own
Integrations?Origin or GitHub, CD systems, Datadog and other telemetry; feature flags coming soon
Security Reviewer?21% faster, 3.8 min average (from 4.8); 60-70% comment acceptance per reporting
Plans and trial?Teams and Enterprise; 10 days of credits (~50 changes Teams, ~500 Enterprise)

How Rollouts works, step by step

Cursor's changelog describes a lifecycle with four stages.

1. A PR opens. Rollouts reads the diff and the systems it touches, then writes a monitoring plan as a PR comment. The plan identifies risks, intended effects, signals to check and instrumentation gaps. Teams can edit the plan directly in the comment.

2. The change deploys. Rollouts wakes on deploy events for the change's commit and runs the plan against your logs, metrics and traces.

3. Per-environment tracking. Each environment is tracked separately, so a change can be verified in staging and still be flagged in production.

4. Report and response. Each change gets a status: verified healthy, regression detected, or inconclusive. If it detects a regression, Rollouts names the change it suspects and notifies the author. Depending on configuration, it can open a revert PR for review or hand the finding to a cloud agent for a fix.

The image Cursor shared shows the pattern: a card reading "Rollouts created plan 3h ago," with a plan that checks JS errors on rollout-related routes, and a severity indicator. That is the product: a plan, a watcher, and a verdict.

Why the monitoring plan is the interesting part

Anyone can point an AI at an error dashboard. The novelty is the plan written at PR time, when the agent has the most context about what the change is supposed to do.

A good plan states:

  • Intended effect: "checkout latency should drop for cart sizes over 20 items."
  • Risk: "the new cache key may collide across tenants."
  • Signals: "error rate on /checkout, p95 latency, cache hit ratio, tenant-scoped 403s."
  • Instrumentation gaps: "no metric exists for cache key collisions."

The last item is the quiet win. If a plan says "we cannot verify this because nothing measures it," reviewers can ask for instrumentation before the merge, not after an incident. Because the plan is a PR comment, humans can edit it, which makes review a conversation.

What Rollouts does not do

Cursor is explicit about the guardrail: Rollouts does not autonomously merge or roll back. It proposes a revert PR or delegates a fix. That is the right default for production, and it matches how teams adopt agents: read access first, write access with review, autonomy last.

Also note the stated statuses include inconclusive. An agent that admits it lacks enough signal is more useful than one that always says "healthy." Track how often you get inconclusive verdicts; a high rate usually means missing telemetry, not a weak agent.

Security Reviewer: what changed

Security Reviewer scans every PR for exploitable issues. Cursor's list includes SQL, command and template injection, authentication bypasses, secrets in source code, SSRF, unsafe deserialization and vulnerable dependencies. Each finding includes severity, attack path and proposed fix, and teams can set custom rules for codebase-specific enforcement.

The update: it now finishes 21% faster, in 3.8 minutes on average, down from 4.8. Reporting on the launch also cites a 60 to 70% comment acceptance rate; treat that as a vendor-side metric and measure your own. Speed matters because reviewers merge when checks finish; a review that takes five minutes gets skipped, and one that takes under four is more likely to be waited for.

If you use AI for security review at the prompt level, our security review prompt library pairs well. And for the risk side, see the incident coverage of an AI agent linked to breaches at seven companies.

How this fits with Cursor Projects and cloud agents

Cursor has shipped a stack in three weeks:

table · 3 cols
ReleaseLayerWhat it does
Cloud agents on your own infrastructure (Sep 3)Where compute runsRun agents on your machines or sandbox providers
Projects (Sep 10)Long-running workCoordinator agent, shared context, subscriptions
Rollouts + Security Reviewer (Sep 24)VerificationPR-time plans, deploy-time monitoring, security scans

The pieces connect. Projects can coordinate implementation; cloud agents do the work in isolated VMs (see event-driven cloud agents); Rollouts watches the result in production and can send a regression back to a cloud agent. That closes a loop: plan, build, verify, fix.

Cursor's changelog navigation references a Projects post, but the Rollouts page gives no Projects-specific detail. Do not assume built-in coupling beyond what is stated: the documented handoff is from Rollouts to a cloud agent. For the wider trend of event-driven agents that wake on signals, see harness engineering concepts.

What people are asking

"Is this only for big teams?" It launched on Teams and Enterprise. One reply said their side projects run on the free tier, meaning they are not the target buyer. Check plan details before planning a rollout.

"What does it cost after the trial?" Not stated. The 10-day credits cover roughly 50 changes for Teams and 500 for Enterprise; ask sales for post-trial pricing.

"Does it replace my observability stack?" No. It reads from Datadog and similar telemetry. It automates the checking you should be doing after each deploy.

"Can it break production?" Per Cursor, it does not merge or roll back autonomously. The risk is a wrong verdict, not an unauthorized action.

"How does it compare with Claude Code?" Both tools are moving into background and cloud workflows; see Claude Code vs Cursor vs Copilot and Claude Code cloud sessions going GA. Rollouts targets post-merge verification, which is a different slot from writing code.

How to trial it in the 10-day window

  1. Pick low-risk services with good telemetry. Rollouts can only verify what you measure.
  2. Connect source control and telemetry first; confirm environments map correctly.
  3. Review the first five plans by hand. Edit them to see how the agent responds.
  4. Track verdict quality. Count true positives, false alarms and inconclusive results.
  5. Test the revert path in staging: does the revert PR make sense?
  6. Time Security Reviewer against your current CI checks. Does it fit inside your PR loop?
  7. Decide before credits end whether it earns a budget line.

What "verified healthy" should mean to you

A verdict is only as good as the signals behind it. Before you trust a green check, ask three questions.

  • Was the signal specific? A verdict based on global error rate can miss a regression that hits one route or one tenant. Prefer plans that name the routes, queues or feature flags the change touched.
  • Was there enough traffic? A deploy on a quiet service may never exercise the new code path. "Healthy" on zero requests is not evidence.
  • Was the comparison fair? Good verification compares against a baseline: the same environment before the deploy, or a canary versus stable. Ask what baseline Rollouts used for each plan.

Treat inconclusive as a to-do, not a failure: add the missing metric, generate synthetic traffic, or extend the watch window. Over a few weeks the pattern of inconclusive results is a map of your observability gaps.

Where it can go wrong

  • Noisy telemetry. If your dashboards are full of ignored alerts, an agent will inherit the noise.
  • Plans that overreach. A plan that lists twenty signals for a one-line change wastes attention. Edit it down.
  • Multi-service changes. A change that spans repositories is harder to attribute; check how the suspected-change logic behaves when two PRs deploy close together.
  • Alert fatigue. Notifying the author is useful only if the message is specific and actionable.
  • Security Reviewer disagreement. Automated findings still need triage. Decide who owns false positives, and use custom rules to encode decisions once.

Bottom line

Rollouts is a smart place to put an agent: after the merge, where teams are least attentive and incidents are most expensive. The design choices, a plan written at PR time, per-environment verdicts, an honest "inconclusive," and no autonomous rollback, are sensible. Success depends on your telemetry quality. Use the 10-day credit window to measure, not to guess.

Details reflect Cursor's September 24, 2026 changelog and press coverage. Availability, credits and features may change.

Related reading

  • Cursor Projects: persistent agents with shared context
  • Cursor cloud agents on your own infrastructure
  • Cursor event-driven cloud agents in isolated VMs
  • Cursor agent swarms: model economics
  • Claude Code cloud sessions GA
  • Top AI prompts for security review
  • Top 10 harness engineering concepts
  • Official: Cursor changelog: Rollouts and Security Reviewer
Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

View Yash Thakker in People in AI →

Related posts

Sep 3, 2026

Cursor Cloud Agents Now Run on Your Own Infrastructure

Cursor shipped the ability to run cloud agents on infrastructure you manage on September 3, 2026 — your own machine pools or supported sandbox providers (AWS Lambda, Cloudflare, Coder, Daytona, E2B, Modal, Namespace, Vercel) — so agents can reach internal services and specialized hardware while Cursor still owns the orchestration.

Sep 11, 2026

Cursor Projects: Persistent Agents With Shared Context Across Months of Work

Cursor shipped Projects on September 10, 2026: a project-scoped coordinator agent that maintains shared context files across cloud and local machines, delegates implementation to parallel subagents, and can subscribe to Slack, PRs, or schedules so work continues without re-onboarding the model every session. explainx.ai breaks down how it differs from last week's self-hosted cloud agents update — and from the MCP memory hacks teams have been using to patch the same gap.

Aug 20, 2026

Cursor Ships Event-Driven Cloud Agents and Isolated VMs for AI Coding Swarms

Cursor pushed a changelog update on August 19, 2026 that lets cloud agents "subscribe" to an event source — a PR, a Slack thread, a cron schedule — and wake up when something happens, instead of waiting for a manual prompt. Paired with subagents that each get their own isolated VM, it adds up to what Cursor is calling AI coding swarms. Here's what's actually new, what it costs, and how it compares to Claude Code and Codex's own cloud agent options.