Mission Control is in beta. Please share any feedback with us in GitHub discussions.
- Addressing small nitpicks and bugs
- Building boilerplate-heavy features
- Investigating an issue to kickstart your work
- Automated security scanning
- Running repeatable tasks with your own rules, prompts, and MCP servers
- Much more!
Quickstart
To kick off your first agent- Go to hub.continue.dev/agents

- Connect with your GitHub account
- Enter the prompt for your agent
Example Workflow Tasks
Here are some example tasks you can try with your agents:Bug Fixes & Code Quality
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â
- âUpdate deprecated React lifecycle methods to hooks in legacy componentsâ
Feature Development
Feature Development
- â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â
Security & Compliance
Security & Compliance
- âScan the codebase for hardcoded API keys and move them to environment variablesâ
- âAdd input sanitization to all user-facing form fieldsâ
- âUpdate all npm packages with known security vulnerabilitiesâ
- âImplement rate limiting on the /api/login endpointâ
Documentation & Boilerplate
Documentation & Boilerplate
- â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â
Investigation & Analysis
Investigation & Analysis
- â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â
Refactoring
Refactoring
- â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â
How to use background agents
The practice of using background agents, which we call Continuous AI, requires practice and forethought to set up the right guiderails and habits to fit your development workflow, much like learning to work with a larger engineering team. We are constantly sharing our learnings on the Continuous AI Blog, but these few high-level tips are a great way to quickly become successful with agents:- Practice first with the Continue CLI in âTUI modeâ. The Continue CLI is used to run agents, so you can easily test your prompts locally.
- Identify and begin with tasks that you are confident can be accomplished by Continue. For example, ask Continue to fix a small bug where you already know the solution is simple.
- Once you have merged a PR created by Continue, be increasingly ambitious with your tasks. By being willing to start tasks that might not succeed on the first try, you will learn about prompting best practices and limitations of current language models.
- Use thorough prompts. Workflows can run for a long time to complete their task, so it is worthwhile to invest in sharing all of the important details.
- Discuss the use of agents with your team. Truly embracing Continuous AI likely means acknowledging that a higher volume of PRs will be created and adjusting your code review habits.