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

poke-agents

v1.7.0

Published

Clone poke-agents, install, build, run MCP + dashboard + Poke tunnel

Downloads

32

Readme

poke-agents (npm launcher)

Fast start

One command — same pattern as @leokok/poke-apple-music:

  1. Keeps a cached git clone under ~/.local/share/poke-agents/repo
  2. npm install + build: full npm run build (MCP + Next), or npm run build:mcp only when using --skip-web / POKE_AGENTS_SKIP_WEB=1 (no Turbopack/Next step)
  3. Starts MCP HTTP, Next.js UI, and poke tunnel to register the MCP with Poke
npx poke-agents@latest

MCP only (no Next.js dashboard) — same as POKE_AGENTS_SKIP_WEB=1:

npx poke-agents@latest --skip-web

Custom Poke + MCP name (tunnel -n label + MCP server name as a slug of that label):

npx poke-agents@latest --name "Work laptop"
# → Poke sees "Work laptop"; MCP initialize name → work-laptop

Combine flags:

npx poke-agents@latest --skip-web --name "CI agents"

Non-interactive / fewer prompts:

npx poke-agents@latest --yes
# or
POKE_AGENTS_YES=1 npx poke-agents@latest

Environment

| Variable | Purpose | |----------|---------| | POKE_AGENTS_REPO | Git URL (default: https://github.com/leoakok/poke-agents.git) | | POKE_AGENTS_YES / --yes | Skip destructive cache prompts | | --skip-web | Sets POKE_AGENTS_SKIP_WEB=1 — start MCP HTTP (and tunnel unless skipped), no dashboard | | -n/--name "…" | Sets POKE_AGENTS_TUNNEL_NAME and POKE_AGENTS_MCP_SERVER_NAME (slug) for Poke + MCP clients | | --mcp-name "…" | Legacy alias for --name | | POKE_AGENTS_TUNNEL_NAME | Poke tunnel display label (-n); default Poke agents | | POKE_AGENTS_MCP_SERVER_NAME | MCP protocol server name; default poke-agents, or slug of tunnel name if only tunnel name is set | | POKE_AGENTS_MCP_PORT | MCP + dashboard API port (default 8740) | | POKE_AGENTS_WEB_PORT | Next.js port (default 3000) | | POKE_AGENTS_SKIP_WEB | 1 = MCP (+ tunnel) only, no dashboard | | POKE_AGENTS_SKIP_TUNNEL | 1 = local only, no poke tunnel | | POKE_AGENTS_NO_OPEN | 1 = do not open the default browser when the dashboard starts | | POKE_AGENTS_STRICT_PORTS | 1 = do not auto-pick another port if the preferred MCP/dashboard port is busy (exit with error instead) |

CLI options

poke-agents --help
  • -h, --help show usage
  • -v, --version print launcher version
  • -y, --yes run non-interactively
  • -n, --name <label> set tunnel label + MCP server name slug
  • --mcp-name <label> legacy alias for --name
  • --skip-web start MCP-only mode

Local development

Use the repo root (poke/agents), not this npm folder:

npm install
npm run build
npm run start:poke

Full source: github.com/leoakok/poke-agents.

Releases and versioning

The poke-agents version on npm is released from the main branch in that repo: CI runs on every branch/PR; semantic-release bumps this package’s version, tags, and publishes only when changes land on main (see repo root release.config.cjs and docs/GITHUB_READINESS.md). Commit messages should follow Conventional Commits (fix:, feat:, etc.) so semver is correct.