Agent skills
npx skills add https://github.com/duneanalytics/skills --skill simInstale esta skill com a CLI e comece a usar o fluxo de trabalho SKILL.md em seu espaço de trabalho.
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):
skills/ matching your skill nameSKILL.md with required frontmatter:---
name: your-skill-name
description: What the skill does and when to use it.
metadata:
author: duneanalytics
version: "1.0"
---
references/ to keep SKILL.md focusedSee the Agent Skills specification for the full format reference.
MIT -- see LICENSE for details.