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 creators. Get an API key at https://echoai.so
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/darthdens/echo-aiEcho 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)
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-darthdens-echo-ai": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
afrexai-sales-playbook
Complete B2B sales system — from ICP to closed-won. Discovery frameworks, objection handling, pipeline management, forecasting, and deal acceleration. Works for any B2B company.
lead-generation
Lead Generation — Find high-intent buyers in live Twitter, Instagram, and Reddit conversations. Auto-researches your product, generates targeted search queries, and discovers people actively looking for solutions you offer. Social selling and prospecting powered by 1.5B+ indexed posts via Xpoz MCP.
capability-evolver
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution.
elevenlabs-twilio-memory-bridge
FastAPI personalization webhook that adds persistent caller memory and dynamic context injection to ElevenLabs Conversational AI agents on Twilio. No audio proxying, file-based persistence, OpenClaw compatible.
ressemble
Text-to-Speech and Speech-to-Text integration using Resemble AI HTTP API.