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

@tokelde/prompter

v0.6.2

Published

Bundle your repository into a single Markdown document for LLM prompts.

Readme

prompter

Turn an entire repository into one clean Markdown snapshot for LLM prompts.

prompter scans your project, respects ignore rules, and emits a structured file-by-file dump optimized for review, refactor, or debugging by an LLM or agent.

Basic Usage

npx @tokelde/prompter
npx @tokelde/prompter app/services
npx @tokelde/prompter -c "createUser"
npx @tokelde/prompter -p "Create a technical documentation for authentication."

Advanced Usage

npx @tokelde/prompter -o snapshot.md
npx @tokelde/prompter src/server.ts src/routes/auth.ts package.json
npx @tokelde/prompter -e dist -e "README.md,.gitignore"
npx @tokelde/prompter -F py -E js
npx @tokelde/prompter -i .env.local
npx @tokelde/prompter --hidden
npx @tokelde/prompter --raw
npx @tokelde/prompter --quiet

Options

  • [path-or-file ...]: Optional positional inputs.
    • No value: defaults to current directory (.).
    • One or more directory paths (relative or absolute): scans each folder and applies nested ignore rules.
    • One or more file paths (relative and/or absolute): includes only those files.
    • You can mix folders and files in the same command.
  • -e, --exclude <path-or-glob>: Exclude a file/folder/glob. Repeat the flag or pass comma-separated values.
  • -i, --include <path>: Force-include specific file(s), even when excluded by ignore rules. Repeat or comma-separate values.
  • -F, --find-format <ext>: Include only files with these extensions (example: py or .py). Repeat or comma-separate values.
  • -E, --exclude-format <ext>: Exclude files with these extensions (example: js or .js). Repeat or comma-separate values.
  • -c, --contains <text>: Include only files whose content contains the provided text.
  • --hidden: Include hidden files (dotfiles). By default, hidden files are not included.
  • -p, --top-prompt <text>: Prepend text at the very top of the output.
  • -r, --raw: Print output to terminal (stdout) and do not create an output file.
  • -q, --quiet: Hide default verbose completion logs.

By default, prompter prints a two-line completion summary to stderr:

  • <N> files found.
  • <output-path> created

Rust Runtime Requirement

The npm package uses a Rust CLI under the hood and exposes a direct binary (bin/prompter). On install, it builds the binary locally with Cargo (cargo build --release) and copies it to bin/prompter.

You need a Rust toolchain available in PATH:

rustup toolchain install stable

Privacy

prompter runs entirely locally. It does not send your code anywhere.

License

MIT. See LICENSE.

Contributing

See CONTRIBUTING.md for update guidelines (including testing, changelog, and versioning rules).