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

@expose-team/cli

v1.1.0

Published

CLI for expose.team — search people and companies from your terminal or AI agent

Readme

@expose-team/cli

Command-line interface for expose.team — search people and companies from your terminal or AI agent.

Installation

npm install -g @expose-team/cli

Or run without installing:

npx @expose-team/cli <query>

Setup

Save your API key once:

expose config sk-xxxxxxxx

Or set it as an environment variable:

export EXPOSE_API_KEY=sk-xxxxxxxx

Get your API key at expose.team/platform/ai.

Usage

expose person <email|phone|url>       Search for a person
expose company <domain>        Search for a company
expose credits                 Show remaining credits
expose config <api-key>        Save your API key locally

Examples

# Search by email
expose person [email protected]

# Search by phone number
expose person +14155551234

# Search by social media profile URL
expose person https://linkedin.com/in/johndoe

# Search for a company
expose company stripe.com

# Check remaining credits
expose credits

# Output raw JSON (useful for piping or AI agents)
expose person [email protected] --json
expose company stripe.com --json | jq '.data.name'

# Use a specific API key for a single request
expose person [email protected] --key sk-xxxxxxxx

Sample person output

$ expose person [email protected]

  Name         John Doe
  Born         15/3/1988
  Gender       male
  Email        [email protected] (professional)
               [email protected] (personal)
  Phone        +14155551234 (mobile)
  Location     san francisco, california, united states
  URLs         https://johndoe.dev
  Languages    English (native or bilingual)

  ─── Profiles ───
  linkedin     linkedin.com/in/johndoe
  x            x.com/johndoe  12,400 followers  ✓ verified
  github       github.com/johndoe  843 followers
  instagram    instagram.com/johndoe  2,100 followers

  ─── Experience ───
  • staff software engineer at Acme Corp (2021 – present)
  • senior software engineer at Startup Inc (2018 – 2021)
    Built the core data pipeline using Kafka and Flink.
  • software engineer at Agency LLC (2015 – 2018)

  ─── Education ───
  • b.s. computer science  (2010 – 2014)
    stanford university

  ─── Skills ───
  python, go, kubernetes, distributed systems, postgresql, redis,
  machine learning, docker, typescript, react

  ─── Interests ───
  open source ★★★★  hiking ★★★  photography ★★

  ─── Repositories ───
  • awesome-project  ★248  ⑂31  go, typescript, shell
    https://github.com/johndoe/awesome-project

  ─── Devices ───
               desktop/apple/chrome, mobile/ios/safari

  ─── Vehicles ───
  • tesla model 3  (2022)

Options

| Flag | Description | | -------------- | ----------------------------------------- | | --json | Output raw JSON instead of formatted text | | --key <key> | Use this API key for this request only | | --help, -h | Show help |

Using with AI agents

The --json flag makes the CLI easy to use as a tool inside AI agent workflows. The agent can call the CLI directly and parse the structured output:

expose person [email protected] --json
expose company stripe.com --json
expose credits --json

For agents that support the agentskills.io standard, install the skill instead:

npx @expose-team/skills --api-key=sk-xxxxxxxx

Links