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

context-handoff

v1.0.6

Published

Universal AI session handoff skill — export context from one AI coding tool and resume in another

Downloads

77

Readme

context-handoff

Export your AI coding session and resume it in any other tool — zero re-explaining.

When your Claude Code context is 90% full, don't start over. Run one command, get a handoff.md, and continue in Gemini CLI, OpenCode, Kiro, or any other tool — instantly.

Quick Start

# Install for your tool(s)
npx context-handoff --tool claude-code
npx context-handoff --tool gemini-cli

# Or install for everything at once
npx context-handoff --all

Then in your current AI session:

/handoff-export

Switch to your next tool, then:

/handoff-load

Done. The new AI knows exactly where you left off.

Supported Tools

| Tool | Export | Import | Config | |------|--------|--------|--------| | Claude Code | /handoff-export | /handoff-load | .claude/commands/ | | Gemini CLI | /handoff-export | /handoff-load | GEMINI.md | | OpenCode | /handoff-export | /handoff-load | .opencode/commands/ | | Kiro | /handoff-export | /handoff-load | .kiro/skills/ | | Codex (OpenAI) | /handoff-export | /handoff-load | .codex/prompts/ | | Aider | /handoff-export | /handoff-load | .aider.conf.yml | | Cursor | manual paste | manual paste | .cursor/ (snippets) |

What Gets Exported

The handoff.md file captures everything the next AI needs:

  • Current task — what you're working on right now
  • Progress — checklist of done and pending items
  • Active files — every file that's relevant or was modified
  • Blocker — current error with exact message
  • Key decisions — architectural choices the next AI must respect
  • Environment — versions, env vars, dev commands
  • Next steps — ordered action list
  • Instructions for next AI — direct imperative guidance

CLI Reference

npx context-handoff --tool <name>   # Install for specific tool
npx context-handoff --all           # Install for all tools
npx context-handoff --validate      # Validate handoff.md schema/content
npx context-handoff --list          # List supported tools
npx context-handoff --dry-run       # Preview file changes (no writes)
npx context-handoff --force         # Allow overwriting/appending where applicable
npx context-handoff --help          # Help

Notes:

  • By default, the installer will not overwrite existing files. Use --force to overwrite.
  • Use --dry-run to see what would change without modifying files.

How It Works

  1. Run /handoff-export → AI writes handoff.md to project root
  2. Open your next tool in the same directory
  3. Run /handoff-load → AI reads the file and picks up the task

No server. No account. No internet. Just a Markdown file.

Adding a New Tool

  1. Fork and create branch feature/tool-<toolname>
  2. Add folder templates/tools/<toolname>/
  3. Add handoff-export.<ext> and handoff-load.<ext> in the tool's native format
  4. Add an installer case in bin/cli.js
  5. Update this README
  6. Open a PR with a demo screenshot

License

MIT