Skip to main content

Documentation Index

Fetch the complete documentation index at: https://cli.devin.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Devin for Terminal can automatically import rules and configuration from other AI coding tools installed in your project. This happens when configuration files from Cursor, Windsurf, Claude Code, OpenCode, VS Code, or Zed are detected in your workspace.

How It Works

When you start a session, Devin for Terminal checks for configuration files from supported tools and imports what it finds.

Cursor

What’s importedSource files
Rules.cursorrules, .cursor/rules/*.md, .cursor/rules/*.mdc
MCP servers.cursor/mcp.json

Windsurf

What’s importedSource files
Rules.windsurf/rules/*.md, .windsurf/global_rules.md (at workspace root and subdirectories)
Skills.windsurf/skills/ (project), ~/.codeium/<channel>/skills/ (global, channel-dependent)
Workflows.windsurf/workflows/*.md
MCP servers~/.codeium/<channel>/mcp_config.json (channel-dependent)
Devin for Terminal reads from the Windsurf config directory matching its own channel: stable reads from ~/.codeium/windsurf/, next reads from ~/.codeium/windsurf-next/, insiders reads from ~/.codeium/windsurf-insiders/. .windsurf/rules/ directories can exist at multiple levels in your project. Rules at the workspace root are loaded at session start. Rules in subdirectories are discovered lazily when the agent accesses files in that directory.

Claude Code

What’s importedSource files
RulesCLAUDE.md, ~/.claude/CLAUDE.md
Skills.claude/skills/**/SKILL.md
Commands (as skills).claude/commands/**/*.md
MCP servers.mcp.json, .claude/settings.json, .claude/settings.local.json, ~/.claude.json, ~/.claude/settings.json, ~/.claude/settings.local.json, ~/.claude/mcp_servers.json

OpenCode

What’s importedSource files
MCP serversopencode.json (project), ~/.config/opencode/opencode.json (global)
OpenCode uses a different MCP schema from the standard format. Commands can be arrays or strings, environment variables use the "environment" key, and servers use an "enabled" flag (inverted from the standard "disabled" flag). These are automatically converted during import.

VS Code

What’s importedSource files
MCP servers.vscode/mcp.json (project only)
VS Code uses a "servers" key instead of the standard "mcpServers" key.

Zed

What’s importedSource files
MCP servers.zed/settings.json (project), ~/.config/zed/settings.json (global)
Zed uses a "context_servers" key in its settings file.

Disabling Configuration Import

To stop importing from a specific tool, set it to false in your config:
// ~/.config/devin/config.json
// (on Windows: %APPDATA%\devin\config.json)
{
  "read_config_from": {
    "cursor": false,
    "windsurf": false,
    "claude": false,
    "opencode": false,
    "vscode": false,
    "zed": false
  }
}
You can disable imports selectively — for example, import from Cursor but not Windsurf:
{
  "read_config_from": {
    "cursor": true,
    "windsurf": false
  }
}

Options

OptionTypeDefaultDescription
cursorbooleantrueImport rules and MCP servers from Cursor config files
windsurfbooleantrueImport rules, skills, workflows, and MCP servers from Windsurf
claudebooleantrueImport rules, skills, commands, and MCP servers from Claude Code
opencodebooleantrueImport MCP servers from OpenCode config files
vscodebooleantrueImport MCP servers from VS Code config files
zedbooleantrueImport MCP servers from Zed settings files
Setting a value to true (or leaving it unset) enables import. Setting it to false disables import for that tool.

Default Behavior

If you don’t explicitly configure read_config_from, all imports are enabled by default. Set any option to false to disable imports from that tool.