StealThis .dev

Continue.dev — Open Source AI Assistant (VS Code + JetBrains)

Open source AI coding assistant and hub for VS Code and JetBrains, letting developers build custom agents, models, rules, and MCP servers.

markdown
Targets: HTML

Code

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Continue.dev — Open Source AI Assistant</title>
  <style>
    :root {
      --bg: #0b0f17;
      --surface: #141a26;
      --surface-2: #1b2333;
      --text: #e6edf6;
      --muted: #8b97a8;
      --accent: #6ea8fe;
      --border: rgba(255, 255, 255, 0.08);
      --radius: 18px;
    }

    * { box-sizing: border-box; }

    html, body { height: 100%; }

    body {
      margin: 0;
      background:
        radial-gradient(1200px 600px at 80% -10%, rgba(110, 168, 254, 0.10), transparent 60%),
        var(--bg);
      color: var(--text);
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      line-height: 1.55;
    }

    .card {
      width: 100%;
      max-width: 640px;
      background: linear-gradient(180deg, var(--surface), var(--surface-2));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
      padding: 28px;
    }

    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(110, 168, 254, 0.12);
      border: 1px solid rgba(110, 168, 254, 0.25);
      padding: 4px 10px;
      border-radius: 999px;
      margin: 0 0 14px;
    }

    h1 {
      font-size: clamp(1.35rem, 4vw, 1.7rem);
      line-height: 1.25;
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }

    .desc {
      color: var(--muted);
      margin: 0 0 22px;
      font-size: 0.98rem;
    }

    h2 {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin: 22px 0 10px;
    }

    .access {
      background: #0b0f17;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
    }

    .access a.url {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      word-break: break-all;
    }

    .access a.url:hover { text-decoration: underline; }

    pre {
      margin: 12px 0 0;
      overflow-x: auto;
    }

    pre code {
      display: block;
      font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, "Liberation Mono", monospace;
      font-size: 0.85rem;
      color: #cdd9ea;
      white-space: pre;
    }

    .pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 10px 0 4px;
      padding: 0;
      list-style: none;
    }

    .pills li {
      font-size: 12px;
      font-weight: 500;
      color: var(--text);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      padding: 5px 11px;
      border-radius: 999px;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      padding: 12px 20px;
      background: var(--accent);
      color: #07101f;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      border-radius: 12px;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
    }

    .cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(110, 168, 254, 0.35);
    }

    a:focus-visible,
    .cta:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .cta svg { width: 16px; height: 16px; }
  </style>
</head>
<body>
  <main class="card">
    <p class="eyebrow">Continue.dev</p>
    <h1>Continue.dev — Open Source AI Assistant (VS Code + JetBrains)</h1>
    <p class="desc">
      Open source AI coding assistant and hub where developers build, share, and remix custom
      agents from models, rules, prompts, and MCP servers — running inside the editor or CLI.
    </p>

    <h2>How to access</h2>
    <div class="access">
      <a class="url" href="https://www.continue.dev/" target="_blank" rel="noopener">https://www.continue.dev/</a>
      <pre><code># Install the CLI for terminal &amp; headless agents
npm i -g @continuedev/cli
cn

# Or install the IDE extension from the
# VS Code Marketplace / JetBrains Marketplace ("Continue")</code></pre>
    </div>

    <h2>Compatible with</h2>
    <ul class="pills">
      <li>VS Code</li>
      <li>JetBrains</li>
      <li>CLI</li>
      <li>MCP servers</li>
      <li>Continue Hub</li>
    </ul>

    <a class="cta" href="https://www.continue.dev/" target="_blank" rel="noopener">
      Open Continue.dev
      <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
        <path d="M7 17 17 7" />
        <path d="M8 7h9v9" />
      </svg>
    </a>
  </main>
</body>
</html>

What it is

Continue.dev is an open source AI coding assistant for VS Code and JetBrains, plus the Continue Hub where developers discover and share building blocks for AI agents: models, rules, prompts, docs, and MCP servers. Instead of locking you to one provider, it lets you wire up your own assistants from mix-and-match components and run them inside your editor or from the command line.

How to access / install

  • Visit the website and hub: https://www.continue.dev/
  • Install the IDE extensions from the VS Code Marketplace (“Continue”) or the JetBrains Marketplace.
  • Use the CLI for terminal and headless/agent workflows:
npm i -g @continuedev/cli
cn
  • Browse and remix shared blocks (models, MCP servers, rules, prompts) on the Continue Hub, then reference them in your config.yaml assistant definition.

Good for

  • Teams that want an open, customizable alternative to closed AI assistants.
  • Developers assembling custom agents from reusable models, rules, and MCP servers.
  • Anyone who works across both VS Code and JetBrains and wants one consistent setup.
  • Sharing standardized assistant configs and context blocks across a team via the hub.