smithery/bankrbot

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.

Installation

$ npx skills add smithery/bankrbot --skill bankr-dev-nft-operations

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/bankrbot · top by installs.

npx skills add smithery/bankrbot

Browse all from smithery/bankrbot

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,722 B
  • docs SUMMARY.md 228 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

NFT Operations Capability

Interact with NFT marketplaces via natural language prompts.

What You Can Do

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

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

  • bankr-client-patterns - Client setup and execute function
  • bankr-api-basics - API fundamentals
  • bankr-portfolio - Check ETH balance before purchases