← Back to Skills Marketplace
gate-exchange

Gate Info Liveroom Location (gate-info-liveroomlocation)

by Gate · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ Security Clean
163
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install gate-info-liveroomlocation
Description
Gate live stream and replay listing skill. Use when the user asks to find live rooms or replays by tag, coin, or sort. Triggers on 'live room list', '最热直播',...
README (SKILL.md)

Gate Info Liveroom Location — Live & Replay Listing

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.

MCP Dependencies

Required MCP Servers

MCP Server Status
Gate-Info ✅ Required

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.

MCP Mode

Read and strictly follow references/mcp.md, then execute this skill's live/replay listing workflow.

  • SKILL.md keeps intent mapping, product behavior, and response semantics.
  • references/mcp.md is the authoritative MCP execution layer for parameter extraction, single-endpoint calls, and degradation handling.

Workflow

When the user asks about live rooms or replays (by business type, coin, hottest/newest, or count), execute the following steps.

Step 1: Parse intent and map parameters

From natural language, extract and map to API parameters:

  • tag: Market Analysis | Hot Topics | Blockchain | Others | empty (all). Default: empty.
  • coin: Coin symbol (e.g. BTC, SOL) or empty (all). Default: empty.
  • sort: hot (hottest) | new (newest). Default: hot.
  • limit: Integer 1–10. Default: 10.

Key mapping rules:

User phrase (examples) Param Value
行情分析, 市场分析, Market Analysis tag Market Analysis
热门话题, Hot Topics tag Hot Topics
区块链, Blockchain tag Blockchain
其他, Others tag Others
Not mentioned tag empty
Bitcoin, BTC, SOL, ETH, 比特币 coin BTC, SOL, etc.
Not mentioned coin empty
最热, 热门, 按热度, hottest sort hot
最新, 最近, newest sort new
Not mentioned sort hot
前5条, 给我3个, 10个 limit 5, 3, 10
Not mentioned limit 10

Do not ask the user "how many?" or "which coin?" when they did not specify; apply defaults.

Step 2: Call the API

Call GET /live/gate_ai/tag_coin_live_replay with query parameters:

  • tag: string (optional)
  • coin: string (optional)
  • sort: hot | new (optional, default hot)
  • limit: integer (optional, default 10, max 10)

Key data to extract from response:

  • data.list: array of items, each with content_type ("streaming" or "video"), and either live (with id, name) or video (with id, title).

Pre-filter: If the user is in a restricted region (US, Canada, Japan, or other Gate-restricted regions), do not call the API; reply that the feature is not available in their region.

Step 3: Build list output

For each item in data.list:

  • Title: live.name when content_type === "streaming", else video.title when content_type === "video".
  • Link:
    • content_type === "streaming": https://www.gate.io/live/video/{live.id}?type=live
    • content_type === "video": https://www.gate.io/live/video/{video.id}

Output a list of lines: each line = title + link. Optionally label "Live" or "Replay". Do not add extra fields (e.g. likes, duration) unless required by product.

Judgment Logic Summary

Condition Signal Meaning
User in restricted region Block Do not call API; reply that the feature is not available in their region
tag / coin / sort / limit not mentioned Use default tag=empty, coin=empty, sort=hot, limit=10
content_type === "streaming" Live Use live.name; link with ?type=live
content_type === "video" Replay Use video.title; link without type
Empty list or API error No list Reply with a short message; do not fabricate a list

Report Template

  • List format: One line per item: [Live/Replay] Title — \x3Clink>.
  • Disclaimer (if needed): Gate live and replay content is provided by creators; it does not constitute investment or viewing advice; the platform only provides display and filtering.

Single API only

Use only GET /live/gate_ai/tag_coin_live_replay. Do not combine or mention other live or video APIs.

Usage Guidance
This skill appears coherent and limited to fetching and formatting Gate live/replay lists. Before enabling for agents: ensure your environment has the required Gate Info MCP server available, verify the platform enforces the restricted-region blocking logic (US/CA/JP), and test the skill in a safe environment to confirm it behaves as documented. If your runtime policies change (e.g., require API keys for Gate), revisit the skill to ensure no hidden assumptions about authentication exist.
Capability Analysis
Type: OpenClaw Skill Name: gate-info-liveroomlocation Version: 1.0.3 The skill is designed to list live streams and replays from Gate.io using a dedicated MCP server. It follows a well-defined workflow for parameter mapping and API interaction (GET /live/gate_ai/tag_coin_live_replay), includes region-based access restrictions, and adheres to read-only principles as documented in SKILL.md and its references.
Capability Tags
crypto
Capability Assessment
Purpose & Capability
Name/description match the instructions: the SKILL.md only parses user intent (tag/coin/sort/limit), calls a single Gate Info endpoint, and formats list output. There are no unexpected env vars, binaries, or unrelated services requested.
Instruction Scope
Runtime instructions are narrowly scoped to: map user language to parameters, call GET /live/gate_ai/tag_coin_live_replay, apply region restrictions, and format results. The skill does not instruct reading local files, accessing secrets, or calling other tools beyond the documented MCP server.
Install Mechanism
Instruction-only skill with no install spec and no code files; nothing is written to disk and no external installers or downloads are requested.
Credentials
No environment variables, credentials, or config paths are required. The declared no-auth read-only use of the Gate Info MCP endpoint is proportional to the listing functionality.
Persistence & Privilege
always is false and the skill does not request persistent presence or modify other skills/config. Autonomous invocation is allowed by default but presents no additional red flags here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gate-info-liveroomlocation
  3. After installation, invoke the skill by name or use /gate-info-liveroomlocation
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.3
- Updated to require reading and following new shared runtime rules: references/gate-runtime-rules.md and references/info-news-runtime-rules.md. - Added references/gate-runtime-rules.md and references/info-news-runtime-rules.md files for unified runtime and output governance. - Removed obsolete documentation including CHANGELOG.md, README.md, and references/scenarios.md. - No changes to API, parameter mapping, or response formatting logic.
v1.0.2
- Updated internal runtime rule reference to use a relative path (`../gate-runtime-rules.md`) for consistency. - Clarified Gate MCP server installation instructions for host IDEs. - No product logic or API workflow changes; end user experience remains the same.
v1.0.1
- Added required_credentials, required_env_vars, and required_permissions fields for clearer requirements. - Clarified "Authentication" section to specify credentials source and scope of access. - No logic, workflow, or behavior changes. Only documentation/fields refinement in SKILL.md.
v1.0.0
- Initial release of gate-info-liveroomlocation skill for listing Gate live streams and replays. - Supports querying by tag, coin, sort order (hot/new), and result limit (1–10, default 10). - Parses user intent and maps natural language (including common synonyms in English and Chinese) to API parameters. - Only retrieves data via GET /live/gate_ai/tag_coin_live_replay; no other live/video APIs are used. - Automatically applies defaults if parameters are not specified; does not prompt user for missing filters. - Region-aware: feature is unavailable for users in restricted regions (e.g., US, Canada, Japan). - Output is a simple labeled list of live/replay titles with links.
Metadata
Slug gate-info-liveroomlocation
Version 1.0.3
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is Gate Info Liveroom Location (gate-info-liveroomlocation)?

Gate live stream and replay listing skill. Use when the user asks to find live rooms or replays by tag, coin, or sort. Triggers on 'live room list', '最热直播',... It is an AI Agent Skill for Claude Code / OpenClaw, with 163 downloads so far.

How do I install Gate Info Liveroom Location (gate-info-liveroomlocation)?

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

Is Gate Info Liveroom Location (gate-info-liveroomlocation) free?

Yes, Gate Info Liveroom Location (gate-info-liveroomlocation) is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Gate Info Liveroom Location (gate-info-liveroomlocation) support?

Gate Info Liveroom Location (gate-info-liveroomlocation) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Gate Info Liveroom Location (gate-info-liveroomlocation)?

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

💬 Comments