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

@cometchat/skills-cli

v2.0.4

Published

CLI for the CometChat skills v2 architecture — detect, view, apply, verify CometChat integrations in React projects.

Readme

@cometchat/skills-cli

CLI for the CometChat Skills v2 architecture. Detect, view, apply, verify, and manage CometChat React UI Kit integrations from the command line.

npx @cometchat/skills-cli@latest detect

Why this exists

CometChat Skills v1 was 5500+ lines of agent-readable Markdown that walked AI assistants through React UI Kit integrations. v2 moves the logic into this CLI, leaving the skill files as ~30-line glue that just calls these commands. Result: 92% smaller skills, deterministic behavior, idempotent re-runs, transactional file writes, and shared logic across every supported AI agent.

Commands

| Command | Purpose | |---|---| | cometchat detect [path] | Fingerprint a project: framework, version, router, env prefix, credentials, existing integration | | cometchat experiences | List the 3 chat experiences and their metadata | | cometchat view --experience N --framework F | Pure dry-run preview of apply | | cometchat apply --experience N --framework F | Perform the integration. Transactional. Idempotent. | | cometchat install | Install the deps the integration needs (auto-detects pnpm/npm/yarn/bun) | | cometchat verify | Run AST checks: css imports, init order, no auth key in source, error UI | | cometchat info | Drift detection via SHA-256 checksums | | cometchat uninstall [--force] | Remove only the files this integration owns |

All commands accept --json for machine-readable output.

Quick start

# 1. Auto-detect your project
npx @cometchat/skills-cli@latest detect --json

# 2. Preview the integration without writing anything
npx @cometchat/skills-cli@latest view --experience 1 --framework reactjs

# 3. Apply + auto-install in one command
npx @cometchat/skills-cli@latest apply --experience 1 --framework reactjs --auto-install

# 4. Verify the integration
npx @cometchat/skills-cli@latest verify

# 5. Check status anytime
npx @cometchat/skills-cli@latest info

Frameworks supported

  • React.js (Vite or CRA)
  • Next.js (App Router or Pages Router, 13/14/15/16)
  • React Router (v6 library mode + v7 framework mode)
  • Astro (React islands with client:only="react")

Each framework × experience (1-3) ships with a registry template at @cometchat/skills-registry.

Safety guarantees

  • Transactional writes — apply either succeeds completely or rolls back. No partial integrations.
  • Refuse-to-overwrite — apply will not silently replace files that contain user code. Pass --force-overwrite to override.
  • Idempotency — re-running apply with the same arguments is a safe no-op.
  • Drift detectioninfo re-checksums every owned file and reports user edits.
  • Clean uninstalluninstall only removes files in .cometchat/state.json's files_owned list.

License

MIT — © CometChat

Repository

Source + tests + roadmap live at https://github.com/cometchat-team/cometchat-skills