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

ccg_bridge

v0.1.1

Published

CCG Bridge CLI (Python) packaged for npm

Downloads

207

Readme

ccg_bridge

CCG = Claude Code (skills) + Codex + Gemini CLI.

推荐主路径(A 模式):Claude Code 通过 skills 调用 ccg ask-async/pend,以异步方式完成跨模型协作(优先追求“快、稳”)。

这个仓库包含 CCG Bridge 的运行时代码与设计文档,并提供基于 MkDocs 的文档站点配置,便于本地预览和后续发布。

安装(全局推荐)

通过 npm 全局安装(需要 Node >=18;并要求本机可用 python3/python 用于创建 venv):

npm i -g ccg_bridge
ccg version

首次安装会把 Python 运行时安装到 ~/.ccg/npm/ccg_bridge/venv

A 模式快速开始(推荐:快、稳)

前提:本机已安装并登录 codexgemini CLI,且 Claude Code 可用。

在项目根目录:

# 一键启动:确保 bridge + 安装/更新 Claude Code skills
ccg
# 或:ccg up --project-root .

在 Claude Code 内(分两次发送,异步更快):

/ccg-ask gemini "Reply with exactly: G-OK"
/ccg-pend gemini --wait 120

/ccg-ask codex "Reply with exactly: C-OK"
/ccg-pend codex --wait 120

说明:

  • ccg tmux 是 commander/tmux(B 模式)路径,不是 A 模式必需;A 模式不需要开 tmux 三窗口。
  • 结果持久化在 <project>/.ccg/tasks/<task_id>.json/ccg-pend 默认按 last_submitted 精确等待最新任务。

预览文档站点(MkDocs)

在仓库根目录执行:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements-docs.txt
mkdocs serve

然后打开 http://127.0.0.1:8000/