Dune Skills
March 24, 2026 · View on GitHub
A collection of Agent Skills for working with Dune -- the leading blockchain data platform.
Skills are reusable capabilities for AI coding agents. They provide procedural knowledge that helps agents query blockchain data, discover datasets, manage queries, and more using Dune's tools.
Installing
These skills work with any agent that supports the Agent Skills standard.
npx skills
Install using the npx skills CLI:
npx skills add duneanalytics/skills
Cursor
Add via Settings > Rules > Add Rule > Remote Rule (Github) with duneanalytics/skills.
Manual install
Clone this repo and copy the skill folders into the appropriate directory for your agent:
| Agent | Skill Directory | Docs |
|---|---|---|
| Claude Code | ~/.claude/skills/ | docs |
| Cursor | ~/.cursor/skills/ | docs |
| OpenCode | ~/.config/opencode/skills/ | docs |
| OpenAI Codex | ~/.codex/skills/ | docs |
Skills
Skills are contextual and auto-loaded based on your conversation. When a request matches a skill's triggers, the agent loads and applies the relevant skill.
| Skill | Description |
|---|---|
| dune | Query blockchain data, search datasets, manage queries, and monitor usage via the Dune CLI |
| sim | Real-time blockchain wallet and token lookups via the Dune Sim API (balances, activity, transactions, NFTs, DeFi positions, token holders) |
Skill Structure
Each skill follows the Agent Skills specification:
skill-name/
├── SKILL.md # Required. Instructions for the agent (with YAML frontmatter)
├── references/ # Optional. Supporting documentation loaded on demand
├── scripts/ # Optional. Executable scripts the agent can run
└── assets/ # Optional. Static resources (templates, schemas, etc.)
SKILL.md-- The entry point. Contains YAML frontmatter (name,description) and markdown instructions.references/-- Detailed reference docs loaded only when needed, keeping context usage efficient.scripts/-- Automation scripts the agent can execute.assets/-- Static files like templates or lookup tables.
Adding a New Skill
To add a new skill (e.g., sim, dbt):
- Create a new directory under
skills/matching your skill name - Add a
SKILL.mdwith required frontmatter:--- name: your-skill-name description: What the skill does and when to use it. metadata: author: duneanalytics version: "1.0" --- - Add instructions in the markdown body
- Put detailed reference material in
references/to keepSKILL.mdfocused - Update this README's skills table
See the Agent Skills specification for the full format reference.
Resources
License
MIT -- see LICENSE for details.