migration-guides
Migration guides - from other AI tools, version upgrades, config migration. Use when switching from Cursor, Copilot, or Cody, upgrading Claude Code versions, or migrating configurations and customizations.
Best use case
migration-guides is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Migration guides - from other AI tools, version upgrades, config migration. Use when switching from Cursor, Copilot, or Cody, upgrading Claude Code versions, or migrating configurations and customizations.
Teams using migration-guides should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/migration-guides/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How migration-guides Compares
| Feature / Agent | migration-guides | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Migration guides - from other AI tools, version upgrades, config migration. Use when switching from Cursor, Copilot, or Cody, upgrading Claude Code versions, or migrating configurations and customizations.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Migration Guides
Comprehensive guides for migrating to Claude Code from other AI coding assistants, upgrading between versions, and migrating configurations.
## Quick Reference
| Migration Type | Guide | Common Scenarios |
|---------------|-------|------------------|
| From other tools | [FROM-OTHER-TOOLS.md](./FROM-OTHER-TOOLS.md) | Cursor, Copilot, Cody, Aider |
| Version upgrades | [VERSION-UPGRADES.md](./VERSION-UPGRADES.md) | Breaking changes, new features |
| Configuration | [CONFIG-MIGRATION.md](./CONFIG-MIGRATION.md) | Settings, rules, permissions |
## Migration Decision Tree
```
What are you migrating?
|
+-- From another AI tool?
| +-- GitHub Copilot --> See "From Copilot" section
| +-- Cursor --> See "From Cursor" section
| +-- Sourcegraph Cody --> See "From Cody" section
| +-- Aider --> See "From Aider" section
|
+-- Upgrading Claude Code version?
| +-- Minor version (1.x to 1.y) --> Usually safe, check changelog
| +-- Major version (1.x to 2.x) --> Review breaking changes
|
+-- Migrating configuration?
+-- Personal settings --> ~/.claude/settings.json
+-- Project settings --> .claude/settings.json
+-- Team settings --> .claude/settings.json + git
```
## Tool Comparison Overview
| Feature | Claude Code | Copilot | Cursor | Cody |
|---------|-------------|---------|--------|------|
| **Interface** | CLI + IDE | IDE plugin | Full IDE | IDE plugin |
| **Context** | Project-wide | File-based | Project-wide | Codebase |
| **Agentic** | Yes | Chat only | Yes | Limited |
| **MCP Support** | Yes | No | No | No |
| **Hooks** | Yes | No | No | No |
| **Skills** | Yes | No | No | No |
| **Custom Commands** | Yes | Limited | Yes | Limited |
| **Multi-file Edit** | Native | Manual | Native | Manual |
| **Git Integration** | Deep | Basic | Good | Basic |
## Core Concepts Mapping
### From Copilot
| Copilot Concept | Claude Code Equivalent |
|-----------------|----------------------|
| Copilot Chat | `claude` command |
| Inline suggestions | Not applicable (agentic model) |
| `/workspace` | Automatic (project context) |
| `/explain` | "explain this code" prompt |
| `/fix` | "fix this" prompt |
| `/tests` | "write tests for this" prompt |
### From Cursor
| Cursor Concept | Claude Code Equivalent |
|----------------|----------------------|
| Composer | `claude` agentic mode |
| Cursor Tab | Not applicable |
| `.cursorrules` | `CLAUDE.md` |
| `@codebase` | Automatic (Glob + Grep) |
| `@docs` | WebFetch or MCP servers |
| Inline edit | Edit tool |
### From Cody
| Cody Concept | Claude Code Equivalent |
|--------------|----------------------|
| Cody Chat | `claude` command |
| Autocomplete | Not applicable |
| Commands | Slash commands |
| Context selection | Automatic context |
| Embeddings | Glob + Grep search |
## Migration Workflow
### Phase 1: Assessment
- [ ] Document current tool usage patterns
- [ ] List custom configurations and rules
- [ ] Identify key workflows to preserve
- [ ] Note team conventions and standards
### Phase 2: Setup
- [ ] Install Claude Code: `npm install -g @anthropic-ai/claude-code`
- [ ] Run initial setup: `claude`
- [ ] Configure authentication
- [ ] Set permission mode for your workflow
### Phase 3: Configuration
- [ ] Create `CLAUDE.md` with project context
- [ ] Migrate rules to `.claude/settings.json`
- [ ] Set up hooks for automation
- [ ] Configure MCP servers if needed
### Phase 4: Validation
- [ ] Test key workflows
- [ ] Verify file operations work
- [ ] Check git integration
- [ ] Validate custom commands
### Phase 5: Team Rollout
- [ ] Document team conventions
- [ ] Share configuration files
- [ ] Create onboarding guide
- [ ] Establish support channel
## Configuration File Mapping
| Source Tool | Source File | Claude Code Target |
|-------------|-------------|-------------------|
| Cursor | `.cursorrules` | `CLAUDE.md` |
| Cursor | `.cursor/settings.json` | `.claude/settings.json` |
| Copilot | `.github/copilot-instructions.md` | `CLAUDE.md` |
| Cody | `.sourcegraph/cody.json` | `.claude/settings.json` |
| ESLint/Prettier | Config files | Hooks (PostToolUse) |
## Key Differences to Understand
### Agentic vs Autocomplete
Claude Code operates in an **agentic** mode:
- You describe what you want
- Claude plans and executes multiple steps
- Tools are used automatically (file read/write, search, bash)
- You approve or guide as needed
This differs from autocomplete-style tools where you:
- Type code and get suggestions
- Accept/reject line by line
- Manually trigger chat for larger tasks
### Context Window vs Embeddings
Claude Code uses a **context window** approach:
- Relevant files are loaded into context
- Glob and Grep search for specific content
- CLAUDE.md provides persistent project knowledge
- Compaction summarizes when context fills
Other tools may use **embeddings**:
- Entire codebase embedded in vector store
- Semantic search for relevant snippets
- May miss recent changes until re-indexed
### Permission Model
Claude Code has explicit permissions:
- File reads may need approval
- File writes need approval (unless configured)
- Bash commands need approval
- Permission modes control automation level
| Mode | Description |
|------|-------------|
| `default` | Ask for each sensitive operation |
| `plan` | Read-only, suggest but don't execute |
| `acceptEdits` | Auto-accept file edits |
| `dontAsk` | Trust all project operations |
| `bypassPermissions` | Skip all prompts (dangerous) |
## Common Migration Challenges
| Challenge | Solution |
|-----------|----------|
| No autocomplete | Use agentic workflow: describe, let Claude implement |
| Different context model | Use CLAUDE.md for persistent context |
| Team configuration | Commit `.claude/settings.json` to repo |
| IDE integration | Use Claude Code with your existing editor |
| Custom rules | Migrate to CLAUDE.md and hooks |
## Workflow Translation Examples
### Code Review
**Copilot/Cursor:**
```
Select code -> Right-click -> "Explain" or "Review"
```
**Claude Code:**
```bash
claude "review the changes in this PR for bugs and improvements"
```
### Bug Fixing
**Copilot/Cursor:**
```
Select error -> "Fix this"
```
**Claude Code:**
```bash
claude "fix the TypeError in src/api/handler.ts"
```
### Test Generation
**Copilot/Cursor:**
```
Select function -> "Generate tests"
```
**Claude Code:**
```bash
claude "write unit tests for the UserService class"
```
### Code Explanation
**Copilot/Cursor:**
```
Select code -> "Explain this"
```
**Claude Code:**
```bash
claude "explain how the authentication flow works in src/auth/"
```
## Best Practices
### 1. Start with CLAUDE.md
Create a comprehensive `CLAUDE.md` at project root:
```markdown
# Project Name
## Tech Stack
- Framework: Next.js 14
- Database: PostgreSQL with Drizzle
- Testing: Vitest
## Conventions
- Use TypeScript strict mode
- Prefer functional components
- Follow existing patterns in codebase
## Key Files
- `src/lib/db.ts` - Database connection
- `src/middleware.ts` - Auth middleware
```
### 2. Use Hooks for Automation
Replace IDE-specific automation with hooks:
```json
{
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "bun run format"
}
]
}
]
}
}
```
### 3. Configure Permissions Appropriately
Start conservative, loosen as needed:
```bash
# Start with default (asks for everything)
claude
# Move to auto-accept edits when comfortable
claude --dangerously-skip-permissions
```
### 4. Create Custom Slash Commands
Replace tool-specific commands with slash commands:
```markdown
<!-- .claude/commands/review.md -->
---
description: Review code changes for issues
---
Review the following code for:
- Potential bugs
- Performance issues
- Security concerns
- Code style violations
```
### 5. Leverage MCP for External Data
Replace tool-specific integrations with MCP servers:
```json
{
"mcpServers": {
"docs": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-docs-server"]
}
}
}
```
## Validation Checklist
After migration, verify:
- [ ] Can create new files
- [ ] Can edit existing files
- [ ] Can run bash commands
- [ ] Can search codebase (Glob, Grep)
- [ ] Git operations work
- [ ] Custom commands are available
- [ ] Hooks execute correctly
- [ ] CLAUDE.md context is loaded
- [ ] Team members can use shared config
## Reference Files
| File | Contents |
|------|----------|
| [FROM-OTHER-TOOLS.md](./FROM-OTHER-TOOLS.md) | Detailed tool-specific migration guides |
| [VERSION-UPGRADES.md](./VERSION-UPGRADES.md) | Version upgrade patterns and breaking changes |
| [CONFIG-MIGRATION.md](./CONFIG-MIGRATION.md) | Configuration file migration details |Related Skills
claude-opus-4-5-migration
Migrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Use when the user wants to update their codebase, prompts, or API calls to use Opus 4.5. Handles model string updates and prompt adjustments for known Opus 4.5 behavioral differences. Does NOT migrate Haiku 4.5.
airflow-3x-migration
Comprehensive guide and patterns for migrating Apache Airflow 2.x workflows to Airflow 3.x, covering import changes, deprecated features, and new paradigms like Asset scheduling and TaskFlow API.
tuist-migration
Integrates Tuist into an existing iOS project that uses SPM local packages. Use when migrating a project from a manually maintained .xcodeproj to a Tuist-generated project, adding Tuist as an orchestration layer on top of SPM. Covers 8 sequential phases — audit, base structure, helpers, generation, schemes, CI, cache, and validation. Includes automation scripts and AI prompt templates for each phase.
Schema Migration
Create safe, zero-downtime schema migrations with rollback procedures
Migration Planner
Plan safe, zero-downtime migrations for schemas, services, and infrastructure
database-migrations-sql-migrations
SQL database migrations with zero-downtime strategies for PostgreSQL, MySQL, SQL Server
database-migration
Execute database migrations across ORMs and platforms with zero-downtime strategies, data transformation, and rollback procedures. Use when migrating databases, changing schemas, performing data tr...
apply-migration
Apply SQL migration files to JusticeHub Supabase database with verification and error handling.
alembic-migration-manager
A skill for managing database migrations with Alembic. Use this for tasks involving Alembic initialization, configuration, creating new migration scripts (both autogenerated and manual), defining upgrade and downgrade logic, handling data migrations, testing migrations, performing rollbacks, and following production deployment best practices for database changes.
aqe-v2-v3-migration
Migrate Agentic QE projects from v2 to v3 with zero data loss
bgo
Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.
moai-lang-r
R 4.4+ best practices with testthat 3.2, lintr 3.2, and data analysis patterns.