Every data source is a plugin. Install only what you need. Build your own with any language.
Captures system audio via ScreenCaptureKit + Whisper STT.
Screenshots active window every 30s + Apple Vision OCR.
WASAPI Loopback capture โ all app audio.
DXGI capture + WinRT OCR.
PulseAudio/PipeWire monitor source.
X11/Wayland screenshot + Tesseract OCR.
Captures browsing history, reading time, and article content.
HealthKit (iOS) + Health Connect (Android). Steps, sleep, HR, HRV.
EventKit + Google Calendar API. All your events.
Filesystem watcher on your Obsidian vault.
Last.fm scrobbling โ works with any music player.
Any language, any source. POST to /api/v1/ingest with your data. That's it.
{
"id": "my-custom-plugin",
"name": "My Source",
"version": "1.0.0",
"platform": ["macos"],
"source_types": ["braindump"],
"sensitivity": "LOW"
} {
"source_type": "braindump",
"platform": "macos",
"device_id": "my-device-uuid",
"plugin_id": "my-custom-plugin",
"plugin_version": "1.0.0",
"timestamp": 1708258800.0,
"events": [{
"timestamp": 1708258800.0,
"data": {"text": "My note..."}
}]
}