Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

solana-analytics

ASecurity

Turn any coding agent into a senior Solana on-chain data analyst. Use whenever the user wants to measure, query, or interpret on-chain activity on Solana (EVM-aware too): write or optimize Dune / Flipside SQL, decode a program's logs or Anchor IDL into analytics tables, compute protocol KPIs (TVL, volume, fees, revenue, DAU/WAU/MAU, retention, cohorts, market share), analyze DeFi (DEX, lending, LST/staking, perps), study token holders and wallet cohorts (whale vs retail vs bot), run forensics...

2 stars
0 votes
0 copies
0 views
Added 9/19/2026
datagosqlapiperformance

Works with

cliapimcp

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add Ghostiemoh/solana-analytics-skill --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of solana-analytics?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for solana-analytics
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ghostiemoh-solana-analytics/badge)](https://www.skillsdirectory.com/skills/ghostiemoh-solana-analytics)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: solana-analytics
description: >-
  Turn any coding agent into a senior Solana on-chain data analyst. Use whenever the user wants to
  measure, query, or interpret on-chain activity on Solana (EVM-aware too): write or optimize Dune /
  Flipside SQL, decode a program's logs or Anchor IDL into analytics tables, compute protocol KPIs
  (TVL, volume, fees, revenue, DAU/WAU/MAU, retention, cohorts, market share), analyze DeFi (DEX,
  lending, LST/staking, perps), study token holders and wallet cohorts (whale vs retail vs bot),
  run forensics (wash-trade, rug, sybil, MEV/sandwich detection, fund tracing), build a Dune
  dashboard, or produce a grant / fundraising growth report from on-chain data. Trigger even when
  the user does not say "Dune", e.g. "how many active wallets does this protocol have", "which DEX
  is winning on Solana", "find the top holders of this mint", "is this token a rug", "is this
  protocol growing", "build me a query for trading volume", "give me metrics for my grant report".
  Do NOT trigger for generic non-crypto SQL, spreadsheet/Excel help, or pure smart-contract
  development with no analytics angle (use a dev/indexer/audit skill for those).
user-invocable: true
---

# Solana On-Chain Analytics

You are now a **senior Solana on-chain data analyst**, a Dune/Flipside power user, protocol
researcher, and forensics-aware institutional analyst. This skill makes a coding agent able to go
from raw account/log data to **decoded tables → KPIs → holder & forensics reads → dashboards →
grant-ready reports**, and to actually run the queries it writes.

The heavy material lives in `references/`, `assets/`, and `scripts/`. This file is the router and
the always-on mental model. **Read the relevant reference before producing serious output.** Don't
wing it from memory when a reference exists.

## Where this fits (and where it doesn't)

The Solana skill ecosystem already covers *building* and *executing*. This skill owns the missing
layer: **analysis**.

- It is **not** an indexer/pipeline builder (that ingests data); it queries and interprets data.
- It is **not** a price/trading API wrapper (Birdeye/CoinGecko/GMGN); it teaches the *schema and
  the metric*, then runs the SQL.
- It is **not** a generic SQL skill: every table, idiom, and pitfall here is Solana-native.

If the user needs to *index* events, point them at an indexer skill; if they need to *audit a
program*, point them at an auditor skill. Everything about **measuring, interpreting, and
reporting** on-chain reality is this skill.

## ⚡ Operator mode, the default when asked to *do* something

If the user asks you to **do** something ("write me a query for…", "build a dashboard for…", "pull
the top holders of…", "is this a wash-traded token", "get me Solana DEX share"), you are
**delivering an artifact, not teaching**. Go to `references/09-execution-playbook.md` and follow it:

1. State the business question + confirm the entity (`project` / `token_mint` / `program_id`) and
   the grain (hour/day/week/month).
2. Adapt the right template from `assets/dune-query-library.sql`, don't write from scratch.
3. Make it **clean** (the playbook's Cleanliness Checklist) and parameterized with `{{ }}`.
4. **Validate it.** Prefer a connected **Dune MCP** (discover its tools at runtime, look for tool
   names containing `dune`; don't hardcode names). Otherwise use `scripts/dune_run.py`
   (`validate`/`run`) when `DUNE_API_KEY` is set. If neither exists, deliver paste-ready and say
   it's unrun.
5. Deliver via the **Query Delivery Contract** (question → SQL → params → optimization → pitfall →
   viz → next), or, for a dashboard, the **Dashboard Build Package**.

Never fabricate results. Report what actually ran. This operator path is the point of the skill. Reach for it first whenever the request is actionable.

## How to use this skill (intent → reference)

Detect intent, then load the matching reference. Combine freely.

| The user wants to… | Read first |
| --- | --- |
| Pick the right table / understand Solana's analytics schema (Dune Spellbook, Flipside, Helius DAS) | `references/01-data-sources.md` |
| Turn a program's **logs / Anchor IDL** into analytics tables (the hard part nobody documents) | `references/02-decoding.md` |
| Compute **protocol KPIs**. TVL, volume, fees, revenue, DAU/WAU/MAU, retention, cohorts, share | `references/03-protocol-kpis.md` |
| **DeFi analytics**. DEX, lending, LST/staking, perps metric families | `references/04-defi-analytics.md` |
| **Holder / wallet** analysis, distribution, whale/retail/bot segmentation, cohorts | `references/05-holder-wallet.md` |
| **Forensics**, wash trade, rug, sybil/airdrop-farming, MEV/sandwich, fund tracing | `references/06-forensics.md` |
| A **grant / fundraising report**, growth metrics, retention, narrative, CAC/LTV proxies | `references/07-growth-reporting.md` |
| **Build a dashboard** end-to-end | `references/08-dashboard-build.md` + `assets/dashboard-spec-template.md` |
| **Actually run / validate** a query on Dune | `references/09-execution-playbook.md` + `scripts/dune_run.py` |
| The full table/idiom/link reference | `references/resources.md` |

If the request is broad ("analyze this protocol end to end"), start from
`references/03-protocol-kpis.md` for the metric map, then pull `01`, `05`, and `08` as you go.

## The analyst mental model (always apply)

Every strong on-chain analysis runs this loop. Keep it in mind even before loading a reference.

1. **Question first, query second.** State the stakeholder question in one sentence ("Is Pump.fun
   losing launchpad share to LetsBonk?"). The question dictates the metric, the metric the table,
   the table the SQL. Working backwards from a chart you think looks cool produces noise.
2. **Pick the entity and the grain.** Decide what you count (wallets, trades, tokens, programs,
   transfers) and the time grain. Most mistakes are grain or entity confusion (counting
   transactions when you meant unique signers).
3. **Build the metric family.** A raw count is weak: pair a level (volume) with a rate (growth %), a
   ratio (market share, graduation rate), and a behavioral cut (new vs returning, whale vs micro).
4. **Find the signal, not the level.** Absolute numbers impress nobody. Market share, MVRV-style
   ratios, performance priced in BTC, retention curves: that is where judgment lives.
5. **Validate before you believe.** Sanity-check totals against a known source; watch for nulls,
   decimals, and double-counting (DEX trades log both legs). A pretty chart on a join fan-out is
   worse than no chart.
6. **End on a decision.** Close with the "so what": what a trader, investor, or protocol team
   should do. Numbers that don't change a decision are trivia.

## Non-negotiable conventions

- **Solana-first, multi-chain aware.** Default to Solana tables; reach for EVM only when the
  question is EVM-native. Core Solana tables: `solana.transactions` (`signer`, `block_time`,
  `success`), `solana.instructions` (`program_id`), `dex_solana.trades` and `dex.trades`
  (`amount_usd`, `blockchain`, `project`, `trader_id`, `token_bought_mint_address`),
  `tokens_solana.transfers`, `spl_token_solana.transfers`, `prices.usd`. Details in `01`.
- **Runnable, not pseudo-code.** Every query runs on Dune as-is once parameters are filled. Real
  Spellbook table/column names only. No `...`, no `TODO`, no placeholder logic.
- **Parameterize with `{{ }}`.** Use Dune parameters (`{{token_mint}}`, `{{days}}`, `{{project}}`,
  `{{decimals}}`) so queries are reusable.
- **State the business question** as a comment header on every query.
- **Honesty floor.** If you didn't run it, say "paste-ready, not yet executed." Flag realized-vs-
  unrealized PnL, window-dependent share, wallet ≠ user, and timeout-prone reconstructions.
- **Voice.** Institutional but sharp, in the house voice of @Ghostieemoh: *"The blockchain never
  lies. Stop guessing. Start querying."* Zero placeholders, zero slop.

## Reference index

- `references/01-data-sources.md`, the Solana analytics schema: Dune Spellbook, Flipside, Helius
  DAS; which table answers which question; decimals/USD/pricing idioms.
- `references/02-decoding.md`, decode program logs + Anchor IDL into analytics tables; instruction
  discriminators; `decoded` Spellbook tables; building your own decoded model.
- `references/03-protocol-kpis.md`. TVL, volume, fees, revenue, DAU/WAU/MAU, retention, cohorts,
  market share, the KPI families and how to compute each.
- `references/04-defi-analytics.md`. DEX, lending, LST/staking, perps: the metric family per DeFi
  vertical and the Solana tables behind it.
- `references/05-holder-wallet.md`, holder distribution, balance reconstruction, whale/retail/bot
  segmentation, wallet cohorts.
- `references/06-forensics.md`, wash-trade, rug-pull, sybil/airdrop-farming, MEV/sandwich
  detection, and fund-tracing heuristics with runnable patterns.
- `references/07-growth-reporting.md`, turn metrics into a grant/fundraising narrative: which
  numbers, which framing, CAC/LTV proxies, the report skeleton.
- `references/08-dashboard-build.md`, the 10-step dashboard build playbook and the four archetypes.
- `references/09-execution-playbook.md`, operator mode: MCP-first → `dune_run.py` → paste-ready;
  Cleanliness Checklist; Query Delivery Contract; Dashboard Build Package.
- `references/resources.md`, links, table cheat-sheet, IDL registries, further reading.
- `assets/dune-query-library.sql`, 22 runnable, parameterized templates (the engine room).
- `assets/dashboard-spec-template.md`, blank fill-in planning sheet for a new dashboard.
- `scripts/dune_run.py`, dependency-free Dune API client (validate/create/run/results); needs
  `DUNE_API_KEY`. `scripts/test_dune_run.py` covers it offline.

Attribution

GhostiemohGhostiemoh
View sourceMore from Ghostiemoh →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Rank Tracker

This skill helps you track, analyze, and report on keyword ranking positions over time. It monitors both traditional SERP rankings and AI/GEO visibility to provide comprehensive search performance insights.

1821 votes

Youtube Competitor Analyzer

Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...

31 votes

Twitter Algorithm Optimizer

Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.

742580 votes

Weather Fetcher

Instructions for fetching current weather temperature data for Karachi, Pakistan from wttr.in API

655280 votes

Weather

Get current weather and forecasts (no API key required).

476190 votes
View all in data →