{
  "schemaVersion": "1.0",
  "item": {
    "slug": "elizacloud",
    "name": "elizaOS Cloud",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/odilitime/elizacloud",
    "canonicalUrl": "https://clawhub.ai/odilitime/elizacloud",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/elizacloud",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elizacloud",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-reference.md",
      "scripts/elizacloud-client.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/elizacloud"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/elizacloud",
    "agentPageUrl": "https://openagent3.xyz/skills/elizacloud/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elizacloud/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elizacloud/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "elizaOS Cloud",
        "body": "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."
      },
      {
        "title": "Quick Start",
        "body": "Set your API key as an environment variable:\n\nexport ELIZACLOUD_API_KEY=\"your_api_key_here\"\n\nUse the included bash client for common operations:\n\n./scripts/elizacloud-client.sh status\n./scripts/elizacloud-client.sh agents list\n./scripts/elizacloud-client.sh chat agent-id \"Hello!\""
      },
      {
        "title": "API Configuration",
        "body": "Base URL: https://elizacloud.ai/api/v1\nAuthentication:\n\nAuthorization: Bearer $ELIZACLOUD_API_KEY\nX-API-Key: $ELIZACLOUD_API_KEY\n\n\nContent-Type: application/json"
      },
      {
        "title": "Chat Completions (OpenAI-Compatible)",
        "body": "curl https://elizacloud.ai/api/v1/chat/completions \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"model\": \"your-agent-id\",\n    \"messages\": [{\"role\": \"user\", \"content\": \"Hello!\"}],\n    \"stream\": true\n  }'\n\nFeatures: Streaming, function calling, structured outputs"
      },
      {
        "title": "Agent Management",
        "body": "List Agents\n\nGET /api/my-agents/characters\n\nCreate Agent\n\nPOST /api/v1/app/agents\n{\n  \"name\": \"My Assistant\",\n  \"bio\": \"A helpful AI assistant\"\n}\n\nGet Agent\n\nGET /api/my-agents/characters/{id}\n\nDelete Agent\n\nDELETE /api/my-agents/characters/{id}"
      },
      {
        "title": "Image Generation",
        "body": "POST /api/v1/images/generate\n{\n  \"prompt\": \"A futuristic city at sunset\",\n  \"model\": \"flux-pro\",\n  \"width\": 1024,\n  \"height\": 1024\n}\n\nModels: FLUX Pro, FLUX Dev, Stable Diffusion"
      },
      {
        "title": "Video Generation",
        "body": "POST /api/v1/video/generate\n{\n  \"prompt\": \"A peaceful lake with mountains in the background\",\n  \"duration\": 5,\n  \"model\": \"minimax-01\"\n}\n\nModels: MiniMax, Runway"
      },
      {
        "title": "Voice Cloning (ElevenLabs)",
        "body": "POST /api/v1/voice/clone\n{\n  \"text\": \"Hello, this is a test of voice cloning\",\n  \"voice_id\": \"21m00Tcm4TlvDq8ikWAM\",\n  \"model\": \"eleven_turbo_v2\"\n}"
      },
      {
        "title": "Knowledge Base",
        "body": "Upload Document\n\nPOST /api/v1/knowledge/upload\n\nQuery Knowledge\n\nPOST /api/v1/knowledge/query\n{\n  \"query\": \"How do I deploy an agent?\",\n  \"limit\": 5\n}"
      },
      {
        "title": "Containers",
        "body": "Deploy Container\n\nPOST /api/v1/containers\n{\n  \"name\": \"my-app\",\n  \"image\": \"nginx:latest\",\n  \"ports\": [{\"containerPort\": 80}]\n}"
      },
      {
        "title": "A2A Protocol (Agent-to-Agent)",
        "body": "Discover Agents\n\nGET /api/v1/discovery\n\nSend Task\n\nPOST /api/a2a\n{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"tasks/send\",\n  \"params\": {\n    \"id\": \"task_123\",\n    \"message\": {\n      \"role\": \"user\",\n      \"parts\": [{\"type\": \"text\", \"text\": \"Analyze this data\"}]\n    }\n  },\n  \"id\": 1\n}"
      },
      {
        "title": "API Keys",
        "body": "Create API Key\n\nPOST /api/v1/api-keys\n{\n  \"name\": \"Production Key\",\n  \"permissions\": [\"chat\", \"agents\", \"images\"]\n}\n\nAvailable Permissions: chat, embeddings, images, video, voice, knowledge, agents, apps"
      },
      {
        "title": "Error Handling",
        "body": "All errors follow this format:\n\n{\n  \"error\": {\n    \"code\": \"INVALID_REQUEST\",\n    \"message\": \"The request body is invalid\",\n    \"details\": \"Field 'model' is required\"\n  }\n}\n\nCommon Error Codes:\n\nUNAUTHORIZED (401): Invalid/missing authentication\nFORBIDDEN (403): Insufficient permissions\nNOT_FOUND (404): Resource not found\nRATE_LIMITED (429): Too many requests\nINSUFFICIENT_CREDITS (402): Not enough credits"
      },
      {
        "title": "Rate Limits",
        "body": "EndpointRate LimitChat completions60 req/minEmbeddings100 req/minImage generation20 req/minVideo generation5 req/min"
      },
      {
        "title": "Deploy a Customer Support Agent",
        "body": "# 1. Create agent\ncurl -X POST https://elizacloud.ai/api/v1/app/agents \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"name\": \"Support Bot\", \"bio\": \"Customer support specialist\"}'\n\n# 2. Chat with agent\ncurl https://elizacloud.ai/api/v1/chat/completions \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"model\": \"agent-id\", \"messages\": [{\"role\": \"user\", \"content\": \"Help me\"}]}'"
      },
      {
        "title": "Generate Marketing Assets",
        "body": "# 1. Generate image\ncurl -X POST https://elizacloud.ai/api/v1/images/generate \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"prompt\": \"Modern tech startup logo\", \"model\": \"flux-pro\"}'\n\n# 2. Generate video\ncurl -X POST https://elizacloud.ai/api/v1/video/generate \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"prompt\": \"Product demo animation\", \"duration\": 10}'"
      },
      {
        "title": "Build Agent Network with A2A",
        "body": "# 1. Discover available agents\ncurl https://elizacloud.ai/api/v1/discovery \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\"\n\n# 2. Delegate task to specialist agent\ncurl -X POST https://elizacloud.ai/api/a2a \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"jsonrpc\": \"2.0\", \"method\": \"tasks/send\", \"params\": {\"message\": {\"role\": \"user\", \"parts\": [{\"type\": \"text\", \"text\": \"Analyze financial data\"}]}}}'"
      },
      {
        "title": "Sign Up",
        "body": "Register at elizacloud.ai/login (Privy auth — browser required).\nNew accounts receive 1,000 free credits — enough to test chat, image gen, and more."
      },
      {
        "title": "Get API Key",
        "body": "# After signing up, create a key at Dashboard → API Keys\n# Or via API (once authenticated):\nPOST /api/v1/api-keys\n{\n  \"name\": \"My OpenClaw Agent\",\n  \"permissions\": [\"chat\", \"agents\", \"images\", \"video\", \"voice\", \"knowledge\"]\n}"
      },
      {
        "title": "Install CLI (Optional)",
        "body": "bun add -g @elizaos/cli\nelizaos login"
      },
      {
        "title": "Check Balance",
        "body": "GET /api/v1/credits/balance"
      },
      {
        "title": "Purchase Credits (Stripe)",
        "body": "POST /api/v1/credits/checkout\n{ \"amount\": 5000 }\n# Returns a Stripe checkout URL — redirect to complete payment"
      },
      {
        "title": "x402 Crypto Payment (USDC)",
        "body": "Pay per-request with cryptocurrency — no pre-purchased credits needed:\n\n# Include x402 payment header with any API request\ncurl -X POST \"https://elizacloud.ai/api/v1/chat/completions\" \\\n  -H \"X-PAYMENT: <x402-payment-header>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\": \"agent-id\", \"messages\": [{\"role\": \"user\", \"content\": \"Hello\"}]}'"
      },
      {
        "title": "Auto Top-Up",
        "body": "PUT /api/v1/billing/settings\n{\n  \"autoTopUp\": true,\n  \"threshold\": 100,\n  \"amount\": 1000\n}"
      },
      {
        "title": "Credit Transactions",
        "body": "GET /api/credits/transactions?limit=50"
      },
      {
        "title": "Usage Summary",
        "body": "GET /api/v1/credits/summary\n# Returns: org balance, agent budgets, app earnings, redeemable earnings"
      },
      {
        "title": "Create Crypto Payment",
        "body": "POST /api/crypto/payments"
      },
      {
        "title": "Check Payment Status",
        "body": "GET /api/crypto/status"
      },
      {
        "title": "Authentication Methods",
        "body": "MethodHeaderUse CaseAPI KeyAuthorization: Bearer ek_xxxServer-to-serverX-API-KeyX-API-Key: ek_xxxAlternative headerx402X-PAYMENT: <header>Pay-per-request with USDCSessionCookie-basedBrowser apps"
      },
      {
        "title": "Additional Resources",
        "body": "Full API Documentation: See references/api-reference.md for complete endpoint details\nDashboard: https://elizacloud.ai/dashboard for visual management\nOpenAPI Spec: https://elizacloud.ai/api/openapi.json\nSDKs: TypeScript, Python clients available\nCommunity: Discord at https://discord.gg/elizaos"
      },
      {
        "title": "Environment Variables",
        "body": "ELIZACLOUD_API_KEY: Your elizaOS Cloud API key (required)\nELIZACLOUD_BASE_URL: API base URL (default: https://elizacloud.ai/api/v1)"
      },
      {
        "title": "Security Notes",
        "body": "Never commit API keys to version control\nUse separate keys for development/production\nRotate keys regularly\nLimit permissions to minimum required scope\nMonitor usage in the dashboard for anomalies"
      }
    ],
    "body": "elizaOS Cloud\n\nelizaOS 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.\n\nQuick Start\n\nSet your API key as an environment variable:\n\nexport ELIZACLOUD_API_KEY=\"your_api_key_here\"\n\n\nUse the included bash client for common operations:\n\n./scripts/elizacloud-client.sh status\n./scripts/elizacloud-client.sh agents list\n./scripts/elizacloud-client.sh chat agent-id \"Hello!\"\n\nAPI Configuration\nBase URL: https://elizacloud.ai/api/v1\nAuthentication:\nAuthorization: Bearer $ELIZACLOUD_API_KEY\nX-API-Key: $ELIZACLOUD_API_KEY\nContent-Type: application/json\nCore Endpoints\nChat Completions (OpenAI-Compatible)\ncurl https://elizacloud.ai/api/v1/chat/completions \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"model\": \"your-agent-id\",\n    \"messages\": [{\"role\": \"user\", \"content\": \"Hello!\"}],\n    \"stream\": true\n  }'\n\n\nFeatures: Streaming, function calling, structured outputs\n\nAgent Management\n\nList Agents\n\nGET /api/my-agents/characters\n\n\nCreate Agent\n\nPOST /api/v1/app/agents\n{\n  \"name\": \"My Assistant\",\n  \"bio\": \"A helpful AI assistant\"\n}\n\n\nGet Agent\n\nGET /api/my-agents/characters/{id}\n\n\nDelete Agent\n\nDELETE /api/my-agents/characters/{id}\n\nImage Generation\nPOST /api/v1/images/generate\n{\n  \"prompt\": \"A futuristic city at sunset\",\n  \"model\": \"flux-pro\",\n  \"width\": 1024,\n  \"height\": 1024\n}\n\n\nModels: FLUX Pro, FLUX Dev, Stable Diffusion\n\nVideo Generation\nPOST /api/v1/video/generate\n{\n  \"prompt\": \"A peaceful lake with mountains in the background\",\n  \"duration\": 5,\n  \"model\": \"minimax-01\"\n}\n\n\nModels: MiniMax, Runway\n\nVoice Cloning (ElevenLabs)\nPOST /api/v1/voice/clone\n{\n  \"text\": \"Hello, this is a test of voice cloning\",\n  \"voice_id\": \"21m00Tcm4TlvDq8ikWAM\",\n  \"model\": \"eleven_turbo_v2\"\n}\n\nKnowledge Base\n\nUpload Document\n\nPOST /api/v1/knowledge/upload\n\n\nQuery Knowledge\n\nPOST /api/v1/knowledge/query\n{\n  \"query\": \"How do I deploy an agent?\",\n  \"limit\": 5\n}\n\nContainers\n\nDeploy Container\n\nPOST /api/v1/containers\n{\n  \"name\": \"my-app\",\n  \"image\": \"nginx:latest\",\n  \"ports\": [{\"containerPort\": 80}]\n}\n\nA2A Protocol (Agent-to-Agent)\n\nDiscover Agents\n\nGET /api/v1/discovery\n\n\nSend Task\n\nPOST /api/a2a\n{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"tasks/send\",\n  \"params\": {\n    \"id\": \"task_123\",\n    \"message\": {\n      \"role\": \"user\",\n      \"parts\": [{\"type\": \"text\", \"text\": \"Analyze this data\"}]\n    }\n  },\n  \"id\": 1\n}\n\nAPI Keys\n\nCreate API Key\n\nPOST /api/v1/api-keys\n{\n  \"name\": \"Production Key\",\n  \"permissions\": [\"chat\", \"agents\", \"images\"]\n}\n\n\nAvailable Permissions: chat, embeddings, images, video, voice, knowledge, agents, apps\n\nError Handling\n\nAll errors follow this format:\n\n{\n  \"error\": {\n    \"code\": \"INVALID_REQUEST\",\n    \"message\": \"The request body is invalid\",\n    \"details\": \"Field 'model' is required\"\n  }\n}\n\n\nCommon Error Codes:\n\nUNAUTHORIZED (401): Invalid/missing authentication\nFORBIDDEN (403): Insufficient permissions\nNOT_FOUND (404): Resource not found\nRATE_LIMITED (429): Too many requests\nINSUFFICIENT_CREDITS (402): Not enough credits\nRate Limits\nEndpoint\tRate Limit\nChat completions\t60 req/min\nEmbeddings\t100 req/min\nImage generation\t20 req/min\nVideo generation\t5 req/min\nExample Workflows\nDeploy a Customer Support Agent\n# 1. Create agent\ncurl -X POST https://elizacloud.ai/api/v1/app/agents \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"name\": \"Support Bot\", \"bio\": \"Customer support specialist\"}'\n\n# 2. Chat with agent\ncurl https://elizacloud.ai/api/v1/chat/completions \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"model\": \"agent-id\", \"messages\": [{\"role\": \"user\", \"content\": \"Help me\"}]}'\n\nGenerate Marketing Assets\n# 1. Generate image\ncurl -X POST https://elizacloud.ai/api/v1/images/generate \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"prompt\": \"Modern tech startup logo\", \"model\": \"flux-pro\"}'\n\n# 2. Generate video\ncurl -X POST https://elizacloud.ai/api/v1/video/generate \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"prompt\": \"Product demo animation\", \"duration\": 10}'\n\nBuild Agent Network with A2A\n# 1. Discover available agents\ncurl https://elizacloud.ai/api/v1/discovery \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\"\n\n# 2. Delegate task to specialist agent\ncurl -X POST https://elizacloud.ai/api/a2a \\\n  -H \"Authorization: Bearer $ELIZACLOUD_API_KEY\" \\\n  -d '{\"jsonrpc\": \"2.0\", \"method\": \"tasks/send\", \"params\": {\"message\": {\"role\": \"user\", \"parts\": [{\"type\": \"text\", \"text\": \"Analyze financial data\"}]}}}'\n\nOnboarding\nSign Up\n\nRegister at elizacloud.ai/login (Privy auth — browser required). New accounts receive 1,000 free credits — enough to test chat, image gen, and more.\n\nGet API Key\n# After signing up, create a key at Dashboard → API Keys\n# Or via API (once authenticated):\nPOST /api/v1/api-keys\n{\n  \"name\": \"My OpenClaw Agent\",\n  \"permissions\": [\"chat\", \"agents\", \"images\", \"video\", \"voice\", \"knowledge\"]\n}\n\nInstall CLI (Optional)\nbun add -g @elizaos/cli\nelizaos login\n\nPayments & Credits\nCheck Balance\nGET /api/v1/credits/balance\n\nPurchase Credits (Stripe)\nPOST /api/v1/credits/checkout\n{ \"amount\": 5000 }\n# Returns a Stripe checkout URL — redirect to complete payment\n\nx402 Crypto Payment (USDC)\n\nPay per-request with cryptocurrency — no pre-purchased credits needed:\n\n# Include x402 payment header with any API request\ncurl -X POST \"https://elizacloud.ai/api/v1/chat/completions\" \\\n  -H \"X-PAYMENT: <x402-payment-header>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\": \"agent-id\", \"messages\": [{\"role\": \"user\", \"content\": \"Hello\"}]}'\n\nAuto Top-Up\nPUT /api/v1/billing/settings\n{\n  \"autoTopUp\": true,\n  \"threshold\": 100,\n  \"amount\": 1000\n}\n\nCredit Transactions\nGET /api/credits/transactions?limit=50\n\nUsage Summary\nGET /api/v1/credits/summary\n# Returns: org balance, agent budgets, app earnings, redeemable earnings\n\nWallet & Crypto RPCs\nCreate Crypto Payment\nPOST /api/crypto/payments\n\nCheck Payment Status\nGET /api/crypto/status\n\nAuthentication Methods\nMethod\tHeader\tUse Case\nAPI Key\tAuthorization: Bearer ek_xxx\tServer-to-server\nX-API-Key\tX-API-Key: ek_xxx\tAlternative header\nx402\tX-PAYMENT: <header>\tPay-per-request with USDC\nSession\tCookie-based\tBrowser apps\nAdditional Resources\nFull API Documentation: See references/api-reference.md for complete endpoint details\nDashboard: https://elizacloud.ai/dashboard for visual management\nOpenAPI Spec: https://elizacloud.ai/api/openapi.json\nSDKs: TypeScript, Python clients available\nCommunity: Discord at https://discord.gg/elizaos\nEnvironment Variables\nELIZACLOUD_API_KEY: Your elizaOS Cloud API key (required)\nELIZACLOUD_BASE_URL: API base URL (default: https://elizacloud.ai/api/v1)\nSecurity Notes\nNever commit API keys to version control\nUse separate keys for development/production\nRotate keys regularly\nLimit permissions to minimum required scope\nMonitor usage in the dashboard for anomalies"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/odilitime/elizacloud",
    "publisherUrl": "https://clawhub.ai/odilitime/elizacloud",
    "owner": "odilitime",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/elizacloud",
    "downloadUrl": "https://openagent3.xyz/downloads/elizacloud",
    "agentUrl": "https://openagent3.xyz/skills/elizacloud/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elizacloud/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elizacloud/agent.md"
  }
}