โ† All skills
Tencent SkillHub ยท Developer Tools

elizaOS Cloud

Manage elizaOS Cloud - deploy AI agents, chat completions, image/video generation, voice cloning, knowledge base, containers, and marketplace. Use when interacting with elizaOS Cloud, elizacloud.ai, deploying eliza agents, or managing cloud-hosted AI agents. Requires ELIZACLOUD_API_KEY environment variable.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage elizaOS Cloud - deploy AI agents, chat completions, image/video generation, voice cloning, knowledge base, containers, and marketplace. Use when interacting with elizaOS Cloud, elizacloud.ai, deploying eliza agents, or managing cloud-hosted AI agents. Requires ELIZACLOUD_API_KEY environment variable.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/api-reference.md, scripts/elizacloud-client.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 32 sections Open source page

elizaOS Cloud

elizaOS Cloud is a platform for building, deploying, and scaling intelligent AI agents. This skill provides access to the complete elizaOS Cloud API for managing agents, generating content, and building AI-powered applications.

Quick Start

Set your API key as an environment variable: export ELIZACLOUD_API_KEY="your_api_key_here" Use the included bash client for common operations: ./scripts/elizacloud-client.sh status ./scripts/elizacloud-client.sh agents list ./scripts/elizacloud-client.sh chat agent-id "Hello!"

API Configuration

Base URL: https://elizacloud.ai/api/v1 Authentication: Authorization: Bearer $ELIZACLOUD_API_KEY X-API-Key: $ELIZACLOUD_API_KEY Content-Type: application/json

Chat Completions (OpenAI-Compatible)

curl https://elizacloud.ai/api/v1/chat/completions \ -H "Authorization: Bearer $ELIZACLOUD_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "your-agent-id", "messages": [{"role": "user", "content": "Hello!"}], "stream": true }' Features: Streaming, function calling, structured outputs

Agent Management

List Agents GET /api/my-agents/characters Create Agent POST /api/v1/app/agents { "name": "My Assistant", "bio": "A helpful AI assistant" } Get Agent GET /api/my-agents/characters/{id} Delete Agent DELETE /api/my-agents/characters/{id}

Image Generation

POST /api/v1/images/generate { "prompt": "A futuristic city at sunset", "model": "flux-pro", "width": 1024, "height": 1024 } Models: FLUX Pro, FLUX Dev, Stable Diffusion

Video Generation

POST /api/v1/video/generate { "prompt": "A peaceful lake with mountains in the background", "duration": 5, "model": "minimax-01" } Models: MiniMax, Runway

Voice Cloning (ElevenLabs)

POST /api/v1/voice/clone { "text": "Hello, this is a test of voice cloning", "voice_id": "21m00Tcm4TlvDq8ikWAM", "model": "eleven_turbo_v2" }

Knowledge Base

Upload Document POST /api/v1/knowledge/upload Query Knowledge POST /api/v1/knowledge/query { "query": "How do I deploy an agent?", "limit": 5 }

Containers

Deploy Container POST /api/v1/containers { "name": "my-app", "image": "nginx:latest", "ports": [{"containerPort": 80}] }

A2A Protocol (Agent-to-Agent)

Discover Agents GET /api/v1/discovery Send Task POST /api/a2a { "jsonrpc": "2.0", "method": "tasks/send", "params": { "id": "task_123", "message": { "role": "user", "parts": [{"type": "text", "text": "Analyze this data"}] } }, "id": 1 }

API Keys

Create API Key POST /api/v1/api-keys { "name": "Production Key", "permissions": ["chat", "agents", "images"] } Available Permissions: chat, embeddings, images, video, voice, knowledge, agents, apps

Error Handling

All errors follow this format: { "error": { "code": "INVALID_REQUEST", "message": "The request body is invalid", "details": "Field 'model' is required" } } Common Error Codes: UNAUTHORIZED (401): Invalid/missing authentication FORBIDDEN (403): Insufficient permissions NOT_FOUND (404): Resource not found RATE_LIMITED (429): Too many requests INSUFFICIENT_CREDITS (402): Not enough credits

Rate Limits

EndpointRate LimitChat completions60 req/minEmbeddings100 req/minImage generation20 req/minVideo generation5 req/min

Deploy a Customer Support Agent

# 1. Create agent curl -X POST https://elizacloud.ai/api/v1/app/agents \ -H "Authorization: Bearer $ELIZACLOUD_API_KEY" \ -d '{"name": "Support Bot", "bio": "Customer support specialist"}' # 2. Chat with agent curl https://elizacloud.ai/api/v1/chat/completions \ -H "Authorization: Bearer $ELIZACLOUD_API_KEY" \ -d '{"model": "agent-id", "messages": [{"role": "user", "content": "Help me"}]}'

Generate Marketing Assets

# 1. Generate image curl -X POST https://elizacloud.ai/api/v1/images/generate \ -H "Authorization: Bearer $ELIZACLOUD_API_KEY" \ -d '{"prompt": "Modern tech startup logo", "model": "flux-pro"}' # 2. Generate video curl -X POST https://elizacloud.ai/api/v1/video/generate \ -H "Authorization: Bearer $ELIZACLOUD_API_KEY" \ -d '{"prompt": "Product demo animation", "duration": 10}'

Build Agent Network with A2A

# 1. Discover available agents curl https://elizacloud.ai/api/v1/discovery \ -H "Authorization: Bearer $ELIZACLOUD_API_KEY" # 2. Delegate task to specialist agent curl -X POST https://elizacloud.ai/api/a2a \ -H "Authorization: Bearer $ELIZACLOUD_API_KEY" \ -d '{"jsonrpc": "2.0", "method": "tasks/send", "params": {"message": {"role": "user", "parts": [{"type": "text", "text": "Analyze financial data"}]}}}'

Sign Up

Register at elizacloud.ai/login (Privy auth โ€” browser required). New accounts receive 1,000 free credits โ€” enough to test chat, image gen, and more.

Get API Key

# After signing up, create a key at Dashboard โ†’ API Keys # Or via API (once authenticated): POST /api/v1/api-keys { "name": "My OpenClaw Agent", "permissions": ["chat", "agents", "images", "video", "voice", "knowledge"] }

Install CLI (Optional)

bun add -g @elizaos/cli elizaos login

Check Balance

GET /api/v1/credits/balance

Purchase Credits (Stripe)

POST /api/v1/credits/checkout { "amount": 5000 } # Returns a Stripe checkout URL โ€” redirect to complete payment

x402 Crypto Payment (USDC)

Pay per-request with cryptocurrency โ€” no pre-purchased credits needed: # Include x402 payment header with any API request curl -X POST "https://elizacloud.ai/api/v1/chat/completions" \ -H "X-PAYMENT: <x402-payment-header>" \ -H "Content-Type: application/json" \ -d '{"model": "agent-id", "messages": [{"role": "user", "content": "Hello"}]}'

Auto Top-Up

PUT /api/v1/billing/settings { "autoTopUp": true, "threshold": 100, "amount": 1000 }

Credit Transactions

GET /api/credits/transactions?limit=50

Usage Summary

GET /api/v1/credits/summary # Returns: org balance, agent budgets, app earnings, redeemable earnings

Create Crypto Payment

POST /api/crypto/payments

Check Payment Status

GET /api/crypto/status

Authentication Methods

MethodHeaderUse CaseAPI KeyAuthorization: Bearer ek_xxxServer-to-serverX-API-KeyX-API-Key: ek_xxxAlternative headerx402X-PAYMENT: <header>Pay-per-request with USDCSessionCookie-basedBrowser apps

Additional Resources

Full API Documentation: See references/api-reference.md for complete endpoint details Dashboard: https://elizacloud.ai/dashboard for visual management OpenAPI Spec: https://elizacloud.ai/api/openapi.json SDKs: TypeScript, Python clients available Community: Discord at https://discord.gg/elizaos

Environment Variables

ELIZACLOUD_API_KEY: Your elizaOS Cloud API key (required) ELIZACLOUD_BASE_URL: API base URL (default: https://elizacloud.ai/api/v1)

Security Notes

Never commit API keys to version control Use separate keys for development/production Rotate keys regularly Limit permissions to minimum required scope Monitor usage in the dashboard for anomalies

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/api-reference.md Docs
  • scripts/elizacloud-client.sh Scripts