Tokenomist unlock analysis
Skill tokenomist-ai/tokenomist-cli/skills/tokenomist-unlock-analysis
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-unlock-analysisAssembled 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
Analyze token unlock events — upcoming unlocks, historical events, and allocation breakdowns. Use when checking unlock impact on market cap or reviewing unlock schedules.
SKILL.md
5.0 KB, as published. Nobody here has run it
Skill: Unlock Analysis
Analyze token unlock events — upcoming unlocks, historical events, and allocation breakdowns.
When to use
When you need to check upcoming token unlocks, assess unlock impact on market cap, or review historical unlock events for a specific token.
Commands
List all unlock events (grouped by token)
tok unlock list --output json
Options:
| Option | Description |
|---|---|
--min-market-cap <value> | Minimum market cap |
--min-released-percentage <value> | Minimum released percentage |
--min-unlock-date <date> | Min unlock date (YYYY-MM-DD) |
--max-unlock-date <date> | Max unlock date (YYYY-MM-DD) |
--min-total-unlock-amount <value> | Minimum total unlock amount |
--min-value-to-market-cap <value> | Min value-to-market-cap ratio |
--standard-allocation <names> | Filter by allocation (comma-separated) |
--page <number> | Page number |
--page-size <number> | Items per page |
tok unlock list --min-market-cap 1000000 --min-unlock-date 2025-01-01 --max-unlock-date 2025-12-31
tok unlock list --min-value-to-market-cap 0.01 --standard-allocation "privateInvestors,founderTeam"
Available --standard-allocation values: community, founderTeam, privateInvestors, publicInvestors, others, reserve (comma-separated for multiple).
Get upcoming unlocks (next event per token)
tok unlock upcoming --output json
Options:
| Option | Description |
|---|---|
--start <date> | Start date (YYYY-MM-DD) |
--end <date> | End date (YYYY-MM-DD) |
--standard-allocation <names> | Filter by allocation (comma-separated) |
--min-market-cap <value> | Minimum market cap |
--min-released-percentage <value> | Minimum released percentage |
--min-total-unlock-amount <value> | Minimum total unlock amount |
--min-value-to-market-cap <value> | Min value-to-market-cap ratio |
--page <number> | Page number |
--page-size <number> | Items per page |
tok unlock upcoming --min-market-cap 5000000 --min-value-to-market-cap 0.01 --output json
Get unlock events for a specific token
tok unlock events <tokenId> --output json
Options:
| Option | Description |
|---|---|
--start <date> | Start date (YYYY-MM-DD) |
--end <date> | End date (YYYY-MM-DD) |
--standard-allocation <names> | Filter by allocation (comma-separated) |
--page <number> | Page number |
--page-size <number> | Items per page |
tok unlock events solana --start 2025-01-01 --end 2025-12-31 --output json
Key output fields
unlock list / upcoming:
tokenName,tokenSymbol— token identificationmarketCap— current market capreleasedPercentage— how much of total supply has been released
unlock events:
unlockDate— when the unlock happenscliffUnlocks.cliffAmount— number of tokens unlockingcliffUnlocks.cliffValue— USD value of the unlockcliffUnlocks.valueToMarketCap— unlock value as % of market capcliffUnlocks.allocationBreakdown— which allocations are unlocking
Analysis workflow
- Run
tok unlock upcoming --output jsonto find tokens with large upcoming unlocks - Filter by
valueToMarketCapto identify potentially market-moving events - Drill into specific tokens with
tok unlock events <id> --output json - Check allocation breakdown to understand who is receiving tokens (investors, team, community, etc.)
Domain Context
- Unlocked does not mean circulating. Tokenomist tracks release schedules (when tokens become available), not on-chain transfers. Tokens can be unlocked but still held by the team, locked in DeFi, or otherwise not on the open market.
- Schedules may include assumptions — the allocation breakdown can help assess confidence in the schedule.
valueToMarketCapis a key metric: unlocks representing >1% of market cap may be market-moving events.
Workflow
- Use
tok token list --output jsonfirst to find the token ID if you don't know it. - Chain with
tok emission daily <id>for a complete unlock + emission picture. - Cross-reference with
tok allocation detail <id>to understand which groups (team, investors, community) are unlocking. - Use
tok fundraising detail <id>to see what price investors paid — compare with current price to assess sell pressure.
Output Size
The unlock list command can return hundreds of events. Use date and market cap filters to narrow results: --min-market-cap, --min-unlock-date, --max-unlock-date.