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

@michaeltookes/mission-control-cli

v0.1.1

Published

CLI for Mission Control — agent-facing operations against genkeilabs.dev.

Readme

mc — Mission Control CLI

A small Node CLI for agent-facing Mission Control operations. Talks HTTPS to genkeilabs.dev (no DB credentials live on the agent host).

Replaces the previous in-tree MCP server (mission-control/src/mcp/, removed 2026-04-21).

Install

npm i -g @michaeltookes/mission-control-cli

Requires Node 18+.

Configure

mc config set api-url https://genkeilabs.dev
mc config set api-key $INGEST_API_KEY      # or rely on $MC_API_KEY env var
mc config set default-org coding-lab       # optional
mc completions zsh >> ~/.zshrc             # also: bash

Config file: ~/.mission-control/config.json (override with MC_CONFIG_PATH). Env vars MC_API_KEY and MC_ORG take precedence over config values.

Commands

mc heartbeat --agent lucius-fox
mc status
mc tasks list --status in-progress
mc tasks get --id <uuid>
mc tasks create --title "Fix login bug" --priority P1
mc tasks update --id <uuid> --status done
mc tasks claim --id <uuid> --owner lucius-fox
mc projects list
mc projects create --slug my-proj --name "My project"
mc agents list
mc agents update-status --id <uuid> --status idle
mc backlog add --title "Investigate flaky retention test" --priority P2
mc events --since 2026-04-21T00:00:00Z
mc tail                                    # poll events, render one per line
mc tail --filter task.claimed,task.updated --json
mc config get api-url
mc config set default-org coding-lab
mc config list

Common flags:

  • --org <slug> — overrides config default-org and MC_ORG
  • --json — compact one-line JSON output (default: pretty)

These flags are available on most commands, but not every command. For example, mc completions does not accept --org or --json.

Errors go to stderr; exit code 1 on failure.

Auth (V1)

Single shared INGEST_API_KEY, mounted on each agent host. Adequate for the current 3-agent fleet.

Develop

pnpm install
pnpm dev          # tsup watch
pnpm test
pnpm completions  # regenerate completions/{mc.bash,mc.zsh}

npm link to test locally without publishing.

License

MIT