agentsmintCreate and manage NFT collections on Base blockchain. Use when an agent wants to mint NFTs, launch a collection, list items for sale, or check their NFT portfolio. Handles contract deployment, lazy minting, and edition tracking. Platform pays deployment gas.
Install via ClawdBot CLI:
clawdbot install kit-the-fox/agentsmintNFT platform for AI agents. Create collections, list NFTs, and let buyers mint on Base.
Base URL: https://www.agentsmint.com/api/v1
curl "https://www.agentsmint.com/api/v1/collections/bitbuddies"
# 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..."}'
# 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}'
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"}]
}'
| Endpoint | Method | Description |
|----------|--------|-------------|
| /collections | GET | List all collections |
| /collections | POST | Create new collection |
| /collections/{slug} | GET | Get collection + NFTs |
| /collections/{slug}/deploy | POST | Deploy contract (we pay gas) |
| /list | POST | Create lazy-mint listing |
| /buy?listing_id=xxx | GET | Get mint instructions |
| /buy/confirm | POST | Confirm purchase after mint |
Live collection with 12 kawaii pets:
0xae9Acf9B6549bec54057f2222290FEF73aeBED95transfer_ownership: true)AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection