← 返回
开发者工具 Key 中文

Omi Integration

Sync recordings from Omi AI wearables (Omi, Limitless, etc.) via API and webhooks. Auto-sync transcripts, process recordings, and organize by device/date.
通过API和webhook从Omi AI可穿戴设备(Omi、Limitless等)同步录音。自动同步转录文本、处理录音,并按设备/日期组织。
drkavner
开发者工具 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 686
下载
💾 4
安装
1
版本
#latest

概述

Omi Integration

Sync and manage recordings from Omi AI wearables (Omi, Limitless pendant, etc.).

Features

  • Auto-sync recordings from Omi backend
  • Webhook support for real-time transcripts
  • Multi-device support (tag by device)
  • Local storage with metadata
  • Summary and action item extraction

Setup

  1. Get your Omi API key from https://omi.me/developer or your self-hosted backend
  2. Store it securely:
  3. mkdir -p ~/.config/omi
    echo "YOUR_API_KEY" > ~/.config/omi/api_key
    chmod 600 ~/.config/omi/api_key
    
  1. Configure backend URL (defaults to https://api.omi.me):
  2. echo "https://api.omi.me" > ~/.config/omi/backend_url
    # Or for self-hosted:
    echo "https://your-backend.com" > ~/.config/omi/backend_url
    

Usage

Sync All Recordings

omi-sync

Sync Recent (Last 7 Days)

omi-sync --days 7

List Recordings

omi-list

Get Recording Details

omi-get <recording-id>

Process Webhook Payload

cat webhook-payload.json | omi-webhook-handler

Storage

Recordings are stored in:

~/omi_recordings/
├── YYYY-MM-DD/
│   ├── <recording-id>/
│   │   ├── metadata.json
│   │   ├── transcript.txt
│   │   ├── audio.wav (if available)
│   │   └── summary.md
└── index.json

Webhook Setup

Configure your Omi app to send webhooks to your endpoint:

  1. Open Omi app → Settings → Developer
  2. Create new webhook
  3. Enter your webhook URL
  4. Select events: recording.created, transcript.updated

The skill includes a handler (omi-webhook-handler) that processes real-time events.

Multi-Device Support

Recordings are automatically tagged by device:

{
  "recording_id": "rec_123",
  "device_id": "limitless-001",
  "device_name": "Limitless Pendant",
  "device_type": "wearable",
  "context": "work",
  "transcript": "Meeting notes...",
  "created_at": "2026-02-02T15:38:00Z"
}

API Endpoints

Base URL: https://api.omi.me/v1 (configurable)

  • GET /recordings - List all recordings
  • GET /recordings/:id - Get recording details
  • GET /recordings/:id/transcript - Get transcript
  • GET /recordings/:id/summary - Get AI summary
  • POST /webhooks/register - Register webhook endpoint

Privacy

  • All data stored locally
  • API key encrypted at rest
  • Self-hosted backend supported
  • No telemetry or tracking
  • Webhook payloads logged for debugging (optional)

Cron Setup

Auto-sync every hour:

0 * * * * /path/to/omi-sync --days 1 >> ~/.local/share/omi/sync.log 2>&1

Or use Clawdbot cron for integrated scheduling.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 11:58 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

CogDx Bias Scan

drkavner
Detect systematic inference-level biases in an AI agent's reasoning via Cerebratech CogDx API ($0.10 per call, credits a
★ 0 📥 628
developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 66 📥 179,936
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 323,899