Plexus Guide

How to sync Claude Code and Codex skills and MCP without replacing native files

Claude Code and Codex are close enough to share intent, but different enough that manual copy-paste of skills and MCP config drifts almost immediately.

A common setup is Claude Code for planning and Codex for automation. The moment one of them gets a better MCP server list, cleaner instruction file, or a new skill, you now have two places to maintain. Claude Code and Codex do not store everything in the same shape, so the naive answer is usually to copy files by hand and hope nothing important gets overwritten.

What usually needs to stay aligned

The subtle risk:

Codex and Claude Code native config files can contain more than the MCP section. If you replace the whole file just to keep MCP servers aligned, you risk clobbering auth, history, or unrelated local settings.

A better way to sync skills and MCP

The safer pattern is to keep one local canonical store, then project the shared config back into each tool's native layout. That means one baseline for rules, one MCP server source of truth, one skill bundle store, and backups before every native write.

Plexus dashboard showing Claude Code and Codex alongside other local agents

Plexus follows that model. It imports existing Claude Code and Codex config from your machine, stores the canonical copy under ~/.config/plexus/, then writes the result back to each tool in its own expected format. Shared files use partial writes so unrelated data stays intact. Skills are linked or copied from one shared source instead of duplicated by hand.

What this solves in practice

Quick start

npx -y plexus-agent-config@latest start

Open the local dashboard, let Plexus detect Claude Code and Codex, choose the primary source when there is a conflict, preview the changes, then sync rules, MCP servers, and skills back into the native files.

Related guides