install
source · Clone the upstream repo
git clone https://github.com/TermiX-official/cryptoclaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TermiX-official/cryptoclaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/nft-manager" ~/.claude/skills/termix-official-cryptoclaw-nft-manager && rm -rf "$T"
manifest:
skills/nft-manager/SKILL.mdsource content
NFT Manager Skill
View, transfer, and manage NFTs (ERC721 and ERC1155).
Overview
Manage NFT collections and individual tokens across EVM chains. View metadata, transfer ownership, and check NFT holdings.
Capabilities
- View NFT: Get metadata, image URI, owner for any NFT
- Transfer NFT: Send an NFT to another address
- List owned NFTs: Check NFT holdings for a wallet
- Collection info: Get collection name, symbol, floor data
Tools Used
- Fetch NFT metadata (ERC721)get_nft_info
- Transfer ERC721 NFTtransfer_nft
- Transfer ERC1155 tokenstransfer_erc1155
- Check ERC1155 balancesget_erc20_balance
- Query custom NFT contract functionsread_contract
Security Rules
- ALWAYS confirm NFT transfers with token ID and recipient
- Show the NFT name/image before transfer to prevent mistakes
- Warn about sending NFTs to contracts that may not support them
- Use safeTransferFrom when possible
Example Interactions
User: "Show me NFT #42 from Bored Apes" Action: Query
get_nft_info with BAYC contract and token ID 42
User: "Send my NFT to 0x..." Action: Confirm which NFT, show details, then use
transfer_nft
User: "What NFTs do I own on Polygon?" Action: Query known NFT contracts on Polygon for active wallet balance