A Claude Code skill that answers questions about the Sky Ecosystem by pulling from five live sources:
- Sky Atlas - The official governance rulebook (GitHub)
- Sky Forum - Community discussions, proposals, and announcements (forum.sky.money)
- info.sky.money - Live protocol data, metrics, and stats (info.sky.money)
- Smart Contracts - On-chain contract ABIs and source code via Chainlog + Etherscan
- Laniakea Docs - Infrastructure architecture, capital flows, risk framework, settlement, agents, and roadmap (GitHub)
The skill automatically picks the right source(s) based on your question.
git clone https://github.com/adamgoth/sky-eco-skill ~/.claude/skills/skyThis is the recommended approach — you can update later with git pull:
cd ~/.claude/skills/sky && git pullmkdir -p ~/.claude/skills/sky && curl -sL https://raw.githubusercontent.com/adamgoth/sky-eco-skill/main/SKILL.md -o ~/.claude/skills/sky/SKILL.md- Create the directory
~/.claude/skills/sky/ - Copy the contents of
SKILL.mdinto~/.claude/skills/sky/SKILL.md
Once installed, use the /sky command in Claude Code:
/sky What is the Sky Atlas?
/sky What are the latest discussions on the forum?
/sky What's the current savings APY?
/sky How does the USDS contract work?
/sky What is the PAU pattern in Laniakea?
/sky Explain the Laniakea risk framework
- Claude Code
- For info.sky.money queries:
agent-browser(the site is behind Cloudflare, so the skill uses a headed browser to fetch data)npm install -g agent-browser # all platforms brew install agent-browser # macOS
- For smart contract queries: an Etherscan API key (free). Add to your shell profile (
~/.zshrcor~/.bashrc):Then restart your terminal or runexport ETHERSCAN_V2_API_KEY=your_key_heresource ~/.zshrc.
The skill delegates heavy data fetches to subagents to keep the main context window clean. Large documents like the Sky Atlas and Solidity source code are fetched and analyzed in isolated subagent contexts — only concise findings are returned to the main conversation. Multiple sources are fetched in parallel when needed.
| Source | What it contains | How the skill accesses it |
|---|---|---|
| Sky Atlas | Governance rules, roles, processes | Subagent fetches raw markdown from GitHub |
| Sky Forum | Community discussions, proposals | Subagent queries Discourse JSON API |
| info.sky.money | Live protocol metrics, TVL, rates | Browser automation (Cloudflare-protected) |
| Smart Contracts | Contract ABIs, source code, interfaces | Subagent queries Chainlog + Etherscan API |
| Laniakea Docs | Infrastructure architecture, risk, settlement, agents, roadmap | Subagent fetches raw markdown from GitHub |