プラグインエコシステム
macOS、Linux、Windows、全ブラウザ対応の8つのアクティブプラグイン。必要なものだけインストール。どんな言語でも独自プラグインを作成できます。
利用可能なプラグイン
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.
開発予定
Health
HealthKit (iOS) + Health Connect (Android). Steps, sleep, HR, HRV.
Spotify / Last.fm
Last.fm scrobbling — works with any music player.
エコシステム連携
OpenClone 公式サポートのサードパーティツール。
OpenClaw
Official skillvault を OpenClaw エージェントワークフローに接続。記憶を検索し、AI の回答やインサイトをエージェントから直接取得。
clawhub install openclone-memory See integration → Quick preview
あらゆる言語、あらゆるソース。データを含む POST を /api/v1/ingest に送るだけ。それだけです。
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..."}
}]
}