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

oyren-prompter

v2.0.0

Published

A local web tool that allows you to browse and select multiple files, combine their contents, and prepend a custom prompt for AI tools

Readme

Oyren Prompter

Oyren Prompter is a local web tool that allows you to browse and select multiple files, combine their contents, and prepend a custom prompt. It’s perfect for preparing contextual input for AI chat models — while keeping your files 100% private and on your machine.

Oyren Prompter Demo


🌐 About oyren.dev

oyren.dev is a browser-based AI development platform that helps you build, test, and refine code faster using multiple AI models — no switching between tools, no file uploads. It’s designed for rapid prototyping and real-time code feedback, all in the browser.

Oyren Prompter is a companion utility for oyren.dev to help users easily construct prompts from their codebase and use them with AI tools.


Support This Project

If you find Oyren Prompter useful, consider supporting its development!

Or, use the direct link: https://buymeacoffee.com/vorashil


🚀 Getting Started

Prerequisites

  • Docker (for npx/Docker options)
  • OR Python 3.7+ with pipx (for Python option)
  • Modern web browser

For the recommended npx approach, you'll need Docker:

  • Visit https://www.docker.com/get-started
  • Download and install Docker Desktop for your OS

For the Python alternative, install pipx:

brew install pipx  # macOS with Homebrew
pipx ensurepath 
pipx --version

🛠 How to Run

Option 1: Using npx (Simplest - Recommended)

Run Oyren Prompter with a single command:

npx oyren-prompter

You can also specify a custom port:

npx oyren-prompter -p 8080

Requirements: Docker must be installed on your system. If not installed, you'll see instructions on how to get it.

Option 2: Using Docker directly

Run Oyren Prompter in a container:

# Pull and run the latest image
docker run -v $(pwd):/project -p 37465:37465 oyrendev/prompter:latest

The -v $(pwd):/project flag mounts your current directory into the container, allowing Oyren Prompter to access your files. The container runs on port 37465.

For Windows PowerShell, use:

docker run -v ${PWD}:/project -p 37465:37465 oyrendev/prompter:latest

Option 3: Using pipx (Python alternative)

If you prefer not to use Docker, you can launch Oyren Prompter using pipx:

pipx run --spec git+https://github.com/oyren-dev/oyren-prompter.git oyren-prompter

This will start a local Flask server that scans your files. You can then:

  • Select the files you want to use
  • Combine them into a single context
  • Prepend a custom prompt
  • Use the result with your favorite AI tool

✅ All files stay local — nothing is ever uploaded.


🤝 Contributing

We welcome contributions! Here’s how to get started:

  1. Fork the repository
  2. Create a feature branch
    git checkout -b your-feature-name
  3. Make your changes
  4. Commit and push
    git commit -m "Describe your change"
    git push origin your-feature-name
  5. Open a pull request to the main branch

Contribution Guidelines

  • Write clear and concise commit messages
  • Document any new features or config changes
  • Feel free to open issues for bugs, questions, or suggestions

📄 License

This project is licensed under the GNU General Public License v3.0.