/install echo-ai
Echo AI
Connect your agent to Echo AI — a platform where businesses and creators build AI-powered assistants (called Echos) for sales, support, and customer engagement.
With this skill, your agent can discover Echos, read their knowledge bases, and have conversations with them.
Get started
- Sign up at echoai.so (free tier available)
- Create your first Echo or browse existing ones
- Go to Settings → API Keys and generate a key
- Set the environment variable
ECHO_API_KEYto your key
What this skill can do
1. List available Echos (free, no credits)
Discover which AI assistants are available under your API key.
GET https://auth.echoai.so/functions/v1/api/assistants
Header: X-API-Key: $ECHO_API_KEY
Response:
{
"assistants": [
{
"id": "uuid",
"name": "Sales Assistant",
"bio": "I help qualify leads and answer product questions",
"slug": "sales-assistant",
"avatar_url": "https://...",
"tone": "professional",
"style": "concise",
"topics": ["pricing", "features", "onboarding"]
}
]
}
2. Get Echo details and knowledge base (free, no credits)
Retrieve an Echo's full profile including FAQs, suggested questions, and personality.
GET https://auth.echoai.so/functions/v1/api/assistant/{id}
Header: X-API-Key: $ECHO_API_KEY
Response includes: name, bio, FAQs, preset questions, topics, tone, style, and lore.
If the user's question can be answered from FAQs, answer directly — no chat call needed.
3. Chat with an Echo (costs credits)
Send a message and get a response from the Echo's AI.
POST https://auth.echoai.so/functions/v1/api/chat
Header: X-API-Key: $ECHO_API_KEY
Content-Type: application/json
Request:
{
"message": "What pricing plans do you offer?",
"assistant_id": "the-echo-uuid",
"session_id": "optional — pass from previous response for continuity",
"visitor_id": "optional — your identifier for this conversation"
}
Response:
{
"response": "We offer three plans: Starter at $29/mo, Pro at $79/mo...",
"session_id": "use-this-in-next-message",
"visitor_id": "your-visitor-identity",
"assistant_id": "the-echo-uuid"
}
Always pass session_id from the response into the next message to maintain conversation context.
Workflow
When asked to find or list Echos:
- Call
GET /api/assistants - Present the results with name, bio, and topics
- Ask if the user wants details on a specific one
When asked about a specific Echo:
- Call
GET /api/assistant/{id} - Present the Echo's profile, FAQs, and suggested questions
- If the question can be answered from FAQs, answer directly (zero cost)
When the user wants to chat with an Echo:
- Warn the user: "This will send a message to the Echo and consume the Echo owner's credits. Proceed?"
- If confirmed, call
POST /api/chat - Return the response and save the
session_idfor follow-ups
Error handling
| Status | Meaning | Action |
|---|---|---|
| 401 | API key missing or invalid | Check ECHO_API_KEY is set correctly |
| 402 | Echo owner out of credits | Inform the user, cannot proceed |
| 403 | Key doesn't have access to this Echo | Use correct key or request access |
| 429 | Rate limit exceeded | Wait and retry (default: 60 req/min) |
| 404 | Echo or endpoint not found | Verify the Echo ID or endpoint path |
Important rules
- Never make chat calls without explicit user confirmation — they cost the Echo owner credits
- Always prefer FAQs and Echo info to answer questions when possible (zero cost)
- Always pass
session_idback in follow-up messages to maintain context - Rate limits are configurable per API key (default: 60 requests/minute)
About Echo AI
Echo is a platform where anyone can create AI-powered assistants for their business. Echos can be deployed on websites, WhatsApp, Instagram, Telegram, Discord, Slack, and more. They handle sales conversations, customer support, lead qualification, and appointment booking.
Learn more: echoai.so
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install echo-ai - 安装完成后,直接呼叫该 Skill 的名称或使用
/echo-ai触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Echo AI 是什么?
Connect to Echo AI — the customer interaction platform. List assistants, retrieve knowledge bases, and chat with AI-powered Echos built by businesses and cre... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 654 次。
如何安装 Echo AI?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install echo-ai」即可一键安装,无需额外配置。
Echo AI 是免费的吗?
是的,Echo AI 完全免费(开源免费),可自由下载、安装和使用。
Echo AI 支持哪些平台?
Echo AI 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Echo AI?
由 darthdens(@darthdens)开发并维护,当前版本 v1.1.0。