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

@fixprompt/cli

v0.6.0

Published

FixPrompt CLI — annotate deployments and ship them to the broker so the dashboard knows what changed.

Readme

@fixprompt/cli

FixPrompt command-line tool. One subcommand for now: deploy-start, which posts a deploy marker to the broker so the dashboard knows what changed.

Install

npm install -g @fixprompt/cli

Or just one-shot it with no install:

npx @fixprompt/cli deploy-start --status success

fixprompt deploy-start

Tells the broker that a deploy just happened. Reads your commit_sha / branch / repo / commit_message automatically when run inside a git working tree or under one of these CI providers:

  • GitHub Actions (GITHUB_SHA, GITHUB_REF_NAME, GITHUB_REPOSITORY)
  • Vercel (VERCEL_GIT_COMMIT_SHA, VERCEL_GIT_COMMIT_REF, VERCEL_GIT_REPO_*)
  • Railway (RAILWAY_GIT_COMMIT_SHA, RAILWAY_GIT_BRANCH, …)

Auth

Pass via env vars (preferred for CI):

export LOGHUB_SOURCE=my-app-prod    # from project creation
export LOGHUB_KEY=k_...              # from project creation / Rotate Key

Or via flags:

fixprompt deploy-start \
  --source my-app-prod \
  --key k_... \
  --status success

Flags

| flag | default | purpose | |------|---------|---------| | --source <slug-prod> | $LOGHUB_SOURCE / $FIXPROMPT_SOURCE | project source label | | --key <k_...> | $LOGHUB_KEY / $FIXPROMPT_KEY | ingest key | | --endpoint <url> | $FIXPROMPT_ENDPOINT or https://geosloghub-production.up.railway.app | broker URL | | --status <state> | in_progress | in_progress | success | failed | | --commit-sha <sha> | auto | override auto-detected commit | | --branch <name> | auto | override auto-detected branch | | --message <text> | auto | override auto-detected commit subject |

EAS / Expo

In eas-build-post-install or a custom workflow step:

npx --yes @fixprompt/cli deploy-start --status success

EAS env vars (EAS_BUILD_GIT_COMMIT_HASH, EAS_BUILD_GIT_BRANCH_NAME) aren't recognised yet — pass them explicitly until V2:

npx --yes @fixprompt/cli deploy-start \
  --status success \
  --commit-sha "$EAS_BUILD_GIT_COMMIT_HASH" \
  --branch "$EAS_BUILD_GIT_BRANCH_NAME"

GitHub Actions

Use the prebuilt composite action instead — same effect, less typing:

- uses: geos/fixprompt-deploy@v1
  with:
    source: ${{ secrets.FIXPROMPT_SOURCE }}
    key: ${{ secrets.FIXPROMPT_KEY }}
    status: success

License

UNLICENSED (closed beta).