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

@p1va/ashby

v0.0.7

Published

CLI for browsing open positions hosted via Ashby

Readme

Ashby CLI

A CLI for browsing job openings in Ashby-powered Job Boards.

NPM Version

Installation

You can run the CLI immediately with npx -y @p1va/ashby

or install it globally with npm install -g @p1va/ashby and invoke the ashby command.

Usage

The CLI supports both direct company names and full Ashby URLs.

# Markdown output
npx -y @p1va/ashby <company-name>
npx -y @p1va/ashby <company-name> <job-id>
npx -y @p1va/ashby <board-or-job-url>

# JSON output
npx -y @p1va/ashby <company-name> --json | jq .
npx -y @p1va/ashby <company-name> <job-id> --json | jq .
npx -y @p1va/ashby <board-or-job-url> --json | jq .

The CLI expects either the URL of the hosted Ashby board or just the company slug.

For example Lovable's career page is hosted at https://jobs.ashbyhq.com/lovable and their Ashby company slug is lovable.

List Jobs

# npx, markdown output
npx -y @p1va/ashby lovable
npx -y @p1va/ashby https://jobs.ashbyhq.com/lovable

# global installation, markdown output
ashby lovable
ashby https://jobs.ashbyhq.com/lovable

Job Details

To see the details of a job the CLI expects either pass the company slug plus the job id from the previous step or the URL https://jobs.ashbyhq.com/lovable/9f4...22d for the job opening directly.

# npx, markdown output
npx -y @p1va/ashby lovable 99f4963e7-be14-4dd9-99ce-05df2f06e22d
npx -y @p1va/ashby https://jobs.ashbyhq.com/lovable/99f4963e7-be14-4dd9-99ce-05df2f06e22d

# global installation, markdown output
ashby lovable 99f4963e7-be14-4dd9-99ce-05df2f06e22d
ashby https://jobs.ashbyhq.com/lovable/99f4963e7-be14-4dd9-99ce-05df2f06e22d

Development

  • pnpm install to install dependencies
  • pnpm dev <company> [job-id] to run the CLI from source via tsx
  • To explore Ashby GraphQL API responses
    • just explore-board "lovable"
    • just explore-job "lovable" "264297a0-251c-4d0b-83c1-dc64e1b5d2f3"

Publishing

Released via GitHub Actions when a tag starting with v* is pushed.

  • pnpm version patch to increment the version
  • git push --follow-tags to push the new commit and tag