Claude-skill-registry claude-skill-sync
Copy or sync Claude skills from ~/.claude/skills into ~/.codex/skills so they are available in Codex. Use when asked to import, migrate, copy, or sync Claude skills, or when moving skills between Claude and Codex with optional repeatable sync.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/claude-skill-sync" ~/.claude/skills/majiayu000-claude-skill-registry-claude-skill-sync && rm -rf "$T"
manifest:
skills/data/claude-skill-sync/SKILL.mdsource content
Claude Skill Sync
Overview
Copy Claude skills into Codex using the bundled script. Default behavior is a safe one-off copy; sync mode supports repeatable runs with optional pruning. You can also include official Claude plugin skills.
Quick Start (One-Off Copy)
- Dry run to preview actions:
python3 ~/.codex/skills/claude-skill-sync/scripts/claude_skill_sync.py --dry-run - Run the copy (prompts on conflicts):
python3 ~/.codex/skills/claude-skill-sync/scripts/claude_skill_sync.py - Include official plugin skills:
python3 ~/.codex/skills/claude-skill-sync/scripts/claude_skill_sync.py --include-official-plugins
If running from this repo, use:
python3 skills/claude-skill-sync/scripts/claude_skill_sync.py
Conflict Handling
- Default
prompts per skill: overwrite, skip, or abort.--conflict ask - For non-interactive runs, set a policy explicitly:
--conflict overwrite--conflict skip--conflict abort
- In
, conflicts default to skip with a warning.--dry-run
Repeatable Sync
Use
--mode sync for repeatable updates:
python3 ~/.codex/skills/claude-skill-sync/scripts/claude_skill_sync.py --mode sync --conflict ask- Optional mirror cleanup (destructive): add
to remove Codex skills not present in Claude.--prune
Paths and Filters
- Defaults:
- Source:
~/.claude/skills - Destination:
~/.codex/skills
- Source:
- Override with
and--source
, add extra roots with--dest
.--extra-source - Use
to scan nested trees for--recursive
.SKILL.md - Official plugin skills: add
.--include-official-plugins - The script copies directories that contain
.SKILL.md
scripts/
Executable code that performs the copy/sync operation.
: Copy/sync Claude skills into Codex with conflict prompts.claude_skill_sync.py