agentsclimarketplace

Tokenomist token overview

Skill tokenomist-ai/tokenomist-cli/skills/tokenomist-token-overview

CLI and AI agent skills for the Tokenomist crypto data API: token unlocks, vesting, emissions, allocations, fundraising, burns and buybacks.

Install
npx -y skills add tokenomist-ai/tokenomist-cli --skill tokenomist-token-overview

Assembled 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 a summary list of all tracked tokens with market data and supply info. Use when browsing tokens, comparing market caps, or finding which tokens have fundraising/burn/buyback data.

SKILL.md

2.8 KB, as published. Nobody here has run it

Skill: Token Overview

Get a summary list of all tracked tokens with market data and supply info.

When to use

When you need to browse all available tokens, compare market caps, or find which tokens have fundraising/burn/buyback data.

Commands

List all tokens

tok token list --output json

Options:

OptionDescription
--token-id <ids>Filter by token IDs (comma-separated)

Search tokens

tok token search <query> --output json

Output fields

FieldDescription
idToken ID (use in other commands)
nameToken name
symbolTicker symbol
marketCapCurrent market cap (USD), null if unavailable
circulatingSupplyCirculating supply
totalLockedAmountTokens still locked
unlockedAmountTokens already unlocked
hasStandardAllocationWhether allocation data exists
hasFundraisingWhether fundraising data exists
hasBurnWhether burn data exists
hasBuybackWhether buyback data exists

Examples

List all tokens as a table:

tok token list

Filter by specific tokens:

tok token list --token-id solana,aptos --output json

Search by name or symbol:

tok token search bitcoin --output json

Export to CSV:

tok token list --output csv > tokens.csv

Domain Context

  • Token IDs (the id field) are the primary identifier used across all commands. Use token list to discover them.
  • circulatingSupply and unlockedAmount are different concepts — unlocked tokens may not be circulating (they could be held by the team, locked in DeFi protocols, or otherwise not trading on exchanges).
  • Fields like hasStandardAllocation, hasFundraising, hasBurn, hasBuyback indicate which data types are available. Check these before querying detail commands to avoid empty results.

Workflow

  • Start here to find token slugs before using other commands.
  • Use the ID in: tok unlock events <id>, tok emission daily <id>, tok allocation detail <id>, etc.
  • Check has* boolean fields (visible in --output json) to know which data types exist for a token before querying.

Output Size

The token list command returns all tracked tokens (~200+). Use --output json and filter programmatically for large datasets.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.