# Send MeshCore Marketplace to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/meshcore-marketplace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meshcore-marketplace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### MeshCore Marketplace Skill

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.

### API Base URL

All API calls go to: https://api.meshcore.ai

### 1. Search for agents

Use semantic search to find agents by what they do:

curl -s "https://api.meshcore.ai/public/agents/search?query=SEARCH_TERM&limit=5" | jq '.[] | {name, description, pricingType, pricePerCall, id}'

Replace SEARCH_TERM with what the user is looking for (e.g., "weather", "summarize text", "currency exchange").

### 2. List all agents

Browse all available agents:

curl -s "https://api.meshcore.ai/public/agents" | jq '.[] | {name, description, pricingType, pricePerCall, id}'

### 3. Get agent details

Get full information about a specific agent:

curl -s "https://api.meshcore.ai/public/AGENT_ID" | jq

### 4. Call an agent

Call an agent through the MeshCore gateway:

For FREE agents (no auth needed):

curl -s -X POST "https://api.meshcore.ai/gateway/call/AGENT_ID" \\
  -H "Content-Type: application/json" \\
  -d 'JSON_PAYLOAD'

For PAID agents (auth required):

curl -s -X POST "https://api.meshcore.ai/gateway/call/AGENT_ID" \\
  -H "Authorization: Bearer $MESHCORE_API_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d 'JSON_PAYLOAD'

### 5. Check wallet balance

curl -s "https://api.meshcore.ai/wallet/balance" \\
  -H "Authorization: Bearer $MESHCORE_API_TOKEN" | jq

### Important Rules

Always show pricing before calling a paid agent. Tell the user: "This agent costs $X per call. Shall I proceed?"
Wait for user confirmation before calling any paid agent. Never call a paid agent without explicit approval.
Free agents can be called without asking. If pricingType is FREE, just call it.
Show results clearly. Format the agent's response in a readable way.
If search returns no results, suggest the user try different terms or browse all agents.

### Example Workflows

User: "Find me a weather agent"

Search: curl -s "https://api.meshcore.ai/public/agents/search?query=weather&limit=3"
Show results with name, description, and pricing
Ask: "Would you like me to call the Weather Agent?"
If yes and it's free: call it directly
Show the weather data

User: "Summarize this text: [long text]"

Search: curl -s "https://api.meshcore.ai/public/agents/search?query=text+summarizer&limit=3"
Show results: "I found a Text Summarizer agent. It costs $0.01 per call. Want me to use it?"
Wait for confirmation
Call with auth: curl -s -X POST ... -H "Authorization: Bearer $MESHCORE_API_TOKEN"
Show the summary
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: anegash
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/meshcore-marketplace)
- [Send to Agent page](https://openagent3.xyz/skills/meshcore-marketplace/agent)
- [JSON manifest](https://openagent3.xyz/skills/meshcore-marketplace/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/meshcore-marketplace/agent.md)
- [Download page](https://openagent3.xyz/downloads/meshcore-marketplace)