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

@staplehire/staplehire-cli

v0.7.1

Published

Official CLI for Staplehire — hiring from your terminal and AI editor

Readme

Staplehire CLI

The official CLI for Staplehire. Run your hiring pipeline from the terminal and from AI coding agents (Cursor, Claude Code, Codex).

npm install -g @staplehire/staplehire-cli

Binary: staplehire · Package: @staplehire/staplehire-cli

Quickstart

# 1. Authenticate (opens browser, writes STAPLEHIRE_KEY to .env)
staplehire init

# 2. Verify
staplehire me

# 3. Create a role from a job description
staplehire roles create --jd "Senior backend engineer. TypeScript, remote."

# 4. Install the agent skill (Cursor / Claude / Codex)
staplehire skills install

Agent skill

Coding agents should load the staplehire-cli skill before running commands:

staplehire skills install

See skills/staplehire-cli/SKILL.md for the JSON contract, exit codes, and command reference.

Environment

| Variable | Description | |----------|-------------| | STAPLEHIRE_KEY | API key (sh_live_…) — from staplehire init or Settings → Developers | | STAPLEHIRE_API_URL | API gateway (default https://api.staplehire.com; written by init) |

Copy .env.example to .env if you set the key manually.

Commands

staplehire init | me | skills install
staplehire roles create --jd <text|file|->
staplehire stages create|list|candidates …
staplehire candidates add|move|enrich|research|send-interview|interview-link …
staplehire interview-design create …
staplehire interview-sessions <roleId>
staplehire sourcing start|prospects …
staplehire jobs get|list|poll …

Run staplehire --help for the full list. All data commands print JSON to stdout.

Example script

chmod +x examples/hiring-loop.sh
export STAPLEHIRE_KEY=sh_live_…
./examples/hiring-loop.sh

Development

git clone https://github.com/staplehire/staplehire-cli.git
cd staplehire-cli
npm install
npm run build
node bin/staplehire.mjs me

Regenerate the HTTP client after API changes:

npm run generate && npm run build

OpenAPI spec: openapi/staplehire-api.yaml.

Publishing

Maintainers: see PUBLISHING.md.

License

MIT — see LICENSE.