From bankr-agent-dev
Handles NFT operations via natural language: query floor prices, browse collections, list cheapest NFTs, execute purchases on OpenSea across EVM chains like Ethereum, Base, Polygon.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bankr-agent-dev:bankr-nft-operationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Interact with NFT marketplaces via natural language prompts.
Interact with NFT marketplaces via natural language prompts.
| Operation | Example Prompt |
|---|---|
| Search collection | Find NFTs from Pudgy Penguins |
| Trending NFTs | Show me trending NFT collections |
| Floor price | What's the floor price for Azuki? |
| Cheapest listings | Show the 5 cheapest NFTs in BAYC |
| Listings under price | Find NFT listings under 5 ETH in CryptoPunks |
| Buy floor | Buy the floor NFT from Pudgy Penguins |
| Buy by URL | Buy this NFT: https://opensea.io/... |
| Buy with budget | Buy an Azuki NFT under 10 ETH |
| View holdings | Show my NFTs |
| Holdings by chain | Show my NFTs on Base |
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)
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");
bankr-client-patterns - Client setup and execute functionbankr-api-basics - API fundamentalsbankr-portfolio - Check ETH balance before purchasesnpx claudepluginhub bankrbot/claude-plugins --plugin bankr-agent-devBrowse, purchase, and manage NFTs via OpenSea on Base, Ethereum, Polygon chains. Search collections, view listings and holdings, buy, transfer, mint; resolves names like BAYC.
Queries OpenSea marketplace data (listings, offers, sales, floor prices, drops, traits) and executes Seaport trades across Ethereum, Base, Arbitrum, Optimism, Polygon, and more.
Queries multi-chain token balances, portfolio values, and NFT holdings using Bankr SDK via natural language prompts. Supports Base, Ethereum, Polygon, Solana for wallet checks and asset overviews.