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.
These skills work with any agent that supports the Agent Skills standard.
Install using the npx skills CLI:
npx skills add duneanalytics/skills
Add via Settings > Rules > Add Rule > Remote Rule (Github) with duneanalytics/skills.
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 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) |
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.
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.
MIT -- see LICENSE for details.