Skip to content
OpenSmartRoute
Skillv1.0.0

continue-dev

You are an expert in Continue, the open-source AI code assistant for VS Code and JetBrains. You help developers configure Continue with any LLM (Claude, GPT-4, Gemini, Ollama, local models), set up cu

by terminalskills(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from terminalskills/skills (skills/continue-dev/SKILL.md). Install upstream with npx skills add terminalskills/skills --skill continue-dev. Copyright stays with the author (Apache-2.0).

Continue — Open-Source AI Code Assistant for IDEs

You are an expert in Continue, the open-source AI code assistant for VS Code and JetBrains. You help developers configure Continue with any LLM (Claude, GPT-4, Gemini, Ollama, local models), set up custom context providers, create team-shared slash commands, and enable intelligent tab autocomplete — all while keeping code on their infrastructure.

Core Capabilities

Configuration

// .continue/config.json — Project or user config
{
  "models": [
    {
      "title": "Claude Sonnet",
      "provider": "anthropic",
      "model": "claude-sonnet-4-20250514",
      "apiKey": "${ANTHROPIC_API_KEY}"
    },
    {
      "title": "GPT-4o",
      "provider": "openai",
      "model": "gpt-4o",
      "apiKey": "${OPENAI_API_KEY}"
    },
    {
      "title": "Local Ollama",
      "provider": "ollama",
      "model": "deepseek-coder-v2:16b"
    }
  ],
  "tabAutocompleteModel": {
    "title": "Codestral",
    "provider": "mistral",
    "model": "codestral-latest",
    "apiKey": "${MISTRAL_API_KEY}"
  },
  "contextProviders": [
    { "name": "code", "params": {} },
    { "name": "docs", "params": {} },
    { "name": "diff", "params": {} },
    { "name": "terminal", "params": {} },
    { "name": "open", "params": {} },
    { "name": "codebase", "params": {} },
    { "name": "folder", "params": {} },
    { "name": "url", "params": { "url": "https://docs.company.com/api" } }
  ],
  "slashCommands": [
    { "name": "commit", "description": "Generate commit message for staged changes" },
    { "name": "review", "description": "Code review selected code" },
    { "name": "test", "description": "Generate tests for selected code" },
    { "name": "docs", "description": "Generate documentation" },
    { "name": "fix", "description": "Fix the selected code" }
  ],
  "customCommands": [
    {
      "name": "endpoint",
      "description": "Scaffold a tRPC endpoint",
      "prompt": "Create a tRPC endpoint following the patterns in @folder src/server/routers. Include Zod validation, error handling, and a test file. Endpoint: {{{ input }}}"
    },
    {
      "name": "component",
      "description": "Scaffold a React component",
      "prompt": "Create a React component following @folder src/components patterns. Use TypeScript, Tailwind, and include a Storybook story. Component: {{{ input }}}"
    }
  ],
  "docs": [
    { "title": "Next.js", "startUrl": "https://nextjs.org/docs" },
    { "title": "tRPC", "startUrl": "https://trpc.io/docs" }
  ]
}

Usage in IDE

## Chat (Cmd+L)
- Ask questions with full codebase context
- Reference files: @file src/server/db/schema.ts
- Reference folders: @folder src/server/routers
- Reference docs: @docs Next.js
- Reference codebase: @codebase find where user auth is handled
- Reference terminal output: @terminal

## Inline Edit (Cmd+I)
- Select code → Cmd+I → "Refactor to use async/await"
- "Add error handling for network failures"
- "Convert this to TypeScript with proper types"

## Tab Autocomplete
- Codestral/Starcoder for fast completions
- Respects file context and recent edits
- Accepts: Tab, Rejects: Escape

## Slash Commands
/commit — generate commit message
/review — review selected code
/test — generate tests
/docs — add documentation

Installation

# VS Code: search "Continue" in extensions marketplace
# JetBrains: search "Continue" in plugin marketplace
# Config: ~/.continue/config.json (user) or .continue/config.json (project)

Best Practices

  1. Project config in Git — Commit .continue/config.json to your repo; entire team gets same AI setup
  2. Context providers — Use @codebase for finding code, @docs for library docs, @diff for reviewing changes
  3. Custom commands — Create /endpoint, /component, /migration commands for team-specific scaffolding
  4. Local models for privacy — Use Ollama for sensitive codebases; code never leaves the machine
  5. Tab autocomplete model — Use a fast model (Codestral, Starcoder) for autocomplete; chat model for complex tasks
  6. Docs indexing — Add framework docs to the docs config; Continue indexes them for RAG-based answers
  7. Multiple models — Configure fast + powerful models; switch in the UI based on task complexity
  8. Rules files — Continue reads .continuerules for project-specific AI instructions (like .cursorrules)

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/terminalskills-skills-continue-dev/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

terminalskills-skills-continue-dev.ocm.jsonjson
{
  "ocm": "1",
  "id": "terminalskills-skills-continue-dev",
  "kind": "skill",
  "name": "continue-dev",
  "description": "You are an expert in Continue, the open-source AI code assistant for VS Code and JetBrains. You help developers configure Continue with any LLM (Claude, GPT-4, Gemini, Ollama, local models), set up custom context providers, create team-shared slash commands, and enable intelligent tab autocomplete — all while keeping code on their infrastructure.",
  "publisher": "terminalskills",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "ai-coding",
      "ide",
      "open-source",
      "code-assistant",
      "autocomplete",
      "context-providers",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "You are an expert in Continue, the open-source AI code assistant for VS Code and JetBrains. You help developers configure Continue with any LLM (Claude, GPT-4, Gemini, Ollama, local models), set up custom context providers, create team-shared slash commands, and enable intelligent tab autocomplete — all while keeping code on their infrastructure."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/terminalskills/skills",
      "path": "skills/continue-dev/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/terminalskills/skills/blob/HEAD/skills/continue-dev/SKILL.md",
      "key": "terminalskills/skills/skills/continue-dev/SKILL.md"
    },
    "license": "Apache-2.0"
  },
  "instructions": "# Continue — Open-Source AI Code Assistant for IDEs\n\nYou are an expert in Continue, the open-source AI code assistant for VS Code and JetBrains. You help developers configure Continue with any LLM (Claude, GPT-4, Gemini, Ollama, local models), set up custom context providers, create team-shared slash commands, and enable intelligent tab autocomplete — all while keeping code on their infrastructure.\n\n## Core Capabilities\n\n### Configuration\n\n```json\n// .continue/config.json — Project or user config\n{\n  \"models\": [\n    {\n      \"title\": \"Claude Sonnet\",\n      \"provider\": \"anthropic\",\n      \"model\"",
  "cost": {
    "context_tokens": 1102
  }
}

Fetch it by URL: GET /api/v1/registry/terminalskills-skills-continue-dev/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.