feat(agent): add crab agent sync for cross-agent config migration#55
Merged
MrFlounder merged 1 commit intomainfrom Mar 11, 2026
Merged
feat(agent): add crab agent sync for cross-agent config migration#55MrFlounder merged 1 commit intomainfrom
crab agent sync for cross-agent config migration#55MrFlounder merged 1 commit intomainfrom
Conversation
New command to sync user-level configurations between Claude Code and Codex CLI: - `crab agent status` — audit MCP servers and agents/skills on each side - `crab agent sync mcp` — translate MCP server configs (JSON↔TOML) - `crab agent sync agents` — LLM-assisted rewrite of agents↔skills - `crab agent sync all` — sync everything Supports --from claude|codex direction and --apply flag (dry-run by default). MCP sync uses `codex mcp add` for reliable config writing. Agent/skill rewrite uses whichever LLM CLI is available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fb19065 to
1e12db8
Compare
crab agent sync for cross-agent config migration
This was referenced Mar 11, 2026
Merged
MrFlounder
added a commit
that referenced
this pull request
Mar 11, 2026
## Summary Bump version `0.12.0` → `0.13.0`. Features since 0.12.0: - Agent-agnostic support — Claude Code + Codex CLI (#52) - `crab agent sync` for cross-agent config migration (#55) - `crab env snapshot/restore` for machine migration (#57) - Bats unit test framework + CI (#52) - `crab court` fresh-start prompt fix (#54) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Mar 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
crab agent status— audit what MCP servers and agents/skills exist on Claude vs Codex sidecrab agent sync mcp— mechanically translate MCP server configs between Claude's JSON and Codex's TOML (usescodex mcp addfor reliable config writing)crab agent sync agents— LLM-assisted rewrite of Claude agents → Codex skills (and vice versa)--applyto write changes,--from claude|codexfor directionBuilds on the agent-agnostic foundation from #52.
Test plan
crab agent status— correctly shows Linear MCP in Claude, agents list, gapscrab agent sync mcp --from claude --apply— synced Linear to Codex, verified withcodex mcp listcrab agent statusafter sync — shows MCP "✓ In sync"make test-unit— all 36 existing tests pass (no regressions)🤖 Generated with Claude Code