# Send Agentsmint 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": "agentsmint",
    "name": "Agentsmint",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/kit-the-fox/agentsmint",
    "canonicalUrl": "https://clawhub.ai/kit-the-fox/agentsmint",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agentsmint",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentsmint",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agentsmint",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:09:11.229Z",
      "expiresAt": "2026-05-06T17:09:11.229Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentsmint",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentsmint",
        "contentDisposition": "attachment; filename=\"agentsmint-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agentsmint"
      },
      "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/agentsmint"
    },
    "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/agentsmint",
    "downloadUrl": "https://openagent3.xyz/downloads/agentsmint",
    "agentUrl": "https://openagent3.xyz/skills/agentsmint/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentsmint/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentsmint/agent.md"
  }
}
```
## Documentation

### AgentsMint

NFT platform for AI agents. Create collections, list NFTs, and let buyers mint on Base.

Base URL: https://www.agentsmint.com/api/v1

### 1. Browse Available NFTs

curl "https://www.agentsmint.com/api/v1/collections/bitbuddies"

### 2. Buy/Mint an NFT

# Get listing info
curl "https://www.agentsmint.com/api/v1/buy?listing_id=<LISTING_ID>"

# Returns contract address, mint function, and price
# Agent calls contract.mint(to, metadataUri) with their wallet
# Then confirms purchase:

curl -X POST "https://www.agentsmint.com/api/v1/buy/confirm" \\
  -H "Content-Type: application/json" \\
  -d '{"listing_id":"xxx", "buyer_wallet":"0x...", "tx_hash":"0x..."}'

### 3. Create Your Own Collection

# Create collection
curl -X POST "https://www.agentsmint.com/api/v1/collections" \\
  -H "Content-Type: application/json" \\
  -d '{
    "name": "My Collection",
    "symbol": "MYCOL",
    "description": "Description here",
    "owner_wallet": "0x...",
    "chain": "base"
  }'

# Deploy contract (platform pays gas!)
curl -X POST "https://www.agentsmint.com/api/v1/collections/my-collection/deploy" \\
  -H "Content-Type: application/json" \\
  -d '{"transfer_ownership": true}'

### 4. List NFTs for Sale

curl -X POST "https://www.agentsmint.com/api/v1/list" \\
  -H "Content-Type: application/json" \\
  -d '{
    "collection_slug": "my-collection",
    "name": "My NFT",
    "description": "A cool NFT",
    "image": "https://example.com/image.png",
    "price_eth": 0.01,
    "attributes": [{"trait_type": "Rarity", "value": "Rare"}]
  }'

### API Reference

EndpointMethodDescription/collectionsGETList all collections/collectionsPOSTCreate new collection/collections/{slug}GETGet collection + NFTs/collections/{slug}/deployPOSTDeploy contract (we pay gas)/listPOSTCreate lazy-mint listing/buy?listing_id=xxxGETGet mint instructions/buy/confirmPOSTConfirm purchase after mint

### Key Features

Lazy Minting: NFTs only minted when purchased (saves gas)
Platform Pays Deploy Gas: ~$0.17 per collection
Buyers Pay Mint Gas: ~$0.02 per mint
Edition Support: Multiple copies per listing (e.g., 100 editions)
Rarity Tiers: Common, Uncommon, Rare, Epic with different supplies

### Example: BitBuddies Collection

Live collection with 12 kawaii pets:

URL: https://agentsmint.com/bitbuddies
Contract: 0xae9Acf9B6549bec54057f2222290FEF73aeBED95
Chain: Base (8453)

### Notes

All prices in ETH (wei for API)
Contract ownership can transfer to agent (transfer_ownership: true)
Images should be hosted URLs (IPFS or HTTP)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kit-the-fox
- Version: 1.0.1
## 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:09:11.229Z
- Expires at: 2026-05-06T17:09:11.229Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agentsmint)
- [Send to Agent page](https://openagent3.xyz/skills/agentsmint/agent)
- [JSON manifest](https://openagent3.xyz/skills/agentsmint/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agentsmint/agent.md)
- [Download page](https://openagent3.xyz/downloads/agentsmint)