# Send Agentplace 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agentplace",
    "name": "Agentplace",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/HimanshuNextbase/agentplace",
    "canonicalUrl": "https://clawhub.ai/HimanshuNextbase/agentplace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agentplace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentplace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agentplace",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:13:41.451Z",
      "expiresAt": "2026-05-06T17:13:41.451Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentplace",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentplace",
        "contentDisposition": "attachment; filename=\"agentplace-2.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agentplace"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agentplace"
    },
    "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/agentplace",
    "downloadUrl": "https://openagent3.xyz/downloads/agentplace",
    "agentUrl": "https://openagent3.xyz/skills/agentplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentplace/agent.md"
  }
}
```
## Documentation

### Overview

Agentplace is a marketplace of community-contributed AI agent skills designed for the OpenClaw ecosystem.

This skill enables OpenClaw users to:

Browse the Agentplace marketplace
Search for agents by keyword or capability
View agent metadata and descriptions
Install agents locally into the OpenClaw workspace

All actions performed by this skill are explicitly user-initiated. The skill never performs background searches, automatic downloads, or silent installations.

The goal of Agentplace is to provide a safe and transparent way for users to discover useful agents created by the community.

### 1. User-initiated execution

Marketplace queries occur only when the user explicitly asks to browse or install an agent.

Examples:

"Browse the marketplace"
"Show available agents"
"Search for agents that do X"
"Install agent <name>"

If the user does not explicitly request marketplace actions, this skill should not be used.

### 2. Explicit user consent

Installing third-party agents requires two confirmation steps:

Confirmation before downloading
Confirmation after previewing the agent files

### 3. Transparent preview before installation

Before installing an agent:

The archive contents are listed
The SKILL.md file is shown
The user can verify the agent description

### 4. Local execution

Installed agents run locally on the user's machine. Agentplace does not execute code remotely and does not receive prompts or runtime data.

### Privacy Policy

This skill communicates with the Agentplace API only when necessary.

Network calls occur only when:

Browsing the marketplace
Searching for agents
Requesting metadata
Downloading an agent package

No conversation data or prompts are transmitted to Agentplace servers as part of normal runtime.

### Agent Tiers

TierAuthenticationDescriptionFreeNoneAvailable for immediate download after confirmationPaidAPI keyRequires purchase and dashboard API key

Paid agents require a dashboard API key in the format:

ak_xxxxxxxx

The API key is used only to authorize downloads and must never be included in prompts or shared publicly.

### Marketplace API

List agents:

curl -s https://api.agentplace.sh/marketplace/agents

Search agents:

curl -s "https://api.agentplace.sh/marketplace/agents?search=<query>"

Get agent details:

curl -s https://api.agentplace.sh/marketplace/agents/<agent-id>

### Installation Workflow

Step 1 — Ask user confirmation

Install <agent name>? (yes/no)

Step 2 — Request download metadata

Free agent:

curl -s https://api.agentplace.sh/marketplace/agents/<agent-id>/download

Paid agent:

curl -s -H "x-api-key: ak_xxxx" https://api.agentplace.sh/marketplace/agents/<agent-id>/download

Example response:

{
"download_url": "https://cdn.agentplace.sh/agents/example.zip",
"version": "1.0.0",
"tier": "free"
}

Step 3 — Download agent package

curl -sL "$download_url" -o /tmp/agent.zip

Step 4 — Preview contents

zipinfo -1 /tmp/agent.zip

unzip -p /tmp/agent.zip SKILL.md > /tmp/agent-SKILL.md
cat /tmp/agent-SKILL.md

Step 5 — Final confirmation

Install this agent now? (yes/no)

Step 6 — Install locally

unzip -qo /tmp/agent.zip -d /tmp/agent-preview/
mv /tmp/agent-preview ~/.openclaw/workspace/skills/<agent-id>/
rm /tmp/agent.zip

### Integrity and Safety

Agentplace distributes agents as ZIP archives.

Users should:

Verify the SKILL.md description
Review archive contents
Prefer trusted publishers

Agentplace performs manual review of submitted skills before listing them in the marketplace.

### API Key Setup

Visit:

https://www.agentplace.sh/dashboard

Generate an API key in the format:

ak_xxxxxxxx

Guidelines:

Store keys securely
Never commit keys to public repositories
Never share keys publicly

### Error Handling

401 — Invalid API key
403 — Agent not purchased
404 — Agent not found

### Security Guidelines

User-initiated execution only
Explicit confirmation before installation
Preview agent documentation before install
No automatic execution of downloaded code
Agents run locally on the user's machine
API keys are used only for download authorization

### Marketplace Safety Process

Agentplace performs review of uploaded agents including:

manual inspection of submitted archives
verification of metadata
checking for unexpected files

This helps ensure that marketplace agents are safe and consistent with their descriptions.

### Summary

Agentplace provides a transparent and user-controlled way to install community-built agents.

Key protections include:

user-initiated execution
explicit install confirmations
archive preview before installation
local execution of agents
limited API key usage
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: HimanshuNextbase
- Version: 2.0.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:13:41.451Z
- Expires at: 2026-05-06T17:13:41.451Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agentplace)
- [Send to Agent page](https://openagent3.xyz/skills/agentplace/agent)
- [JSON manifest](https://openagent3.xyz/skills/agentplace/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agentplace/agent.md)
- [Download page](https://openagent3.xyz/downloads/agentplace)