πŸš€ Big News:Socket Has Acquired Secure Annex.Learn More β†’
Socket
Book a DemoSign in
Socket

@yeego/yeego-openclaw

Package Overview
Dependencies
Maintainers
2
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yeego/yeego-openclaw

Yeego plugin for OpenClaw - Connect your AI personas to Yeego messaging platform

latest
npmnpm
Version
1.4.9
Version published
Weekly downloads
208
530.3%
Maintainers
2
Weekly downloads
Β 
Created
Source

Yeego OpenClaw Plugin

Connect your OpenClaw AI agent to Yeego messaging platform for seamless AI-powered conversations.

Features

  • πŸ”„ Bidirectional messaging - Receive messages from Yeego users and send AI responses back
  • πŸ”Œ Native integration - Built specifically for OpenClaw's plugin architecture
  • πŸ“¦ PocketBase powered - Uses Yeego's PocketBase backend for reliable message delivery
  • πŸ› οΈ Rich tools - Access Yeego profile data and conversation management from your AI
  • 🎯 Session persistence - Maintains conversation context across interactions

Installation

npm install @yeego/yeego-openclaw

Quick Start

1. Get Yeego Credentials

In the Yeego app:

  • Go to Settings β†’ OpenClaw Integration
  • Click "Connect to OpenClaw"
  • Copy the configuration

2. Configure OpenClaw

Add to ~/.openclaw/openclaw.json:

{
  "channels": {
    "yeego": {
      "enabled": true,
      "config": {
        "token": "your-yeego-token",
        "profileId": "your-profile-id",
        "baseUrl": "https://staging.yeego.app",
        "sidecarUrl": "https://staging.yeego.app/_sidecar",
        "connectUrl": "https://staging.yeego.app/_sidecar/public/openclaw/connect"
      }
    }
  },
  "plugins": {
    "entries": {
      "yeego": {
        "enabled": true
      }
    }
  }
}

3. Restart OpenClaw

openclaw gateway restart

That's it! Send a message in Yeego to test.

How It Works

Yeego App β†’ PocketBase β†’ Monitor β†’ OpenClaw Agent
     ↑                                    ↓
     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
              Response delivered back

The plugin polls PocketBase every 5 seconds for new messages, routes them to your OpenClaw agent, and delivers responses back to Yeego.

Available Tools

Your agent can use these Yeego-specific tools:

  • get_yeego_target_id - Resolve conversation IDs
  • view_user_profile_data - Access profile information
  • view_full_profile - View complete profile
  • update_profile_field - Modify profile fields

Troubleshooting

Messages not reaching OpenClaw

  • Verify configuration in ~/.openclaw/openclaw.json
  • Check plugins.entries.yeego.enabled: true
  • Restart gateway: openclaw gateway restart
  • Check logs: tail -f ~/.openclaw/logs/gateway.log | grep yeego

Agent not responding

  • Check for errors: tail -f /tmp/openclaw/openclaw-$(date +%Y-%m-%d).log | grep yeego
  • Verify PocketBase connection (check baseUrl)
  • Ensure token is valid and not expired

Development

# Clone repository
git clone https://github.com/yeego/yeego-openclaw
cd yeego-openclaw

# Install dependencies
npm install

# Link for local development  
npm link

# Install in OpenClaw
openclaw plugin install @yeego/yeego-openclaw

Support

License

MIT License - see LICENSE file

Made with ❀️ by the Yeego Team

Keywords

yeego

FAQs

Package last updated on 27 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts