← 返回 Skills 市场
gate-exchange

Gate Info Liveroom Location (gate-info-liveroomlocation)

作者 Gate · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ 安全检测通过
163
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install 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', '最热直播',...
使用说明 (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.

安全使用建议
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.
功能分析
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.
能力标签
crypto
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install gate-info-liveroomlocation
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /gate-info-liveroomlocation 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug gate-info-liveroomlocation
版本 1.0.3
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

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', '最热直播',... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 163 次。

如何安装 Gate Info Liveroom Location (gate-info-liveroomlocation)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install gate-info-liveroomlocation」即可一键安装,无需额外配置。

Gate Info Liveroom Location (gate-info-liveroomlocation) 是免费的吗?

是的,Gate Info Liveroom Location (gate-info-liveroomlocation) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Gate Info Liveroom Location (gate-info-liveroomlocation) 支持哪些平台?

Gate Info Liveroom Location (gate-info-liveroomlocation) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Gate Info Liveroom Location (gate-info-liveroomlocation)?

由 Gate(@gate-exchange)开发并维护,当前版本 v1.0.3。

💬 留言讨论