docs/agents/intro.mdx
Use Mission Control to kick off Cloud Agents for:
Before creating your own agent, let's see one in action! The fastest way to experience the power of Continue agents is with our demo repository.
**Option 1: GitHub Web Interface**
Visit [github.com/continuedev/demo-project](https://github.com/continuedev/demo-project) and click **Fork**
**Option 2: GitHub CLI**
```bash
gh repo fork continuedev/demo-project
```
<Tabs>
<Tab title="Add New Feature">
```
Create a new function that calculates fibonacci numbers.
```
</Tab>
<Tab title="Fix Existing Bug">
```
Fix the TypeError in api/users.ts
```
</Tab>
<Tab title="Add Documentation">
```
Add comprehensive README documentation with setup instructions.
```
</Tab>
</Tabs>
Here are some example tasks you can try with your Cloud Agents:
<AccordionGroup> <Accordion title="Bug Fixes & Code Quality">- "Fix the TypeError in api/users.ts where the user object might be undefined"
- "Add null checks to all database query results in the services/ directory"
- "Fix all ESLint warnings in the components folder and open a PR"
- "Update deprecated React lifecycle methods to hooks in legacy components"
- "Create a new REST endpoint for user profile updates with validation and error handling"
- "Add pagination to the products list page with previous/next buttons"
- "Implement dark mode toggle using Tailwind CSS classes across all pages"
- "Add unit tests for the authentication service using Jest"
- "Run a complete security scan and create GitHub issues for critical vulnerabilities"
- "Scan the codebase for hardcoded API keys and move them to environment variables"
- "Add input sanitization to all user-facing form fields"
- "Update npm packages with security vulnerabilities and test compatibility"
- "Add JSDoc comments to all exported functions in the utils/ directory"
- "Create a README.md for the new payment-processing module with setup instructions"
- "Generate TypeScript interfaces for all API response schemas"
- "Add error handling boilerplate to all async functions missing try-catch blocks"
- "Investigate why the login API is returning 500 errors intermittently and suggest fixes"
- "Analyze the performance bottleneck in the data processing pipeline"
- "Review the database schema for the orders table and suggest optimizations"
- "Find all TODO comments related to authentication and create a summary"
- "Extract the repeated validation logic in controllers into a shared utility function"
- "Convert all class components in src/legacy to functional components with hooks"
- "Rename all instances of 'userId' to 'accountId' across the codebase"
- "Split the 500-line UserService.ts into smaller, single-responsibility services"
Choose the method that fits your workflow:
<Tabs> <Tab title="🌐 Mission Control"> **Web interface for interactive use**Perfect for:
- Exploring AI agent capabilities
- Reviewing outputs before action
- Monitoring ongoing workflows
- Team collaboration
- One-time tasks
Access at [continue.dev/agents](https://continue.dev/agents)
```bash
cn --agent continuedev/github-project-manager-agent
```
Perfect for:
- Local development workflows
- Testing agent behavior
- Interactive debugging
- Quick iterations
```bash
cn --agent continuedev/snyk-continuous-ai-agent -p "Run security scan" --auto
```
Perfect for:
- Scheduled workflows
- CI/CD integration
- Webhook triggers
- Background processing
The practice of using Cloud Agents (Continuous AI) requires thoughtful setup of guardrails and habits:
<CardGroup cols={2}> <Card title="Start Small" icon="seedling"> Begin with tasks you're confident Continue can handle, like fixing known bugs with simple solutions. </Card> <Card title="Practice Locally" icon="terminal"> Test with [Continue CLI](../guides/cli) in TUI mode before deploying automation. </Card> <Card title="Be Thorough" icon="clipboard-list"> Agents can run for extended periods - invest time in detailed prompts with all important context. </Card> <Card title="Team Alignment" icon="users"> Discuss agent usage and adjust code review habits for higher PR volumes. </Card> </CardGroup> <Info> **Learn More**: Explore advanced patterns and case studies on the [Continuous AI Blog](https://blog.continue.dev). </Info>