Cursor 2.4 represents a massive leap in AI-assisted development. With subagents, Agent Skills, cloud execution, and enterprise features like Cursor Blame, this update transforms how teams build software. Here's everything you need to know.
What's New in Cursor 2.4
The January 2026 release packs several game-changing features:
- Subagents: Independent specialized agents with their own context and tools
- Agent Skills: Define domain knowledge in SKILL.md files
- Image Generation: Generate images directly from the agent
- Clarification Questions: Agents ask for clarity while continuing work
- Cursor Blame (Enterprise): AI attribution showing which code is AI-generated
Subagents: Parallel Specialized Workers
Subagents are independent agents that run in parallel with the main agent. Each subagent has:
- Its own context window (separate from the main conversation)
- Custom system prompts for specialized tasks
- Specific tool access based on its role
- Ability to work simultaneously with other subagents
Example use case: While you're discussing architecture with the main agent, a subagent can be running tests, another can be writing documentation, and a third can be researching best practices—all in parallel.
Agent Skills: Domain-Specific Knowledge
Skills are defined in SKILL.md files that provide domain-specific knowledge and workflows to agents. This is powerful for:
- Team coding standards and patterns
- Project-specific conventions
- Domain expertise (finance, healthcare, etc.)
- Common workflows and procedures
Example SKILL.md:
# SKILL.md - React Component Patterns
## Component Structure
- Use functional components with hooks
- Prefer composition over inheritance
- Keep components under 200 lines
## Styling
- Use Tailwind CSS classes
- Follow mobile-first responsive design
- Use our design system tokens from @/styles/tokens
## Testing
- Write tests alongside components
- Use React Testing Library
- Aim for 80% coverage on critical paths
## Common Patterns
```tsx
// Standard component template
export function ComponentName({ prop1, prop2 }: Props) {
const [state, setState] = useState(initialState);
return (
<div className="component-wrapper">
{/* content */}
</div>
);
}
```Background & Cloud Agents
Cursor's cloud agents let you run tasks without keeping your laptop connected. Key capabilities:
- Up to 8 parallel agents: Each in isolated codebases via git worktrees
- Background execution: Hand off tasks and check back later
- Integrations: Slack, Linear, and GitHub notifications
- Plan Mode: Create plans with one model, build with another
When to Use Cloud Agents
| Use Case | Why Cloud Agents |
|---|---|
| Bug fixes while working | Agent fixes in background, you continue on main task |
| Feature implementation | Agent implements plan while you review or move to next feature |
| Code reviews | Parallel agents review different PRs simultaneously |
| Documentation | Agent documents while you develop |
Plan Mode & Debug Mode
Plan Mode
Plan Mode allows the agent to research your codebase, ask clarifying questions, and create detailed markdown plans with file paths and code references. Key features:
- Inline Mermaid diagrams for architecture visualization
- Clarifying questions before implementation
- Searchable plan history
- Build from plan in foreground or background
Debug Mode
Systematic troubleshooting with runtime evidence:
- Runtime logs across different stacks and languages
- Automatic error correlation
- Step-by-step debugging assistance
Cursor Blame (Enterprise)
For enterprises tracking AI-generated code, Cursor Blame provides:
- Visual indicators for AI-generated vs. human-written code
- Links to original conversation summaries
- Audit trails for compliance
- Metrics on AI assistance usage
Productivity Workflow with Cursor 2.4
- Morning standup: Review what cloud agents completed overnight
- Plan complex features: Use Plan Mode to design before implementing
- Define skills: Create SKILL.md files for team patterns
- Delegate tasks: Launch background agents for bug fixes and documentation
- Focus on high-value work: Handle architecture decisions while agents handle implementation
- Review and iterate: Use AI code review in the editor sidepanel
Getting Started
Update to Cursor 2.4 via the app's auto-update or download from cursor.com. Enable cloud agents in Settings → Agents.
Master Cursor's Agent Capabilities
We offer 1-on-1 training on Cursor's latest features including subagents, cloud execution, and enterprise governance. Learn to leverage AI agents for 10x development productivity.
Explore Training Programs