A Claude Code skill for designing, stress-testing, and finalizing token economic models for Solana projects — before launch.
Every Solana founder needs a tokenomics model. Most get it wrong:
- Bad vesting schedules → investor and team dump at cliff
- Emissions > value capture → death spiral
- No anti-sybil airdrop design → farmed and dumped
- No stress testing → surprised by supply shocks
There was no AI skill in the ecosystem that helped founders design tokenomics from scratch. This is it.
| Topic | File |
|---|---|
| Token supply & allocation tables | references/supply-allocation.md |
| Vesting schedules & cliff design | references/vesting.md |
| Emission curves & inflation | references/emissions.md |
| Airdrop design & anti-sybil | references/airdrop.md |
| Liquidity bootstrapping (DLMM, LBP) | references/liquidity.md |
| Streamflow on-chain config generation | references/streamflow.md |
| Supply shock & stress testing | references/stress-test.md |
git clone https://github.com/YOUR_USERNAME/solana-tokenomics-skill
cd solana-tokenomics-skill
./install.sh# Full design session
claude '/design-tokenomics'
# Stress-test existing tokenomics
claude '/stress-test-tokenomics'
# Direct agent
claude 'Use the tokenomics-architect to review my token allocation'solana-tokenomics-skill/
├── README.md
├── install.sh
├── skill/
│ ├── SKILL.md # Router — entry point
│ └── references/
│ ├── supply-allocation.md # Supply, FDV, allocation tables
│ ├── vesting.md # Cliffs, schedules, unlock events
│ ├── emissions.md # Inflation, staking rewards, burns
│ ├── airdrop.md # Anti-sybil, tiers, sizing
│ ├── liquidity.md # DLMM, LBP, POL strategies
│ ├── streamflow.md # On-chain vesting SDK config
│ └── stress-test.md # 5-test risk framework
├── agents/
│ └── tokenomics-architect.md # Opus agent for design sessions
└── commands/
├── design-tokenomics.md # /design-tokenomics command
└── stress-test.md # /stress-test-tokenomics command
MIT