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

@renwin/ccc

v1.0.2

Published

CLI tool for installing AI Agent Skills from www.ccc.onl

Readme

CCC CLI - AI Agent Skills 命令行工具

一个用于安装 AI Agent Skills 的命令行工具,从 www.ccc.onl 下载并管理 skills。


功能特性

  • 📦 安装 Skills: 从 www.ccc.onl 下载并安装 skills
  • 📋 列表查看: 浏览所有可用的 skills
  • 🔍 搜索功能: 按名称或描述搜索 skills
  • 🎨 美观输出: 带颜色和进度提示的终端界面

安装

方式一:使用 npx(推荐,无需安装)

npx @renwin/ccc@latest install owner/skill-name

方式二:全局安装

npm install -g @renwin/ccc

使用方法

安装 Skill

# 基本用法
npx @renwin/ccc install owner/skill-name

# 指定安装目录
npx @renwin/ccc install owner/skill-name --dir my-skills

# 示例
npx @renwin/ccc install easonc13/sui-move
npx @renwin/ccc install byungkyu/trello-api

安装后的文件位置:.skills/skill-name/

查看所有 Skills

# 列出所有 skills
npx @renwin/ccc list

# 搜索 skills
npx @renwin/ccc list --search trello

查看帮助

npx @renwin/ccc --help
npx @renwin/ccc install --help

命令详解

ccc install <skill>

安装指定的 skill。

参数:

  • <skill> - Skill 名称,格式:owner/skill-name

选项:

  • -d, --dir <directory> - 安装目录(默认:.skills

示例:

npx @renwin/ccc install easonc13/sui-move
npx @renwin/ccc install byungkyu/trello-api --dir my-skills

ccc list

列出所有可用的 skills。

选项:

  • -s, --search <query> - 搜索关键词

示例:

npx @renwin/ccc list
npx @renwin/ccc list --search calendar

工作原理

  1. 连接 API: CLI 工具连接到 https://www.ccc.onl/api
  2. 验证 Skill: 检查 skill 是否存在
  3. 下载 ZIP: 从服务器下载 skill 的 ZIP 包
  4. 解压文件: 解压到目标目录
  5. 完成提示: 显示安装位置和下一步操作

依赖

  • commander - CLI 框架
  • chalk - 终端颜色
  • ora - 加载动画
  • adm-zip - ZIP 解压
  • node-fetch - HTTP 请求

配置

CLI 工具默认连接到生产 API (https://www.ccc.onl/api)。

要修改 API 地址(如用于本地开发),可以使用环境变量:

export CCC_API_BASE=http://localhost:3001/api
npx @renwin/ccc install skill

许可证

MIT


相关链接


支持

如有问题或建议,请访问 www.ccc.onl 或提交 Issue 到 GitHub