← 返回 Skills 市场
gate-exchange

gate-exchange-welfare

作者 Gate · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ 安全检测通过
161
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install gate-exchange-welfare
功能描述
Gate welfare center and new-user task skill. Use when the user asks about welfare rewards, tasks, or how to claim benefits. Triggers on 'welfare center', 'ne...
使用说明 (SKILL.md)

Gate Exchange Welfare Center

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

  • 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 (main) ✅ Required

MCP Tools Used

Query Operations (Read-only)

  • cex_welfare_get_beginner_task_list
  • cex_welfare_get_user_identity

Authentication

  • Credentials Source: Local Gate MCP deployment (GATE_API_KEY, GATE_API_SECRET)
  • API Key Required: Yes
  • Permissions: Welfare:Read
  • Never ask the user to paste secrets into chat; rely on the configured MCP session only.
  • API Key Provisioning Reference: https://www.gate.com/myaccount/profile/api-key/manage (create or rotate keys outside the chat when the local MCP setup requires them).

Installation Check

  • Required: Gate (main)
  • Install: Use the local Gate MCP installation flow for the current host IDE before continuing.
  • Continue only after the Gate MCP session is configured with the credentials listed above; do not switch to browser auth or ask the user to paste secrets into chat.

MCP Mode

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

  • SKILL.md keeps user-type routing, task-display semantics, and policy constraints.
  • references/mcp.md is the authoritative MCP execution layer for identity gate, task query sequence, and fallback handling.

Overview

Welfare center new user task entry Skill (version 2026.3.18-6, with MCP tools integration). When users ask about benefits/rewards/tasks, first determine if they are new users. Show all new user onboarding task details for new users, guide existing users to official website or App.

Trigger Scenarios: Execute this Skill when users mention welfare benefits, new user rewards, task claiming, reward claiming and other related keywords.


Domain Knowledge

New User Definition

  • New User (code=0): Newly registered users who have not completed any trading activities, deposits, or other engagement tasks
  • Existing User (code=1001): Users with trading history, completed tasks, or established account activity

User Status Categories

  • Normal Users: Can participate in all new user activities and claim rewards
  • Risk Control Users (code=1002): Temporarily restricted from participating in activities due to security concerns
  • Sub-accounts (code=1003): Cannot participate; must use main account
  • Agent Users (code=1004): Excluded from new user welfare programs
  • Market Makers (code=1005): Professional traders excluded from new user benefits
  • Enterprise Users (code=1006): Corporate accounts excluded from individual user benefits
  • Not Logged In (code=1008): Must authenticate before accessing welfare information

Task Types

  • Registration Tasks (type=10): Basic onboarding activities like app download, account setup
  • Guidance Tasks (type=11): Progressive engagement tasks like KYC verification, first deposit, first trade

Reward Mechanisms

  • USDT Trial Vouchers: Practice trading credits for new users
  • Bonus USDT: Real trading capital rewards
  • Points: Loyalty program credits for redemption
  • Task Completion: Sequential unlock of advanced features and higher rewards

Welfare Ecosystem

  • Centralized Hub: All welfare activities accessible via https://www.gate.com/rewards_hub
  • Mobile Integration: Full feature parity in Gate mobile app
  • Cross-platform Sync: Task progress and rewards synchronized across web and mobile

Routing Rules

User Intent Keywords / Patterns Routing
Query welfare / rewards / tasks (general) "what welfare", "how to claim rewards", "what tasks can I do", "welfare", "rewards" Execute this Skill → Determine user type first
Query new user benefits / rewards "new user benefits", "how to claim new user rewards", "new user tasks", "new user benefits", "newbie rewards" Execute this Skill → Determine user type first
Spot trading "buy BTC", "sell ETH" Route to gate-exchange-spot
Asset query "how much USDT do I have", "check balance" Route to gate-exchange-assets
Deposit "how to deposit", "how to fund account" Route to deposit related Skill

Execution Workflow

Step 1: Determine User Identity

Call MCP tool to query whether the current user is a new user.

Step MCP Tool Parameters Data Retrieved
1 cex_welfare_get_user_identity (User identity determination interface) Automatically get current user identity Returns code=0 (qualifies as new user) or error codes (1001=existing user, 1002=risk control, 1003=sub-account, 1004=agent, 1005=market maker, 1006=enterprise, 1008=not logged in)

Enter corresponding branch based on returned result:


Case 1: Existing User Guidance

Trigger Condition: Step 1 determines user as existing user (cex_welfare_get_user_identity returns code=1001).

No additional MCP tool calls needed, directly output guidance text.

Output Template:

Please visit Gate web at https://www.gate.com/rewards_hub or open Gate App to view welfare tasks and rewards.

Case 2: New User Task List

Trigger Condition: Step 1 determines user as new user (cex_welfare_get_user_identity returns code=0).

Step 2: Get All New User Onboarding Tasks

Step MCP Tool Parameters Data Retrieved
2 cex_welfare_get_beginner_task_list (Query beginner guidance task list) Automatically get current user tasks Get beginner guidance task list, including registration tasks (type=10) and guidance tasks (type=11), each task contains reward information, completion status and task description

Step 3: Generate Task List Response

Important Note: Must use real task data obtained from MCP interface in Step 2, absolutely cannot fabricate or use template example data!

Based on the real task data returned from Step 2, output to users in the following format:

  1. Iterate through all tasks: For each task in the data.tasks array returned by cex_welfare_get_beginner_task_list
  2. Extract real fields: Use the task's real fields such as task_name, task_desc, reward_num, reward_unit, status
  3. Status display: status=1 shows "Pending", status=2 shows "Completed"
  4. Format output: Strictly follow template format, but content must be real MCP data

Data mapping rules:

  • Task title: Use task_name field
  • Task description: Use task_desc field
  • Reward amount: Use reward_num field
  • Reward unit: Use reward_unit field
  • Completion status: Use status field (1=Pending, 2=Completed)

Response Templates

Case 1 — Existing User Guidance

Please visit Gate web at https://www.gate.com/rewards_hub or open Gate App to view welfare tasks and rewards.

Case 2 — New User Task List

🎁 Your exclusive new user tasks are as follows. Complete tasks to claim corresponding rewards:

{for each task in task_list:}

📌 {task_name}
   {task_desc}
   💰 Reward: {reward_num} {reward_unit}
   Status: {Display based on status field: 1=Pending, 2=Completed}

---

⚠️ Non-agent, non-institutional users and users with normal account status can complete tasks and claim rewards. Specific tasks and rewards are subject to final display on Gate official website/App.

Example Output:

🎁 Your exclusive new user tasks are as follows. Complete tasks to claim corresponding rewards:

{Generate dynamically based on actual task data returned from MCP interface, format:}

📌 {task_name}
   {task_desc}
   💰 Reward: {reward_num} {reward_unit}
   Status: {Display based on status field: 1=Pending, 2=Completed}

{Repeat above format until all tasks are displayed}

---

⚠️ Non-agent, non-institutional users and users with normal account status can complete tasks and claim rewards. Specific tasks and rewards are subject to final display on Gate official website/App.

Exception Handling

Exception Type Handling Method
Existing user (code=1001) Execute existing user guidance: Prompt to visit https://www.gate.com/rewards_hub
Risk control user (code=1002) Prompt: "Your account is temporarily unable to participate in new user activities, please contact customer service for details"
Sub-account (code=1003) Prompt: "Sub-accounts cannot participate in new user activities, please log in with main account"
Agent user (code=1004) Prompt: "Agent users cannot participate in new user activities"
Market maker (code=1005) Prompt: "Market maker users cannot participate in new user activities"
Enterprise user (code=1006) Prompt: "Enterprise users cannot participate in new user activities"
Not logged in (code=1008) Prompt: "Please log in to your Gate account first before querying welfare tasks"
Unable to determine user type (interface timeout/exception) Prompt: "Welfare information is temporarily unavailable, please try again later, or visit https://www.gate.com/rewards_hub directly"
New user task list is empty Prompt: "No new user tasks available at the moment, please check later, or visit https://www.gate.com/rewards_hub for more benefits"
Interface returns other errors Generic fallback: "Service is temporarily unavailable, please try again later"

Cross-Skill Integration

User Follow-up Intent Routing Target
User wants to complete "First Deposit" task Route to deposit / funding Skill
User wants to complete "First Trade" task Route to gate-exchange-spot
User wants to complete "Identity Verification" task Show guidance text: Go to Gate web or open Gate App to complete KYC
User asks about asset balance Route to gate-exchange-assets

Safety Rules

  1. Read-only queries: This Skill only queries task information, does not execute task claiming, reward distribution or other write operations.
  2. Identity verification prerequisite: Must complete user type determination first, must not show new user task list to existing users.
  3. Real data only: Strictly prohibit fabricating task information! Must use real data returned by MCP interface, must not use fake reward information from example templates (such as "10 points", "5 USDT trial voucher", etc.).
  4. Data integrity: All displayed task names, descriptions, reward amounts, reward units must come from real return values of cex_welfare_get_beginner_task_list interface.
  5. Disclaimer: Task information is subject to final display on Gate official website, data returned by this Skill is for reference only.
  6. Required prompt text: When displaying task rewards, must include the required prompt text as specified: "Non-agent, non-institutional users and users with normal account status can complete tasks and claim rewards. Specific tasks and rewards are subject to final display on Gate official website/App", must not be omitted.
安全使用建议
This skill appears coherent and read-only. Before enabling it: ensure your environment has a properly configured Gate MCP session (do not paste API secrets into chat), confirm the Welfare:Read permission is appropriate, and verify the skill's source (the bundle lists https://github.com/gate/gate-skills). If you are uncomfortable providing Gate API credentials to this environment, do not enable the skill; instead use the official Gate web/app to view rewards.
功能分析
Type: OpenClaw Skill Name: gate-exchange-welfare Version: 1.0.3 The gate-exchange-welfare skill is a well-documented tool for querying user eligibility and task lists within the Gate exchange welfare center. It utilizes specific, read-only MCP tools (cex_welfare_get_user_identity and cex_welfare_get_beginner_task_list) and includes robust safety guidelines in SKILL.md and references/gate-runtime-rules.md that explicitly prohibit data fabrication and the collection of secrets via chat. The code logic and instructions are strictly aligned with the stated purpose of providing welfare information without any indicators of malicious intent or unauthorized data access.
能力标签
cryptocan-make-purchases
能力评估
Purpose & Capability
Name/description, declared MCP tools (identity and beginner task list), and required env vars (GATE_API_KEY, GATE_API_SECRET) align with a Gate exchange welfare lookup; nothing requested appears unrelated to the stated purpose.
Instruction Scope
SKILL.md confines execution to two read-only MCP tools (cex_welfare_get_user_identity and cex_welfare_get_beginner_task_list), enforces identity gating, prohibits fabricating reward data, and instructs not to ask users to paste secrets. It does not instruct reading unrelated files or exfiltrating data to external endpoints.
Install Mechanism
No install spec or code files — instruction-only skill. This minimizes disk writes and remote-code installation risk.
Credentials
Requires only GATE_API_KEY and GATE_API_SECRET (primaryEnv set). Those credentials are appropriate and proportionate for calling Gate MCP identity and task-read endpoints; no unrelated credentials or broad system paths are requested.
Persistence & Privilege
always:false and no install steps; the skill does not request permanent presence or system configuration changes. It is allowed to be invoked autonomously by the agent by default, which is normal for skills.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install gate-exchange-welfare
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /gate-exchange-welfare 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
- Added OpenClaw-specific metadata, including required environment variables and homepage link. - Updated the reference path for gate runtime rules to a new local reference file. - Clarified installation guidance: emphasized requirement for local Gate MCP installation and use of MCP session credentials only. - No logic changes to user workflow or task response semantics.
v1.0.2
- Added required credentials (`gate_api_key`, `gate_api_secret`) and environment variables (`GATE_API_KEY`, `GATE_API_SECRET`) to configuration. - Clarified that MCP credentials must be sourced from local deployment; users should never be prompted for secrets in chat. - Documented required permissions (`Welfare:Read`) explicitly. - Updated authentication instructions to reference out-of-chat key management and configuration for local MCP.
v1.0.1
Version 1.0.1 - Added `references/mcp.md` to centralize the MCP (backend) execution layer and handling. - Updated SKILL.md to reference the new MCP execution file for identity and task workflows. - Clarified separation between user-facing logic (SKILL.md) and backend execution (references/mcp.md). - No changes to trigger phrases or primary routing logic; main workflow remains unchanged.
v1.0.0
Gate Exchange Welfare Center skill initial release. - New skill providing information about welfare benefits, new user tasks, and rewards on Gate Exchange. - Determines user type (new user or existing) using MCP tool integration before displaying tasks or guidance. - For new users, retrieves and presents real onboarding tasks and reward details via MCP tools. - For existing users, directs them to Gate’s official rewards hub or App for welfare program participation. - Includes explicit error handling for various user statuses and integrates with MCP authentication requirements.
元数据
Slug gate-exchange-welfare
版本 1.0.3
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

gate-exchange-welfare 是什么?

Gate welfare center and new-user task skill. Use when the user asks about welfare rewards, tasks, or how to claim benefits. Triggers on 'welfare center', 'ne... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 161 次。

如何安装 gate-exchange-welfare?

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

gate-exchange-welfare 是免费的吗?

是的,gate-exchange-welfare 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

gate-exchange-welfare 支持哪些平台?

gate-exchange-welfare 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 gate-exchange-welfare?

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

💬 留言讨论