Claude-skill-registry Bankr Dev - NFT Operations
This skill should be used when building NFT marketplace integrations, implementing collection browsing, or adding floor price tracking. Covers OpenSea integration, floor prices, and NFT purchases.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/bankr-nft-operations" ~/.claude/skills/majiayu000-claude-skill-registry-bankr-dev-nft-operations && rm -rf "$T"
manifest:
skills/data/bankr-nft-operations/SKILL.mdsource content
NFT Operations Capability
Interact with NFT marketplaces via natural language prompts.
What You Can Do
| Operation | Example Prompt |
|---|---|
| Search collection | |
| Trending NFTs | |
| Floor price | |
| Cheapest listings | |
| Listings under price | |
| Buy floor | |
| Buy by URL | |
| Buy with budget | |
| View holdings | |
| Holdings by chain | |
Prompt Patterns
What's the floor price for {collection}? Buy the floor NFT from {collection} Show the {count} cheapest NFTs in {collection} Buy this NFT: {opensea_url} Show my NFTs [on {chain}]
Supported chains: Base, Ethereum, Polygon (and other EVM chains)
Usage
import { execute } from "./bankr-client"; // Check floor price await execute("What's the floor price for Pudgy Penguins?"); // Buy floor NFT await execute("Buy the floor NFT from Azuki"); // View holdings await execute("Show my NFTs on Ethereum");
Related Skills
- Client setup and execute functionbankr-client-patterns
- API fundamentalsbankr-api-basics
- Check ETH balance before purchasesbankr-portfolio