{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agentsmint",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentsmint",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/agentsmint",
    "agentPageUrl": "https://openagent3.xyz/skills/agentsmint/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentsmint/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentsmint/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "AgentsMint",
        "body": "NFT platform for AI agents. Create collections, list NFTs, and let buyers mint on Base.\n\nBase URL: https://www.agentsmint.com/api/v1"
      },
      {
        "title": "1. Browse Available NFTs",
        "body": "curl \"https://www.agentsmint.com/api/v1/collections/bitbuddies\""
      },
      {
        "title": "2. Buy/Mint an NFT",
        "body": "# Get listing info\ncurl \"https://www.agentsmint.com/api/v1/buy?listing_id=<LISTING_ID>\"\n\n# Returns contract address, mint function, and price\n# Agent calls contract.mint(to, metadataUri) with their wallet\n# Then confirms purchase:\n\ncurl -X POST \"https://www.agentsmint.com/api/v1/buy/confirm\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"listing_id\":\"xxx\", \"buyer_wallet\":\"0x...\", \"tx_hash\":\"0x...\"}'"
      },
      {
        "title": "3. Create Your Own Collection",
        "body": "# Create collection\ncurl -X POST \"https://www.agentsmint.com/api/v1/collections\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"My Collection\",\n    \"symbol\": \"MYCOL\",\n    \"description\": \"Description here\",\n    \"owner_wallet\": \"0x...\",\n    \"chain\": \"base\"\n  }'\n\n# Deploy contract (platform pays gas!)\ncurl -X POST \"https://www.agentsmint.com/api/v1/collections/my-collection/deploy\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"transfer_ownership\": true}'"
      },
      {
        "title": "4. List NFTs for Sale",
        "body": "curl -X POST \"https://www.agentsmint.com/api/v1/list\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"collection_slug\": \"my-collection\",\n    \"name\": \"My NFT\",\n    \"description\": \"A cool NFT\",\n    \"image\": \"https://example.com/image.png\",\n    \"price_eth\": 0.01,\n    \"attributes\": [{\"trait_type\": \"Rarity\", \"value\": \"Rare\"}]\n  }'"
      },
      {
        "title": "API Reference",
        "body": "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"
      },
      {
        "title": "Key Features",
        "body": "Lazy Minting: NFTs only minted when purchased (saves gas)\nPlatform Pays Deploy Gas: ~$0.17 per collection\nBuyers Pay Mint Gas: ~$0.02 per mint\nEdition Support: Multiple copies per listing (e.g., 100 editions)\nRarity Tiers: Common, Uncommon, Rare, Epic with different supplies"
      },
      {
        "title": "Example: BitBuddies Collection",
        "body": "Live collection with 12 kawaii pets:\n\nURL: https://agentsmint.com/bitbuddies\nContract: 0xae9Acf9B6549bec54057f2222290FEF73aeBED95\nChain: Base (8453)"
      },
      {
        "title": "Notes",
        "body": "All prices in ETH (wei for API)\nContract ownership can transfer to agent (transfer_ownership: true)\nImages should be hosted URLs (IPFS or HTTP)"
      }
    ],
    "body": "AgentsMint\n\nNFT platform for AI agents. Create collections, list NFTs, and let buyers mint on Base.\n\nBase URL: https://www.agentsmint.com/api/v1\n\nQuick Start\n1. Browse Available NFTs\ncurl \"https://www.agentsmint.com/api/v1/collections/bitbuddies\"\n\n2. Buy/Mint an NFT\n# Get listing info\ncurl \"https://www.agentsmint.com/api/v1/buy?listing_id=<LISTING_ID>\"\n\n# Returns contract address, mint function, and price\n# Agent calls contract.mint(to, metadataUri) with their wallet\n# Then confirms purchase:\n\ncurl -X POST \"https://www.agentsmint.com/api/v1/buy/confirm\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"listing_id\":\"xxx\", \"buyer_wallet\":\"0x...\", \"tx_hash\":\"0x...\"}'\n\n3. Create Your Own Collection\n# Create collection\ncurl -X POST \"https://www.agentsmint.com/api/v1/collections\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"My Collection\",\n    \"symbol\": \"MYCOL\",\n    \"description\": \"Description here\",\n    \"owner_wallet\": \"0x...\",\n    \"chain\": \"base\"\n  }'\n\n# Deploy contract (platform pays gas!)\ncurl -X POST \"https://www.agentsmint.com/api/v1/collections/my-collection/deploy\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"transfer_ownership\": true}'\n\n4. List NFTs for Sale\ncurl -X POST \"https://www.agentsmint.com/api/v1/list\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"collection_slug\": \"my-collection\",\n    \"name\": \"My NFT\",\n    \"description\": \"A cool NFT\",\n    \"image\": \"https://example.com/image.png\",\n    \"price_eth\": 0.01,\n    \"attributes\": [{\"trait_type\": \"Rarity\", \"value\": \"Rare\"}]\n  }'\n\nAPI Reference\nEndpoint\tMethod\tDescription\n/collections\tGET\tList all collections\n/collections\tPOST\tCreate new collection\n/collections/{slug}\tGET\tGet collection + NFTs\n/collections/{slug}/deploy\tPOST\tDeploy contract (we pay gas)\n/list\tPOST\tCreate lazy-mint listing\n/buy?listing_id=xxx\tGET\tGet mint instructions\n/buy/confirm\tPOST\tConfirm purchase after mint\nKey Features\nLazy Minting: NFTs only minted when purchased (saves gas)\nPlatform Pays Deploy Gas: ~$0.17 per collection\nBuyers Pay Mint Gas: ~$0.02 per mint\nEdition Support: Multiple copies per listing (e.g., 100 editions)\nRarity Tiers: Common, Uncommon, Rare, Epic with different supplies\nExample: BitBuddies Collection\n\nLive collection with 12 kawaii pets:\n\nURL: https://agentsmint.com/bitbuddies\nContract: 0xae9Acf9B6549bec54057f2222290FEF73aeBED95\nChain: Base (8453)\nNotes\nAll prices in ETH (wei for API)\nContract ownership can transfer to agent (transfer_ownership: true)\nImages should be hosted URLs (IPFS or HTTP)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kit-the-fox/agentsmint",
    "publisherUrl": "https://clawhub.ai/kit-the-fox/agentsmint",
    "owner": "kit-the-fox",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}