Plugin Ecosystem
8 active plugins across macOS, Linux, Windows and all browsers. Install only what you need. Build your own with any language.
Available plugins
Mac System Audio
Captures system audio via ScreenCaptureKit + Whisper STT.
Mac Screen OCR
Screenshots active window every 30s + Apple Vision OCR.
Browser Extension
Captures browsing history, reading time and page titles. Works on all OS.
Linux Audio
PipeWire / PulseAudio monitor source + Whisper STT. No extra permissions needed.
Linux Screen OCR
X11/Wayland screenshot via mss + Tesseract OCR. Works on GNOME, KDE, i3.
Windows Audio
WASAPI loopback capture (all app audio) + Whisper STT. No extra permissions needed.
Windows Screen OCR
mss screenshot capture + Tesseract OCR. Works on Windows 10/11.
Obsidian Vault
Filesystem watcher on your Obsidian vault. Syncs notes in real-time to your memory.
Planned
Health
HealthKit (iOS) + Health Connect (Android). Steps, sleep, HR, HRV.
Spotify / Last.fm
Last.fm scrobbling β works with any music player.
Ecosystem integrations
Third-party tools with official OpenClone support.
OpenClaw
Official skillConnect your vault to OpenClaw agent workflows. Query memories, get AI answers, and retrieve insights from your agent.
clawhub install openclone-memory See integration β Quick preview
Any language, any source. POST to /api/v1/ingest with your data. That's it.
1. Create plugin.json
{
"id": "my-custom-plugin",
"name": "My Source",
"version": "1.0.0",
"platform": ["macos"],
"source_types": ["braindump"],
"sensitivity": "LOW"
} 2. Send events
{
"source_type": "braindump",
"platform": "macos",
"device_id": "my-device-uuid",
"plugin_id": "my-custom-plugin",
"plugin_version": "1.0.0",
"timestamp": 1740000000.0,
"events": [{
"timestamp": 1740000000.0,
"data": {"text": "My note..."}
}]
}