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

ccrelay

v0.2.2

Published

Handoff CLI for moving work between coding agents.

Readme

ccrelay

ccrelay creates a handoff file so Claude Code and Codex can safely continue work from the same working tree.

The tool does not try to migrate a full conversation. It writes .handoff/current.md from:

  • the selected continues session summary
  • git status --short
  • git diff --stat
  • repository instruction files such as AGENTS.md, CLAUDE.md, and .claude/

Install

npm install -g ccrelay

Development

Clone the repository and install locally:

npm install -g .

Or run directly without installing:

npm run build
node dist/bin.js --help

Commands

ccrelay doctor
ccrelay inspect [--source claude|codex] [--pick]
ccrelay write [--from claude|codex] [--locale en|ja] [--session <id>] [--latest] [--detail summary|standard|full]
ccrelay to codex [--dry-run] [--from claude] [--locale en|ja] [--session <id>] [--latest] [--detail summary|standard|full] [--no-write]
ccrelay to claude [--dry-run] [--from codex] [--locale en|ja] [--session <id>] [--latest] [--detail summary|standard|full] [--no-write]

write creates .handoff/current.md and does not launch another agent.

By default, commands ask for missing options interactively. For example, write asks for source agent, locale, handoff detail level, and then opens the session picker. to codex and to claude ask for the source agent and locale before choosing a session. inspect asks whether to show all sessions or filter by source.

The detail level controls how much context lands in .handoff/current.md:

  • summary — invokes the source agent CLI to compress the session log into a short brief; the long Session Summary is omitted. Set AGENT_HANDOFF_SUMMARIZER_BIN to override the summarizer command (defaults to claude --print or codex exec -).
  • standard — embeds the full continues inspect summary as before.
  • fullstandard plus the full git diff.

The session picker supports fuzzy search. Type to filter, use the arrow keys to move, press Tab to toggle a panel showing the latest message of the highlighted session, and press Enter to select. Use --latest to skip the picker and choose the newest matching session automatically, or --session <id> to choose a specific session.

On macOS, write asks whether to copy the generated handoff to pbcopy after writing it.

to codex and to claude update the handoff by default, write the target-specific prompt to .handoff/last-codex-prompt.md or .handoff/last-claude-prompt.md, and then launch the target agent unless --dry-run is set.

Use --locale ja to generate the fixed handoff sections and target prompt in Japanese while preserving the raw continues session summary.

ccrelay write --from codex --locale ja
ccrelay to claude --from codex --locale ja --dry-run

Environment

AGENT_HANDOFF_CONTINUES_BIN="npx continues"
AGENT_HANDOFF_CODEX_BIN="codex"
AGENT_HANDOFF_CLAUDE_BIN="claude"
AGENT_HANDOFF_SUMMARIZER_BIN="claude --print"

Safety

The CLI does not run destructive git commands. It does not stage, commit, reset, checkout, or delete repository files.

The generated handoff tells the receiving agent to inspect the real workspace with git status and git diff before editing, and to trust the workspace if it conflicts with the summary.