nft-standards
nft standards
What it does
- Creating NFT collections (art, gaming, collectibles)
- Implementing marketplace functionality
- Building on-chain or off-chain metadata
- Creating soulbound tokens (non-transferable)
- Implementing royalties and revenue sharing
- Developing dynamic/evolving NFTs
Requirements & configuration
- ERC-721 (Non-Fungible Token Standard)
- import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
- import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
- require(quantity > 0 && quantity <= MAXPERMINT, "Invalid quantity");
- require(tokenIds.current() + quantity <= MAXSUPPLY, "Exceeds max supply");
Derived from the skill's own SKILL.md documentation · extracted 2026-07-23
nft-standards FAQ
What does the nft-standards skill do?
Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems. Creating NFT collections (art, gaming, collectibles) Implementing marketplace functionality
What does nft-standards require?
ERC-721 (Non-Fungible Token Standard) import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; require(quantity > 0 && quantity <= MAXPERMINT, "Invalid quantity"); require(tokenIds.current() + quantity <= MAXSUPPLY, "Exceeds max supply");
How do I install nft-standards?
Run: npx -y skills add https://github.com/wshobson/agents --skill nft-standards --agent claude-code — the source lives at github.com/wshobson/agents.
Maintain nft-standards?
Let people know it's listed here — add the badge (live metrics, light/dark aware) or a plain link to your README or docs.
[](https://getagentictools.com/skills/wshobson-agents-nft-standards?ref=badge) npx agentictools info skills/wshobson-agents-nft-standards The second line is the CLI lookup for this page — handy in READMEs and docs.