{
  "schemaVersion": "1.0",
  "item": {
    "slug": "meshcore-marketplace",
    "name": "MeshCore Marketplace",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/anegash/meshcore-marketplace",
    "canonicalUrl": "https://clawhub.ai/anegash/meshcore-marketplace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/meshcore-marketplace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meshcore-marketplace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/meshcore-marketplace"
    },
    "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/meshcore-marketplace",
    "agentPageUrl": "https://openagent3.xyz/skills/meshcore-marketplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/meshcore-marketplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/meshcore-marketplace/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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "MeshCore Marketplace Skill",
        "body": "You have access to the MeshCore AI agent marketplace — a platform where developers publish AI agents and others can discover and pay to use them."
      },
      {
        "title": "API Base URL",
        "body": "All API calls go to: https://api.meshcore.ai"
      },
      {
        "title": "1. Search for agents",
        "body": "Use semantic search to find agents by what they do:\n\ncurl -s \"https://api.meshcore.ai/public/agents/search?query=SEARCH_TERM&limit=5\" | jq '.[] | {name, description, pricingType, pricePerCall, id}'\n\nReplace SEARCH_TERM with what the user is looking for (e.g., \"weather\", \"summarize text\", \"currency exchange\")."
      },
      {
        "title": "2. List all agents",
        "body": "Browse all available agents:\n\ncurl -s \"https://api.meshcore.ai/public/agents\" | jq '.[] | {name, description, pricingType, pricePerCall, id}'"
      },
      {
        "title": "3. Get agent details",
        "body": "Get full information about a specific agent:\n\ncurl -s \"https://api.meshcore.ai/public/AGENT_ID\" | jq"
      },
      {
        "title": "4. Call an agent",
        "body": "Call an agent through the MeshCore gateway:\n\nFor FREE agents (no auth needed):\n\ncurl -s -X POST \"https://api.meshcore.ai/gateway/call/AGENT_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d 'JSON_PAYLOAD'\n\nFor PAID agents (auth required):\n\ncurl -s -X POST \"https://api.meshcore.ai/gateway/call/AGENT_ID\" \\\n  -H \"Authorization: Bearer $MESHCORE_API_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d 'JSON_PAYLOAD'"
      },
      {
        "title": "5. Check wallet balance",
        "body": "curl -s \"https://api.meshcore.ai/wallet/balance\" \\\n  -H \"Authorization: Bearer $MESHCORE_API_TOKEN\" | jq"
      },
      {
        "title": "Important Rules",
        "body": "Always show pricing before calling a paid agent. Tell the user: \"This agent costs $X per call. Shall I proceed?\"\nWait for user confirmation before calling any paid agent. Never call a paid agent without explicit approval.\nFree agents can be called without asking. If pricingType is FREE, just call it.\nShow results clearly. Format the agent's response in a readable way.\nIf search returns no results, suggest the user try different terms or browse all agents."
      },
      {
        "title": "Example Workflows",
        "body": "User: \"Find me a weather agent\"\n\nSearch: curl -s \"https://api.meshcore.ai/public/agents/search?query=weather&limit=3\"\nShow results with name, description, and pricing\nAsk: \"Would you like me to call the Weather Agent?\"\nIf yes and it's free: call it directly\nShow the weather data\n\nUser: \"Summarize this text: [long text]\"\n\nSearch: curl -s \"https://api.meshcore.ai/public/agents/search?query=text+summarizer&limit=3\"\nShow results: \"I found a Text Summarizer agent. It costs $0.01 per call. Want me to use it?\"\nWait for confirmation\nCall with auth: curl -s -X POST ... -H \"Authorization: Bearer $MESHCORE_API_TOKEN\"\nShow the summary"
      }
    ],
    "body": "MeshCore Marketplace Skill\n\nYou have access to the MeshCore AI agent marketplace — a platform where developers publish AI agents and others can discover and pay to use them.\n\nAPI Base URL\n\nAll API calls go to: https://api.meshcore.ai\n\nAvailable Actions\n1. Search for agents\n\nUse semantic search to find agents by what they do:\n\ncurl -s \"https://api.meshcore.ai/public/agents/search?query=SEARCH_TERM&limit=5\" | jq '.[] | {name, description, pricingType, pricePerCall, id}'\n\n\nReplace SEARCH_TERM with what the user is looking for (e.g., \"weather\", \"summarize text\", \"currency exchange\").\n\n2. List all agents\n\nBrowse all available agents:\n\ncurl -s \"https://api.meshcore.ai/public/agents\" | jq '.[] | {name, description, pricingType, pricePerCall, id}'\n\n3. Get agent details\n\nGet full information about a specific agent:\n\ncurl -s \"https://api.meshcore.ai/public/AGENT_ID\" | jq\n\n4. Call an agent\n\nCall an agent through the MeshCore gateway:\n\nFor FREE agents (no auth needed):\n\ncurl -s -X POST \"https://api.meshcore.ai/gateway/call/AGENT_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d 'JSON_PAYLOAD'\n\n\nFor PAID agents (auth required):\n\ncurl -s -X POST \"https://api.meshcore.ai/gateway/call/AGENT_ID\" \\\n  -H \"Authorization: Bearer $MESHCORE_API_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d 'JSON_PAYLOAD'\n\n5. Check wallet balance\ncurl -s \"https://api.meshcore.ai/wallet/balance\" \\\n  -H \"Authorization: Bearer $MESHCORE_API_TOKEN\" | jq\n\nImportant Rules\nAlways show pricing before calling a paid agent. Tell the user: \"This agent costs $X per call. Shall I proceed?\"\nWait for user confirmation before calling any paid agent. Never call a paid agent without explicit approval.\nFree agents can be called without asking. If pricingType is FREE, just call it.\nShow results clearly. Format the agent's response in a readable way.\nIf search returns no results, suggest the user try different terms or browse all agents.\nExample Workflows\n\nUser: \"Find me a weather agent\"\n\nSearch: curl -s \"https://api.meshcore.ai/public/agents/search?query=weather&limit=3\"\nShow results with name, description, and pricing\nAsk: \"Would you like me to call the Weather Agent?\"\nIf yes and it's free: call it directly\nShow the weather data\n\nUser: \"Summarize this text: [long text]\"\n\nSearch: curl -s \"https://api.meshcore.ai/public/agents/search?query=text+summarizer&limit=3\"\nShow results: \"I found a Text Summarizer agent. It costs $0.01 per call. Want me to use it?\"\nWait for confirmation\nCall with auth: curl -s -X POST ... -H \"Authorization: Bearer $MESHCORE_API_TOKEN\"\nShow the summary"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/anegash/meshcore-marketplace",
    "publisherUrl": "https://clawhub.ai/anegash/meshcore-marketplace",
    "owner": "anegash",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/meshcore-marketplace",
    "downloadUrl": "https://openagent3.xyz/downloads/meshcore-marketplace",
    "agentUrl": "https://openagent3.xyz/skills/meshcore-marketplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/meshcore-marketplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/meshcore-marketplace/agent.md"
  }
}