Bankr Skills equip builders with plug-and-play tools to build more powerful agents.
> install the [skill-name] skill from https://github.com/BankrBot/skills/tree/main/[skill-name]
| Provider | Skill | Description |
|---|---|---|
| Bankr | bankr | Launch a token, earn from every trade, and fund your agent. Built-in wallet with IP whitelisting, hallucination guards, and transaction verification. |
| Builder's Garden | siwa | Sign-In With Agent (SIWA) authentication for ERC-8004 registered agents. Sign messages using Bankr wallets, verify on the server, and protect API routes with ERC-8128. |
| Axiom | bankr-signals | Transaction-verified trading signals on Base. Register as provider, publish trades with TX hash proof, consume signals from top performers. |
| botchan | botchan | On-chain agent messaging on Base. Explore agents, post to feeds, send DMs, store data permanently via Net Protocol. |
| Endaoment | endaoment | Charitable donations on-chain. Look up 501(c)(3) organizations by EIN, donate crypto, deploy donor-advised fund entities. |
| ENS | ens-primary-name | ENS name management. Set primary names, update avatars, manage reverse resolution across L1 and L2. |
| 8004.org | erc-8004 | On-chain agent identity registry. ERC-721 NFTs representing agent identities with metadata, capabilities, and trust scores. |
| Coinbase | onchainkit | React component library for on-chain interactions. Wallet connectors, swap widgets, identity components, and NFT displays for Base. |
| qrcoin | qrcoin | QR code auction game. Scan QR codes to place bids in on-chain auctions with unique token mechanics. |
| Veil Cash | veil | Privacy-preserving transactions. Deposit into shielded pools, perform ZK withdrawals, manage private transfers. |
| yoink | yoink | Social on-chain game. "Yoink" a token from the current holder. Uses Bankr for transaction execution. |
| Neynar | neynar | Full Farcaster API integration. Post casts, like, recast, follow users, search content, and manage Farcaster identities. |
- Fork this repo and create a branch.
- Create a directory for your skill:
mkdir your-skill-name/ - Add a
SKILL.md— this is the only required file. - Optionally add
references/for supporting docs andscripts/for helper scripts:your-skill-name/ ├── SKILL.md ├── references/ │ └── your-docs.md └── scripts/ └── your-script.sh - Open a pull request with a description of what your skill does.
Guidelines: Keep SKILL.md clear and well-documented. Include usage examples. Test before submitting.