Promptzy
A sleek web app for managing and organizing your AI prompts with tagging, search, and cloud storage via Supabase. Installable as a PWA for seamless cross-device access.
Install / Use
/learn @pinkpixel-dev/PromptzyREADME
✨ Promptzy 🎯
<p align="center"> <img src="./logo.png" alt="Promptzy Logo" width="250" height="250" /> </p>Promptzy - A modern, cute web application for managing and organizing your AI prompts, with tagging, search, and cloud storage.
<div align="center">
✨ Features
- Organize AI Prompts: Store, edit, and categorize prompts for various AI models
- Custom Tagging: Organize prompts with custom tags for easy retrieval
- Powerful Search: Find the perfect prompt with full-text search and tag filtering
- Cloud Storage: Reliable Supabase cloud storage with cross-device sync
- Refresh Prompts: Manual refresh button to sync prompts after configuration changes
- AI Assistant: Generate new prompts with AI — powered by Pollinations, with selectable model and streaming responses
- Progressive Web App (PWA): Install as a mobile app directly from your browser
- Desktop App: Native Electron app for Linux (more platforms coming)
- Docker: Run anywhere with a single
docker compose upcommand - Documentation: Full docs site at promptzy-docs.pinkpixel.dev
- Modern UI: Clean, responsive interface built with Shadcn/UI and Tailwind
🖥️ Screenshots
<p align="center"> <img src="./screenshot.png" alt="Screenshot" width="800" /> </p>🛠️ Installation
Quick Start (Global Installation)
Install globally from npm and run with a single command:
# Install globally
npm install -g @pinkpixel/promptzy
# Run Promptzy
promptzy
Promptzy will start on http://localhost:4173 and open automatically in your browser!
Alternative commands:
# Legacy commands still work
prompt-dashboard
ai-prompt-dashboard
# Or run directly with npx (no installation needed)
npx @pinkpixel/promptzy
Local Development
# Clone the repository
git clone https://github.com/pinkpixel-dev/promptzy.git
# Navigate to the project directory
cd promptzy
# Install dependencies (choose one)
npm install
# or
bun install
# or
yarn install
# Start the development server
npm run dev
# or
bun run dev
# or
yarn dev
📱 Mobile App Installation (PWA)
Promptzy can be installed as a mobile app directly from your browser! No app store needed.
On Mobile (iOS/Android):
- Visit the Promptzy website in your mobile browser
- Look for "Add to Home Screen" or "Install App" popup
- Tap "Install" or "Add"
- Promptzy will appear on your home screen like a native app!
On Desktop (Chrome/Edge):
- Visit the website
- Look for the install icon in the address bar
- Click to install as a desktop app
Benefits of the Mobile App:
- 📱 Native app experience with no browser UI
- ⚡ Faster loading and offline functionality
- 🔄 Automatic updates when new versions are released
- 🏠 Easy access from your home screen
- 🔄 Manual refresh button for syncing prompts after setup
🖥️ Linux Desktop App (Electron)
Download the native desktop app for Linux — no browser required.
| Package | Format | Download |
| ---------------------- | ----------- | -------------------------------------------------------------------------------------------------------- |
| Debian / Ubuntu / Mint | .deb | Promptzy-1.4.3-amd64.deb |
| Universal Linux | .AppImage | Promptzy-1.4.3.AppImage |
Install the .deb package:
wget https://pub-699cccf9e73e444da2db8cbfb168ab3a.r2.dev/Promptzy-1.4.3-amd64.deb
sudo dpkg -i Promptzy-1.4.3-amd64.deb
Run the .AppImage (no install needed):
wget https://pub-699cccf9e73e444da2db8cbfb168ab3a.r2.dev/Promptzy-1.4.3.AppImage
chmod +x Promptzy-1.4.3.AppImage
./Promptzy-1.4.3.AppImage
🐳 Docker
Run Promptzy as a self-hosted web app in a Docker container.
Quick start (pre-built image from source):
git clone https://github.com/pinkpixel-dev/promptzy.git
cd promptzy
docker compose up --build
Promptzy will be available at http://localhost:3000.
With Supabase & Pollinations credentials baked in:
VITE_SUPABASE_URL=https://xxxx.supabase.co \
VITE_SUPABASE_ANON_KEY=your_anon_key \
VITE_POLLINATIONS_API_KEY=pk_your_key \
docker compose up --build
Or build & run manually:
npm run docker:build # docker build -t promptzy .
npm run docker:run # docker run --rm -p 3000:80 promptzy
Credentials can also be configured at runtime through the in-app Settings dialog — no rebuild needed.
Deployment
For deploying to Cloudflare Pages or other platforms, see the DEPLOYMENT.md guide.
🔧 Configuration
Supabase Configuration
To use promptzy you will need to set up a table on Supabase. They have a free tier and the setup is very easy to do.
- Create a Supabase account and project at supabase.com. Once you have an account set up, create a project. At the top of your project page, you should see a button that says "Connect." Click on that button, and then click on the 2nd tab. You should see a screen that gives you a supabase url, and an anon key. You can also find this information in your project settings, you will see a project id, and your anon key will be located in the api keys section.
Now that you have this information, return to Promptzy.
-
Configure your Supabase credentials:
- Open Promptzy
- Go to Settings (gear icon)
- Select "Supabase" as your storage option
- Enter your Supabase Project URL and API Key
- Find these in your Supabase dashboard under Project Settings → API
- Click "Connect" to verify your credentials
-
Create the required database table:
- After connecting, you'll need to set up the prompts table manually. You should see the instructions appear after entering your credentials.
- Click the "Open SQL Editor" button in the settings
- Copy the SQL code provided in the settings (or use the SQL from
supabase-setup.sql) - Paste and run it in the Supabase SQL Editor
-
Return to Promptzy and click "Connect" again to verify the table setup
-
Save your settings
-
Use the "Refresh" button in the header to load your prompts
Note: Automatic table creation isn't supported by Supabase for security reasons, so this one-time manual setup is required. You should only have to do this once per browser. After setup, use the refresh button to ensure prompts load properly, especially on mobile devices.
The application will now use your Supabase instance for cloud storage! The cloud storage is ideal because it allows you to access your prompt database from any browser, computer or mobile device, and with Supabase's free tier you will have plenty of storage space for your prompts.
📖 Usage
- Launch the application
- Configure your Supabase connection in Settings
- Use the "Refresh" button to load your prompts after setup
- Add prompts with the "+" button
- Assign tags to organize your prompts
- Use the search box and tag filters to find prompts
- Select a prompt to copy it or edit its details
🤖 AI Assistant
The AI Assistant panel sits at the bottom-right of the screen and lets you generate ready-to-use prompts with a single click.
Setup
- Grab a free API key from enter.pollinations.ai — a publishable
pk_key works fine for browser use - Open Settings (gear icon) → AI Assistant Configuration
- Paste your key into Pollinations API Key
- Optionally change the AI Model (default:
gemini-fast) - Click Save Changes
Generating a Prompt
- Click AI Prompt Assistant in the bottom-right corner to expand it
- Choose the prompt type: System, Task, Image, or Video
- Describe what you want in the text area (e.g. "a friendly customer support assistant" for a System prompt)
- Click Generate Prompt — response streams in live
- Copy the result to clipboard, or click Use as Prompt to save it directly to your library
Available Models
Any Pollinations text model can be used. Some good picks:
| Model | Description |
| -------------- | ---------------------------------------------------- |
| gemini-fast | Google Gemini 2.5 Flash Lite — default, fast & cheap |
| openai | GPT-5 Mini — fast & balanced |
| openai-large | GPT-5.2 — most powerful |
| claude | Claude Sonnet 4.6 — capable & balanced |
| deepseek | DeepSeek V3.2 — efficient reasoning |
Customising the System Prompt
Open Settings → AI Assistant Configuration, uncheck Use default system prompt, and
Related Skills
node-connect
328.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
80.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
328.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
80.9kCommit, push, and open a PR