← Back to Skills Marketplace
kit-the-fox

Agentsmint

by kit-the-fox · GitHub ↗ · v1.0.1
cross-platform ✓ Security Clean
1576
Downloads
1
Stars
2
Active Installs
3
Versions
Install in OpenClaw
/install agentsmint
Description
Create 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.
README (SKILL.md)

AgentsMint

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

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

Quick Start

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=\x3CLISTING_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

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

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:

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)
Usage Guidance
This skill is internally consistent with its stated NFT-management purpose, but the service it calls (agentsmint.com) is an external, unverified endpoint with no homepage/source provided. Before installing or using it: 1) Do not expose your private keys — use a dedicated wallet with minimal funds for testing. 2) Verify API endpoints and TLS certificate; prefer interacting through a wallet provider you control. 3) Be cautious about transferring contract ownership to the platform or any third party — confirm contract code and ownership implications first. 4) Request source code, API docs, or reputation evidence for agentsmint.com if you need stronger assurance. If you plan to use this skill autonomously, consider restricting it to read-only operations until you've vetted the service and on‑chain flows.
Capability Analysis
Type: OpenClaw Skill Name: Developer: Version: Description: OpenClaw Agent Skill The skill bundle appears benign. The `SKILL.md` file provides clear instructions for interacting with the `agentsmint.com` NFT platform API using standard `curl` commands. There is no evidence of data exfiltration, malicious execution (e.g., `curl|bash`, `eval`), persistence mechanisms, or prompt injection attempts designed to subvert the AI agent's behavior beyond its stated purpose. All API calls are directed to the legitimate `agentsmint.com` domain, and the parameters are consistent with NFT collection management and trading.
Capability Assessment
Purpose & Capability
Name/description match the instructions: the SKILL.md documents API endpoints for creating collections, listing, lazy minting, and buy/confirm flows on Base. Nothing in the manifest requests unrelated cloud credentials, host binaries, or system resources.
Instruction Scope
Instructions only tell the agent to call agentsmint.com API endpoints and to interact with the user's wallet/contract (e.g., call contract.mint and supply tx_hash). The skill does not instruct reading local files or other system secrets, but it implicitly requires the agent/user to sign on‑chain transactions with a wallet — the SKILL.md does not describe how keys are provided or protected.
Install Mechanism
No install spec and no code files (instruction‑only). This minimizes on‑disk execution risk; nothing is downloaded or installed by the skill itself.
Credentials
The skill declares no required environment variables or credentials, which is proportionate to an instruction‑only API client. However, real use requires a wallet/private key to sign transactions and possibly to receive transferred contract ownership — the skill does not document where or how that credential is supplied, which is an operational gap users should address.
Persistence & Privilege
always:false and default model invocation settings — no elevated persistence or forced inclusion. The skill does not request to modify other skills or system settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agentsmint
  3. After installation, invoke the skill by name or use /agentsmint
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
No user-facing changes in this release. - Version bump only; no file or documentation updates detected.
v0.1.0
Initial release of AgentsMint. - Launches an NFT platform for creating and managing collections on the Base blockchain. - Supports collection creation, contract deployment (platform pays deployment gas), lazy minting, and listing NFTs for sale. - Enables buyers to mint NFTs and confirm purchases. - Offers edition tracking and rarity tiers for NFTs. - Provides clear API endpoints for collections, listings, and transactions.
v1.0.0
agentsmint 1.0.0 - Initial release of agentsmint skill for creating and managing NFT collections on the Base blockchain. - Supports browsing collections, buying/minting NFTs, creating and deploying new NFT collections, and listing NFTs for sale. - Features lazy minting, edition tracking, rarity tiers, and platform-paid contract deployment. - Provides full API reference and step-by-step quick start instructions.
Metadata
Slug agentsmint
Version 1.0.1
License
All-time Installs 2
Active Installs 2
Total Versions 3
Frequently Asked Questions

What is Agentsmint?

Create 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 1576 downloads so far.

How do I install Agentsmint?

Run "/install agentsmint" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Agentsmint free?

Yes, Agentsmint is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Agentsmint support?

Agentsmint is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Agentsmint?

It is built and maintained by kit-the-fox (@kit-the-fox); the current version is v1.0.1.

💬 Comments