Manage your ClawPod AI bot instances directly from any OpenClaw-powered agent. List bots, check status, start, stop, restart, and browse available agent templates.
This skill gives your OpenClaw agent the ability to:
- List bot instances — see all your active Telegram and Discord bots
- Check instance status — get real-time health checks on any bot
- Start / Stop / Restart — control bot lifecycle without leaving your agent
- Browse templates — discover 30+ pre-built agent templates (Sales Co-Pilot, Research Assistant, Code Reviewer, and more)
Add this skill to your OpenClaw agent configuration:
npm install @clawpod/openclaw-skillOr add it directly to your OpenClaw skill manifest:
{
"skills": [
{
"package": "@clawpod/openclaw-skill"
}
]
}Sign up at https://clawpod.app and generate an API key from your account settings.
export CLAWPOD_API_KEY="your-api-key-here"Or add it to your .env file:
CLAWPOD_API_KEY=your-api-key-here
Once installed, you can ask your OpenClaw agent natural language questions like:
- "Show me all my bots"
- "What's the status of my Telegram bot?"
- "Stop my Discord bot"
- "Restart my Sales Co-Pilot"
- "What agent templates are available?"
| Method | Endpoint | Auth | Description |
|---|---|---|---|
| GET | /instances |
Yes | List all active bot instances |
| GET | /instances/:id |
Yes | Get instance details + health check |
| POST | /instances/:id |
Yes | Perform action: start, stop, restart |
| GET | /templates |
No | List available agent templates |
| Status | Description |
|---|---|
creating |
Being provisioned |
starting |
Container starting up |
running |
Live and responding |
stopped |
Manually stopped |
error |
Failed — check errorMessage |
- ClawPod — Deploy AI agents to Telegram and Discord
- GitHub — Source code
- Agent Templates — Browse all available templates
MIT