
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@cle-does-things/anydocs
Advanced tools
CLI tool to fetch any documentation you need for your vibe coding project
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!
In order to install anydocs there are three ways:
go: if you already have go 1.23+ installed in your environment, installing anydocs is effortlessgo install github.com/AstraBert/anydocs
npm:npm install @cle-does-things/anydocs
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).
anydocs has two commands, fetch and gh.
fetchManual
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
ghManual
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
We welcome contributions! Please read our Contributing Guide to get started.
This project is licensed under the MIT License
FAQs
CLI tool to fetch any documentation you need for your vibe coding project
We found that @cle-does-things/anydocs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.