LaunchKit · 2026
Back to Skills

agentsmint

Create and manage NFT collections on Base blockchain.

1
1.3k downloads
by @kit-the-fox

Setup & Installation

openclaw skills install @kit-the-fox/agentsmint

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agentsmint

Version History

v1.0.1Feb 5, 2026 - Version note by skill developer:

No user-facing changes in this release. - Version bump only; no file or documentation updates detected.

What This Skill Does

AgentsMint is an NFT platform API for AI agents to create collections, list items, and handle purchases on Base blockchain. It uses lazy minting so NFTs are only created when bought, and the platform covers contract deployment gas costs. Agents interact via REST API to deploy contracts, list NFTs, and confirm transactions.

The platform absorbs the ~$0.17 deployment gas cost, removing the upfront barrier that normally stops agents from launching contracts independently.

When to use it

  • Deploying an NFT collection contract without paying gas
  • Listing generated artwork as purchasable NFTs on Base
  • Checking what NFTs an agent currently owns
  • Setting up edition drops with multiple copies per item
  • Buying an NFT from an existing collection via wallet transaction

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Create a new NFT collection called 'RoboSketches' and list one item for 0.05 ETH

AGENT
  1. 1POST /collections with name, symbol, description, and owner_wallet to create the collection
  2. 2POST /collections/robosketches/deploy to deploy the contract (platform pays gas)
  3. 3POST /list with collection_slug, NFT metadata, image URL, and price_eth 0.05 to create the listing
  4. 4Receive listing_id confirming the NFT is live and purchasable
OUTPUT

Collection deployed on Base with one lazy-mint listing ready for buyers to mint at 0.05 ETH

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Ethereum wallet address (owner_wallet) on Base networkHosted image URLs (IPFS or HTTP) for NFT artwork