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

@hone-ai/cli

v1.34.0

Published

Hone AI — Enterprise SDLC Pipeline CLI

Readme

@hone-ai/cli

Hone AI runs an 18-stage AI SDLC pipeline over your repository. You describe a story; the pipeline grooms it, plans the implementation against your real code, writes failing tests, builds, reviews for logic and security, and hands you a pull request to review like any other.

The orchestration, prompts and skills run on Hone's server. This CLI is the client.

Install

npm install -g @hone-ai/cli
hone init --token <YOUR_TOKEN>

A token is issued when your organization is provisioned. Without one the CLI installs fine but every server-backed command will refuse.

The three commands that matter

hone setup       # detect your stack, write .github/.pipeline-config.yml, install agents + skills
hone derive      # generate domain skills from YOUR codebase (the part that makes plans specific)
hone run-story   # run a story through the pipeline

hone setup inspects the repository rather than guessing: it finds where your source actually lives and writes that into codebase.source_dirs, which is what the pipeline uses to ground every agent in your real file layout. Check it afterwards with:

hone doctor --check source-dirs
hone detect-layout

If source_dirs is wrong the pipeline is grounded on a partial map, so this is worth thirty seconds.

Running a story

hone run-story 412                  # a GitHub issue number
hone run-story HC-101 --include-paths src/api/orders.js

The run pauses at review gates. Approve or inspect:

hone run-story <run-id> --status
hone show step <run-id> step_1      # what the agent actually produced
hone run-story <run-id> --approve step_1

Editor mode

By default the pipeline's generation steps run on Hone's server. In editor mode the build step runs in your own editor's AI on your own plan, and Hone orchestrates and verifies around it. Set execution.mode: editor in .github/.pipeline-config.yml, then:

hone step-instruction <run-id>      # what your editor should execute
hone submit-step <run-id>           # hand the result back for gating

Hone does not select or provision your editor's plan, and you remain responsible for complying with your agreement with that provider.

Useful extras

hone status              # pipeline state for a story
hone workflows           # in-flight runs
hone usage               # your org's token usage against its budget
hone doctor              # repo health checks
hone billing             # subscription status

hone --help lists the full command surface.

Requirements

Node.js 20 or newer, and a git repository.

Support

hone doctor first — it catches most configuration problems and tells you the fix. Beyond that, contact the person who issued your token.

License

UNLICENSED. Proprietary; use is governed by your agreement with Hone AI.