tokenomics

tokenomics is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 64 tokens per session (2,395 once invoked), scanned A, original, MIT.

A guide to designing the economic systems behind crypto tokens and decentralised finance applications.

In plain words
What is it for?
It is for modelling emissions, vesting, bonding curves, liquidity pools, governance tokens, staking rewards, token sinks, and distribution inequality.
Why use it?
It helps evaluate how token supply, rewards, ownership, and incentives may affect a blockchain protocol.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for modelling emissions, vesting, bonding curves, liquidity pools, governance tokens, staking rewards, token sinks, and distribution inequality.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/tokenomics
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LuuOW/meridian-mcp --skill tokenomics
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tokenomics

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/tokenomics.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/tokenomics)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/tokenomics"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/tokenomics.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,395 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00064 $0.02395
Opus 5 $0.00032 $0.01197
Sonnet 5 $0.00013 $0.00479
Haiku 4.5 $0.00006 $0.00239

Measured 4d ago against content hash b033a95bb423, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

tokenomics scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/tokenomics/SKILL.md · 187 lines

How it starts

The opening of the file, as written. The whole thing — 187 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Tokenomics

Deep authority on token economic system design for crypto protocols: supply and emission modeling, vesting structures, bonding curves, liquidity bootstrapping, veToken governance models, staking mechanics, and incentive alignment. Use this skill when designing, analyzing, or auditing the economic layer of a blockchain protocol or DeFi application.

Core Concepts

Supply Schedule Design

A supply schedule answers: how many tokens exist at time T, and who controls them? The four canonical allocations are team/advisors (10-20%), investors (15-25%), ecosystem/treasury (30-40%), and community/public (20-40%). Every allocation should have explicit vesting.

import numpy as np
import matplotlib.pyplot as plt

def emission_schedule(months: int, initial_supply: float, target_supply: float,
                      decay_rate: float) -> np.ndarray:
    """Exponential decay emission — common for DeFi protocols."""
    t = np.arange(months)
    # Monthly emission decays geometrically
    monthly_emission = (target_supply - initial_supply) * (1 - decay_rate) * (decay_rate ** t)
    cumulative = initial_supply + np.cumsum(monthly_emission)
    return np.clip(cumulative, 0, target_supply)

# Curve-style: 43% emitted in year 1, halving roughly annually
supply = emission_schedule(months=60, initial_supply=0,
                           target_supply=1_000_000_000, decay_rate=0.85)

Key design tension: high early emissions bootstrap liquidity and users but create sell pressure. Low emissions reduce inflation but fail to attract liquidity miners. Common solution: front-load ecosystem incentives, back-load team/investor unlocks.

Vesting and Cliff Structures

Standard venture-backed token vesting: 12-month cliff, 36-month linear vest. On-chain enforcement via VestingWallet (OpenZeppelin) or custom schedules.

// Solidity vesting with cliff
contract TokenVesting {
    struct Grant {
        uint128 total;
        uint128 released;
        uint64  start;
        uint64  cliff;    // seconds after start before any tokens unlock
        uint64  duration; // total vest duration in seconds
    }

    mapping(address => Grant) public grants;

    function releasable(address beneficiary) public view returns (uint256) {
        Grant memory g = grants[beneficiary];
        if (block.timestamp < g.start + g.cliff) return 0;
        uint256 elapsed = block.timestamp - g.start;
        uint256 vested = elapsed >= g.duration
            ? g.total
            : (uint256(g.total) * elapsed) / g.duration;
        return vested - g.released;
    }
}

Read the full file on GitHub · 187 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 187 lines · 64 tokens per session scan A b033a95bb423

Subscribe to this mod's changes

tokenomics is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed 3d ago), licensed MIT. It adds 64 tokens to every session and 2,395 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

crypto-tokenomics

Tokenomics Analysis Agent — supply mechanics, unlock schedules, vesting, inflation, staking economics, distribution fairness, and token utility with Tokenomics Score (0-100).

zubair-trabzada/ai-crypto-claude · 38 tokens

wallet-cli

Operate the TypeScript TRON wallet CLI for accounts, transfers, staking, governance, contracts, signing, chain queries, and password input with wallet-cli 4.13.0. Refuse wallet passwords in argv and require the supported stdin channel. For Java REPL requests, refuse that entry and offer the TypeScript one-shot CLI…

BofAI/skills · 82 tokens

starknet-defi

Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions.

keep-starknet-strange/starknet-agentic · 41 tokens

starknet-defi

Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions.

internet-court/internet-court-skill · 41 tokens

pantheon-staking

Stake creator coins into Pantheon vaults on Base and Robinhood Chain, view staking positions, and claim monthly rewards. Use when the user mentions Pantheon, pantheonvaults, staking a creator coin for yield, or checking/claiming Pantheon vault rewards.

BankrBot/skills · 59 tokens

yield-optimization

Multi-chain yield optimization via yield.xyz (StakeKit). Discover 2,988+ yield opportunities across 75+ blockchains, build deposit/withdrawal transactions with shell scripts, and sign them with a MoonPay wallet. Use when the user wants to earn yield, find the best lending or staking rate, enter/exit a position, or…

moonpay/skills · 77 tokens