Tokenomist allocation breakdown
Skill tokenomist-ai/tokenomist-cli/skills/tokenomist-allocation-breakdown
CLI and AI agent skills for the Tokenomist crypto data API: token unlocks, vesting, emissions, allocations, fundraising, burns and buybacks.
npx -y skills add tokenomist-ai/tokenomist-cli --skill tokenomist-allocation-breakdownAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 24 stars24 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Get the full allocation distribution for a token — who owns what and how much is locked vs unlocked. Use when analyzing supply distribution across team, investors, community, etc.
SKILL.md
3.2 KB, as published. Nobody here has run it
Skill: Allocation Breakdown
Get the full allocation distribution for a token — who owns what and how much is locked vs unlocked.
When to use
When you need to understand a token's supply distribution across allocations (team, investors, community, ecosystem, etc.).
Command
tok allocation detail <tokenId> --output json
Example
tok allocation detail solana --output json
Key output fields
Top-level:
name,symbol— token identificationmaxSupply— maximum token supply (null if unlimited)totalUnlockedAmount— total tokens currently unlockedtotalLockedAmount— total tokens still lockedtotalUntrackedAmount— tokens not tracked by TokenomisttotalTBDLockedAmount— tokens locked with no defined unlock schedule
Per allocation (allocations[]):
allocationName— project-specific allocation namestandardAllocationName— Tokenomist's standardized category (comparable across projects)allocationType— allocation classificationallocationAmount— total tokens in this allocationallocationUnlockedAmount— tokens unlocked from this allocationallocationLockedAmount— tokens still locked in this allocationtrackedAllocationPercentage— % of total tracked supply
Analysis workflow
- Get allocation:
tok allocation detail <id> --output json - Check
totalLockedAmountvstotalUnlockedAmountfor overall supply status - Look at individual allocations — high locked amounts in "Investor" or "Team" allocations signal future sell pressure
- Compare
standardAllocationNameacross different tokens for apples-to-apples comparison - Cross-reference with
tok unlock upcomingto see when locked tokens will release
Domain Context
- Allocations are point-in-time analyses. They reflect the current understanding of token distribution and may be updated as new information becomes available.
standardAllocationNameenables cross-project comparison — different projects may use different names for similar allocations (e.g., "Core Contributors" vs "Team"), but the standard name normalizes this.totalTBDLockedAmountrepresents tokens that are known to be locked but have no defined unlock schedule. Their classification may change as the project releases more information.
Workflow
- Use allocation data as context for unlock analysis — understanding allocations helps interpret who is receiving unlocked tokens and why it matters.
- Chain with
tok fundraising detail <id>to see investor-specific allocation details and funding round information. - Compare
allocationLockedAmountvsallocationUnlockedAmountper allocation to identify which groups still have significant locked positions.