Windows task organizer with AI sorting

Brain Dump

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.

Current Version 1.0.0
Platform Windows x64
AI Backend Bring your hosted API

What it does

Turns scattered notes into useful plans.

Brain Dump is a desktop app for quickly capturing thoughts, then organizing them into tasks with priority, due dates, categories, and reminders.

01

Fast capture

Paste or type a messy brain dump without stopping to organize it first.

AI

AI task sorting

Your backend extracts clean task cards while keeping the API key server-side.

24

Local reminders

Desktop notifications help keep tasks visible when the day gets noisy.

Hosted AI API

Run the key on your server, not inside the app.

The desktop app should call your deployed backend URL. The backend talks to OpenRouter using environment variables that users never receive.

1

Deploy the website folder

Use Hostinger's Node.js web app feature. Set the project/root directory to website.

2

Add environment variables

Store OPENROUTER_API_KEY, openai/gpt-4o-mini, rate limits, and host settings in hPanel.

3

Ship the desktop app

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

Ship it without leaking the expensive bits.

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.