gate-exchange-welfare

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Gate Exchange Welfare Center

Gate Exchange福利中心

General Rules

通用规则

Read and follow the shared runtime rules before proceeding: → ../exchange-runtime-rules.md
在操作前请阅读并遵循共享运行时规则: → ../exchange-runtime-rules.md

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.

福利中心新用户任务入口Skill(版本2026.3.18-6,已集成MCP工具)。当用户询问福利/奖励/任务相关问题时,首先判断其是否为新用户。向新用户展示所有新用户入门任务详情,引导老用户前往官网或App查询。
触发场景:当用户提及福利权益、新用户奖励、任务领取、奖励领取等相关关键词时,执行该Skill。

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
  • 新用户(code=0):刚注册且未完成任何交易、存款或其他参与任务的用户
  • 老用户(code=1001):有交易历史、已完成任务或有账户活动记录的用户

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
  • 普通用户:可参与所有新用户活动并领取奖励
  • 风控用户(code=1002):因安全问题暂时被限制参与活动
  • 子账户(code=1003):无法参与,需使用主账户
  • Agent用户(code=1004):被排除在新用户福利计划之外
  • 做市商(code=1005):专业交易员,无法享受新用户福利
  • 企业用户(code=1006):企业账户无法参与个人用户福利
  • 未登录用户(code=1008):需先完成身份验证才能查看福利信息

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
  • 注册任务(type=10):基础入门活动,如App下载、账户设置
  • 引导任务(type=11):进阶参与任务,如KYC验证、首次存款、首次交易

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
  • USDT体验金券:供新用户使用的模拟交易额度
  • USDT奖励金:真实交易资金奖励
  • 积分:可兑换的忠诚度计划点数
  • 任务完成:依次解锁进阶功能和更高奖励

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

  • 集中化枢纽:所有福利活动可通过https://www.gate.com/rewards_hub访问
  • 移动端集成:Gate移动App支持全部功能
  • 跨平台同步:任务进度和奖励在网页端与移动端同步

Routing Rules

路由规则

User IntentKeywords / PatternsRouting
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

用户意图关键词/模式路由方向
查询福利/奖励/任务(通用)"what welfare", "how to claim rewards", "what tasks can I do", "welfare", "rewards"执行该Skill → 先判断用户类型
查询新用户福利/奖励"new user benefits", "how to claim new user rewards", "new user tasks", "new user benefits", "newbie rewards"执行该Skill → 先判断用户类型
现货交易"buy BTC", "sell ETH"路由至
gate-exchange-spot
资产查询"how much USDT do I have", "check balance"路由至
gate-exchange-assets
存款"how to deposit", "how to fund account"路由至存款相关Skill

Execution Workflow

执行流程

Step 1: Determine User Identity

步骤1:判断用户身份

Call MCP tool to query whether the current user is a new user.
StepMCP ToolParametersData Retrieved
1
cex_welfare_get_user_identity
(User identity determination interface)
Automatically get current user identityReturns 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:

调用MCP工具查询当前用户是否为新用户。
步骤MCP工具参数获取的数据
1
cex_welfare_get_user_identity
(用户身份判定接口)
自动获取当前用户身份返回code=0(符合新用户资格)或错误码(1001=老用户,1002=风控用户,1003=子账户,1004=Agent用户,1005=做市商,1006=企业用户,1008=未登录)
根据返回结果进入对应分支:
  • code=0(新用户) → 执行【场景2:新用户任务列表】
  • code=1001(老用户) → 执行【场景1:老用户引导】
  • 其他错误码 → 根据【异常处理】章节执行对应处理逻辑

Case 1: Existing User Guidance

场景1:老用户引导

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.

触发条件:步骤1判定用户为老用户(
cex_welfare_get_user_identity
返回code=1001)。
无需额外调用MCP工具,直接输出引导文本。
输出模板
请访问Gate网页端https://www.gate.com/rewards_hub或打开Gate App查看福利任务与奖励。

Case 2: New User Task List

场景2:新用户任务列表

Trigger Condition: Step 1 determines user as new user (
cex_welfare_get_user_identity
returns code=0).
触发条件:步骤1判定用户为新用户(
cex_welfare_get_user_identity
返回code=0)。

Step 2: Get All New User Onboarding Tasks

步骤2:获取所有新用户入门任务

StepMCP ToolParametersData Retrieved
2
cex_welfare_get_beginner_task_list
(Query beginner guidance task list)
Automatically get current user tasksGet beginner guidance task list, including registration tasks (type=10) and guidance tasks (type=11), each task contains reward information, completion status and task description
步骤MCP工具参数获取的数据
2
cex_welfare_get_beginner_task_list
(查询新手引导任务列表)
自动获取当前用户任务获取新手引导任务列表,包括注册任务(type=10)和引导任务(type=11),每个任务包含奖励信息、完成状态和任务描述

Step 3: Generate Task List Response

步骤3:生成任务列表响应

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)

重要提示:必须使用步骤2中从MCP接口获取的真实任务数据,绝对不能编造或使用模板示例数据!
根据步骤2返回的真实任务数据,按以下格式输出给用户:
  1. 遍历所有任务:针对
    cex_welfare_get_beginner_task_list
    返回的
    data.tasks
    数组中的每个任务
  2. 提取真实字段:使用任务的真实字段,如
    task_name
    task_desc
    reward_num
    reward_unit
    status
  3. 状态显示
    status=1
    显示"待完成",
    status=2
    显示"已完成"
  4. 格式输出:严格遵循模板格式,但内容必须为真实MCP数据
数据映射规则
  • 任务标题:使用
    task_name
    字段
  • 任务描述:使用
    task_desc
    字段
  • 奖励金额:使用
    reward_num
    字段
  • 奖励单位:使用
    reward_unit
    字段
  • 完成状态:使用
    status
    字段(1=待完成,2=已完成)

Response Templates

响应模板

Case 1 — Existing User Guidance

场景1 — 老用户引导

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

请访问Gate网页端https://www.gate.com/rewards_hub或打开Gate App查看福利任务与奖励。

Case 2 — New User Task List

场景2 — 新用户任务列表

🎁 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.

🎁 您的专属新用户任务如下,完成任务即可领取对应奖励:

{遍历task_list中的每个任务:}

📌 {task_name}
   {task_desc}
   💰 奖励:{reward_num} {reward_unit}
   状态:{根据status字段显示:1=待完成,2=已完成}

---

⚠️ 非Agent用户、非机构用户且账户状态正常的用户可完成任务并领取奖励。具体任务与奖励以Gate官网/App最终展示为准。
示例输出
🎁 您的专属新用户任务如下,完成任务即可领取对应奖励:

{根据MCP接口返回的实际任务数据动态生成,格式:}

📌 {task_name}
   {task_desc}
   💰 奖励:{reward_num} {reward_unit}
   状态:{根据status字段显示:1=待完成,2=已完成}

{重复上述格式直到所有任务展示完毕}

---

⚠️ 非Agent用户、非机构用户且账户状态正常的用户可完成任务并领取奖励。具体任务与奖励以Gate官网/App最终展示为准。

Exception Handling

异常处理

Exception TypeHandling 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 emptyPrompt: "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 errorsGeneric fallback: "Service is temporarily unavailable, please try again later"

异常类型处理方式
老用户(code=1001)执行老用户引导:提示访问https://www.gate.com/rewards_hub
风控用户(code=1002)提示:"您的账户暂时无法参与新用户活动,请联系客服了解详情"
子账户(code=1003)提示:"子账户无法参与新用户活动,请使用主账户登录"
Agent用户(code=1004)提示:"Agent用户无法参与新用户活动"
做市商(code=1005)提示:"做市商用户无法参与新用户活动"
企业用户(code=1006)提示:"企业用户无法参与新用户活动"
未登录用户(code=1008)提示:"请先登录您的Gate账户,再查询福利任务"
无法判定用户类型(接口超时/异常)提示:"福利信息暂时无法获取,请稍后重试,或直接访问https://www.gate.com/rewards_hub"
新用户任务列表为空提示:"当前暂无新用户任务,请稍后查看,或访问https://www.gate.com/rewards_hub获取更多福利"
接口返回其他错误通用 fallback:"服务暂时无法使用,请稍后重试"

Cross-Skill Integration

跨Skill集成

User Follow-up IntentRouting Target
User wants to complete "First Deposit" taskRoute to deposit / funding Skill
User wants to complete "First Trade" taskRoute to
gate-exchange-spot
User wants to complete "Identity Verification" taskShow guidance text: Go to Gate web or open Gate App to complete KYC
User asks about asset balanceRoute to
gate-exchange-assets

用户后续意图路由目标
用户想完成"首次存款"任务路由至存款/资金相关Skill
用户想完成"首次交易"任务路由至
gate-exchange-spot
用户想完成"身份验证"任务展示引导文本:前往Gate网页端或打开Gate App完成KYC
用户询问资产余额路由至
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.
  1. 只读查询:该Skill仅查询任务信息,不执行任务领取、奖励发放或其他写入操作。
  2. 身份验证前提:必须先完成用户类型判定,绝对不能向老用户展示新用户任务列表。
  3. 仅用真实数据:**严禁编造任务信息!**必须使用MCP接口返回的真实数据,不得使用示例模板中的虚假奖励信息(如"10积分"、"5 USDT体验金券"等)。
  4. 数据完整性:所有展示的任务名称、描述、奖励金额、奖励单位必须来自
    cex_welfare_get_beginner_task_list
    接口的真实返回值。
  5. 免责声明:任务信息以Gate官网最终展示为准,该Skill返回的数据仅供参考。
  6. 必填提示文本:展示任务奖励时,必须包含指定的必填提示文本:"非Agent用户、非机构用户且账户状态正常的用户可完成任务并领取奖励。具体任务与奖励以Gate官网/App最终展示为准",不得省略。