# Send Omi Me to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "omi-me",
    "name": "Omi Me",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/CaioIsCoding/omi-me",
    "canonicalUrl": "https://clawhub.ai/CaioIsCoding/omi-me",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/omi-me",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=omi-me",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/omi-cli.sh",
      "scripts/omi-token.sh",
      "scripts/setup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/omi-me"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/omi-me",
    "downloadUrl": "https://openagent3.xyz/downloads/omi-me",
    "agentUrl": "https://openagent3.xyz/skills/omi-me/agent",
    "manifestUrl": "https://openagent3.xyz/skills/omi-me/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/omi-me/agent.md"
  }
}
```
## Documentation

### 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

### Automated Setup

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

The setup script will:

Create config directory ~/.config/omi-me/
Guide you to configure your API token
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

Visit https://docs.omi.me/doc/developer/api/overview
Generate a developer API key
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

### Token Management

CommandDescriptionomi-token.sh setConfigure API token interactivelyomi-token.sh getPrint current API tokenomi-token.sh testTest connection to Omi.me

### Memories

CommandDescriptionomi memories listList all memoriesomi memories get <id>Get specific memoryomi memories create "content"Create new memoryomi memories create "content" --type preferenceCreate with typeomi memories update <id> "new content"Update memory contentomi memories delete <id>Delete a memoryomi memories search "query"Search memories

### Action Items / Tasks

CommandDescriptionomi tasks listList all action itemsomi tasks get <id>Get specific taskomi tasks create "title"Create new taskomi tasks create "title" --desc "description" --due "2024-01-15"Create with detailsomi tasks update <id> --title "new title"Update taskomi tasks complete <id>Mark as completedomi tasks pending <id>Mark as pendingomi tasks delete <id>Delete a task

### Conversations

CommandDescriptionomi conversations listList all conversationsomi conversations get <id>Get specific conversationomi conversations create --title "My Chat" --participants "user1,user2"Create conversationomi conversations create --participants "user1,user2" --message "Hello!"Create with initial messageomi conversations add-message <id> user "Hello world"Add message to conversationomi conversations delete <id>Delete a conversationomi conversations search "query"Search conversations

### Sync

CommandDescriptionomi sync memoriesSync memories from Omi.meomi sync tasksSync action items from Omi.meomi sync conversationsSync conversations from Omi.meomi sync allSync all data

### Token Configuration

Interactive setup:

omi-token.sh set

Test connection:

omi-token.sh test

Get current token:

omi-token.sh get

### CLI Examples

List memories:

omi memories list

Create a memory:

omi memories create "Caio prefers working in English" --type preference

Create a task:

omi tasks create "Review Omi integration" --desc "Check if sync is working" --due "2024-02-01"

Mark task complete:

omi tasks complete <task-id>

Create conversation:

omi conversations create --title "Team Sync" --participants "alice,bob" --message "Let's discuss the project"

Add message:

omi conversations add-message <conv-id> user "I agree!"

Sync all data:

omi sync all

### Rate Limits

Omi.me API rate limits:

100 requests per minute per API key
10,000 requests per day per user

The client automatically tracks rate limit headers and handles 429 responses.

### "Token not configured"

# Configure interactively
omi-token.sh set

# Or check manually
cat ~/.config/omi-me/token

# If empty, add your token
echo "omi_dev_your_token" > ~/.config/omi-me/token

### "Connection failed" or 401 error

# Test connection
omi-token.sh test

# Reconfigure if needed
omi-token.sh set

### Permission denied for symlink

# Use full path instead
bash /home/ubuntu/.openclaw/workspace/skills/omi-me/scripts/omi-cli.sh memories list
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: CaioIsCoding
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/omi-me)
- [Send to Agent page](https://openagent3.xyz/skills/omi-me/agent)
- [JSON manifest](https://openagent3.xyz/skills/omi-me/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/omi-me/agent.md)
- [Download page](https://openagent3.xyz/downloads/omi-me)