Built-in Skills
OwliaBot includes several skills to get you started.
crypto-price
Section titled “crypto-price”Query cryptocurrency prices from CoinGecko.
Tool: crypto-price:get_price
Section titled “Tool: crypto-price:get_price”What's the current price of bitcoin?Get ETH price in EURParameters:
coin(required): Coin ID (e.g., bitcoin, ethereum, solana)currency: Target currency (default: usd)
No API key required.
Example Response
Section titled “Example Response”{ "success": true, "data": { "coin": "bitcoin", "currency": "usd", "price": 98432.50, "timestamp": "2026-01-27T10:00:00Z" }}crypto-balance
Section titled “crypto-balance”Query wallet balances across multiple chains.
Tool: crypto-balance:get_balance
Section titled “Tool: crypto-balance:get_balance”Check balance of 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on ethereumWhat's my wallet balance on polygon?Parameters:
address(required): Wallet address (0x…)chain(required): ethereum, polygon, arbitrum, or base
Requires: ALCHEMY_API_KEY environment variable.
- Get an API key from Alchemy
- Set the environment variable:
export ALCHEMY_API_KEY="your-key-here"Example Response
Section titled “Example Response”{ "success": true, "data": { "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045", "chain": "ethereum", "balance": "1234.567890", "balanceWei": "1234567890000000000000", "symbol": "ETH" }}Adding More Skills
Section titled “Adding More Skills”Want more functionality? You can:
- Create your own — See Creating Skills
- Install from community — Coming soon
Skill Ideas
Section titled “Skill Ideas”- dex-swap — Execute swaps on Uniswap/SushiSwap
- nft-lookup — Query NFT metadata and ownership
- gas-tracker — Monitor gas prices across chains
- portfolio — Track your total portfolio value
- alerts — Set price/balance alerts