$npx -y skills add basezh/agent-skills-on-base --skill bankrBankr Skills equip builders with plug-and-play tools to build more powerful agents. Includes Bankr (launch tokens, earn trading fees, built-in wallet with safeguards), SIWA (agent authentication), Bankr Signals (verified trading signals), Botchan (on-chain messaging), ERC-8004 (a
| 1 | # Bankr Skills. Build your agent. |
| 2 | |
| 3 | Bankr Skills equip builders with plug-and-play tools to build more powerful agents. |
| 4 | |
| 5 | ## Install |
| 6 | |
| 7 | ``` |
| 8 | > install the [skill-name] skill from https://github.com/BankrBot/skills/tree/main/[skill-name] |
| 9 | ``` |
| 10 | |
| 11 | ## Available Skills |
| 12 | |
| 13 | | Provider | Skill | Description | |
| 14 | | --- | --- | --- | |
| 15 | | [Bankr](https://bankr.bot) | [bankr](bankr/) | Launch a token, earn from every trade, and fund your agent. Built-in wallet with IP whitelisting, hallucination guards, and transaction verification. | |
| 16 | | [Builder's Garden](https://builders.garden) | [siwa](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. | |
| 17 | | [Axiom](https://clawbots.org) | [bankr-signals](bankr-signals/) | Transaction-verified trading signals on Base. Register as provider, publish trades with TX hash proof, consume signals from top performers. | |
| 18 | | botchan | [botchan](botchan/) | On-chain agent messaging on Base. Explore agents, post to feeds, send DMs, store data permanently via Net Protocol. | |
| 19 | | [Endaoment](https://endaoment.org) | [endaoment](endaoment/) | Charitable donations on-chain. Look up 501(c)(3) organizations by EIN, donate crypto, deploy donor-advised fund entities. | |
| 20 | | [ENS](https://ens.domains) | [ens-primary-name](ens-primary-name/) | ENS name management. Set primary names, update avatars, manage reverse resolution across L1 and L2. | |
| 21 | | [8004.org](https://8004.org) | [erc-8004](erc-8004/) | On-chain agent identity registry. ERC-721 NFTs representing agent identities with metadata, capabilities, and trust scores. | |
| 22 | | [Coinbase](https://onchainkit.xyz) | [onchainkit](onchainkit/) | React component library for on-chain interactions. Wallet connectors, swap widgets, identity components, and NFT displays for Base. | |
| 23 | | [qrcoin](https://qrcoin.fun) | [qrcoin](qrcoin/) | QR code auction game. Scan QR codes to place bids in on-chain auctions with unique token mechanics. | |
| 24 | | [Veil Cash](https://veil.cash) | [veil](veil/) | Privacy-preserving transactions. Deposit into shielded pools, perform ZK withdrawals, manage private transfers. | |
| 25 | | yoink | [yoink](yoink/) | Social on-chain game. "Yoink" a token from the current holder. Uses Bankr for transaction execution. | |
| 26 | | [Neynar](https://neynar.com) | [neynar](neynar/) | Full Farcaster API integration. Post casts, like, recast, follow users, search content, and manage Farcaster identities. | |
| 27 | | [Hydrex](https://hydrex.fi) | [hydrex](hydrex/) | Liquidity pools on Base. Lock HYDX for voting power, vote on pool strategies, deposit single-sided liquidity into auto-managed vaults, and claim oHYDX rewards. | |
| 28 | |
| 29 | ## Adding a Skill |
| 30 | |
| 31 | 1. Fork this repo and create a branch. |
| 32 | 2. Create a directory for your skill: |
| 33 | ``` |
| 34 | mkdir your-skill-name/ |
| 35 | ``` |
| 36 | 3. Add a `SKILL.md` — this is the only required file. |
| 37 | 4. Optionally add `references/` for supporting docs and `scripts/` for helper scripts: |
| 38 | ``` |
| 39 | your-skill-name/ |
| 40 | ├── SKILL.md |
| 41 | ├── references/ |
| 42 | │ └── your-docs.md |
| 43 | └── scripts/ |
| 44 | └── your-script.sh |
| 45 | ``` |
| 46 | 5. Open a pull request with a description of what your skill does. |
| 47 | |
| 48 | **Guidelines:** Keep `SKILL.md` clear and well-documented. Include usage examples. Test before submitting. |