Fast capture
Paste or type a messy brain dump without stopping to organize it first.
Windows task organizer with AI sorting
Drop your messy thoughts into one place, then turn them into tasks, reminders, and calm next steps.
Windows x64 build. The hosted API keeps AI keys off user devices.
What it does
Brain Dump is a desktop app for quickly capturing thoughts, then organizing them into tasks with priority, due dates, categories, and reminders.
Paste or type a messy brain dump without stopping to organize it first.
Your backend extracts clean task cards while keeping the API key server-side.
Desktop notifications help keep tasks visible when the day gets noisy.
Hosted AI API
The desktop app should call your deployed backend URL. The backend talks to OpenRouter using environment variables that users never receive.
Use Hostinger's Node.js web app feature. Set the project/root directory to website.
Store OPENROUTER_API_KEY, openai/gpt-4o-mini, rate limits, and host settings in hPanel.
The Windows app is already wired to call http://www.dumpitnotes.lol/api/extract-tasks.
Root directory: website
Build command: npm install
Start command: npm start
Health check: /health
OPENROUTER_API_KEY=your_server_key
OPENROUTER_MODEL=openai/gpt-4o-mini
HOST=0.0.0.0
npm run build
Public release checklist
OK Never publish server/.env or bake API keys into Electron.
OK Use HTTPS for the hosted backend.
OK Add rate limits, request size limits, and abuse monitoring.
OK Code-sign the Windows installer before a broad public launch.
OK Explain what text is sent to AI in a simple privacy policy.