← Back to Skills Marketplace
gate-exchange

gate-info-marketoverview

by Gate · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ Security Clean
292
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install gate-info-market-overview
Description
Market overview. Use this skill ONLY when the user's query is exclusively about overall market conditions with no specific coin analysis. Trigger phrases: ho...
README (SKILL.md)

gate-info-marketoverview

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, routing, and graceful fallback behavior).

  • 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 crypto market "dashboard" Skill. The user asks about overall market conditions in a single sentence; the system calls 5 MCP Tools in parallel to fetch market-wide data + sector leaderboards + DeFi overview + recent events + macro summary, then the LLM aggregates into a market-briefing-level structured report.

Trigger Scenarios: User asks about overall market conditions — not about a specific coin.

MCP Dependencies

Required MCP Servers

MCP Server Status
Gate-Info ✅ Required

MCP Tools Used

Query Operations (Read-only)

  • info_coin_get_coin_rankings
  • info_macro_get_macro_summary
  • info_marketsnapshot_get_market_overview
  • info_marketsnapshot_get_market_snapshot
  • info_platformmetrics_get_defi_overview
  • news_events_get_latest_events

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
Market overview "how's the market" "market overview" "what's happening in crypto" "are we up or down today" Execute this Skill's full workflow
Single coin analysis "how is BTC" "analyze ETH" Route to gate-info-coinanalysis
News only "what's happening" Route to gate-news-briefing
DeFi deep-dive "which DeFi protocol is best" "TVL rankings" Route to gate-info-defianalysis
Macro deep-dive "how's the jobs report" "any economic data today" Route to gate-info-macroimpact

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 exclusively about overall market conditions with no specific coin to deep-dive, proceed with this Skill.
  • If the query also mentions a specific coin to analyze, risk to check, technicals to review, or any other analysis dimension beyond market overview, route to gate-info-research — it handles multi-dimension queries with unified tool deduplication and coherent report aggregation.

Step 1: Intent Recognition

Confirm the user is asking about overall market conditions (not a single coin). Optionally extract:

  • time_context: e.g., "today", "this week", "recently" (affects news/event time range)

Step 2: Call 5 MCP Tools in Parallel

Step MCP Tool Parameters Retrieved Data Parallel
1a info_marketsnapshot_get_market_overview (none) Full market: total market cap, 24h volume, BTC dominance, Fear & Greed Index, gainer/loser ratio Yes
1b info_coin_get_coin_rankings ranking_type="gainers", time_range="24h", limit=5 Top 5 gainers Yes
1c info_platformmetrics_get_defi_overview category="all" DeFi total TVL, DEX 24h volume, stablecoin total market cap Yes
1d news_events_get_latest_events time_range="24h", limit=5 Major events in the past 24h Yes
1e info_macro_get_macro_summary (none) Macro snapshot (DXY, rates, CPI trend) Yes

All 5 Tools are called in parallel with no dependencies. If a tool is not available, omit that call and mark the corresponding report section as "No data". If info_marketsnapshot_get_market_overview is not available, use info_marketsnapshot_get_market_snapshot for BTC/ETH as fallback.

Step 2b: Optional Supplementary Calls

Condition Supplementary Tool Parameters Purpose
User asks about "this week" or needs trend context info_coin_get_coin_rankings ranking_type="losers", time_range="24h", limit=5 Add top losers
User is interested in sector rotation info_coin_get_coin_rankings ranking_type="hot", limit=10 Trending coins

Step 3: LLM Aggregation


Report Template

## Crypto Market Overview

> Data as of: {timestamp}

### 1. Market Summary

| Metric | Current Value | 24h Change |
|--------|--------------|------------|
| Total Market Cap | ${total_market_cap} | {change}% |
| 24h Volume | ${total_volume_24h} | {change}% |
| BTC Dominance | {btc_dominance}% | {change}pp |
| Fear & Greed Index | {fear_greed_index} | {Extreme Fear/Fear/Neutral/Greed/Extreme Greed} |
| Gainer/Loser Ratio | {gainers}/{losers} | {Bulls/Bears/Balanced} |

**Market Status**: {One-sentence description of the current market state based on the above metrics}

### 2. Sectors & Leaderboard

**24h Top Gainers**

| Rank | Coin | Price | 24h Change |
|------|------|-------|------------|
| 1 | {symbol} | ${price} | +{change}% |
| 2 | ... | ... | ... |

**24h Top Losers** (if data available)

| Rank | Coin | Price | 24h Change |
|------|------|-------|------------|
| 1 | {symbol} | ${price} | {change}% |
| 2 | ... | ... | ... |

{If the leaderboards show sector patterns (e.g., L2s rallying, Memes dumping), flag sector rotation}

### 3. DeFi Overview

| Metric | Value | Change |
|--------|-------|--------|
| DeFi Total TVL | ${defi_tvl} | {change}% |
| DEX 24h Volume | ${dex_volume} | {change}% |
| Stablecoin Total Market Cap | ${stablecoin_cap} | {change}% |

### 4. Recent Major Events

1. 🔴/🟡/🟢 [{event_title}] — {event_summary} ({time})
2. ...

> 🔴 = High impact, 🟡 = Medium impact, 🟢 = Low impact

### 5. Macro Environment

| Metric | Value | Trend |
|--------|-------|-------|
| US Dollar Index (DXY) | {dxy} | {Rising/Falling/Sideways} |
| 10Y Treasury Yield | {yield_10y}% | {Rising/Falling} |
| Fed Funds Rate | {fed_rate}% | {Hiking/Cutting/Paused} |

{If there are upcoming macro events (NFP, CPI, FOMC), briefly mention potential market impact}

### 6. Overall Assessment

{LLM generates a 3-5 sentence assessment:}
- Current market phase (bull / bear / sideways / recovery)
- Primary drivers
- Key risks or opportunities to watch

> The above analysis is data-driven and does not constitute investment advice.

Decision Logic

Condition Label/Assessment
fear_greed > 75 "Extreme Greed — exercise caution at highs"
fear_greed \x3C 25 "Extreme Fear — potential opportunity amid panic"
BTC dominance > 55% and most altcoins declining "Capital rotating back to BTC — altcoins under pressure"
BTC dominance declining + most altcoins rising "Potential altcoin season"
Gainer/Loser ratio > 3:1 "Broad-based rally — bulls in control"
Gainer/Loser ratio \x3C 1:3 "Broad-based decline — bears in control"
DeFi TVL 7d change > +10% "Significant capital inflow into DeFi"
Stablecoin market cap rising "Off-exchange capital flowing in — bullish signal"
Any Tool returns empty/error Skip that section; note "Data unavailable"

Error Handling

Error Type Handling
get_market_overview or core snapshot fails Return degraded version showing only available sections; or use get_market_snapshot for BTC/ETH as fallback
Macro data unavailable Skip "Macro Environment" section; note "Macro data temporarily unavailable"
Event data unavailable Skip "Recent Major Events" section
All Tools fail Return error message; suggest the user try again later

Cross-Skill Routing

User Follow-up Intent Route To
"How is BTC?" / clicks on a specific coin gate-info-coinanalysis
"Why did XX pump?" gate-news-eventexplain
"Any recent news?" gate-news-briefing
"DeFi details" gate-info-defianalysis
"Macro data impact" gate-info-macroimpact
"Give me a BTC technical analysis" gate-info-trendanalysis

Safety Rules

  1. No investment advice: Market assessments are data-driven; must include a "not investment advice" disclaimer
  2. No trend predictions: Do not output "tomorrow will go up/down" style predictions
  3. Data transparency: Label data source and update time
  4. Flag missing data: When any section has no data, explicitly state it — never fabricate data
  5. Avoid emotional language: Use objective, neutral language to describe market conditions
Usage Guidance
This skill appears coherent and low-risk: it is read-only, requires no credentials, and only uses documented internal MCP tools. Before installing, confirm: (1) your agent has access to a trusted Gate MCP server and that the MCP endpoints truly require no credentials in your environment; (2) the intended set of MCP calls (5 vs 6) and fallback behavior meet your operational expectations; and (3) you will only invoke this skill for broad market questions (not single-coin analysis)—ambiguity in user prompts can route to the wrong skill. If you need stronger guarantees, review the Gate MCP server's access controls and logs to ensure no unexpected data transmission occurs.
Capability Analysis
Type: OpenClaw Skill Name: gate-info-market-overview Version: 1.0.3 The gate-info-market-overview skill is a well-structured tool designed to provide cryptocurrency market summaries by aggregating data from several read-only MCP tools (e.g., info_marketsnapshot_get_market_overview, info_macro_get_macro_summary). The instructions in SKILL.md and the reference files establish clear safety guardrails, such as prohibiting investment advice and ensuring data transparency. There is no evidence of malicious intent, data exfiltration, or unauthorized execution; the workflow is strictly limited to documented market-data retrieval tools.
Capability Tags
crypto
Capability Assessment
Purpose & Capability
Name/description (market overview) match the declared behavior: it only calls read-only MCP endpoints for market, rankings, DeFi, macro, and events. No unrelated binaries, credentials, or config paths are requested.
Instruction Scope
Runtime instructions are narrowly scoped to market‑level queries and explicitly forbid calling undocumented tools or reading secrets. Minor inconsistency: some places say 'call 5 MCP Tools in parallel' while other files/specs refer to 6 feeds and a 'gather all 6 feeds' SOP and fallback to info_marketsnapshot_get_market_snapshot. This is a documentation clarity issue rather than a security red flag, but reviewers should confirm which endpoints are intended to be called in normal vs fallback flows.
Install Mechanism
No install spec or code files; instruction-only skill (lowest install risk). The skill requires a local Gate MCP server to be available, but does not install anything itself.
Credentials
No environment variables, secrets, or API keys required. The skill expects read-only access via the host's Gate MCP server (declared as 'API Key Required: No'); operators should verify that the MCP server itself doesn't require undisclosed credentials or introduce additional access requirements.
Persistence & Privilege
always:false and no special persistence is requested. The skill can be invoked autonomously by the agent (platform default), but this is not combined with elevated privileges or secret access.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gate-info-market-overview
  3. After installation, invoke the skill by name or use /gate-info-market-overview
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.3
**gate-info-market-overview v1.0.3 Changelog** - Updated local references to runtime rules; `.md` documents are now read from the `references` directory. - Added new rule files: `gate-runtime-rules.md` and `info-news-runtime-rules.md`, in `references/`. - Removed obsolete/duplicative files: `CHANGELOG.md`, `README.md`, and `scripts/update-skill.sh`. - Simplified installation check and clarified that install flows are local to the host IDE/environment. - Housekeeping and documentation improvements; no logic or workflow changes to the market overview process.
v1.0.2
- Added explicit sections for required credentials, environment variables, and permissions. - Documented all required MCP tool dependencies and standard installer flows. - Clarified the parallel execution workflow for 5 core MCP tools and fallback logic. - Updated maintenance and version check instructions for better clarity and user experience. - Expanded routing rules and provided structured report and workflow templates. - No functional changes to logic or tool usage; documentation and workflow clarifications only.
v1.0.1
- Enforced stricter skill gating: Skill now triggers only for overall market condition queries; all mixed/complex queries are routed to gate-info-research. - Added explicit runtime version check and update workflow via new scripts/update-skill.sh (blocking execution if a new version is detected). - Strengthened compliance: Included strict rule references to shared runtime rule files; clarified that only listed MCP tools may be called. - Updated documentation: Revised SKILL.md with step-by-step instructions and new policy notes for script-based version management. - Added references/mcp.md and update script for maintainability; clarified user-facing update/confirmation flow as required for info-news skills.
v1.0.0
- Initial release of gate-info-marketoverview skill for comprehensive crypto market overviews. - Aggregates data from 5 MCP tools in parallel: market snapshot, coin leaderboards, DeFi metrics, major news/events, and macroeconomic context. - Includes configurable trigger scenarios and detailed routing & error-handling logic. - Provides a structured, multi-section report template covering all key market facets. - Built-in safety, transparency, and non-advice rules for user-facing market summaries.
Metadata
Slug gate-info-market-overview
Version 1.0.3
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is gate-info-marketoverview?

Market overview. Use this skill ONLY when the user's query is exclusively about overall market conditions with no specific coin analysis. Trigger phrases: ho... It is an AI Agent Skill for Claude Code / OpenClaw, with 292 downloads so far.

How do I install gate-info-marketoverview?

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

Is gate-info-marketoverview free?

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

Which platforms does gate-info-marketoverview support?

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

Who created gate-info-marketoverview?

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

💬 Comments