What are Cloud Agents?
Cloud Agents are AI workflows that execute on remote infrastructure (Continue Mission Control) rather than your local machine. Because they live in the cloud, they maintain persistent, secure connections to your development tools and can be triggered in two ways:- On-Demand: Manually triggered via Chat, Tasks, or the CLI for complex, human-guided work.
- Automated: Automatically triggered by schedules (Cron) or events (Webhooks) for background maintenance.
Agents in Continue
Agents are custom AI workflows that combine a prompt, rules, and tools (MCPs and more) to complete specific, repeatable tasks.
They live in the Continue Mission Control and can be executed from Mission Control (web interface), TUI mode, or headless automation.
Ways to Run Cloud Agents
These execution modes allow Continue agents to function as cloud agents, running continuously, headlessly, or on schedules without requiring a developer in the loop:- 🌐 Mission Control
- 💻 TUI Mode
- 🤖 Headless Mode
Interactive web interfaceTrigger from the Continue Mission Control and review results in real-time.Perfect for: Interactive debugging, reviewing agent outputs, team collaboration
Local vs. Cloud Agents
| Feature | Local Agents (IDE / TUI) | Cloud Agents (Mission Control) |
|---|---|---|
| Compute Location | Your Local Machine | Remote Cloud Infrastructure |
| Primary Use Case | fast, private iteration and “single-player” coding | Collaborative tasks, heavy processing, and reliable automation |
| Context Access | Limited to open files and local git state | Full repository access + integrated tools (Sentry, Snyk, etc.) |
| Triggers | Manual Tasks / CLI | Hybrid: Manual Chat, Cron Schedules, or Event Webhooks |
| Availability | Stops when you close your laptop | Always On: Runs asynchronously in the background |
Pre-configured Cloud Agents
Skip the setup and use battle-tested agents from our cookbook collection:🔒 Security Scanning
continuedev/snyk-continuous-ai-agentA cloud agent that monitors vulnerabilities and automatically opens PRs with fixes.🐛 GitHub Management
continuedev/github-project-manager-agentA cloud agent that triages issues and manages project workflows📊 Analytics Insights
continuedev/posthog-continuous-ai-agentA cloud agent that analyzes user data and creates actionable tasks⚡ Performance Optimization
continuedev/netlify-continuous-ai-agentA cloud agent that monitors Core Web Vitals and optimizes deployments🗄️ Database Auditing
continuedev/supabase-agentA cloud agent that audits RLS security and generates migrations🔄 Data Pipelines
continuedev/dlt-agentA cloud agent that inspects pipelines and debugs load errorsExplore More Cloud Agents: Browse the complete collection of pre-configured agents and MCP integration cookbooks in our Guides Overview.
Collaboration
Agents are organizational assets — once created, everyone in your org can use them:| Role | Permissions |
|---|---|
| Public | Use, create, remix, and delete Agents |
| Organization | Share agents with your team |
| Private | Create, edit, and delete Agents for your personal use |
Getting Started
1
Try a Pre-configured Agent
Start with a cookbook agent like
continuedev/github-project-manager-agent:2
Practice with TUI Mode
Test agents locally before automation:
3
Create Your First Agent
Ready to build custom workflows? Learn how in our Create and Edit guide.
4
Set Up Automation
Integrate with CI/CD using headless mode and webhooks for continuous workflows.
Monitoring
You can monitor all activity for your Agents directly in Mission Control.Inbox Overview
Inbox Overview
The Inbox shows every Task or Workflow run, and you can filter by Agent.
Detailed Session View
Detailed Session View
Click any session in the Inbox to open the Detail page.Each session includes:
- Summary — what the agent did and why
- Diff — generated code changes
- Logs — full execution trace, tool calls, and reasoning
All monitoring is scoped to your current workspace.
Best Practices
The practice of using cloud agents, which we call Continuous AI, requires forethought to set up the right guardrails:- Start Small: Begin with tasks you’re confident Continue can accomplish
- Use Thorough Prompts: Agents can run for extended periods, so invest in detailed instructions
- Test Locally First: Practice with TUI mode before deploying to production
- Team Alignment: Discuss agent usage and adjust code review habits for higher PR volume
- Iterate and Improve: Be willing to refine prompts based on results