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

claude-runtime-sync

v0.1.4

Published

Use Claude config as the single source of truth and sync reusable capabilities into Codex runtime.

Readme

claude-runtime-sync

让你把 Claude 配置(~/.claude + 项目内 .claude)作为唯一真实源,并自动复用到 Codex。

适合不想记很多命令的用户:装好后基本只用 codex

30 秒上手(推荐)

# 1) 全局安装(一次)
npm i -g claude-runtime-sync

# 2) 接入 codex 启动流程(一次)
crs hook install

# 3) 首次手动同步(一次)
crs sync

之后日常直接:

codex

codex 每次启动前会自动检查并在需要时同步。


它会帮你自动处理什么

  • 同步 skills(~/.claude/skills + <repo>/.claude/skills
  • 同步 MCP 到 ~/.codex/config.toml 托管区块
  • 镜像项目 .mcp.json~/.claude/mcp.json(保持 .claude 为真源)
  • 同步已启用 Claude plugins(目录 + hooks + plugin 内 skills + plugin 内 .mcp.json)
  • CLAUDE.md 复用到 agents.md / gemini.md(软链接优先)
  • 通过 bridge 将 Codex 事件映射到 Claude 风格 hooks

日常使用(你只需要记这些)

1) 平时开发

codex

2) 改了 .claude / .mcp.json 后,想立即生效

crs sync

3) 想确认是否有漂移

crs check

常用命令(精简版)

crs sync             # 执行同步
crs check            # 只检查差异(有差异返回码 1)
crs hook install     # 安装 zsh 自动同步钩子
crs hook remove      # 卸载钩子
crs bridge --watch   # 手动运行事件桥接(一般不需要)
crs sync-base        # 仅同步 skills + mcp

可选参数(按需)

--project-root=/path/to/repo
--claude-home=/path/to/.claude
--codex-home=/path/to/.codex
--no-home
--no-project

排障(只在需要时看)

  • 临时关闭自动同步:
    CODEX_SYNC_DISABLE=1 codex
  • 临时关闭插件桥接:
    CODEX_PLUGIN_BRIDGE_DISABLE=1 codex
  • 重新安装钩子:
    crs hook remove
    crs hook install

使用前提

  • Node.js >= 18
  • 已安装 codex CLI
  • 当前自动 hook 入口为 zshcrs hook install

发布者本地检查(维护者)

npm run check
npm run smoke
npm run pack:dry-run

License

MIT