token-research

Comprehensive token research for EVM chains (Base, ETH, Arbitrum) and Solana. Use this skill when you want to research crypto tokens, deep-dive projects or monitor tokens.

3,891 stars
Complexity: medium

About this skill

This AI agent skill provides extensive research capabilities for cryptocurrency tokens across various EVM chains (Base, Ethereum, Arbitrum) and Solana. It operates in two distinct modes: 'deep_research' for thorough analysis and 'shallow_dive' for quicker overviews. The skill mandates rigorous adherence to communication protocols, including immediately calling the owner and sending DMs for 'WATCH' or 'APE' rated tokens, as well as checking X/Twitter for every token to verify product legitimacy. It integrates with external scripts like `ape-call.sh` and requires the 'x-research' skill for social media analysis. The agent is instructed to create structured reports and maintain a categorized watchlist based on its findings. Users would deploy this skill to automate the initial, labor-intensive phases of crypto market analysis. It ensures consistent, disciplined research and prompt notification of significant market signals, allowing human owners to focus on higher-level decision-making while relying on the agent for timely data collection, preliminary vetting, and adherence to specific investment criteria.

Best use case

The primary use case is automated, disciplined cryptocurrency token research and continuous market monitoring. It is most beneficial for crypto investors, analysts, or fund managers who need to quickly identify potential opportunities or risks in the volatile crypto market without manually sifting through vast amounts of data, while also ensuring strict adherence to reporting and communication protocols for critical alerts.

Comprehensive token research for EVM chains (Base, ETH, Arbitrum) and Solana. Use this skill when you want to research crypto tokens, deep-dive projects or monitor tokens.

A detailed research report on specified tokens, immediate alerts for 'WATCH' or 'APE' rated tokens, and updated watchlists, all adhering to a structured format and communication protocol.

Practical example

Example input

Perform a deep_research on the token 'WIF' on Solana, including its X/Twitter presence, and add it to the watchlist if it has a real product.

Example output

ALERT: APE token $WIF on Solana (CA: 0x...) at $250k mcap, $80k volume. Product found: meme.com. Owner notified via script and DM. Added to Tier 3 watchlist. Full research report available at `reports/2023-11-01/WIF-deep-research.md`.

When to use this skill

  • To perform a deep research or shallow dive into specific cryptocurrency tokens.
  • To monitor a batch of tokens for potential 'WATCH' or 'APE' signals requiring immediate action.
  • To conduct initial due diligence and verify the legitimacy of new token projects via social media.
  • To generate structured reports and maintain an organized watchlist for crypto assets across supported chains.

When not to use this skill

  • When researching non-crypto assets or traditional financial instruments.
  • When the owner does not want real-time alerts or structured reporting for crypto tokens.
  • When the primary goal is general blockchain research rather than specific token analysis.
  • When detailed product verification via X/Twitter is not required.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/token-research/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/0xartex/token-research/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/token-research/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How token-research Compares

Feature / Agenttoken-researchStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexitymediumN/A

Frequently Asked Questions

What does this skill do?

Comprehensive token research for EVM chains (Base, ETH, Arbitrum) and Solana. Use this skill when you want to research crypto tokens, deep-dive projects or monitor tokens.

How difficult is it to install?

The installation complexity is rated as medium. You can find the installation instructions above.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

This skill is a comprehensive token research for EVM chains (Base, ETH, Arbitrum) and Solana. Two modes: **deep_research** and **shallow_dive**.

## MANDATORY: CALL Owner FOR WATCH OR APE TOKENS

**ANY token rated WATCH 🟡 or APE 🟢 → IMMEDIATELY call your owner + send Telegram/discord/whatsapp DM. NO EXCEPTIONS.**

1. Run `~/workspace/scripts/ape-call.sh "WATCH/APE alert: $TICKER at $MCAPk mcap, $VOLk volume. [1-line reason]"` ( or call normally if there's no script )
2. Send a DM to your owner with full analysis
3. Do BOTH — call AND message. Every time.

**DO NOT:** say "if owner were awake", filter out tokens because "pure meme" or "no narrative", or process alerts without calling.

## MANDATORY: ALWAYS RESEARCH ON X/TWITTER — SKIP PURE MEMES

**For EVERY token, before giving a verdict, check X/Twitter:**
1. Search `$TICKER` and project name (Latest + Top)
2. Check the project's Twitter account: tweets, bio, what they're building
3. Look for a PRODUCT (website, GitHub, app, protocol)

**IMPORTANT:** use the 'x-research' skill to search on X.

**If the product is real, CALL your owner regardless of chart action.** Bad charts on real products = buying opportunity, not a skip.

**Pure memes = AVOID by default.** Only exception: volume 10x+ the batch average.

## Reports & Watchlist

**Reports:** `reports/YYYY-MM-DD/[report-name].md`
**Watchlist:** `watchlists/YYYY-MM/watchlist.md`

### Watchlist Rules
- After any research, if token has real product/team or unique narrative → append to watchlist
- Tiers: **Tier 1** (strongest), **Tier 2** (good signal, higher risk), **Tier 3** (speculative)
- Each entry: token, chain, CA, entry MC, current MC, catalyst, status (🟢🟡🔴)
- APPEND only — never overwrite. Update status when new data comes in.

---

## DEEP RESEARCH

### Phase 1: Token Fundamentals
```bash
curl -s "https://api.dexscreener.com/latest/dex/tokens/CHAIN/TOKEN_ADDRESS"
curl -s "https://api.gopluslabs.io/api/v1/token_security/CHAIN_ID?contract_addresses=TOKEN_ADDRESS"
```

### Phase 2: X/Twitter Research (most important phase)

```bash
# Search by ticker, CA, and project name
curl -s "https://api.twitterapi.io/twitter/tweet/advanced_search?query=\$TICKER&queryType=Latest" -H "X-API-Key: $TWITTERAPI_KEY"
curl -s "https://api.twitterapi.io/twitter/tweet/advanced_search?query=TOKEN_ADDRESS&queryType=Latest" -H "X-API-Key: $TWITTERAPI_KEY"

# Project account info + tweets
curl -s "https://api.twitterapi.io/twitter/user/info?userName=PROJECT_HANDLE" -H "X-API-Key: $TWITTERAPI_KEY"
curl -s "https://api.twitterapi.io/twitter/user/last_tweets?userName=PROJECT_HANDLE" -H "X-API-Key: $TWITTERAPI_KEY"

# KOL mentions
curl -s "https://api.twitterapi.io/twitter/tweet/advanced_search?query=\$TICKER%20min_faves:50&queryType=Top" -H "X-API-Key: $TWITTERAPI_KEY"

# Founder research (if found)
curl -s "https://api.twitterapi.io/twitter/user/info?userName=FOUNDER_HANDLE" -H "X-API-Key: $TWITTERAPI_KEY"
```

⚠️ **VERIFY dev claims from THEIR OWN ACCOUNT.** Never trust holder/community claims about dev endorsement. Search `from:DEV_HANDLE` for mentions of the token. If dev hasn't posted about it → flag as unconfirmed.

### Phase 3: Web Research
Search for: project website, team/founder background, news/partnerships, Reddit sentiment.

### Phase 4: Narrative Assessment

**Narrative Score (add to every report):**
- 🔥 **Strong** — Novel concept, viral potential, clear catalyst
- 🟡 **Moderate** — Decent angle but not unique, or good concept with weak execution
- 🧊 **Weak/None** — Generic, repetitive, no story → likely dumps to zero

Key questions: Is it novel? Would someone share it unprompted? Is the market tired of this category? Why hold beyond a flip?

Smart money wallet count + narrative quality are better predictors than contract safety.

### Phase 5: Risk Synthesis
Combine: narrative quality, smart money interest, contract security, holder concentration, team transparency, social proof (organic vs bots), liquidity depth, buy/sell ratio.

---

## SHALLOW DIVE

Run only: DexScreener + GoPlus + one Twitter search + basic web search.

---

## Batch Research (5+ Tokens)

1. Spawn parallel sub-agents for concurrent research
2. After filtering, **auto deep dive top 1-3 tokens** without waiting for user to ask
3. Save report to `reports/YYYY-MM-DD/[N]-token-analysis.md`
4. Auto-add top picks to monthly watchlist

Related Skills

X/Twitter Research Skill

3891
from openclaw/skills

Research trending topics, ideas, and conversations on X (Twitter) using twitterapi.io.

Data & Research

tavily-search

3891
from openclaw/skills

Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.

Data & Research

baidu-search

3891
from openclaw/skills

Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.

Data & Research

notebooklm

3891
from openclaw/skills

Google NotebookLM 非官方 Python API 的 OpenClaw Skill。支持内容生成(播客、视频、幻灯片、测验、思维导图等)、文档管理和研究自动化。当用户需要使用 NotebookLM 生成音频概述、视频、学习材料或管理知识库时触发。

Data & Research

openclaw-search

3891
from openclaw/skills

Intelligent search for agents. Multi-source retrieval with confidence scoring - web, academic, and Tavily in one unified API.

Data & Research

aisa-tavily

3891
from openclaw/skills

AI-optimized web search via AIsa's Tavily API proxy. Returns concise, relevant results for AI agents through AIsa's unified API gateway.

Data & Research

Market Sizing — TAM/SAM/SOM Calculator

3891
from openclaw/skills

Build defensible market sizing for any product, pitch deck, or business case. Top-down and bottom-up methodologies combined.

Data & Research

Data Analyst — AfrexAI ⚡📊

3891
from openclaw/skills

**Transform raw data into decisions. Not just charts — answers.**

Data & Research

Competitor Monitor

3891
from openclaw/skills

Tracks and analyzes competitor moves — pricing changes, feature launches, hiring, and positioning shifts

Data & Research

afrexai-competitive-intel

3891
from openclaw/skills

Complete competitive intelligence system — market mapping, product teardowns, pricing intel, win/loss analysis, battlecards, and strategic monitoring. Goes far beyond SEO to cover the full business landscape.

Data & Research

trending-news-aggregator

3891
from openclaw/skills

智能热点新闻聚合器 - 自动抓取多平台热点新闻, AI分析趋势,支持定时推送和热度评分。 核心功能: - 每天自动聚合多平台热点(微博、知乎、百度等) - 智能分类(科技、财经、社会、国际等) - 热度评分算法 - 增量检测(标记新增热点) - AI趋势分析

Data & Research

search-cluster

3891
from openclaw/skills

Aggregated search aggregator using Google CSE, GNews RSS, Wikipedia, Reddit, and Scrapling.

Data & Research