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.
If you find Oyren Prompter useful, consider supporting its development!
Or, use the direct link: https://buymeacoffee.com/vorashil
- 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
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.
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:latestIf 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.
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
- Write clear and concise commit messages
- Document any new features or config changes
- Feel free to open issues for bugs, questions, or suggestions
This project is licensed under the GNU General Public License v3.0.
