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

@openjobs-ai/cli

v0.2.0

Published

OpenJobs AI CLI — AI-powered talent intelligence from the command line

Downloads

399

Readme

OpenJobs CLI

AI-powered talent intelligence from the command line. Search candidates, jobs, and scholars. Grade resumes. Compare profiles. Unlock contacts.

Built on the Mira API.

Install

npm install -g @openjobs-ai/cli

Or run directly with npx:

npx @openjobs-ai/cli search people --skills Python

The installed command remains:

openjobs

Setup

Get your API key from the OpenJobs AI Dashboard.

# Option 1: Environment variable (recommended)
export MIRA_KEY=mira_your_api_key

# Option 2: .env file in your project
echo "MIRA_KEY=mira_your_api_key" > .env

# Option 3: Pass directly
openjobs search people --skills Python --api-key mira_your_api_key

Usage

Search Candidates

openjobs search people --skills Python,AWS --country "United States"

openjobs search people \
  --title "Senior Engineer" \
  --company Google \
  --min-exp 60 \
  --city "San Francisco"

Search Jobs

openjobs search jobs --title "Python Engineer" --country "United States" --type Full-time

Search Scholars

openjobs search scholars --areas "Machine Learning","NLP" --h-index-min 20

Look Up Profiles

openjobs lookup https://linkedin.com/in/janedoe

# Multiple profiles
openjobs lookup https://linkedin.com/in/janedoe https://linkedin.com/in/johnsmith

# From file
openjobs lookup --file urls.txt

Grade Resume vs Job Description

openjobs grade \
  --cv "10 years Python backend, AWS certified" \
  --jd "Senior Python engineer with cloud experience"

# From files
openjobs grade --cv-file resume.txt --jd-file job.txt

Bulk Grade

openjobs grade bulk \
  https://linkedin.com/in/alice \
  https://linkedin.com/in/bob \
  --jd-file job.txt

Compare Candidates

openjobs compare \
  https://linkedin.com/in/alice \
  https://linkedin.com/in/bob \
  https://linkedin.com/in/carol

Talent Analytics

openjobs stats --country "United States" --skills Python --group-by management_level

Unlock Contacts

# Prompts for confirmation (consumes quota)
openjobs unlock https://linkedin.com/in/janedoe

# Skip confirmation
openjobs unlock https://linkedin.com/in/janedoe --yes

Result References (@N)

Search results are automatically numbered. Use @N to reference them in subsequent commands:

openjobs search people --skills Rust --country Germany
# Results: @1 through @20

openjobs lookup @1 @5
openjobs grade bulk @1 @2 @3 --jd-file job.txt
openjobs compare @1 @3
openjobs unlock @1 --yes

Output Formats

# Auto-detect: terminal → table, pipe → JSON
openjobs search people --skills Python
openjobs search people --skills Python | jq '.[0]'

# Explicit format
openjobs search people --skills Python --format json
openjobs search people --skills Python --format csv
openjobs search people --skills Python --format table

# Write to file
openjobs search people --skills Python --output results.csv

# Select fields
openjobs search people --skills Python --fields full_name,skills,address

# Quiet mode (no spinners, no extra output)
openjobs search people --skills Python --quiet --format json

Configuration

openjobs config list               # Show all settings
openjobs config set default_format json
openjobs config get default_format
openjobs config reset              # Reset to defaults

Settings are stored in ~/.openjobs/config.json.

Release

Publishing is automated with GitHub Actions via .github/workflows/publish.yml.

npm version patch
git push origin main --follow-tags

This workflow:

  • publishes automatically when a v* tag is pushed
  • can also be started manually from the GitHub Actions tab
  • keeps the package public with the openjobs binary name
  • uses npm trusted publishing for tag-based releases
  • supports manual token mode for diagnostics when a repository secret named NPM_TOKEN is configured

For manual runs:

  • choose trusted to publish with npm trusted publishing
  • choose token to publish with NPM_TOKEN for access debugging

Commands

| Command | Description | |---------|-------------| | search people | Search for candidates with 30+ filters | | search jobs | Search for job positions | | search scholars | Search for academic scholars | | lookup | Look up full LinkedIn profiles (1–50) | | grade | Grade a resume against a job description | | grade bulk | Bulk grade candidates (up to 20) | | compare | Compare candidates side by side (2–10) | | stats | Talent pool analytics and aggregations | | unlock | Unlock contact information (consumes quota) | | config | Manage CLI configuration |

API Reference

This CLI wraps the Mira API. See the full API documentation for details on available filters and response formats.

License

MIT