Skip to content

aix sync

Reads supported config from one editor and installs the supported equivalent into another.

This command is for editor -> editor migration. If you want to apply ai.json, use aix install. If you want to create ai.json from an editor, use aix init --from.

Terminal window
aix sync <from> --to <to> [flags]

from and to must be different supported editors.

FlagDescription
--to <editor> / -tDestination editor.
--scope <scope> / -sApply the same scope to both source and destination.
--from-scope <scope>Scope to read from on the source editor.
--to-scope <scope>Scope to write to on the destination editor.
--dry-run / -dPreview changes without writing files.

Supported scope values are user and project.

If you do not pass any scope flags, sync defaults to user for both read and write.

Sync user-level config from Cursor to Claude Code:

Terminal window
aix sync cursor --to claude-code

Sync project-level config from Cursor to Zed:

Terminal window
aix sync cursor --to zed --scope project

Read project config but write user config:

Terminal window
aix sync opencode --to windsurf --from-scope project --to-scope user

Preview what would change:

Terminal window
aix sync cursor --to codex --dry-run
  1. Reads supported config from the source editor.
  2. Installs the supported equivalent into the destination editor.
  3. Reports anything the destination could not represent.

Some editors simply cannot represent every feature from every other editor. Sync does not turn that into a hard failure.

Instead, aix calls out what was skipped and why. Two common reasons:

  • The destination editor does not support that feature at all.
  • The destination editor supports it, but not at the requested scope.

Examples:

  • Codex converts prompts into skills instead of installing native prompts.
  • Zed exposes skills through pointer rules, not native skill files.
  • Windsurf and Codex still have global-only paths for some MCP writes, so a project-scoped sync will skip those writes and say so.

The command summary includes:

  • what aix imported from the source editor
  • which destination files changed
  • global-only changes that were applied or skipped
  • warnings for unsupported destination features
  • warnings for target-scope limitations

Those limitation warnings are informational. They tell you what did not make the trip.