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

@ammit/llms-txt

v0.1.0

Published

Generate llms.txt files for any website. Make your site AI-friendly.

Readme

llms-txt

Generate llms.txt files for any website. Make your site AI-friendly.

llms.txt is a standard that helps AI agents understand your website. It converts your pages into clean, token-efficient markdown that LLMs can consume directly, reducing token usage by ~90% compared to raw HTML.

Only 5-15% of websites have llms.txt today. This tool generates one for you automatically.

Install

npm install -g @ammit/llms-txt

Or run directly:

npx @ammit/llms-txt https://example.com

Usage

# Generate llms.txt for a site
llms-txt https://docs.anthropic.com

# Set crawl depth
llms-txt https://example.com --depth 3

# Output to files
llms-txt https://example.com -o ./llms.txt

# Include/exclude URL patterns
llms-txt https://example.com --include "/docs/**" --exclude "/blog/**"

# Generate llms-full.txt (all content bundled)
llms-txt https://example.com --full

What it does

  1. Discovers pages via sitemap.xml and link following
  2. Extracts clean content using Readability (strips nav, ads, scripts)
  3. Converts to markdown via Turndown
  4. Outputs a standard llms.txt index and optional llms-full.txt bundle

Output format

The generated llms.txt follows the llms.txt standard:

# Example Docs

> Documentation for the Example platform.

## Getting Started

- [Quick Start](https://example.com/docs/quickstart): Set up your first project in 5 minutes
- [Installation](https://example.com/docs/install): System requirements and install steps

## API Reference

- [Authentication](https://example.com/docs/api/auth): API keys and OAuth setup
- [Endpoints](https://example.com/docs/api/endpoints): Complete REST API reference

Options

| Flag | Description | Default | |------|-------------|---------| | --depth, -d | Max crawl depth | 3 | | --output, -o | Output file path | stdout | | --full | Also generate llms-full.txt | false | | --include | URL patterns to include (glob) | all | | --exclude | URL patterns to exclude (glob) | none | | --rate | Requests per second | 2 | | --concurrency, -c | Parallel requests | 5 | | --json | Output as JSON | false | | --verbose, -v | Show detailed skip/fetch logging | false | | --timeout | Fetch timeout in milliseconds | 10000 |

How it works

URL --> Sitemap/Link Discovery --> Content Extraction --> Markdown Conversion --> llms.txt
  • Discovery: Checks sitemap.xml first, falls back to recursive link following
  • Extraction: Mozilla Readability isolates main content, removes chrome
  • Conversion: Turndown produces clean GFM markdown
  • Assembly: Groups pages by URL path into sections, generates descriptions

Contributing

Contributions welcome. Please open an issue first to discuss what you'd like to change.

License

MIT