# Send Echo AI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "echo-ai",
    "name": "Echo AI",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/darthdens/echo-ai",
    "canonicalUrl": "https://clawhub.ai/darthdens/echo-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/echo-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=echo-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api-reference.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "echo-ai",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:32:10.224Z",
      "expiresAt": "2026-05-07T00:32:10.224Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=echo-ai",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=echo-ai",
        "contentDisposition": "attachment; filename=\"echo-ai-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "echo-ai"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/echo-ai"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/echo-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/echo-ai",
    "agentUrl": "https://openagent3.xyz/skills/echo-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/echo-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/echo-ai/agent.md"
  }
}
```
## Documentation

### 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_KEY to your key

### 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.

### 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_id for follow-ups

### Error handling

StatusMeaningAction401API key missing or invalidCheck ECHO_API_KEY is set correctly402Echo owner out of creditsInform the user, cannot proceed403Key doesn't have access to this EchoUse correct key or request access429Rate 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: darthdens
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T00:32:10.224Z
- Expires at: 2026-05-07T00:32:10.224Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/echo-ai)
- [Send to Agent page](https://openagent3.xyz/skills/echo-ai/agent)
- [JSON manifest](https://openagent3.xyz/skills/echo-ai/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/echo-ai/agent.md)
- [Download page](https://openagent3.xyz/downloads/echo-ai)