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

@inth/hexbus-skills

v0.1.1

Published

Shared agent skill installer helpers for Hexbus CLIs.

Readme

@inth/hexbus-skills

Small helper package for installing agent skills from Hexbus-powered Inth app CLIs. It delegates to the external skills CLI through the caller's package manager and gives Inth app CLIs consistent logging, success callbacks, failure callbacks, and manual fallback instructions.

Table of Contents

Key Features

  • Resolve one-off runner commands for Bun, npm, pnpm, and Yarn.
  • Spawn skills add <ref> with inherited stdio so users can interact with the installer directly.
  • Log the exact install command before execution.
  • Report successful installs through either logger.success or logger.info.
  • Handle non-zero exits and spawn failures without throwing, then route failures to an optional callback.
  • Keep skill content out of the package; consumers provide the skill reference to install.

Prerequisites

  • Node.js 18.17.0 or later
  • A CLI that wants to install an agent skill bundle
  • Network/package-manager access to run the external skills CLI

Quick Start

Call installSkills from your Inth app CLI command and pass the package manager detected by your CLI context:

import { installSkills } from "@inth/hexbus-skills";

await installSkills({
  skillRef: "my-org/app-skills",
  packageManager: context.packageManager.name,
  cwd: context.projectRoot,
  logger: context.logger,
  onSuccess: () => context.telemetry.trackEvent("skills_installed"),
  onFailure: (error) =>
    context.telemetry.trackError(
      error instanceof Error ? error : new Error(String(error))
    ),
});

Installation

bun add @inth/hexbus-skills
npm install @inth/hexbus-skills
pnpm add @inth/hexbus-skills

Usage

  1. Use getSkillsRunnerCommand when you only need to show or compose the package-manager-specific runner command.
  2. Use installSkills when your CLI should execute skills add <skillRef> for the user.
  3. Pass cwd when the install should run from the detected project root rather than the current process directory.
  4. Pass the Inth app CLI logger so success, failure, and fallback messages match the rest of your CLI output.
  5. Use onSuccess and onFailure to connect installation results to telemetry or follow-up guidance.

Support

  • Open an issue in the Hexbus repository for installer wrapper bugs.
  • Report problems with a specific skill bundle to the repository that owns that skill reference.

License

Apache-2.0

Runner Commands

  • bun -> bunx
  • pnpm -> pnpm dlx
  • yarn -> yarn dlx
  • npm and unknown package managers -> npx

Failure Behavior

installSkills does not throw when the external installer exits unsuccessfully or cannot start. It logs the failure, prints a manual install command, invokes onFailure when provided, and returns. This keeps Inth app CLIs in control of whether a failed skill install should block the rest of the command.

Skill Ownership

This package intentionally does not bundle skill content. Inth app CLIs own the skill reference, release cadence, and any app-specific messaging around what those skills do.