Gate Info Liveroom Location (gate-info-liveroomlocation)

v1.0.3

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', '最热直播',...

0· 151·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for gate-exchange/gate-info-liveroomlocation.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Gate Info Liveroom Location (gate-info-liveroomlocation)" (gate-exchange/gate-info-liveroomlocation) from ClawHub.
Skill page: https://clawhub.ai/gate-exchange/gate-info-liveroomlocation
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install gate-info-liveroomlocation

ClawHub CLI

Package manager switcher

npx clawhub@latest install gate-info-liveroomlocation
Security Scan
Capability signals
Crypto
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk97cpqezdbw3ha595rnwbkrqa984fhy1
151downloads
0stars
4versions
Updated 2w ago
v1.0.3
MIT-0

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 ServerStatus
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)ParamValue
行情分析, 市场分析, Market AnalysistagMarket Analysis
热门话题, Hot TopicstagHot Topics
区块链, BlockchaintagBlockchain
其他, OtherstagOthers
Not mentionedtagempty
Bitcoin, BTC, SOL, ETH, 比特币coinBTC, SOL, etc.
Not mentionedcoinempty
最热, 热门, 按热度, hottestsorthot
最新, 最近, newestsortnew
Not mentionedsorthot
前5条, 给我3个, 10个limit5, 3, 10
Not mentionedlimit10

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

ConditionSignalMeaning
User in restricted regionBlockDo not call API; reply that the feature is not available in their region
tag / coin / sort / limit not mentionedUse defaulttag=empty, coin=empty, sort=hot, limit=10
content_type === "streaming"LiveUse live.name; link with ?type=live
content_type === "video"ReplayUse video.title; link without type
Empty list or API errorNo listReply with a short message; do not fabricate a list

Report Template

  • List format: One line per item: [Live/Replay] Title — <link>.
  • 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.

Comments

Loading comments...