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

hummingbot-skills

v1.0.1

Published

CLI for managing Hummingbot trading skills for AI agents

Readme

hummingbot-skills CLI

CLI for managing Hummingbot trading skills for AI agents.

npm package: hummingbot-skills

Installation

No installation required - run directly with npx:

npx hummingbot-skills

Or install globally:

npm install -g hummingbot-skills

Commands

Install Skills

Install all Hummingbot skills:

npx hummingbot-skills add

Install specific skills:

npx hummingbot-skills add portfolio candles-feed

Install globally (recommended):

npx hummingbot-skills add -g

Install for specific agents:

npx hummingbot-skills add -a claude-code cursor

Remove Skills

Remove installed skills (interactive):

npx hummingbot-skills remove

Remove specific skills:

npx hummingbot-skills remove portfolio -g

List & Search

npx hummingbot-skills list          # List all available skills
npx hummingbot-skills find trading  # Search by keyword

How It Works

This CLI is a convenience wrapper around the skills CLI. When you run hummingbot-skills add, it:

  1. Fetches skill metadata from https://skills.hummingbot.org/api/skills
  2. Runs npx skills add hummingbot/skills with appropriate flags
  3. The skills CLI installs skills to your AI agents

Development

cd cli
npm install
npm run build
npm link  # For local testing

Test locally:

hummingbot-skills list
hummingbot-skills add portfolio -g

Publishing to npm

The CLI is published as the hummingbot-skills package on npm.

Prerequisites

  1. npm account with publish access to hummingbot-skills
  2. Trusted Publisher configured on npmjs.com (for CI/CD)

Option 1: Publish via GitHub Actions (Recommended)

Create a GitHub Release:

  1. Go to Releases
  2. Click "Create a new release"
  3. Tag: cli-v1.0.1 (use cli-v prefix for CLI releases)
  4. Title: CLI v1.0.1
  5. Publish release

The workflow at .github/workflows/publish-cli.yml will:

  • Build the CLI
  • Publish to npm with provenance

Option 2: Manual Publish

cd cli
npm version patch  # or minor/major
npm run build
npm publish --access public

Version Management

  • Update version in cli/package.json
  • CLI versions are independent of the skills/webapp
  • Use semantic versioning: major.minor.patch

Trusted Publishers Setup

To enable automated publishing without tokens:

  1. Go to npmjs.com → Package Settings → hummingbot-skills
  2. Add GitHub Actions as trusted publisher:
    • Repository: hummingbot/skills
    • Workflow: publish-cli.yml
    • Environment: npm

Project Structure

cli/
├── bin/
│   └── cli.mjs       # Entry point
├── src/
│   └── cli.ts        # Main CLI code
├── dist/             # Built output (gitignored)
├── package.json
├── tsconfig.json
└── README.md

Links