### Install and Run Bring Your AI Local CLI Source: https://github.com/unitedideas/bringyour-mcp/blob/main/README.md Installs the Bring Your AI local CLI and demonstrates a basic preview and migration command. ```bash curl -fsSL https://bringyour.ai/install.sh | sh bringyour preview --from claude-code --to codex bringyour migrate --from claude-code --to codex --policy merge ``` -------------------------------- ### Generate Migration Preview Source: https://github.com/unitedideas/bringyour-mcp/blob/main/skills/bringyour-migration-auditor/SKILL.md If Bring Your AI is installed, generate a migration preview from Claude Code to Codex. ```bash bringyour preview --from claude-code --to codex ``` -------------------------------- ### Perform Dry Audit Source: https://github.com/unitedideas/bringyour-mcp/blob/main/skills/bringyour-migration-auditor/SKILL.md If Bring Your AI is installed, run a dry audit command on the Codex root directory to inspect migration status. ```bash bringyour sync inspect --root ~/.codex ``` -------------------------------- ### Manual Codex-to-Codex Sync Commands Source: https://github.com/unitedideas/bringyour-mcp/blob/main/README.md Commands for exporting, planning, and applying synchronization for Codex data. ```bash bringyour sync export --root ~/.codex --out ./bya-codex-sync bringyour sync plan --in ./bya-codex-sync --root ~/.codex bringyour sync apply --in ./bya-codex-sync --root ~/.codex ``` -------------------------------- ### Inspect Target Instruction Path Source: https://github.com/unitedideas/bringyour-mcp/blob/main/skills/bringyour-migration-auditor/SKILL.md Find AGENTS.md or config.toml files within the current directory and the Codex directory to inspect the target instruction path. ```bash find . ~/.codex -name AGENTS.md -o -name config.toml 2>/dev/null ``` -------------------------------- ### Locate Source and Target Harness Roots Source: https://github.com/unitedideas/bringyour-mcp/blob/main/skills/bringyour-migration-auditor/SKILL.md List directories to identify the source and target harness roots. This helps in understanding the migration scope. ```bash ls -la ~/.claude ~/.codex 2>/dev/null ``` -------------------------------- ### Bring Your AI MCP Manifest URL Source: https://github.com/unitedideas/bringyour-mcp/blob/main/README.md The URL to fetch the MCP manifest for Bring Your AI. ```text https://bringyour.ai/.well-known/mcp.json ``` -------------------------------- ### Run Migration Command Source: https://github.com/unitedideas/bringyour-mcp/blob/main/skills/bringyour-migration-auditor/SKILL.md Execute the migration command to move from Claude Code to Codex with a merge policy. This is a prerequisite for auditing. ```bash bringyour migrate --from claude-code --to codex --policy merge ``` -------------------------------- ### Bring Your AI MCP Endpoint Source: https://github.com/unitedideas/bringyour-mcp/blob/main/README.md The base URL for the Bring Your AI remote MCP server. ```text https://bringyour.ai/mcp ``` -------------------------------- ### Bring Your AI Official Registry Name Source: https://github.com/unitedideas/bringyour-mcp/blob/main/README.md The official registry name for the Bring Your AI MCP. ```text ai.bringyour/bringyour ``` -------------------------------- ### Search for High-Risk Migration Residue Source: https://github.com/unitedideas/bringyour-mcp/blob/main/skills/bringyour-migration-auditor/SKILL.md Perform a recursive, line-numbered search for high-risk keywords related to migration in the Codex directory and current directory. ```bash grep -RInE "hook|secret|token|api[_-]?key|validation note|not equivalent|manual review|CLAUDE.md|AGENTS.md" ~/.codex . 2>/dev/null ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.