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

@irsv67/mychat

v1.0.1

Published

CLI tool for managing Claude Code skills and worklogs — publish, install, and share .md document packages

Readme

mychat

CLI 工具,用于管理 Claude Code 的 skills 和 worklog 文档的发布与安装。

安装

npm install -g mychat

或者本地开发:

git clone <repo> && cd mychat
npm link

首次使用

# 配置服务端地址
mychat config set registry https://your-server.com

# 配置认证 token(如果服务端开启了认证)
mychat config set token your-secret-token

命令

publish — 发布

# 交互式发布(引导填写包名、版本等)
mychat publish ./my-skill

# 非交互式,跳过确认
mychat publish ./my-skill --name my-skill --type skills --ver 1.0.0 --desc "描述" --yes

install — 安装

# 安装最新版本
mychat install table-drag-scroll

# 安装指定版本
mychat install table-drag-scroll --ver 1.0.0

# 安装 worklog 类型
mychat install my-worklog -t worklog

安装路径:

  • skills → .claude/skills/<name>/
  • worklog → docs/worklog/<name>/

list — 列表

# 列出所有包
mychat list

# 按类型筛选
mychat list -t skills

info — 详情

mychat info table-drag-scroll

unpublish — 删除

# 交互式选择版本删除
mychat unpublish table-drag-scroll

# 指定版本
mychat unpublish table-drag-scroll --ver 1.0.0

config — 配置

# 查看所有配置
mychat config

# 设置配置
mychat config set registry https://your-server.com
mychat config set token your-token

# 查看单项
mychat config get registry

配置文件

配置存储在 ~/.claude/.mychatrc.json

{
  "registry": "https://your-server.com",
  "token": "your-token"
}

项目结构

bin/
  cli.js              # CLI 入口
src/
  commands/
    install.js
    publish.js
    list.js
    info.js
    unpublish.js
    config.js
  utils/
    api.js             # 服务端 API 调用
    tar.js             # 打包/解包
    config.js          # 配置读写
  constants.js