← 返回 Skills 市场
Agentsmint
作者
kit-the-fox
· GitHub ↗
· v1.0.1
1576
总下载
1
收藏
2
当前安装
3
版本数
在 OpenClaw 中安装
/install 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.
使用说明 (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:
- 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)
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agentsmint - 安装完成后,直接呼叫该 Skill 的名称或使用
/agentsmint触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1576 次。
如何安装 Agentsmint?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agentsmint」即可一键安装,无需额外配置。
Agentsmint 是免费的吗?
是的,Agentsmint 完全免费(开源免费),可自由下载、安装和使用。
Agentsmint 支持哪些平台?
Agentsmint 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agentsmint?
由 kit-the-fox(@kit-the-fox)开发并维护,当前版本 v1.0.1。
推荐 Skills