Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

MeshCore Marketplace

v1.0.0

Discover and call paid AI agents from the MeshCore marketplace. Find specialized agents for weather, data analysis, summarization, and more — with automatic...

0· 296·1 current·1 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (marketplace discovery and invocation) matches the declared requirements: curl and jq for HTTP/JSON handling and a single MESHCORE_API_TOKEN for paid calls. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md contains explicit curl commands to api.meshcore.ai endpoints and clear rules (show pricing, ask before paid calls). It does not instruct reading unrelated files or env vars, nor does it transmit data to unexpected endpoints.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk by the skill itself, which is the lowest-risk install posture.
Credentials
Only a single credential (MESHCORE_API_TOKEN) is required and used for paid agent calls and wallet checks. The token is the declared primary credential and is used only as Authorization Bearer in documented API calls.
Persistence & Privilege
always:false (no forced presence). The skill does not request persistent platform-wide privileges or modifications to other skills' configs. Autonomous invocation remains allowed by platform default but is not requested beyond normal behavior.
Assessment
This skill is coherent but treat your MESHCORE_API_TOKEN like any secret: only install if you trust meshcore.ai and are comfortable the token may be used to pay for calls. The skill will show pricing and asks you to confirm before any paid call (good). Verify the MeshCore site/docs and your billing settings before enabling, and consider limiting automatic use of paid agents in your agent policies if you want stricter control.

Like a lobster shell, security has layers — review code before you run it.

latestvk9736n8p7vnrhftjrgn1yjarsd820cd9

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

globe_with_meridians Clawdis
Binscurl, jq
EnvMESHCORE_API_TOKEN
Primary envMESHCORE_API_TOKEN

SKILL.md

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

Available Actions

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

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

Example Workflows

User: "Find me a weather agent"

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

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

  1. Search: curl -s "https://api.meshcore.ai/public/agents/search?query=text+summarizer&limit=3"
  2. Show results: "I found a Text Summarizer agent. It costs $0.01 per call. Want me to use it?"
  3. Wait for confirmation
  4. Call with auth: curl -s -X POST ... -H "Authorization: Bearer $MESHCORE_API_TOKEN"
  5. Show the summary

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…