OpenClaw Integration
Control AI Teammate agents from your terminal using OpenClaw.
What is OpenClaw?
OpenClaw is an AI-powered personal assistant that runs in your terminal. With the AI Teammate skill, you can manage and chat with your agents directly from the command line.
Learn more about OpenClaw →Installation
1
Clone the skill
Terminal
git clone https://github.com/mobiolabs2025/openclaw-ai-teammate.git ~/openclaw/skills/ai-teammate
2
Get your API key
Go to Settings → Integrations and create an API key
3
Configure the skill
Terminal
cd ~/openclaw/skills/ai-teammate cp .env.example .env nano .env # Add your API key
4
Set environment variables
.env
MOBIO_AGENT_URL=https://ai-teammate.net MOBIO_AGENT_API_KEY=at_your_api_key_here
Available Commands
| Command | Description |
|---|---|
./agents.sh list | List all your agents |
./agents.sh get <id> | Get agent details |
./agents.sh create --name "Name" | Create a new agent |
./chat.sh <id> "message" | Send a message to an agent |
./skills.sh list | List available skills |
./admin.sh stats | View usage statistics |
Example Usage
Terminal
$ ./agents.sh list 📋 에이전트 목록 [active] Finance Assistant (ID: agent_abc123) [active] Code Helper (ID: agent_def456) $ ./chat.sh agent_abc123 "What's AAPL's current price?" 🤖 Finance Assistant: Apple Inc. (AAPL) is currently trading at $185.50, up 1.2% from yesterday's close.