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

pegtalent-cli

v0.2.4

Published

PegTalent CLI — Power-user terminal interface for AI talent hiring

Readme

pegtalent-cli

Power-user terminal interface for PegTalent — the AI talent platform. Browse jobs, manage companies and teams, take real skill assessments with Judge0 grading, earn verifiable badges, and run recruiter workflows without leaving your terminal.

The package is pegtalent-cli; it installs a command named peg.

Install

npm install -g pegtalent-cli
peg --version

Requires Node.js ≥ 20.

First-time setup

The CLI talks to https://pegtalent.com by default — no configuration needed. Just authenticate with an API key (create one in the web app under Settings → API Keys):

peg login --token <your-api-key>
# or: peg auth login --token <your-api-key>

Self-hosting or local development? Point the CLI elsewhere:

peg config set apiEndpoint http://localhost:3000
# or, without persisting:  PEG_API_ENDPOINT=http://localhost:3000 peg ...
# or, per command:         peg --api-endpoint http://localhost:3000 ...

Check or change configuration any time:

peg config list
peg config set outputFormat json     # table | json | csv
peg config get apiEndpoint

Common commands

# Skill assessments (real, Judge0-graded)
peg assessment tracks                 # browse tracks + skills
peg assessment start <skill-id>       # start; downloads starter code to ~/.pegtalent/assessments
peg assessment status                 # current assessment + scores
peg assessment submit <file>          # grade your solution
peg assessment results [id]           # detailed result breakdown
peg assessment history                # earned badges

# Jobs & applications
peg job list
peg search "machine learning engineer"
peg apply <job-id>
peg badge list

# Profile
peg profile show
peg profile edit

# Employer / recruiter
peg company ...        peg job ...        peg candidate ...
peg screen ...         peg dashboard      peg analytics
peg team ...

# Agency
peg agency ...

# Fun
peg play              # PegJump terminal game

Global flags: --json, --csv, -q/--quiet, -v/--verbose, -y/--yes, --api-endpoint <url>. Run peg <command> --help for details on any command.

AI-assisted assessments — note

Some skills are AI-assisted (decomposition → coding → explanation). The CLI grades the code portion; the decomposition and explanation stages — which feed the AI-judged score dimensions — are completed in the web app. For those skills, finishing the full flow on the web yields a complete score. peg assessment start will flag when a skill is AI-assisted.

Updating

peg update                    # check whether a newer version is published
npm install -g pegtalent-cli  # upgrade

Development (monorepo)

# from repo root
npm run cli:build             # build apps/cli → dist
node apps/cli/dist/index.js   # run the local build

# from apps/cli
npm run dev                   # tsc --watch

License

MIT © PegTalent