{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agorahub",
    "name": "AgoraHub",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Codevena/agorahub",
    "canonicalUrl": "https://clawhub.ai/Codevena/agorahub",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agorahub",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agorahub",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/agorahub"
    },
    "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/agorahub",
    "agentPageUrl": "https://openagent3.xyz/skills/agorahub/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agorahub/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agorahub/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": "AgoraHub — AI Agent Registry",
        "body": "AgoraHub is an open agent registry with 14+ verified demo agents you can use instantly — no signup required. For community agents, get an API key at https://agorahub.dev/dashboard/api-keys.\n\nBase URL: https://agorahub.dev"
      },
      {
        "title": "1. Discover Available Agents",
        "body": "List all agents exposed as MCP tools:\n\ncurl -s https://agorahub.dev/api/mcp/tools | jq '.tools[] | {name, description}'"
      },
      {
        "title": "Filter by Tags",
        "body": "curl -s \"https://agorahub.dev/api/mcp/tools?tags=crypto\" | jq '.tools[] | {name, description}'"
      },
      {
        "title": "Search by Name/Description",
        "body": "curl -s \"https://agorahub.dev/api/mcp/tools?q=hash\" | jq '.tools[] | {name, description}'"
      },
      {
        "title": "2. Call an Agent",
        "body": "All 14 demo agents work without an API key. For community agents, add -H \"Authorization: Bearer $AGORAHUB_API_KEY\"."
      },
      {
        "title": "General Call Format",
        "body": "curl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_<agent-slug>_<skill-id>\",\"arguments\":{...}}' | jq"
      },
      {
        "title": "Echo Agent",
        "body": "Echo back a message with a timestamp.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_echo-agent_echo\",\"arguments\":{\"message\":\"hello world\"}}' | jq"
      },
      {
        "title": "Hash Generator",
        "body": "Generate cryptographic hashes (md5, sha1, sha256, sha512).\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_hash-generator_hash\",\"arguments\":{\"text\":\"hello\",\"algorithm\":\"sha256\"}}' | jq\n\nHash with all algorithms at once:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_hash-generator_hash-all\",\"arguments\":{\"text\":\"hello\"}}' | jq"
      },
      {
        "title": "Password Generator",
        "body": "Generate secure passwords with customizable options.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_password-generator_generate\",\"arguments\":{\"length\":20,\"count\":3,\"symbols\":true}}' | jq"
      },
      {
        "title": "JSON Formatter",
        "body": "Validate, pretty-print, or minify JSON.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_json-formatter_format\",\"arguments\":{\"json\":\"{\\\"key\\\":\\\"value\\\",\\\"num\\\":42}\"}}' | jq"
      },
      {
        "title": "Base64 Codec",
        "body": "Encode text to Base64:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_base64-codec_encode\",\"arguments\":{\"text\":\"hello world\"}}' | jq\n\nDecode Base64 back to text:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_base64-codec_decode\",\"arguments\":{\"text\":\"aGVsbG8gd29ybGQ=\"}}' | jq"
      },
      {
        "title": "UUID Generator",
        "body": "Generate UUIDs in v4 or v7 format.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_uuid-generator_generate\",\"arguments\":{\"version\":\"v4\",\"count\":5}}' | jq"
      },
      {
        "title": "Regex Tester",
        "body": "Test regex patterns against text.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_regex-tester_test\",\"arguments\":{\"pattern\":\"\\\\d+\",\"text\":\"abc 123 def 456\"}}' | jq"
      },
      {
        "title": "JWT Decoder",
        "body": "Decode a JWT token (without verification).\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_jwt-decoder_decode\",\"arguments\":{\"token\":\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c\"}}' | jq"
      },
      {
        "title": "Markdown to HTML",
        "body": "Convert Markdown text to HTML.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_markdown-to-html_convert\",\"arguments\":{\"markdown\":\"# Hello\\n\\n**Bold** and *italic*\"}}' | jq"
      },
      {
        "title": "Text Stats",
        "body": "Analyze text for word count, reading time, and more.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_text-stats_analyze\",\"arguments\":{\"text\":\"The quick brown fox jumps over the lazy dog. This is a sample text for analysis.\"}}' | jq"
      },
      {
        "title": "Lorem Ipsum Generator",
        "body": "Generate placeholder text.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_lorem-ipsum_generate\",\"arguments\":{\"format\":\"paragraphs\",\"count\":2}}' | jq"
      },
      {
        "title": "CSV/JSON Converter",
        "body": "Convert CSV to JSON:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_csv-json-converter_csv-to-json\",\"arguments\":{\"csv\":\"name,age\\nAlice,30\\nBob,25\"}}' | jq\n\nConvert JSON to CSV:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_csv-json-converter_json-to-csv\",\"arguments\":{\"data\":[{\"name\":\"Alice\",\"age\":30},{\"name\":\"Bob\",\"age\":25}]}}' | jq"
      },
      {
        "title": "Color Converter",
        "body": "Convert between Hex, RGB, and HSL.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_color-converter_convert\",\"arguments\":{\"color\":\"#ff6600\"}}' | jq"
      },
      {
        "title": "Timestamp Converter",
        "body": "Convert between Unix timestamps, ISO 8601, and human-readable dates.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_timestamp-converter_convert\",\"arguments\":{\"timestamp\":\"now\"}}' | jq"
      },
      {
        "title": "4. Error Handling",
        "body": "Check the HTTP status code and isError field in the response:\n\n200 — Success. Parse content[0].text for the result.\n400 — Bad request. Check error field for details (missing tool name, invalid format).\n401 — Authentication required. Only for non-demo agents. Set AGORAHUB_API_KEY.\n404 — Agent or skill not found. Use the discover endpoint to list available tools.\n429 — Rate limited. Check Retry-After header.\n500 — Internal error. Retry or report at https://github.com/Codevena/AgoraHub/issues.\n\n# Example: check for errors\nRESPONSE=$(curl -s -w \"\\n%{http_code}\" -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_echo-agent_echo\",\"arguments\":{\"message\":\"test\"}}')\nHTTP_CODE=$(echo \"$RESPONSE\" | tail -1)\nBODY=$(echo \"$RESPONSE\" | head -n -1)\n\nif [ \"$HTTP_CODE\" -ne 200 ]; then\n  echo \"Error ($HTTP_CODE): $(echo \"$BODY\" | jq -r '.error // .content[0].text')\"\nelse\n  echo \"$BODY\" | jq '.content[0].text | fromjson'\nfi"
      },
      {
        "title": "5. Using with API Key (Community Agents)",
        "body": "For non-demo agents, authenticate with your API key:\n\nexport AGORAHUB_API_KEY=\"agora_your_key_here\"\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $AGORAHUB_API_KEY\" \\\n  -d '{\"name\":\"agora_some-community-agent_skill\",\"arguments\":{...}}' | jq\n\nGet your API key at: https://agorahub.dev/dashboard/api-keys"
      }
    ],
    "body": "AgoraHub — AI Agent Registry\n\nAgoraHub is an open agent registry with 14+ verified demo agents you can use instantly — no signup required. For community agents, get an API key at https://agorahub.dev/dashboard/api-keys.\n\nBase URL: https://agorahub.dev\n\n1. Discover Available Agents\n\nList all agents exposed as MCP tools:\n\ncurl -s https://agorahub.dev/api/mcp/tools | jq '.tools[] | {name, description}'\n\nFilter by Tags\ncurl -s \"https://agorahub.dev/api/mcp/tools?tags=crypto\" | jq '.tools[] | {name, description}'\n\nSearch by Name/Description\ncurl -s \"https://agorahub.dev/api/mcp/tools?q=hash\" | jq '.tools[] | {name, description}'\n\n2. Call an Agent\n\nAll 14 demo agents work without an API key. For community agents, add -H \"Authorization: Bearer $AGORAHUB_API_KEY\".\n\nGeneral Call Format\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_<agent-slug>_<skill-id>\",\"arguments\":{...}}' | jq\n\n3. Agent Quick Reference\nEcho Agent\n\nEcho back a message with a timestamp.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_echo-agent_echo\",\"arguments\":{\"message\":\"hello world\"}}' | jq\n\nHash Generator\n\nGenerate cryptographic hashes (md5, sha1, sha256, sha512).\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_hash-generator_hash\",\"arguments\":{\"text\":\"hello\",\"algorithm\":\"sha256\"}}' | jq\n\n\nHash with all algorithms at once:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_hash-generator_hash-all\",\"arguments\":{\"text\":\"hello\"}}' | jq\n\nPassword Generator\n\nGenerate secure passwords with customizable options.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_password-generator_generate\",\"arguments\":{\"length\":20,\"count\":3,\"symbols\":true}}' | jq\n\nJSON Formatter\n\nValidate, pretty-print, or minify JSON.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_json-formatter_format\",\"arguments\":{\"json\":\"{\\\"key\\\":\\\"value\\\",\\\"num\\\":42}\"}}' | jq\n\nBase64 Codec\n\nEncode text to Base64:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_base64-codec_encode\",\"arguments\":{\"text\":\"hello world\"}}' | jq\n\n\nDecode Base64 back to text:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_base64-codec_decode\",\"arguments\":{\"text\":\"aGVsbG8gd29ybGQ=\"}}' | jq\n\nUUID Generator\n\nGenerate UUIDs in v4 or v7 format.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_uuid-generator_generate\",\"arguments\":{\"version\":\"v4\",\"count\":5}}' | jq\n\nRegex Tester\n\nTest regex patterns against text.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_regex-tester_test\",\"arguments\":{\"pattern\":\"\\\\d+\",\"text\":\"abc 123 def 456\"}}' | jq\n\nJWT Decoder\n\nDecode a JWT token (without verification).\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_jwt-decoder_decode\",\"arguments\":{\"token\":\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c\"}}' | jq\n\nMarkdown to HTML\n\nConvert Markdown text to HTML.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_markdown-to-html_convert\",\"arguments\":{\"markdown\":\"# Hello\\n\\n**Bold** and *italic*\"}}' | jq\n\nText Stats\n\nAnalyze text for word count, reading time, and more.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_text-stats_analyze\",\"arguments\":{\"text\":\"The quick brown fox jumps over the lazy dog. This is a sample text for analysis.\"}}' | jq\n\nLorem Ipsum Generator\n\nGenerate placeholder text.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_lorem-ipsum_generate\",\"arguments\":{\"format\":\"paragraphs\",\"count\":2}}' | jq\n\nCSV/JSON Converter\n\nConvert CSV to JSON:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_csv-json-converter_csv-to-json\",\"arguments\":{\"csv\":\"name,age\\nAlice,30\\nBob,25\"}}' | jq\n\n\nConvert JSON to CSV:\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_csv-json-converter_json-to-csv\",\"arguments\":{\"data\":[{\"name\":\"Alice\",\"age\":30},{\"name\":\"Bob\",\"age\":25}]}}' | jq\n\nColor Converter\n\nConvert between Hex, RGB, and HSL.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_color-converter_convert\",\"arguments\":{\"color\":\"#ff6600\"}}' | jq\n\nTimestamp Converter\n\nConvert between Unix timestamps, ISO 8601, and human-readable dates.\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_timestamp-converter_convert\",\"arguments\":{\"timestamp\":\"now\"}}' | jq\n\n4. Error Handling\n\nCheck the HTTP status code and isError field in the response:\n\n200 — Success. Parse content[0].text for the result.\n400 — Bad request. Check error field for details (missing tool name, invalid format).\n401 — Authentication required. Only for non-demo agents. Set AGORAHUB_API_KEY.\n404 — Agent or skill not found. Use the discover endpoint to list available tools.\n429 — Rate limited. Check Retry-After header.\n500 — Internal error. Retry or report at https://github.com/Codevena/AgoraHub/issues.\n# Example: check for errors\nRESPONSE=$(curl -s -w \"\\n%{http_code}\" -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"agora_echo-agent_echo\",\"arguments\":{\"message\":\"test\"}}')\nHTTP_CODE=$(echo \"$RESPONSE\" | tail -1)\nBODY=$(echo \"$RESPONSE\" | head -n -1)\n\nif [ \"$HTTP_CODE\" -ne 200 ]; then\n  echo \"Error ($HTTP_CODE): $(echo \"$BODY\" | jq -r '.error // .content[0].text')\"\nelse\n  echo \"$BODY\" | jq '.content[0].text | fromjson'\nfi\n\n5. Using with API Key (Community Agents)\n\nFor non-demo agents, authenticate with your API key:\n\nexport AGORAHUB_API_KEY=\"agora_your_key_here\"\n\ncurl -s -X POST https://agorahub.dev/api/mcp/tools/call \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $AGORAHUB_API_KEY\" \\\n  -d '{\"name\":\"agora_some-community-agent_skill\",\"arguments\":{...}}' | jq\n\n\nGet your API key at: https://agorahub.dev/dashboard/api-keys"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Codevena/agorahub",
    "publisherUrl": "https://clawhub.ai/Codevena/agorahub",
    "owner": "Codevena",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agorahub",
    "downloadUrl": "https://openagent3.xyz/downloads/agorahub",
    "agentUrl": "https://openagent3.xyz/skills/agorahub/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agorahub/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agorahub/agent.md"
  }
}