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

@beepsdev/cli

v0.0.14

Published

cli for beeps.dev - manage your on-call setup and active alerts

Downloads

501

Readme

@beepsdev/cli

Command-line interface for beeps — on-call alerting and incident response with AI agents.

Manage relays, schedules, alerts, integrations, and AI agent jobs from your terminal. Includes a real-time TUI dashboard for monitoring alerts as they come in.

Install

npm install -g @beepsdev/cli

Authentication

beeps --api-key <your-api-key> relay list

Or set it in a config file and forget about it. Lint your config to make sure it's valid:

beeps config lint

Relays

Relays are alert routing pipelines. Create them directly or manage them as code with plan and apply.

beeps relay list
beeps relay create --name "production on-call"

# infrastructure-as-code style
beeps relay plan -f relay.yaml --dry-run
beeps relay apply -f relay.yaml
beeps relay export -o relay.yaml

Catch misconfigurations before they page someone at 3am:

beeps relay lint --relay-id rly_abc
beeps relay simulate --relay-id rly_abc --simulate-at "2026-04-04T03:00:00Z"

Relay rules

beeps relay rule list --relay-id rly_abc
beeps relay rule create --relay-id rly_abc \
  --name "notify on-call" \
  --rule-type schedule_notify \
  --config '{"scheduleId": "sch_primary"}'

Rule types: schedule_notify, webhook, agent.

Schedules

On-call rotations with weekly or daily handoffs.

beeps schedule create \
  --name "primary rotation" \
  --relay-id rly_abc \
  --type weekly \
  --handoff-day monday \
  --handoff-time "09:00"

beeps schedule add-member --schedule-id sch_abc --email [email protected]
beeps schedule on-call --schedule-id sch_abc

Overrides

beeps schedule override create \
  --schedule-id sch_abc \
  --user-id usr_xyz \
  --start-at "2026-04-05T00:00:00Z" \
  --end-at "2026-04-06T00:00:00Z" \
  --reason "covering PTO"

Alerts

beeps alert list --active
beeps alert get --alert-id alt_123
beeps alert on-it --alert-id alt_123
beeps alert resolve --alert-id alt_123

# see who's responding and which AI agents are working on it
beeps alert responders --alert-id alt_123
beeps alert agents --alert-id alt_123

AI agent integrations

Connect AI agents like Devin and Cursor to your relays. When an alert fires, beeps dispatches an agent to start triaging.

beeps integration create \
  --provider devin \
  --name "devin - production" \
  --api-key-env DEVIN_API_KEY

beeps agent-job list
beeps agent-job status --job-id job_456

Providers: devin, cursor, slack, discord.

JSON output

Every command supports --json for scripting and piping:

beeps alert list --active --json | jq '.[0].severity'

Global options

--api-key <key>       API key for authentication
--base-url <url>      Custom API endpoint
--config <file>       Config file path
--timeout <ms>        Request timeout (default: 10000)
--retries <count>     Retry attempts (default: 2)

Docs

Full documentation at beeps.dev/docs/using-beeps/cli.