Skip to main content

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 Hub and can be executed from Mission Control (web interface), TUI mode, or headless automation.

What Are Agents?

Agents let your team standardize common workflows like opening GitHub PRs, summarizing analytics, or auditing security. Each agent includes:

Agent Components

ComponentDescriptionExample
PromptThe agent’s main instruction that defines what it does and how it should behave. Additional user input is appended when invoked.Example prompt: “Summarize ongoing work with status, blockers, and next steps. Use markdown formatting and a concise, professional tone.”
RulesDefine consistent standards or behaviors that guide how the agent responds. Rules help ensure reliability across team usage.“Always include related issue or PR links when summarizing work.”
Tools / MCPsExternal systems or integrations the agent can call to complete tasks. MCPs (Model Context Protocols) extend functionality through APIs.GitHub, PostHog, Supabase
ModelThe large language model that powers the agent’s reasoning and output generation.Claude Sonnet 4.5
VisibilityDetermines who can view or use the agent. Controls access at creation time.Public, Organization, or Private
Mission Control is in beta. Please share any feedback with us in GitHub discussions.

Ways to Run Agents

You can run Agents in three main ways:
  • 🌐 Mission Control
  • 💻 TUI Mode
  • 🤖 Headless Mode
Interactive web interfaceTrigger from the Continue Hub and review results in real-time.
# Navigate to hub.continue.dev/agents
# Click "Run Agent" on any agent
# Monitor progress and review outputs
Perfect for: Interactive debugging, reviewing agent outputs, team collaboration

Pre-configured Agents

Skip the setup and use battle-tested agents from our cookbook collection:
Explore More 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:
RolePermissions
PublicUse, create, remix, and delete Agents
OrganizationShare agents with your team
PrivateCreate, 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:
cn --agent continuedev/github-project-manager-agent "List open issues labeled bug"
2

Practice with TUI Mode

Test agents locally before automation:
cn --agent continuedev/snyk-continuous-ai-agent
# Interactive mode - perfect for learning how to use the agent for your use case
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.

Best Practices

The practice of using background 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

Next Steps