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

@foxygeo/audit

v0.1.1

Published

Lint llms.txt, GPTBot/ClaudeBot access, and schema in CI. Comments AI Readiness on the PR and publishes a public FoxyGEO report.

Readme

@foxygeo/audit

Free CI linter for AI crawler readiness. Checks llms.txt, GPTBot/ClaudeBot access, and JSON-LD in about two seconds, then comments the score on a pull request with a public report on foxygeo.com.

npx @foxygeo/audit
npx @foxygeo/audit example.com
npx @foxygeo/audit --ci --publish example.com

GitHub Actions

name: FoxyGEO
on: [pull_request]
jobs:
  audit:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      pull-requests: write
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: 20
      - run: npx --yes @foxygeo/audit --ci --publish example.com
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

The PR comment looks like:

FoxyGEO AI Readiness: 94/100
Public audit: https://foxygeo.com/report/example-com

Preview hosts (*.vercel.app, *.netlify.app, and similar) are never published.

What it scores

| Check | Weight | | --- | --- | | GPTBot / ClaudeBot not blocked at / | 40 | | llms.txt present and useful | 30 | | JSON-LD (Organization / WebSite / FAQPage / …) | 30 |

Local mode reads files in the repo. Domain mode fetches /robots.txt, /llms.txt, and the homepage.

Publish later

  1. Create the npm org @foxygeo and run npm publish --access public from this directory.
  2. Point the public foxycorp/audit repository at action.yml.
  3. Show HN title: npx @foxygeo/audit — lint llms.txt, GPTBot access, and schema in CI.

See PUBLISHING.md for the release gate, Marketplace setup, and channel order.