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.
npx skills add LuuOW/meridian-mcp --skill tokenomicsgit clone --depth 1 https://github.com/LuuOW/meridian-mcpWrote 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.
[](https://agentmods.dev/skills/luuow/meridian-mcp/tokenomics)<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>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.
| Model | Per session | Once 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 |
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.
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;
}
}
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.
- 4d ago First seen · 187 lines · 64 tokens per session scan A b033a95bb423
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.
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).
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…
starknet-defi
Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions.
starknet-defi
Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions.
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.
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…