← ClaudeAtlas

claude-codex-bridgelisted

Align Claude Code and Codex project files, settings, hooks, agents, and plugins.
pgoell/pgoell-claude-tools · ★ 0 · AI & Automation · score 70
Install: claude install-skill pgoell/pgoell-claude-tools
# Claude ↔ Codex Bridge Skill Bidirectional alignment of a project's Claude Code and Codex CLI configuration. Detects what runtime artifacts exist, produces the missing side, surfaces drift, reports plugin availability across runtimes. Pure file-level operation; never edits skill content. --- ## Auth Approach No authentication required. Operates on the local filesystem only. Never makes network calls. ## Tool Preference 1. Subagent dispatch (when available and permitted) for scout, apply, reviewer phases. 2. File read tools for loading prompt templates and reading project files. 3. Shell for filesystem operations (`ln -s`, `mkdir -p`, `find`, `stat`). 4. User confirmation tool for the manifest approval gate and policy decisions. ## Platform Adaptation | Capability | Claude Code | Codex | |---|---|---| | Subagent dispatch | Agent tool, prompt = `read(<phase>-prompt.md)` + scope vars | `spawn_agent` with the same prompt | | User confirmation | AskUserQuestion | `ask_user` / built-in approval | | File ops (apply phase) | Write, Edit, Bash (`ln -s`) | shell tool | | File reads | Read | shell reads (`cat`, `sed`, etc.) | | Shell | Bash | shell command tool | When subagent dispatch is unavailable for the current request, run each phase inline in the orchestrator. Tell the user runtime/context cost has changed. ## Workflow **Prompt file location — MUST check before every phase dispatch:** Before reading any phase prompt file, run: ```bash echo "${RUNTIME_BRIDGE_SKILL_OVE