Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-continue-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
"repoUrl": "https://github.com/${{ github.repository }}"
}')
id=$(echo $response | jq -r '.id')
echo "https://hub.continue.dev/agents/$id"
echo "https://hub.continue.dev/hub?type=agents/$id"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

</div>

Get started in [Mission Control](https://hub.continue.dev/agents), [CLI (Headless Mode)](https://docs.continue.dev/cli/quick-start#headless-mode), or [CLI (TUI mode)](https://docs.continue.dev/cli/quick-start#tui-mode)
Get started in [Mission Control](https://hub.continue.dev/hub?type=agents), [CLI (Headless Mode)](https://docs.continue.dev/cli/quick-start#headless-mode), or [CLI (TUI mode)](https://docs.continue.dev/cli/quick-start#tui-mode)

## Cloud Agents

Expand Down
13 changes: 6 additions & 7 deletions docs/agents/create-and-edit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ sidebarTitle: "Create & Edit"

<Steps>
<Step title="🧭 Navigate to Create Agent">
From the Continue Mission Control top navigation bar, select **"+"** → **"New Agent"**.
Navigate to the [New Agent page](https://hub.continue.dev/new?type=agent).

This opens the **Create an Agent (beta)** form with all required fields.
This opens the **Create an Agent** form with all required fields.

</Step>

Expand All @@ -30,9 +30,9 @@ sidebarTitle: "Create & Edit"
| **Name** | Display name shown in Mission Control | `GitHub PR Agent` |
| **Prompt** | First instruction the agent receives | `Open a GitHub PR to fix the specified issue.` |
| **Description** | What the agent does | `Creates a pull request and includes AI-generated summaries.` |
| **Tools (MCPs)** | Select built-in or custom MCPs | `GitHub, PostHog, Supabase` |
| **Rules** | Add any organizational rules | `continuedev/gh-pr-commit-workflow, continuedev/summarization` |
| **Model** | Choose a default LLM | `Claude Sonnet 4.5` |
| **Tools ([MCPs](https://hub.continue.dev/hub?type=mcpServers))** | Select built-in or custom MCPs | `GitHub, PostHog, Supabase` |
| **[Rules](https://hub.continue.dev/hub?type=rules)** | Add any organizational rules | `continuedev/gh-pr-commit-workflow` |
| **[Model](https://hub.continue.dev/hub?type=models)** | Choose a default LLM | `Claude Sonnet 4.5` |
| **Owner + Slug** | Determines namespace | `my-org/github-pr-agent` |
| **Visibility** | Access level | `Public, Organization, or Private` |

Expand Down Expand Up @@ -70,8 +70,7 @@ sidebarTitle: "Create & Edit"

## Editing an Agent

You can edit any agent you own or that belongs to your organization.

You can edit any agent you own or that has Organization-level access.
<Steps>
<Step title="🧭 Access the Agent">
From the **Agents** page or Mission Control view, click your agent's name, then select **"Edit Agent"**.
Expand Down
8 changes: 4 additions & 4 deletions docs/agents/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Use Mission Control to kick off agents for:

<Steps>
<Step title="Access Mission Control">
Go to [hub.continue.dev/agents](https://hub.continue.dev/agents) and connect with your GitHub account.
Go to [Mission Control Agents](https://hub.continue.dev/hub?type=agents) and connect with your GitHub account.

![Mission Control Setup](/images/hub/workflows/images/workflows-setup.png)
</Step>
Expand All @@ -45,7 +45,7 @@ Use Mission Control to kick off agents for:
</Step>

<Step title="Run Your First Agent">
Enter a prompt and watch your agent work:
Enter additional instructions and watch your agent work:

```
"Fix the TypeError in api/users.ts and open a PR with tests"
Expand Down Expand Up @@ -79,7 +79,7 @@ Before creating your own agent, let's see one in action! The fastest way to expe
</Step>

<Step title="🎯 Access Mission Control">
Go to [hub.continue.dev/agents](https://hub.continue.dev/agents) and:
Go to [Mission Control Agents](https://hub.continue.dev/hub?type=agents) and:
- **Connect GitHub** and authorize Continue when prompted
- This gives agents access to create PRs in your repositories
</Step>
Expand Down Expand Up @@ -203,7 +203,7 @@ Choose the method that fits your workflow:
- Team collaboration
- One-time tasks

Access at [hub.continue.dev/agents](https://hub.continue.dev/agents)
Access at [hub.continue.dev/agents](https://hub.continue.dev/hub?type=agents)
</Tab>

<Tab title="💻 CLI (TUI Mode)">
Expand Down
34 changes: 26 additions & 8 deletions docs/agents/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ You can run Agents in three main ways:
Run one-off or scheduled tasks automatically without interaction.

```bash
cn -p --agent my-org/snyk-agent "Run weekly security scan" --auto
cn -p --agent my-org/snyk-agent "Run weekly security scan"
```

Perfect for: CI/CD pipelines, scheduled tasks, webhook integrations
Expand All @@ -79,34 +79,52 @@ You can run Agents in three main ways:
Skip the setup and use battle-tested agents from our cookbook collection:

<CardGroup cols={2}>
<Card title="🔒 Security Scanning" icon="shield-check" href="/guides/snyk-mcp-continue-cookbook">
<Card title="🔒 Security Scanning" icon="shield-check" href="https://hub.continue.dev/continuedev/snyk-continuous-ai-agent">

`continuedev/snyk-continuous-ai-agent`

Finds vulnerabilities and opens PRs with fixes

</Card>

<Card title="🐛 GitHub Management" icon="github" href="/guides/github-mcp-continue-cookbook">
<Card title="🐛 GitHub Management" icon="github" href="https://hub.continue.dev/continuedev/github-project-manager-agent">

`continuedev/github-project-manager-agent`

Triages issues and manages project workflows

</Card>

<Card title="📊 Analytics Insights" icon="chart-bar" href="/guides/posthog-github-continuous-ai">
<Card title="📊 Analytics Insights" icon="chart-bar" href="https://hub.continue.dev/continuedev/posthog-continuous-ai-agent">

`continuedev/posthog-continuous-ai-agent`

Analyzes user data and creates actionable tasks

</Card>

<Card title="⚡ Performance Optimization" icon="gauge-high" href="/guides/netlify-mcp-continuous-deployment">
<Card title="⚡ Performance Optimization" icon="gauge-high" href="https://hub.continue.dev/continuedev/netlify-continuous-ai-agent">

`continuedev/netlify-continuous-ai-agent`

Monitors Core Web Vitals and optimizes deployments

</Card>

<Card title="🗄️ Database Auditing" icon="database" href="/guides/supabase-mcp-database-workflow">
<Card title="🗄️ Database Auditing" icon="database" href="https://hub.continue.dev/continuedev/supabase-agent">

`continuedev/supabase-agent`

Audits RLS security and generates migrations

</Card>

<Card title="🔄 Data Pipelines" icon="arrows-rotate" href="/guides/dlt-mcp-continue-cookbook">
<Card title="🔄 Data Pipelines" icon="arrows-rotate" href="https://hub.continue.dev/continuedev/dlt-agent">

`continuedev/dlt-agent`

Inspects pipelines and debugs load errors

</Card>
</CardGroup>

Expand Down Expand Up @@ -222,7 +240,7 @@ The practice of using cloud agents, which we call Continuous AI, requires foreth
Learn to run agents from the command line
</Card>

<Card title="Mission Control" icon="desktop" href="https://hub.continue.dev/agents">
<Card title="Mission Control" icon="desktop" href="https://hub.continue.dev/hub?type=agents">
Access the web interface to manage agents
</Card>
</CardGroup>
5 changes: 4 additions & 1 deletion docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
"mission-control/integrations/github",
"mission-control/integrations/sentry",
"mission-control/integrations/snyk",
"mission-control/integrations/slack-agent"
"mission-control/integrations/slack-agent",
"mission-control/integrations/posthog",
"mission-control/integrations/atlassian",
"mission-control/integrations/netlify"
]
},
"mission-control/metrics",
Expand Down
6 changes: 6 additions & 0 deletions docs/guides/atlassian-mcp-continue-cookbook.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ sidebarTitle: "Atlassian Workflows with Continue"
- Automate Atlassian workflows with headless CLI runs
</Card>

<Info>
The new [Atlassian Mission Control Integration](/mission-control/integrations/atlassian) enables **[Continuous AI](/guides/continuous-ai)** for project management and documentation - where AI agents autonomously manage Jira issues, sync Confluence documentation, and streamline development workflows. This cookbook focuses on CLI-based workflows, but you can also deploy autonomous agents through Mission Control.

**Get Started:** Use this cookbook to understand Atlassian MCP fundamentals, then [enable Mission Control](/mission-control/integrations/atlassian) to deploy autonomous project management agents across your organization.
</Info>

## Prerequisites

Before starting, ensure you have:
Expand Down
6 changes: 6 additions & 0 deletions docs/guides/netlify-mcp-continuous-deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ sidebarTitle: "Using Netlify MCP for Performance Optimization"
from Netlify Analytics
</Card>

<Info>
The new [Netlify Mission Control Integration](/mission-control/integrations/netlify) enables **[Continuous AI](/guides/continuous-ai)** for deployment automation - where AI agents autonomously manage deployments, monitor site performance, and respond to deployment events. This cookbook focuses on CLI-based performance optimization workflows, but you can also deploy autonomous deployment agents through Mission Control.

**Get Started:** Use this cookbook to understand Netlify MCP fundamentals, then [enable Mission Control](/mission-control/integrations/netlify) to deploy autonomous deployment management agents across your organization.
</Info>

<Info>
**Did You Know?** Netlify is more than just static hosting! It offers:
- [Split Testing](https://docs.netlify.com/site-deploys/split-testing/) for A/B testing branches
Expand Down
6 changes: 6 additions & 0 deletions docs/guides/posthog-github-continuous-ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ sidebarTitle: "PostHog Analytics with Continue CLI"
issues with the GitHub CLI.
</Card>

<Info>
The new [PostHog Mission Control Integration](/mission-control/integrations/posthog) enables **[Continuous AI](/guides/continuous-ai)** for product analytics - where AI agents autonomously analyze user behavior, identify optimization opportunities, and create data-driven development tasks. This cookbook focuses on CLI-based workflows, but you can also deploy autonomous agents through Mission Control.

**Get Started:** Use this cookbook to understand PostHog analytics fundamentals, then [enable Mission Control](/mission-control/integrations/posthog) to deploy autonomous analytics-driven agents across your organization.
</Info>

## What You'll Learn

This cookbook teaches you to:
Expand Down
2 changes: 1 addition & 1 deletion docs/mission-control/configs/create-a-config.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebarTitle: "Create a Config"

## How to Create a Config from Scratch

To create an config from scratch, select “New config” in the top bar.
To create a config from scratch, navigate to [your config settings](https://hub.continue.dev/settings/configs).

Choose a name, slug, description, and icon for your config.

Expand Down
4 changes: 2 additions & 2 deletions docs/mission-control/configs/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Configs are flexible containers that combine multiple components to create power

## How Configs Work

Think of configs as recipes for AI assistance. Each config defines:
Each config defines:

- **What models** to use for different tasks (chat, autocomplete, code editing)
- **Which tools** are available through MCP servers
Expand All @@ -56,7 +56,7 @@ This flexibility lets you create specialized setups for different contexts, like

When creating configs, you can set visibility levels:

- **Personal**: Only you can see and use the config
- **Private**: Only you (and your org admins) can see and use the config
- **Public**: Anyone can discover and use your config
- **Organization**: Members of your organization can access the config

Expand Down
2 changes: 1 addition & 1 deletion docs/mission-control/governance/pricing.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Pricing"
description: "Continue Mission Control pricing plans for individuals, teams, and enterprises, including the Models Add-On that provides access to frontier AI models for a flat monthly fee"
url: "https://hub.continue.dev/pricing"
---

## Solo
Expand Down
2 changes: 1 addition & 1 deletion docs/mission-control/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Agents are built from reusable components that you can create, share, and custom

<Tip>

Components are the building blocks for agents that you can create new or remix from an existing component. When you create a component in mission control, it becomes available according to the permissions you set: Personal, Public, or Organization.
When you create a component for your agent in Mission Control, it becomes available according to the permissions you set: Personal, Public, or Organization.

</Tip>

Expand Down
Loading
Loading