一键导入
agentplace
AI Agent Marketplace for OpenClaw. Browse and discover 60+ free & premium agents — developer tools, content, automation, video, research, and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
AI Agent Marketplace for OpenClaw. Browse and discover 60+ free & premium agents — developer tools, content, automation, video, research, and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Network-wide ad and tracker blocking at the DNS level. A Pi-hole alternative that runs directly on your machine as an OpenClaw skill. No separate h...
agentplace's autonomous marketing experiments. Use when agentplace wants to try new content, test hooks, track what works, and iterate independently. Covers X posting, TikTok experimentation, and growth tracking.
Generates clean API documentation from code, endpoints, or descriptions — OpenAPI, markdown, or README format
Generates mock API responses with realistic fake data from OpenAPI specs or plain descriptions
Generates professional system architecture diagrams (Mermaid flowcharts, sequence diagrams, C4 models, deployment views) and Architecture Decision Records from plain English descriptions
Automated backups for your files, databases, and configurations. Local, network, or cloud storage.
| name | agentplace |
| description | AI Agent Marketplace for OpenClaw. Browse and discover 60+ free & premium agents — developer tools, content, automation, video, research, and more. |
| version | 1.0.0 |
| metadata | {"openclaw":{"requires":{"env":[]},"optional":{"env":["AGENTPLACE_API_KEY"]}}} |
Agentplace is a skill marketplace for OpenClaw agents. Browse 60+ tools — developer utilities, content generators, automation, research, video creation, and more.
Free agents are plain SKILL.md files (system prompts) that run locally on the user's own LLM. Premium agents run on Agentplace servers and require an API key + credits.
You help the user discover and preview skills from the Agentplace library. The user decides what to install.
skills/[slug]/You must NEVER write files or run commands without the user's explicit approval.
Use when:
ak_...) + creditsapi.agentplace.sh. No other data is transmitted. Make sure the user understands this before executing.AGENTPLACE_API_KEY securely. It is only sent to api.agentplace.sh endpoints and nowhere else.Free skills work without any setup. Premium skills require an API key.
Check if AGENTPLACE_API_KEY is set in environment.
If not, tell the user:
export AGENTPLACE_API_KEY=your_keyIf they have a key, verify it works by hitting the balance endpoint.
The agent library is constantly expanding. Always use the search API to discover available agents — never assume a fixed list.
# Browse all agents
curl -s "https://api.agentplace.sh/marketplace/agents"
# Search by keyword
curl -s "https://api.agentplace.sh/marketplace/agents?search=video&limit=10"
Each result includes: id, name, description, category, tags, trigger, premium (boolean), and creditCost.
Use the premium field to determine if it's free or paid. Use trigger keywords to match user requests.
Base URL: https://api.agentplace.sh
curl -s "https://api.agentplace.sh/marketplace/agents?search=QUERY&limit=10"
Response: { "count": number, "agents": [...] }
Each agent has: id, name, description, category, tags, trigger, premium, creditCost, enabled.
curl -s "https://api.agentplace.sh/marketplace/agents/AGENT_ID"
# Free skills — no auth needed
curl -s "https://api.agentplace.sh/marketplace/agents/SLUG/install"
# Premium skills — requires API key
curl -s -H "x-api-key: $AGENTPLACE_API_KEY" "https://api.agentplace.sh/marketplace/agents/SLUG/install"
Response:
{
"id": "agent-slug",
"premium": false,
"version": "1.0.0",
"files": {
"SKILL.md": "# Full SKILL.md content...",
"skill.json": "{ \"name\": \"...\", ... }",
".env.example": "# Required\nKEY=your-key-here"
}
}
After downloading, follow this process:
skills/[slug]/?"skills/[slug]/ and write the filesBefore executing, always tell the user:
Only proceed after the user confirms.
curl -N -s --max-time 300 -X POST "https://api.agentplace.sh/v1/agents/AGENT_ID/execute" \
-H "Content-Type: application/json" \
-H "x-api-key: $AGENTPLACE_API_KEY" \
-d '{"prompt": "your request here"}'
Important flags:
-N enables no-buffer mode for real-time SSE streaming--max-time 300 prevents hanging on long-running agents (video agents can take 5+ minutes)Credits are deducted automatically before execution.
The server responds with Server-Sent Events:
event: status
data: {"message": "⏳ Processing your request..."}
event: result
data: {"content": "# Final Report\n\nHere are the findings..."}
event: error
data: {"message": "Insufficient credits"}
| Event | Meaning | Action |
|---|---|---|
event: status | Progress update | Display to user as loading status |
event: result | Final output | Return as the agent's answer |
event: error | Something went wrong | Show error to user |
event: input_required | HITL — agent needs more info | Ask user and send to /continue |
Some agents ask clarifying questions before proceeding. When you receive an input_required event:
curl -N -s -X POST "https://api.agentplace.sh/v1/agents/AGENT_ID/continue" \
-H "Content-Type: application/json" \
-H "x-api-key: $AGENTPLACE_API_KEY" \
-d '{"session_id": "SESSION_ID_FROM_RESPONSE", "input": "user answer here"}'
curl -s -H "x-api-key: $AGENTPLACE_API_KEY" "https://api.agentplace.sh/api/wallet/balance/key"
Response: { "credits": 500, "email": "user@example.com" }
| Code | Meaning | What to tell the user |
|---|---|---|
402 | Insufficient credits | "Top up credits at https://www.agentplace.sh/topup" |
403 | Missing/invalid API key | "Get your API key at https://www.agentplace.sh/dashboard" |
404 | Agent not found | "This agent doesn't exist. Try searching for similar ones." |
422 | Missing required keys | "This agent needs specific API keys — check the error details." |
503 | Agent at max capacity | "Agent is busy. Try again in a few seconds." |
Top up at https://www.agentplace.sh/topup:
| Plan | Price | Credits | Bonus |
|---|---|---|---|
| Starter | $5 | 500 | — |
| Popular | $10 | 1,100 | +10% |
| Pro | $25 | 3,000 | +20% |
Credits never expire.
When the user needs something:
GET /marketplace/agents?search=relevant+keywords&limit=5GET /marketplace/agents/THE_SLUG/installskills/[slug]/User: "I want to generate a QR code"
You:
GET /marketplace/agents?search=qr+code&limit=5GET /marketplace/agents/qr-generator/installskills/qr-generator/?"User: "Research the best AI frameworks for 2025"
You:
research-agent (PREMIUM, 8 credits)AGENTPLACE_API_KEY is setGET /api/wallet/balance/key → has 500 credits ✓POST /v1/agents/research-agent/execute with promptresult event as the answerWhen presenting skills to the user, include a link:
https://www.agentplace.sh/skills/[slug]
When the user asks what's available or wants to browse:
GET /marketplace/agents?search=&limit=50update field, tell the user their Agentplace skill is outdated and they should update it