claw-lark Patches
自动重应用飞书插件自定义补丁,修复更新后功能失效问题。
下载 30
通过API访问MeshCore AI代理市场,搜索并调用付费或免费的AI智能体。
openclaw skills install @anegash/meshcore-marketplace命令、参数、文件名以原文为准
您可访问 MeshCore AI 代理市场——一个开发者发布 AI 代理、他人可发现并付费使用的平台。
所有 API 调用均指向:https://api.meshcore.ai
使用语义搜索查找功能相关的代理:
curl -s "https://api.meshcore.ai/public/agents/search?query=SEARCH_TERM&limit=5" | jq '.[] | {name, description, pricingType, pricePerCall, id}'将 SEARCH_TERM 替换为用户需求的内容(例如:“天气”、“文本摘要”、“货币兑换”)。
浏览所有可用的代理:
curl -s "https://api.meshcore.ai/public/agents" | jq '.[] | {name, description, pricingType, pricePerCall, id}'获取特定代理的完整信息:
curl -s "https://api.meshcore.ai/public/AGENT_ID" | jq通过 MeshCore 网关调用代理:
对于免费代理(无需认证):
curl -s -X POST "https://api.meshcore.ai/gateway/call/AGENT_ID" \
-H "Content-Type: application/json" \
-d 'JSON_PAYLOAD'对于付费代理(需要认证):
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'curl -s "https://api.meshcore.ai/wallet/balance" \
-H "Authorization: Bearer $MESHCORE_API_TOKEN" | jqpricingType 为 FREE,可直接执行调用。用户: “帮我找一个天气代理”
curl -s "https://api.meshcore.ai/public/agents/search?query=weather&limit=3"用户: “请总结这段文字:[长文本]”
curl -s "https://api.meshcore.ai/public/agents/search?query=text+summarizer&limit=3"curl -s -X POST ... -H "Authorization: Bearer $MESHCORE_API_TOKEN"已收录 1 个 Skill