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

@ctdio/inngest-ctl

v0.2.0

Published

CLI for interacting with Inngest's REST API - list events, send events, check run status, and cancel runs

Readme

inngest-ctl

Command-line interface for Inngest events and runs.

Setup

# Via bunx (no install needed)
bunx @ctdio/inngest-ctl <command>

# Or create an alias
alias inngest-ctl="bunx @ctdio/inngest-ctl"

Agent Skill

Install as an agent skill for AI-assisted Inngest operations:

npx skills install ctdio/inngest-ctl

Once installed, your agent can query events, check run status, and manage Inngest functions directly.

Environment Variables

export INNGEST_EVENT_KEY="your-event-key"      # Required for sending events
export INNGEST_SIGNING_KEY="your-signing-key"  # Required for API queries

Usage

inngest-ctl <command> [options]

Commands:
  events    Send and query events
  runs      Query function runs
  cancel    Cancel running functions

Global Options:
  --pretty          Human-readable output with colors
  --output <file>   Write JSON output to file
  --dev             Use local dev server (default: localhost:8288)
  --port <port>     Dev server port (default: 8288)
  --help, -h        Show help
  --version, -v     Show version

Events

inngest-ctl events <subcommand> [options]

Subcommands:
  list    List recent events
  send    Send an event
  get     Get event details
  runs    List runs triggered by an event

List Options:
  --name <name>     Filter by event name
  --limit <n>       Max events to return

Send Options:
  --name <name>     Event name (required)
  --data <json>     Event data as JSON (required)
  --id <id>         Deduplication ID
  --env <env>       Branch environment name

Examples:

inngest-ctl events list --pretty
inngest-ctl events list --name "user.signup" --limit 10 --pretty
inngest-ctl events send --name "user.signup" --data '{"userId": "123"}'
inngest-ctl events get 01H08W4TMBNKMEWFD0TYC532GG --pretty
inngest-ctl events runs 01H08W4TMBNKMEWFD0TYC532GG --pretty

Runs

inngest-ctl runs <subcommand> [options]

Subcommands:
  status  Get run status and duration
  get     Get run details (jobs/steps)
  list    List runs for an event

List Options:
  --event <id>    Event ID to list runs for

Examples:

inngest-ctl runs status 01H08W5TMBNKMEWFD0TYC532GH --pretty
inngest-ctl runs get 01H08W5TMBNKMEWFD0TYC532GH --pretty
inngest-ctl runs list --event 01H08W4TMBNKMEWFD0TYC532GG

Cancel

inngest-ctl cancel --app <app> --function <fn> --started-after <time> --started-before <time> [--if <expr>]

Example:

inngest-ctl cancel --app my-app --function my-func --started-after 1h --started-before now

Dev Server

Use --dev flag to target local Inngest dev server:

# Start Inngest dev server
npx inngest-cli@latest dev

# Query local events
inngest-ctl events list --dev --pretty

# Send event to local
inngest-ctl events send --name "test.event" --data '{}' --dev

Override URL with INNGEST_DEV_URL:

export INNGEST_DEV_URL="http://localhost:9000"

License

MIT