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

@hdwebsoft/hdkit

v0.0.3

Published

HDKit CLI - manage ai-workflows releases

Readme

HDKit CLI

HDKit is a CLI tool for managing AI workflow releases from HDWebsoft. It lets you discover, inspect, and interactively install AI skills/workflows from release archives.

Quick Start

# Install globally
npm install -g @hdwebsoft/hdkit

# List available releases
hdkit versions

# Install skills interactively
hdkit install

Installation

Prerequisites

  • Node.js 18+
  • npm

Install from npm (recommended)

npm install -g @hdwebsoft/hdkit

Or use with npx (no global install needed):

npx @hdwebsoft/hdkit <command>

Install from source

# Clone the repository
git clone [email protected]:hdwebsoft/ai/kit/hdkit-cli.git
cd hdkit-cli

# Install dependencies
npm install

# Build the TypeScript source
npm run build

# Link the CLI globally
npm link

Commands

hdkit versions

List all available releases from the HDWebsoft server.

hdkit versions

hdkit skills

Inspect skills available in a release.

# List skills from latest release
hdkit skills

# List skills from a specific release
hdkit skills --version ai-workflows-20250101-120000

hdkit install

Interactively install AI skills to your local environment.

# Interactive install (recommended)
hdkit install

# Install with options
hdkit install --version ai-workflows-20250101-120000 --target ~/.claude

# Preview without making changes
hdkit install --dry-run

Install options

| Option | Description | Default | |--------|-------------|---------| | --version <name> | Use a specific release version | Latest | | --target <dir> | Target directory for installation | ~/.claude | | --installer <mode> | Installer mode (extract, claude, amp, or all) | extract | | --dry-run | Preview what would be installed without making changes | false |

hdkit mcp

Manage MCP (Model Context Protocol) servers.

# Initialize MCP configuration
hdkit mcp init

# Sync MCP servers
hdkit mcp sync

How It Works

  1. Fetches available release archives from the HDWebsoft server
  2. Downloads the selected zip archive
  3. Lists skills available in the archive
  4. Extracts selected skills to <target>/.claude/skills/<skill-name>/
  5. Optionally runs bash installers (install-claude.sh, install-amp.sh)
  6. Saves your preferences to ~/.hdkit/config.json for future runs

Configuration

User preferences are stored in ~/.hdkit/config.json:

{
  "lastVersion": "ai-workflows-20250101-120000",
  "targetDir": "~/.claude",
  "installerMode": "extract",
  "selectedSkills": ["skill-1", "skill-2"]
}

License

MIT