Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

tokenomisttokenomist 搜索

Agent Skill

tokenomist 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

528

周安装

22

GitHub Stars

9

下载量

176
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tokenomist(tokenomist 搜索)
来源仓库:https://github.com/starchild-ai-agent/official-skills
仓库路径:skills/tokenomist
安装命令:
npx skills add https://github.com/starchild-ai-agent/official-skills --skill tokenomist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/starchild-ai-agent/official-skills --skill tokenomist

简介

用于搜索与代币经济相关的公开资料与案例。tokenomist 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据主题快速定位资源。
  • 通过 GitHub 仓库安装,具体检索逻辑请参考项目内说明文档。
  • 使用前应确认是否允许爬取外部网站及频率限制。
  • 输出结果为信息索引,需人工判断相关性与准确性。

SKILL.md

Tokenomist (Tokenomist API)

Token unlock schedules, cliff events, daily emissions, allocation breakdowns, and supply pressure analytics.

Version Policy (hard rule)

  • Token List → v4 (/v4/token/list)
  • Allocations → v2 (/v2/allocations)
  • Daily Emission → v2 (/v2/daily-emission)
  • Unlock Events → v4 (/v4/unlock/events)

Do not downgrade unless user explicitly asks.

Auth + Proxy

  • Header: x-api-key: $TOKENMIST_API_KEY
  • Base URL: https://api.tokenomist.ai
  • Uses core/http_client.py (proxied_get) — sc-proxy handles key replacement.
  • Fake key in env (e.g. fake-tokenomist-key-12345) is expected. Never treat as invalid.

Keyword → Tool Lookup

Priority rule: Specific tool wins over token_overview. If an unlock/cliff/emission keyword matches, use that specific tool — do NOT fall back to token_overview.
IntentTrigger keywords (any match)Tool⛔ NOT
Broad overview"tokenomics overview", "全面分析", "综合分析", "告诉我所有"tokenomist_token_overview4 tools separately
Allocation summary"allocation", "分配", "who holds", "谁持有", "top holders", "team allocation"tokenomist_allocations_summarytokenomist_allocations
Allocation raw"full breakdown", "raw allocation", "complete allocation data"tokenomist_allocations
Unlock/Cliff"unlock", "解锁", "cliff", "vesting", "lockup", "token release"tokenomist_unlock_eventstoken_overview
Unlock/Cliff"unlock schedule", "解锁时间表", "解锁计划", "vesting schedule"tokenomist_unlock_eventstoken_overview
Unlock/Cliff"next unlock", "when unlock", "什么时候解锁", "下一次解锁", "即将解锁"tokenomist_unlock_eventstoken_overview
Unlock/Cliff"lockup expiry", "锁定到期", "代币释放时间", "upcoming unlock"tokenomist_unlock_eventstoken_overview
Daily emission"daily emission", "每日释放", "emission rate", "daily release"tokenomist_daily_emission
Token lookup"find token", "which token id", "token id for X"tokenomist_resolve_token
Token list"list all tokens", "what tokens tracked"tokenomist_token_list

⛔ HARD LIMITS — These Rules Are Non-Negotiable

  1. **NEVER call bash after any tokenomist_* tool** — the tools return structured data directly. No post-processing with bash needed.
  2. NEVER call bash to sum, filter, or sort emission data — compute from the tool result in memory.
  3. **NEVER call more than 3 tokenomist_* tools per question** — use tokenomist_token_overview for broad questions.
  4. NEVER pass symbol string directly to granular tools — resolve first, or use tools that auto-resolve.
  5. NEVER use token_overview when unlock/cliff/emission keywords present — use the specific tool instead.

MISTAKES — Read Before Calling

❌ MISTAKE 1: Calling 4 tools for a general tokenomics question

User: "ARB 的 tokenomics 情况"
❌ WRONG: tokenomist_resolve_token → tokenomist_allocations → tokenomist_daily_emission → tokenomist_unlock_events
✅ RIGHT: tokenomist_token_overview(query="ARB")  ← does all 4 in one call

❌ MISTAKE 2: Using allocations instead of allocations_summary

User: "ARB 的代币分配"
❌ WRONG: tokenomist_allocations(token_id="arb")  ← returns raw verbose data
✅ RIGHT: tokenomist_allocations_summary(query="ARB")  ← concise, auto-resolves, has quality flags

Only use tokenomist_allocations when user explicitly asks for raw/full data or debugging.

❌ MISTAKE 3: Passing symbol directly without resolving

❌ WRONG: tokenomist_unlock_events(token_id="ARB")  ← might not match API's internal ID
✅ RIGHT: tokenomist_resolve_token(query="ARB") → get canonical token_id → then call events

Exception: tokenomist_token_overview and tokenomist_allocations_summary auto-resolve — no need to call resolve first.

❌ MISTAKE 4: Forgetting date format

❌ WRONG: tokenomist_unlock_events(token_id="arb", start="2025/01/01")
✅ RIGHT: tokenomist_unlock_events(token_id="arb", start="2025-01-01")  ← YYYY-MM-DD only

❌ MISTAKE 5: Calling bash after tokenomist tools

User: "ARB 本月解锁总量是多少?"
❌ WRONG: tokenomist_daily_emission(token_id="arb") → bash("python3 -c 'import json; ...'")
✅ RIGHT: tokenomist_daily_emission(token_id="arb")  ← sum the values directly from result, no bash

Rule: tokenomist tools return structured JSON. Sum/filter/sort IN YOUR HEAD. Never spawn bash to process the result.

❌ MISTAKE 6: Using token_overview for unlock/cliff-specific questions

Any question containing unlock/cliff intent → tokenomist_unlock_events, never token_overview

User: "ARB 下一个 cliff 解锁事件是什么时候?"
❌ WRONG: tokenomist_token_overview(query="ARB")  ← ignores specific intent
✅ RIGHT: tokenomist_resolve_token(query="ARB") → tokenomist_unlock_events(token_id=..., start="today")

User: "APT 的解锁时间表"
❌ WRONG: tokenomist_token_overview(query="APT")
✅ RIGHT: tokenomist_resolve_token(query="APT") → tokenomist_unlock_events(token_id=...)

User: "SUI 什么时候解锁?"
❌ WRONG: tokenomist_token_overview(query="SUI")
✅ RIGHT: tokenomist_resolve_token(query="SUI") → tokenomist_unlock_events(token_id=...)

Full keyword list → always triggers tokenomist_unlock_events:

  • English: unlock, cliff, vesting, lockup, token release, unlock schedule, next unlock, upcoming unlock, lockup expiry, when does X unlock
  • Chinese: 解锁, cliff, 解锁时间表, 解锁计划, 什么时候解锁, 下一次解锁, 即将解锁, 锁定到期, 代币释放时间
Generalisation note: Even if the question seems broad ("tell me about ARB unlocks"), as long as "unlock" is in the question, use tokenomist_unlock_events — not token_overview.

❌ MISTAKE 7: Using token_overview then verifying with bash

User: "给我 ARB 的 tokenomics 概览"
❌ WRONG: tokenomist_token_overview(query="ARB") → bash("echo checking...") → bash("python3 ...")
✅ RIGHT: tokenomist_token_overview(query="ARB")  ← STOP. Format the result and reply. No bash verification.

❌ MISTAKE 8: Confusing tokenomist with coingecko for supply data

User: "ARB 的 circulating supply"
❌ WRONG: tokenomist_*  ← Tokenomist does unlocks/emissions, not live supply
✅ RIGHT: coin_price(ids="arbitrum") or cg_coin_data(id="arbitrum")  ← CoinGecko has supply

Boundary: Tokenomist = unlock schedules & emission pressure. CoinGecko = live supply & market cap.

Tool Reference

tokenomist_token_overview ⭐ Default choice

One-call wrapper: resolve → allocations → emission → unlock events. Use when user asks broad tokenomics question.

tokenomist_allocations_summary

Compact allocation view with top_allocations, coverage, quality flags. Accepts token_id or query (auto-resolves).

tokenomist_allocations

Full allocation data. Use only when user needs raw detail or include_raw=true for debugging.

tokenomist_unlock_events

Cliff unlock events (v4). Linear/mining-yield events excluded. Params: token_id (required), start/end (optional, YYYY-MM-DD).

tokenomist_daily_emission

Daily emission schedule (v2). Params: token_id (required), start/end (optional, YYYY-MM-DD).

tokenomist_resolve_token

Resolve symbol/name → canonical tokenId. Use before granular tools.

tokenomist_token_list

Full token list (v4). Use for browsing, not single-token lookup.

Interpreting Results — Supply Pressure

When presenting unlock/emission data, help user assess supply pressure:

SignalInterpretation
Large cliff unlock within 7 days⚠️ Short-term sell pressure likely
Daily emission > 0.5% of circulating supply⚠️ Persistent dilution
Unlock to team/investor walletsHigher sell probability than ecosystem/community
Multiple unlocks clustering in same weekCompounding pressure — flag explicitly
No major unlocks for 30+ daysReduced supply-side pressure

Always contextualise: "ARB has a $50M team unlock in 3 days" is more actionable than "ARB has an unlock event".

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.05%
按下载量换算60

Claude

32.01%
按下载量换算56

Cursor

17.44%
按下载量换算31

Gemini CLI

10.19%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/starchild-ai-agent/official-skills --skill tokenomist 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills