From 487f5ba98c060c4a6066cf6051d5420e4774d89a Mon Sep 17 00:00:00 2001 From: Nate Date: Fri, 30 Jan 2026 17:34:52 -0800 Subject: [PATCH] update icons --- docs/customize/telemetry.mdx | 1 - docs/docs.json | 14 +-- docs/index.mdx | 165 +++++------------------------------ docs/overview.mdx | 155 ++++++++++++++++++++++++++++++++ 4 files changed, 180 insertions(+), 155 deletions(-) create mode 100644 docs/overview.mdx diff --git a/docs/customize/telemetry.mdx b/docs/customize/telemetry.mdx index 12dc39bf2..be5fb1a24 100644 --- a/docs/customize/telemetry.mdx +++ b/docs/customize/telemetry.mdx @@ -1,6 +1,5 @@ --- title: "Telemetry" -icon: "chart-line" description: "Learn about Continue's anonymous telemetry collection practices, what usage data is tracked, and how to opt out of data collection to maintain your privacy preferences" --- diff --git a/docs/docs.json b/docs/docs.json index 5f9a91bf5..0513a93c8 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -27,7 +27,6 @@ "mission-control/workflows", { "group": "Integrations", - "icon": "plug", "pages": [ "mission-control/integrations", "mission-control/integrations/github", @@ -44,7 +43,6 @@ "mission-control/sharing", { "group": "Governance", - "icon": "building", "pages": [ "mission-control/governance/creating-an-org", "mission-control/governance/org-permissions", @@ -53,7 +51,6 @@ }, { "group": "Secrets", - "icon": "key", "pages": [ "mission-control/secrets/secret-types", "mission-control/secrets/secret-resolution" @@ -61,7 +58,6 @@ }, { "group": "Configs", - "icon": "book", "pages": [ "mission-control/configs/intro", "mission-control/configs/use-a-config", @@ -118,7 +114,6 @@ "pages": [ { "group": "Agent", - "icon": "robot", "pages": [ "ide-extensions/agent/quick-start", "ide-extensions/agent/how-it-works", @@ -130,7 +125,6 @@ }, { "group": "Chat", - "icon": "messages", "pages": [ "ide-extensions/chat/quick-start", "ide-extensions/chat/how-it-works", @@ -141,7 +135,6 @@ }, { "group": "Autocomplete", - "icon": "sparkles", "pages": [ "ide-extensions/autocomplete/quick-start", "ide-extensions/autocomplete/how-it-works", @@ -153,7 +146,6 @@ }, { "group": "Edit", - "icon": "pen-to-square", "pages": [ "ide-extensions/edit/quick-start", "ide-extensions/edit/how-it-works", @@ -176,7 +168,6 @@ "customize/prompts", { "group": "Model Providers", - "icon": "server", "pages": [ "customize/model-providers/overview", { @@ -216,7 +207,6 @@ }, { "group": "Model Roles", - "icon": "robot", "pages": [ "customize/model-roles/00-intro", "customize/model-roles/chat", @@ -229,7 +219,6 @@ }, { "group": "Deep Dives", - "icon": "microscope", "pages": [ "customize/deep-dives/configuration", "customize/deep-dives/rules", @@ -270,6 +259,7 @@ }, { "group": "Cloud Agents", + "icon": "cloud", "pages": [ "guides/cloud-agents/cloud-agents-taxonomy", "guides/cloud-agents/guide-to-cloud-agents", @@ -282,6 +272,7 @@ }, { "group": "Guides", + "icon": "compass", "pages": [ { "group": "Understanding Continue", @@ -321,7 +312,6 @@ }, { "group": "Cookbooks", - "icon": "book-open-cover", "pages": [ "guides/posthog-github-continuous-ai", "guides/continue-docs-mcp-cookbook", diff --git a/docs/index.mdx b/docs/index.mdx index 71d1ab8a0..ebe60ed7e 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -1,156 +1,37 @@ --- -title: "Welcome to Continue" -icon: book-open -description: "Create, run, and automate AI agents across Mission Control, terminal, and CI/CD" +title: "What is Continue?" +description: "Run agents as CI checks on every PR" --- - - - +Continue lets you create agents that review every pull request. Each agent runs as a GitHub check — green if the code looks good, red with a suggested diff if not. -## Mission Control - - Central dashboard for managing Agents, Tasks, Workflows, and Integrations. - +Agents are markdown prompts describing the standards you want to enforce. They can be defined at [continue.dev](https://continue.dev/agents) or in your repo at `.continue/agents/`. - - - Prompt an agent to complete a one-off task. +For example, you could create this file - • Run a one-time task or test for automation
- • Monitor progress in the tasks tab -
- - Schedule or trigger your agents automatically. +```markdown .continue/agents/security-review.md +Review this PR and check that: - • Cron, Webhook, or GitHub-based triggers
- • Ideal for daily audits or status checks -
- - Trigger your inbox agents to resolve opened PRs. +- No secrets or API keys are hardcoded +- All new API endpoints have input validation +- Error responses use the standard error format +``` - • Address review comments
- • Fix CI test failures and resolve merge conflicts -
-
+or you could use this agent as a starting point. -## Integrations - - Connect Continue to your existing developer tools to automate the repetitive work you don't have time for. - +## Get started + +1. Connect GitHub at [continue.dev](https://continue.dev/) +2. [Create an agent](https://continue.dev/agents/new) — write your rules in markdown, set the trigger to GitHub +3. Open a PR and watch it run + +## Example agents - - Enable repository access for Agents to read and create PRs. + + Scans for dependency vulnerabilities and opens fix PRs. - - Mention @Continue in Slack to trigger Agents and receive updates. - - - Automatically generate PRs to fix new issues from Sentry alerts. - - - Detect and fix security vulnerabilities automatically. - - - -You can go to [Mission Control Integrations](https://hub.continue.dev/integrations) for the full list of tools you can connect, or for more information see [the docs page](https://docs.continue.dev/mission-control/integrations). - - -## Continue CLI - -Terminal-native AI coding assistance with TUI and headless modes. - - - - ```bash npm - npm i -g @continuedev/cli - ``` - - ```bash yarn - yarn global add @continuedev/cli - ``` - - ```bash pnpm - pnpm add -g @continuedev/cli - ``` - - - - - - Interactive Terminal User Interface for development workflows - - • Automate builds & refactoring -
- • Pre-commit hooks & scripted fixes -
- • Terminal-first development -
- - Automated AI coding for CI/CD and server environments - - • Run in CI/CD pipelines -
- • Batch processing & bulk operations -
- • Server & container deployments -
-
- -## IDE Extensions - - - Optional IDE extensions for real-time code editing and assistance. - - -Learn more about [extension features](https://docs.continue.dev/ide-extensions/quick-start) and how to [customize](https://docs.continue.dev/customize/overview) → - - - - Install from VS Code Marketplace - Real-time coding assistance and refactoring - - - Install from JetBrains Plugin Repository - Community supported for autocomplete and multi-file edits - - - -## Resources - - - - Create your agents, run tasks, add workflows and integrations - - - Get help from the community - - - Connect GitHub, Slack, Sentry, and Snyk to power your automations. + + Pre-built agents on continue.dev. diff --git a/docs/overview.mdx b/docs/overview.mdx new file mode 100644 index 000000000..293e98542 --- /dev/null +++ b/docs/overview.mdx @@ -0,0 +1,155 @@ +--- +title: "Overview" +description: "Run agents as CI checks on every PR" +--- + + + + + +## Mission Control + + Central dashboard for managing Agents, Tasks, Workflows, and Integrations. + + + + + Prompt an agent to complete a one-off task. + + • Run a one-time task or test for automation
+ • Monitor progress in the tasks tab +
+ + Schedule or trigger your agents automatically. + + • Cron, Webhook, or GitHub-based triggers
+ • Ideal for daily audits or status checks +
+ + Trigger your inbox agents to resolve opened PRs. + + • Address review comments
+ • Fix CI test failures and resolve merge conflicts +
+
+ +## Integrations + + Connect Continue to your existing developer tools to automate the repetitive work you don't have time for. + + + + + Enable repository access for Agents to read and create PRs. + + + Mention @Continue in Slack to trigger Agents and receive updates. + + + Automatically generate PRs to fix new issues from Sentry alerts. + + + Detect and fix security vulnerabilities automatically. + + + +You can go to [Mission Control Integrations](https://hub.continue.dev/integrations) for the full list of tools you can connect, or for more information see [the docs page](https://docs.continue.dev/mission-control/integrations). + + +## Continue CLI + +Terminal-native AI coding assistance with TUI and headless modes. + + + + ```bash npm + npm i -g @continuedev/cli + ``` + + ```bash yarn + yarn global add @continuedev/cli + ``` + + ```bash pnpm + pnpm add -g @continuedev/cli + ``` + + + + + + Interactive Terminal User Interface for development workflows + + • Automate builds & refactoring +
+ • Pre-commit hooks & scripted fixes +
+ • Terminal-first development +
+ + Automated AI coding for CI/CD and server environments + + • Run in CI/CD pipelines +
+ • Batch processing & bulk operations +
+ • Server & container deployments +
+
+ +## IDE Extensions + + + Optional IDE extensions for real-time code editing and assistance. + + +Learn more about [extension features](https://docs.continue.dev/ide-extensions/quick-start) and how to [customize](https://docs.continue.dev/customize/overview) → + + + + Install from VS Code Marketplace + Real-time coding assistance and refactoring + + + Install from JetBrains Plugin Repository + Community supported for autocomplete and multi-file edits + + + +## Resources + + + + Create your agents, run tasks, add workflows and integrations + + + Get help from the community + + + Connect GitHub, Slack, Sentry, and Snyk to power your automations. + +