← 返回
沟通协作 Key 中文

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...
连接 Echo AI —— 客户交互平台。可列出助手、检索知识库,并与企业和创作者构建的 AI 驱动型 Echo 进行聊天。
darthdens
沟通协作 clawhub v1.1.0 1 版本 99902.7 Key: 需要
★ 2
Stars
📥 987
下载
💾 22
安装
1
版本
#latest

概述

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

  1. Sign up at echoai.so (free tier available)
  2. Create your first Echo or browse existing ones
  3. Go to Settings → API Keys and generate a key
  4. Set the environment variable ECHO_API_KEY to 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:

  1. Call GET /api/assistants
  2. Present the results with name, bio, and topics
  3. Ask if the user wants details on a specific one

When asked about a specific Echo:

  1. Call GET /api/assistant/{id}
  2. Present the Echo's profile, FAQs, and suggested questions
  3. If the question can be answered from FAQs, answer directly (zero cost)

When the user wants to chat with an Echo:

  1. Warn the user: "This will send a message to the Echo and consume the Echo owner's credits. Proceed?"
  2. If confirmed, call POST /api/chat
  3. Return the response and save the session_id for follow-ups

Error handling

StatusMeaningAction
-------------------------
401API key missing or invalidCheck ECHO_API_KEY is set correctly
402Echo owner out of creditsInform the user, cannot proceed
403Key doesn't have access to this EchoUse correct key or request access
429Rate limit exceededWait and retry (default: 60 req/min)
404Echo or endpoint not foundVerify 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_id back 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

版本历史

共 1 个版本

  • v1.1.0 当前
    2026-03-29 08:49 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

Slack

steipete
当需要通过 slack 工具从 Clawdbot 控制 Slack 时使用,包括在频道或私信中回复消息或置顶/取消置顶项目。
★ 157 📥 47,748
communication-collaboration

Himalaya

lamelas
{"answer":"通过IMAP/SMTP管理邮件的CLI。可在终端使用 `himalaya` 收发、回复、转发、搜索及整理邮件。支持多账户与MML(MIME元语言)编写邮件。"}
★ 68 📥 45,630
communication-collaboration

Gmail

byungkyu
Gmail API 集成,托管 OAuth,支持读取、发送和管理邮件、线程、标签及草稿,适用于需要与 Gmail 交互的场景。
★ 72 📥 37,750