Agent Skills that provides access to Baselight — a data platform with thousands of queryable public datasets covering crypto/blockchain, finance, demographics, climate, healthcare, sports, and more.
When you ask a data question, your agent will search Baselight's catalog, inspect the relevant table schema, and query it directly using DuckDB SQL — returning actual data instead of web search snippets.
Example triggers:
- "Compare GDP across countries"
- "Show me happiness score trends"
- "Query
@owid.happiness.owid_happiness_2"
npx skills add baselightdb/skills --skill baselight -g
Copy the skill into your agent's skills directory. Example for Claude Code:
cp -r skills/baselight ~/.claude/skills/baselightIt should pick it up automatically on the next session.
You need a Baselight API key:
- Sign up at baselight.app
- Go to Account Settings → Integrations → Generate New API Key
- Save it to
~/.baselight/credentials:
mkdir -p ~/.baselight
echo 'BASELIGHT_API_KEY=your-key-here' >> ~/.baselight/credentials
chmod 600 ~/.baselight/credentialsskills/baselight/
├── SKILL.md # Skill definition and instructions for Claude
├── scripts/
│ └── baselight.py # Python MCP client (no extra deps beyond requests)
└── references/
└── sql-patterns.md # DuckDB SQL reference and examples
Python 3 with requests:
pip install requestsMIT