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

sync-agents

v0.8.0

Published

Sync Claude Code and Codex agents and skills

Downloads

788

Readme

sync-agents

npm version npm downloads license

https://github.com/user-attachments/assets/d061d969-1eef-4784-844c-c788453875c2

Sync between Claude Code, Codex and other coding agents and skills.

Install

bunx sync-agents

Or install globally:

bun install -g sync-agents

Then run directly:

sync-agents

Usage

sync-agents [options]

Flags

| Flag | Description | |------|-------------| | --global | Sync only global setup (~/.claude~/.agents) | | --local | Sync only current folder (CLAUDE.mdAGENTS.md) | | --source <dir> | Custom Claude source directory (default: ~/.claude) | | --dry-run | Preview changes without writing any files | | --no-cleanup | Skip removing skills from ~/.codex after migration |

Examples

# Sync everything (global setup + current folder)
sync-agents

# Preview what would be synced without making changes
sync-agents --dry-run

# Sync only global skills and agents
sync-agents --global

# Sync only project docs (CLAUDE.md ↔ AGENTS.md)
sync-agents --local

# Use a custom Claude directory
sync-agents --source ~/my-claude-config

# Migrate from .codex but keep the original files
sync-agents --no-cleanup

# Combine flags
sync-agents --global --dry-run

What it does

Directory Precedence

  1. ~/.claude — Highest precedence (source of truth)
  2. ~/.agents — Shared standard, syncs bidirectionally with Claude
  3. ~/.codex — Legacy, migrates to .agents then gets cleaned up

Sync Flow

┌─────────────┐         ┌─────────────┐         ┌─────────────┐
│   .claude   │ ──────► │   .agents   │ ◄────── │   .codex    │
│  (source)   │         │  (shared)   │         │  (legacy)   │
└─────────────┘         └─────────────┘         └─────────────┘
       ▲                       │                       │
       │                       │                       │
       └───────────────────────┘                       │
         (additive only)                               │
                                                       ▼
                                              ┌─────────────┐
                                              │   cleanup   │
                                              └─────────────┘
  • Claude → Agents: Skills and agents from ~/.claude sync to ~/.agents/skills. Claude wins on conflicts.
  • Codex → Agents: Legacy ~/.codex/skills migrate to ~/.agents/skills (additive only).
  • Agents → Claude: Skills from .agents that don't exist in Claude sync back (additive only).
  • Cleanup: After migration, skills are removed from .codex (use --no-cleanup to preserve).

Project Docs

If the current directory has both CLAUDE.md and AGENTS.md, the most recently modified file overwrites the other.

Why?

The .agents folder is becoming the shared standard for coding agents. Codex now reads skills from ~/.agents/skills natively, but Claude Code doesn't support it yet.

This tool bridges the gap:

  • Maintain skills in Claude Code's format (your source of truth)
  • Auto-sync to .agents for Codex compatibility
  • Migrate existing .codex skills to the new standard
  • Keep project docs in sync

Requirements