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

cli-share-core

v1.0.3

Published

Core logic for terminal stdout capture and gist uploading

Readme

cli-share-core

Share your terminal conversations instantly as professional GitHub Gists.

CLI Share is a powerful tool designed for developers using AI CLI tools (like Claude Code, Codex, and others). It captures your terminal session, cleans up the mess of ANSI codes and animations, and publishes a beautiful, readable Markdown file to GitHub Gists.

✨ Features

  • 🎯 Instant Sharing: One command (/share) to go from terminal to a shareable URL.
  • 🛡️ Professional Formatting: Built-in VT100 terminal emulator ensures that ASCII art, boxes, and layouts are perfectly preserved, unlike naive copy-pasting.
  • 🤖 AI Optimized: Specifically built to handle the rich, dynamic output of modern AI CLI tools.
  • 🔒 Secure: Handles GitHub authentication via environment variables or a secure local config (~/.cli-share/config.json).
  • 💬 Claude Code Integration: Includes a native slash command for seamless sharing within Claude Code sessions.

🚀 Installation

npm install -g cli-share

🛠️ Setup

  1. Authentication: Ensure you have a GitHub Personal Access Token with gist scope.

    You can either:

    • Export it: export GITHUB_TOKEN=your_token
    • Or save it: Our tool will prompt you once and save it to ~/.cli-share/config.json.
  2. Claude Code Integration: If you use Claude Code, you can use our wrapper to enable conversational sharing. See packages/claude-plugin for details.


📖 Usage

Standard CLI

cli-share

This will launch an interactive wizard to choose:

  1. Full Conversation or Custom Range
  2. Public or Private visibility

Non-Interactive (Conversational)

cli-share --full --public
cli-share --range=1-50 --private

🏗️ Monorepo Structure

  • packages/core: The engine handling terminal parsing, formatting, and Gist uploading.
  • packages/cli: The main command-line interface.
  • packages/claude-plugin: Integration layer for Claude Code including a session wrapper.

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

🔒 Security & Privacy

We take your security and privacy seriously:

  • Local Storage Only: Your GitHub Personal Access Token is stored exclusively on your local machine in ~/.cli-share/config.json.
  • Strict Permissions: The configuration file is created with 600 permissions (read/write access only for the current user), preventing other users on the system from accessing it.
  • Direct Communication: The tool communicates directly with the GitHub API. Your token is never sent to any third-party servers, analytics platforms, or middle-men.
  • Minimal Scopes: We recommend creating a token with only the gist scope to ensure the tool has the minimum permissions necessary to function.

📜 License

MIT © 2026 CLI Share