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
Maintainers
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.

🌐 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-prompterYou can also specify a custom port:
npx oyren-prompter -p 8080Requirements: 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:latestThe -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:latestOption 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-prompterThis 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:
- Fork the repository
- Create a feature branch
git checkout -b your-feature-name - Make your changes
- Commit and push
git commit -m "Describe your change"git push origin your-feature-name - Open a pull request to the
mainbranch
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.
