Back to Registry
View Author Profile
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-meOr
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:
- Create config directory
~/.config/omi-me/ - Guide you to configure your API token
- Create symlinks for
omiandomi-tokencommands
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
CLI Commands
Token Management
| Command | Description |
|---|---|
omi-token.sh set | Configure API token interactively |
omi-token.sh get | Print current API token |
omi-token.sh test | Test connection to Omi.me |
Memories
| Command | Description |
|---|---|
omi memories list | List all memories |
omi memories get <id> | Get specific memory |
omi memories create "content" | Create new memory |
omi memories create "content" --type preference | Create 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
| Command | Description |
|---|---|
omi tasks list | List 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
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.