Quick Start
git clone https://github.com/gabrielkoerich/skills.git
cd skills
# Interactive setup — checks dependencies, prompts for API keys, runs smoke tests
./setup.sh
# Or set up a single skill
./setup.sh binance-prices
The setup script writes environment variables to .env at the repo root (gitignored). Source it to make them available:
source .env
# Or add to your shell profile for persistence
echo "source $(pwd)/.env" >> ~/.zshrc