ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

omi-me

Complete Omi.me integration for memories, action items (tasks), and conversations. Full CRUD + sync capabilities for OpenClaw.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/caioiscoding/omi-me
Or

Omi.me Integration for OpenClaw

Complete integration with Omi.me to sync and manage memories, action items (tasks), and conversations. Provides CLI tools.

Table of Contents

  • Setup
  • Token Management
  • CLI Commands
    • Memories
    • Action Items / Tasks
    • Conversations
    • Sync
  • Usage Examples

Setup

Automated Setup

# Run the setup script
bash /home/ubuntu/.openclaw/workspace/skills/omi-me/scripts/setup.sh

The setup script will:

  1. Create config directory ~/.config/omi-me/
  2. Guide you to configure your API token
  3. Create symlinks for omi and omi-token commands

Manual Setup

# Create config directory
mkdir -p ~/.config/omi-me

# Save your API token
echo "omi_dev_your_token_here" > ~/.config/omi-me/token
chmod 600 ~/.config/omi-me/token

Get API Token

  1. Visit https://docs.omi.me/doc/developer/api/overview
  2. Generate a developer API key
  3. Configure using:
# Interactive (recommended)
omi-token.sh set

# Or manually
echo "your-token" > ~/.config/omi-me/token

Token Management

omi-token.sh set    # Configure API token interactively
omi-token.sh get    # Print current token
omi-token.sh test   # Test connection to Omi.me

Token File

Default location: ~/.config/omi-me/token

You can also set via environment variable:

export OMI_API_TOKEN="your-token"

Files

  • ~/.config/omi-me/token - API token storage

CLI Commands

Token Management

CommandDescription
omi-token.sh setConfigure API token interactively
omi-token.sh getPrint current API token
omi-token.sh testTest connection to Omi.me

Memories

CommandDescription
omi memories listList all memories
omi memories get <id>Get specific memory
omi memories create "content"Create new memory
omi memories create "content" --type preferenceCreate with type
omi memories update <id> "new content"Update memory content
omi memories delete <id>Delete a memory
omi memories search "query"Search memories

Action Items / Tasks

CommandDescription
omi tasks listList all action items
omi tasks get <id>Get specific task
omi tasks create "title"Create new task
omi tasks create "title" --desc "description" --due "2024-01-15"Create with details
omi tasks update <id> --title "new title"Update task
omi tasks complete <id>Mark as completed
omi tasks pending <id>Mark as pending
omi tasks delete <id>Delete a task

Conversations

Metadata

Stars4097
Views0
Updated2026-04-14
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-caioiscoding-omi-me": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.