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

@cle-does-things/anydocs

v0.2.1

Published

CLI tool to fetch any documentation you need for your vibe coding project

Readme

anydocs

anydocs is a CLI tool built for developers using local coding agents such as Cursor, Claude Code, Gemini CLI and GitHub Copilot.

Its main aim is to fetch documentation starting from any URL that exposes raw text: this means that all the docs you need for that vibe coding project are just a GET request away!

Not only: anydocs combines the performance of Go with the benefits of concurrency, executing multiple fetch operations at a time so that you can have your documentation ready even faster.

And if you do need an extra help in organizing the docs, you can count on the AI summary functionality: Claude 4 Sonnet will take the whole fetched documentation clump and will produce a neat and ready-to-go summary!

Install

In order to install anydocs there are three ways:

  1. Using go: if you already have go 1.23+ installed in your environment, installing anydocs is effortless
go install github.com/AstraBert/anydocs
  1. Using npm:
npm install @cle-does-things/anydocs
  1. Downloading the executable from the releases page: you can download it directly from the GitHub repository or, if you do not want to leave your terminal, you can use curl:
curl -L -o anydocs https://github.com/AstraBert/anydocs/releases/download/<version>/anydocs_<version>_<OS>_<processor>.tar.gz ## e.g. https://github.com/AstraBert/anydocs/releases/download/0.1.1/anydocs_0.1.1_darwin_amd64.tar.gz

# make sure the downloaded binary is executable (not needed for Windows)
chmod +x anydocs

In this last case, be careful to specify your OS (supported: linux, windows, macos) and your processor type (supported: amd, arm).

Run

anydocs has two commands, fetch and gh.

fetch

Manual

Fetch documentation content by passing the endpoint URLs (comma-separated, flag -u,--urls) and the path to which you would like to save this documentation (flag -p, --path). Optionally, you can also decide to produce an AI summary of the documentation (flag -s, --summary).

Usage:
  anydocs fetch [flags]

Aliases:
  fetch, f

Flags:
  -h, --help          help for fetch
  -p, --path string   Pass the path you want to save your files at
  -s, --summary       Use this flag if you want to enable AI summary of fetched documentation.
  -u, --urls string   Pass a set of llms.txt endpoints, comma separated (e.g. 'https://docs.llamaindex.ai/en/latest/llms.txt,https://raw.githubusercontent.com/AstraBert/anydocs/main/README.md')

Example Usage

# with AI summary
anydocs fetch --urls 'https://raw.githubusercontent.com/AstraBert/anydocs/main/README.md' --path CLAUDE.md --summary
# without AI summary
anydocs fetch --urls 'https://raw.githubusercontent.com/AstraBert/anydocs/main/README.md' --path CLAUDE.md

gh

Manual

Fetch documentation content by passing URLs of GitHub files (comma-separated, flag -u,--urls) and the path to which you would like to save this documentation (flag -p, --path). Optionally, you can also decide to produce an AI summary of the documentation (flag -s, --summary).

Usage:
  anydocs gh [flags]

Aliases:
  gh, g

Flags:
  -h, --help          help for gh
  -p, --path string   Pass the path you want to save your files at
  -s, --summary       Use this flag if you want to enable AI summary of fetched documentation.
  -u, --urls string   Pass a set of GitHub URLs, comma separated (e.g. 'https://github.com/AstraBert/PdfItDown/blob/main/README.md,https://github.com/AstraBert/anydocs/tree/main/README.md')

Example Usage

anydocs gh --urls 'https://github.com/AstraBert/anydocs/blob/main/README.md' --path CLAUDE.md
# with AI summary:
anydocs gh --urls 'https://github.com/AstraBert/anydocs/blob/main/README.md' --path CLAUDE.md --summary

Contributing

We welcome contributions! Please read our Contributing Guide to get started.

License

This project is licensed under the MIT License