npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

claudekit-codex-sync

v0.2.6

Published

Sync ClaudeKit skills, agents, and config to Codex CLI

Readme

claudekit-codex-sync

Sync ClaudeKit skills, config assets, prompts, and runtime setup to Codex CLI.

Problem

ClaudeKit uses ~/.claude/ conventions and agent markdown frontmatter. Codex uses ~/.codex/, TOML config, and different runtime defaults. Manual migration is slow and error-prone.

What It Does

| Step | Action | |---|---| | Scope select | Sync to project ./.codex/ (default) or global ~/.codex/ (-g) | | Fresh clean | Optional -f cleanup of target dirs before sync | | Source resolve | Uses live ~/.claude/ or --zip export | | Asset sync | Copies agents .mdagents/ (for TOML conversion), output-styles/rules/scripts → codex_home/ directly | | Skill sync | Copies skills into codex_home/skills/ | | Path normalize | Rewrites .claude references to .codex | | Hook rules | Generates rules/ from hook behavior (security-privacy, file-naming, code-quality) | | Config enforce | Ensures config.toml, feature flags, and agent registration | | Dep bootstrap | Symlink-first venv strategy, fallback install | | Runtime verify | Health-checks synced environment |

Installation

# Install from npm registry
npm install -g claudekit-codex-sync

# Or install from source
git clone https://github.com/vinhawk-66/claudekit-codex-sync.git
cd claudekit-codex-sync
npm install -g .

Quick Start

# Project sync (to ./.codex/)
ckc-sync

# Global sync (to ~/.codex/)
ckc-sync -g

# Fresh global re-sync
ckc-sync -g -f

# Preview only
ckc-sync -g -n

Usage

# Custom live source (instead of ~/.claude)
ckc-sync --source /path/to/.claude

# Sync from exported zip
ckc-sync --zip claudekit-export.zip --force

# Include MCP skills
ckc-sync --mcp

# Skip dependency bootstrap
ckc-sync --no-deps

# Overwrite user-edited managed assets
ckc-sync --force

# Backward-compatible command name
ck-codex-sync -g -n

CLI Options

-g, --global      Sync to ~/.codex/ (default: ./.codex/)
-f, --fresh       Clean target dirs before sync
--force           Overwrite user-edited files without backup (required for zip write mode)
--zip PATH        Sync from zip instead of live ~/.claude/
--source PATH     Custom source dir (default: ~/.claude/)
--mcp             Include MCP skills
--no-deps         Skip dependency bootstrap (venv)
-n, --dry-run     Preview only

Agent Model Mapping

Per official Codex docs:

| Claude Model | Codex Model | Reasoning | Used By | |---|---|---|---| | opus | gpt-5.3-codex | xhigh | planner, code_simplifier | | sonnet | gpt-5.3-codex | high | debugger, fullstack_developer | | haiku | gpt-5.3-codex-spark | medium | researcher, tester, docs_manager |

Read-only roles remain: brainstormer, code_reviewer, researcher, project_manager, journal_writer.

Project Structure

├── bin/ck-codex-sync.js
├── src/claudekit_codex_sync/
│   ├── cli.py
│   ├── clean_target.py
│   ├── source_resolver.py
│   ├── asset_sync_dir.py
│   ├── asset_sync_zip.py
│   ├── path_normalizer.py
│   ├── config_enforcer.py
│   ├── prompt_exporter.py
│   ├── bridge_generator.py
│   ├── dep_bootstrapper.py
│   ├── runtime_verifier.py
│   ├── sync_registry.py
│   ├── constants.py
│   └── utils.py
├── templates/
├── tests/
└── docs/

Development

# Run tests
PYTHONPATH=src python3 -m pytest tests/ -v

# Compile check
python3 -m py_compile src/claudekit_codex_sync/*.py

# Local dry-run sync
PYTHONPATH=src python3 -m claudekit_codex_sync.cli -n

Documentation

License

MIT