← Back to Skills Marketplace
gate-exchange

gate-info-coinanalysis

by Gate · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ Security Clean
298
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install gate-info-coin-analysis
Description
Single-coin comprehensive analysis. Use this skill ONLY when the user asks to analyze one coin with no additional explicit dimension (e.g., no separate risk...
README (SKILL.md)

gate-info-coinanalysis

General Rules

⚠️ STOP — You MUST read and strictly follow the shared runtime rules before proceeding. Do NOT select or call any tool until all rules are read. These rules have the highest priority. → Read ./references/gate-runtime-rules.md → Also read ./references/info-news-runtime-rules.md for gate-info / gate-news shared rules (tool degradation, report standards, security, and output standards).

  • Only call MCP tools explicitly listed in this skill. Tools not documented here must NOT be called, even if they exist in the MCP server.

The most frequently used Skill. The user inputs a coin name, the system calls 5 MCP Tools in parallel to fetch fundamentals + market data + technicals + news + social sentiment, then the LLM aggregates the results into a structured analysis report.

Trigger Scenarios: User mentions a specific coin + keywords like analyze, how is, worth, look at, fundamentals, market analysis.


MCP Dependencies

Required MCP Servers

MCP Server Status
Gate-Info ✅ Required

MCP Tools Used

Query Operations (Read-only)

  • info_coin_get_coin_info
  • info_coin_search_coins
  • info_marketsnapshot_get_market_snapshot
  • info_markettrend_get_technical_analysis
  • news_feed_get_social_sentiment
  • news_feed_search_news

Authentication

  • API Key Required: No
  • Credentials Source: None; this skill uses read-only Gate Info / Gate News MCP access only.

Installation Check

  • Required: Gate-Info
  • Install: Use the local Gate MCP installation flow for the current host IDE before continuing.
  • Continue only after the required Gate MCP server is available in the current environment.

Routing Rules

User Intent Keywords Action
Single coin comprehensive analysis "analyze SOL" "how is BTC" "is ETH worth buying" Execute this Skill's full workflow
Price only "what's BTC price" "ETH current price" Do NOT use this Skill — call info_marketsnapshot_get_market_snapshot directly
Multi-coin comparison "compare BTC and ETH" Route to gate-info-coincompare
News only "any SOL news lately" Route to gate-news-briefing
Technicals only "BTC technical analysis" "what's the RSI" Route to gate-info-trendanalysis

Execution Workflow

Step 0: Multi-Dimension Intent Check

Before executing this Skill, check if the user's query involves multiple analysis dimensions:

  • If the query is a standard single-coin analysis (e.g., "analyze SOL", "how is BTC"), proceed with this Skill.
  • If the query also mentions security/risk check, event attribution, multi-coin comparison, or any other analysis dimension beyond single-coin comprehensive, route to gate-info-research — it handles multi-dimension queries with unified tool deduplication and coherent report aggregation.

Step 1: Intent Recognition & Parameter Extraction

Extract from user input:

  • symbol: Coin ticker (e.g., BTC, SOL, ETH)
  • If the user mentions a project name (e.g., Solana, Uniswap), map it to the ticker symbol

If the coin cannot be identified, ask the user to clarify the coin name — do not guess.

Step 2: Call 5 MCP Tools in Parallel

Step MCP Tool Parameters Retrieved Data Parallel
1a info_coin_get_coin_info query={symbol}, scope="full" Fundamentals: project info, team, funding, sector, tokenomics, unlock schedule Yes
1b info_marketsnapshot_get_market_snapshot symbol={symbol}, timeframe="1d", source="spot" Market data: price, 24h/7d change, market cap, OI, funding rate, Fear & Greed Index Yes
1c info_markettrend_get_technical_analysis symbol={symbol} Technicals: multi-timeframe signals (RSI zones, MACD cross, MA alignment, support/resistance) Yes
1d news_feed_search_news coin={symbol}, limit=5, sort_by="importance" News: top 5 most important recent articles Yes
1e news_feed_get_social_sentiment coin={symbol} Social sentiment: Twitter KOL discussion volume, sentiment bias Yes

All 5 Tools are called in parallel with no dependencies. If no news MCP is configured, call only the first 3 Gate-info tools; mark sentiment sections as "No data".

Step 3: LLM Aggregation

Pass all 5 Tool responses to the LLM to generate a structured analysis report.

Step 4: Output Structured Report


Report Template

## {symbol} Comprehensive Analysis

### 1. Fundamentals Overview

| Metric | Value |
|--------|-------|
| Project Name | {project_name} |
| Sector | {category} |
| Market Cap Rank | #{market_cap_rank} |
| Circulating Market Cap | ${market_cap} |
| Fully Diluted Valuation | ${fdv} |
| Total Funding Raised | ${total_funding} |
| Key Investors | {investors} |

{Brief analysis of tokenomics and unlock schedule; flag any upcoming large unlocks}

### 2. Market Data & Technical Analysis

**Current Market Data**

| Metric | Value | Status |
|--------|-------|--------|
| Price | ${price} | — |
| 24h Change | {change_24h}% | {Up/Down/Sideways} |
| 7d Change | {change_7d}% | {Up/Down/Sideways} |
| 24h Volume | ${volume_24h} | {High/Low/Normal} |
| RSI(14) | {rsi} | {Overbought/Oversold/Neutral} |
| Fear & Greed Index | {fear_greed} | {Extreme Fear/Fear/Neutral/Greed/Extreme Greed} |

**Technical Signals**

{Based on info_markettrend_get_technical_analysis multi-timeframe signals, give a Bullish/Bearish/Neutral overall assessment}

- Short-term (1h/4h): {signal}
- Medium-term (1d): {signal}
- Support: ${support}
- Resistance: ${resistance}

### 3. News & Market Sentiment

**Recent Key News**

1. [{title}]({source}) — {summary} ({time})
2. ...

**Social Sentiment**

- Twitter Discussion Volume: {level}
- KOL Sentiment Bias: {Bullish/Bearish/Neutral}
- Sentiment Score: {sentiment_score}

### 4. Overall Assessment

{LLM generates a 3-5 sentence assessment covering:}
- Current market phase for this asset
- Primary drivers (fundamentals / technicals / sentiment)
- Key risks to monitor

### ⚠️ Risk Warnings

{Data-driven risk alerts, e.g.:}
- RSI overbought — elevated short-term pullback risk
- Upcoming large token unlock
- High funding rate — leveraged long crowding
- Low liquidity (if applicable)

> The above analysis is data-driven and does not constitute investment advice. Please make decisions based on your own risk tolerance.

Decision Logic

Condition Assessment
RSI > 70 Flag "Overbought — elevated short-term pullback risk"
RSI \x3C 30 Flag "Oversold — potential bounce"
24h volume > 7d avg volume x 2 Flag "Significant volume surge"
24h volume \x3C 7d avg volume x 0.5 Flag "Notable volume decline"
funding_rate > 0.05% Flag "High funding rate — long crowding"
funding_rate \x3C -0.05% Flag "Negative funding rate — short crowding"
fear_greed > 75 Flag "Extreme Greed — exercise caution"
fear_greed \x3C 25 Flag "Extreme Fear — potential opportunity"
Token unlock in next 30 days > 5% of circulating supply Flag "Large upcoming token unlock — potential sell pressure"
Any Tool returns empty/error Skip that section; note "Data unavailable" in the report

Error Handling

Error Type Handling
Coin does not exist Prompt user to verify the coin name; suggest using info_coin_search_coins
A single Tool times out Skip that dimension; note "This dimension is temporarily unavailable"
All Tools fail Return error message; suggest the user try again later
User inputs multiple coins Route to gate-info-coincompare
User inputs an address instead of a coin Route to gate-info-addresstracker

Cross-Skill Routing

User Follow-up Intent Route To
"Give me a technical analysis" gate-info-trendanalysis
"Any recent news?" gate-news-briefing
"What about on-chain data?" gate-info-tokenonchain
"Is this coin safe?" gate-info-riskcheck
"Compare XX and YY" gate-info-coincompare
"Why is it pumping/dumping?" gate-news-eventexplain

Safety Rules

  1. No investment advice: The overall assessment is data-driven analysis and must include a "not investment advice" disclaimer
  2. No price predictions: Do not output specific target prices or up/down predictions
  3. Data transparency: Label data source and update time for each dimension
  4. Flag missing data: When any dimension has no data, explicitly inform the user — never fabricate data
Usage Guidance
This skill appears internally coherent and read-only, but take these practical precautions before installing or enabling it: 1) Verify the Gate-Info / Gate-News MCP endpoints you allow the agent to call are trusted and hosted by a legitimate provider (a malicious or misconfigured MCP server could return deceptive data). 2) Confirm no API keys or credentials are added when you configure MCP connectivity—this skill claims no credentials are needed. 3) Test the skill with a non-sensitive, well-known coin to observe its behavior and that it degrades gracefully when feeds are unavailable. 4) If you want stronger safeguards, keep the skill user-invocable only (don’t give it automatic always-enabled status) and monitor agent logs for unexpected outbound calls. If you want further assurance, provide the MCP server connection details and I can review them for any red flags.
Capability Analysis
Type: OpenClaw Skill Name: gate-info-coin-analysis Version: 1.0.3 The gate-info-coin-analysis skill is a legitimate tool designed for comprehensive cryptocurrency analysis. It aggregates data from the Gate-Info MCP server, including fundamentals, market snapshots, technical indicators, and news sentiment. The SKILL.md and associated reference files (gate-runtime-rules.md, info-news-runtime-rules.md) contain robust safety guardrails, explicitly prohibiting investment advice, price predictions, and unauthorized tool usage. No evidence of malicious intent, data exfiltration, or harmful prompt injection was found.
Capability Tags
crypto
Capability Assessment
Purpose & Capability
Name/description match the runtime instructions: the skill performs a single-coin synthesis by calling the documented Gate-Info / Gate-News MCP read-only tools. No unrelated binaries, credentials, or config paths are requested.
Instruction Scope
SKILL.md limits execution to the listed MCP tools, requires symbol disambiguation, calls five read-only endpoints in parallel, and bundles local runtime guardrails. It does not instruct reading local secrets, arbitrary files, or contacting unknown external endpoints beyond the described MCP tooling.
Install Mechanism
Instruction-only skill with no install spec and no code files. No downloads or package installs are requested, so nothing is written to disk by the skill itself.
Credentials
The skill declares no environment variables, no primary credential, and states it is read-only. The requested access (Gate-Info / Gate-News MCP read APIs) is proportional to the analysis task.
Persistence & Privilege
Flags show always:false and normal user-invocable/autonomy defaults. The skill does not request persistent or elevated privileges, nor does it instruct modifying other skills or system-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gate-info-coin-analysis
  3. After installation, invoke the skill by name or use /gate-info-coin-analysis
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.3
Version 1.0.3 - Updated runtime rule references to point to local `./references/*.md` files instead of remote URLs. - Removed redundant documentation and update scripts: CHANGELOG.md, README.md, references/scenarios.md, scripts/update-skill.sh. - Added `references/gate-runtime-rules.md` and `references/info-news-runtime-rules.md` as local references for runtime and output standards. - Clarified installation check to use local Gate MCP installation flow and simplified instructions. - No changes to workflow, report structure, or MCP tool usage; the skill's functions remain the same.
v1.0.2
- Added explicit fields for required credentials, environment variables, and permissions to the skill manifest. - Clarified installation requirements and checks for the Gate-Info MCP server and relevant installer skills for various IDEs. - Expanded documentation for MCP tool dependencies and authentication requirements. - Updated and streamlined the description of maintenance and skill update workflows. - No changes to the core analysis workflow or report structure.
v1.0.1
gate-info-coin-analysis v1.0.1 Changelog - Added update control: new scripts/update-skill.sh for version checks, with detailed workflow and policies described in SKILL.md. - Refined SKILL.md with strict new routing logic: this skill is ONLY used for single-coin broad analysis; multi-dimension or multi-coin queries are routed elsewhere. - Clarified technical requirements and runtime rules, including explicit version check and user confirmation steps before updates. - Added references/mcp.md for external documentation. - Updated README.md, SKILL.md, and CHANGELOG.md to match new flow and clarify per-skill usage and runtime standards.
v1.0.0
Summary: Initial release of the gate-info-coinanalysis skill for comprehensive single-coin analysis. - Aggregates fundamentals, market data, technical analysis, news, and social sentiment for any single cryptocurrency. - Uses five MCP tools in parallel for fast and thorough information gathering. - Includes robust user intent recognition and cross-skill routing to handle price-only, news-only, technicals-only, and multi-coin comparison requests. - Outputs a structured, modular report with clear data, technical signals, news, sentiment, and actionable risk flags. - Features detailed error handling, safety, and data transparency rules to ensure reliability and user clarity.
Metadata
Slug gate-info-coin-analysis
Version 1.0.3
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is gate-info-coinanalysis?

Single-coin comprehensive analysis. Use this skill ONLY when the user asks to analyze one coin with no additional explicit dimension (e.g., no separate risk... It is an AI Agent Skill for Claude Code / OpenClaw, with 298 downloads so far.

How do I install gate-info-coinanalysis?

Run "/install gate-info-coin-analysis" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is gate-info-coinanalysis free?

Yes, gate-info-coinanalysis is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does gate-info-coinanalysis support?

gate-info-coinanalysis is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created gate-info-coinanalysis?

It is built and maintained by Gate (@gate-exchange); the current version is v1.0.3.

💬 Comments