A floating AI-powered desktop helper for senior citizens. It sits on top of all your other windows and helps you understand your screen — step by simple step. Youtube: https://youtu.be/lEE2a3St2V8
If you don't have it: https://nodejs.org → download the LTS version and install it.
Put the electron-app folder somewhere on your computer.
Open a terminal inside the electron-app folder and run:
npm installOpen index.html and find this line near the top of the <script> tag:
const GROQ_API_KEY = "YOUR_GROQ_API_KEY_HERE";Replace YOUR_GROQ_API_KEY_HERE with your actual Groq key from https://console.groq.com
npm startA small floating window will appear in the top-right corner of your screen. 🎉
| Platform | How it captures |
|---|---|
| Mac | Uses built-in screencapture command — works out of the box ✅ |
| Windows | Uses PowerShell — works on Windows 10+ ✅ |
| Linux | Needs scrot installed: sudo apt install scrot |
- 📸 One-tap screenshot — hides itself, captures your screen, sends to AI
- ✍️ Type a question — works without a screenshot too
- 🎤 Voice input — tap the mic and just speak
- 🔊 Auto read-aloud — reads the steps out loud automatically
- Always on top — floats over all your other windows
- Draggable — drag the green title bar to move it anywhere
electron-app/
├── main.js ← Electron main process (window creation, screenshot)
├── preload.js ← Secure bridge between Electron and your UI
├── index.html ← The entire UI (HTML + CSS + JS)
├── package.json ← Dependencies and build config
└── README.md ← You're reading this!
To create a .dmg / .exe / .AppImage that others can install:
npm run build:mac # macOS
npm run build:win # Windows
npm run build:linux # LinuxOutput will be in the dist/ folder.
| Developer | Github Profile |
|---|---|
Nikitha S |
https://github.com/stargalax |
Nirmal S |
https://github.com/snthebeast03 |