gate-exchange-welfare
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseGate 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 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 |
| Asset query | "how much USDT do I have", "check balance" | Route to |
| 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" | 路由至 |
| 资产查询 | "how much USDT do I have", "check balance" | 路由至 |
| 存款 | "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.
| Step | MCP Tool | Parameters | Data Retrieved |
|---|---|---|---|
| 1 | | 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:
- code=0 (new user) → Execute Case 2: New User Task List
- code=1001 (existing user) → Execute Case 1: Existing User Guidance
- Other error codes → Execute corresponding handling logic according to Exception Handling section
调用MCP工具查询当前用户是否为新用户。
| 步骤 | MCP工具 | 参数 | 获取的数据 |
|---|---|---|---|
| 1 | | 自动获取当前用户身份 | 返回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 ( returns code=1001).
cex_welfare_get_user_identityNo 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判定用户为老用户(返回code=1001)。
cex_welfare_get_user_identity无需额外调用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 ( returns code=0).
cex_welfare_get_user_identity触发条件:步骤1判定用户为新用户(返回code=0)。
cex_welfare_get_user_identityStep 2: Get All New User Onboarding Tasks
步骤2:获取所有新用户入门任务
| Step | MCP Tool | Parameters | Data Retrieved |
|---|---|---|---|
| 2 | | 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 |
| 步骤 | MCP工具 | 参数 | 获取的数据 |
|---|---|---|---|
| 2 | | 自动获取当前用户任务 | 获取新手引导任务列表,包括注册任务(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:
- Iterate through all tasks: For each task in the array returned by
data.taskscex_welfare_get_beginner_task_list - Extract real fields: Use the task's real fields such as ,
task_name,task_desc,reward_num,reward_unitstatus - Status display: shows "Pending",
status=1shows "Completed"status=2 - Format output: Strictly follow template format, but content must be real MCP data
Data mapping rules:
- Task title: Use field
task_name - Task description: Use field
task_desc - Reward amount: Use field
reward_num - Reward unit: Use field
reward_unit - Completion status: Use field (1=Pending, 2=Completed)
status
重要提示:必须使用步骤2中从MCP接口获取的真实任务数据,绝对不能编造或使用模板示例数据!
根据步骤2返回的真实任务数据,按以下格式输出给用户:
- 遍历所有任务:针对返回的
cex_welfare_get_beginner_task_list数组中的每个任务data.tasks - 提取真实字段:使用任务的真实字段,如、
task_name、task_desc、reward_num、reward_unitstatus - 状态显示:显示"待完成",
status=1显示"已完成"status=2 - 格式输出:严格遵循模板格式,但内容必须为真实MCP数据
数据映射规则:
- 任务标题:使用字段
task_name - 任务描述:使用字段
task_desc - 奖励金额:使用字段
reward_num - 奖励单位:使用字段
reward_unit - 完成状态:使用字段(1=待完成,2=已完成)
status
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 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" |
| 异常类型 | 处理方式 |
|---|---|
| 老用户(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 Intent | Routing Target |
|---|---|
| User wants to complete "First Deposit" task | Route to deposit / funding Skill |
| User wants to complete "First Trade" task | Route to |
| 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 |
| 用户后续意图 | 路由目标 |
|---|---|
| 用户想完成"首次存款"任务 | 路由至存款/资金相关Skill |
| 用户想完成"首次交易"任务 | 路由至 |
| 用户想完成"身份验证"任务 | 展示引导文本:前往Gate网页端或打开Gate App完成KYC |
| 用户询问资产余额 | 路由至 |
Safety Rules
安全规则
- Read-only queries: This Skill only queries task information, does not execute task claiming, reward distribution or other write operations.
- Identity verification prerequisite: Must complete user type determination first, must not show new user task list to existing users.
- 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.).
- Data integrity: All displayed task names, descriptions, reward amounts, reward units must come from real return values of interface.
cex_welfare_get_beginner_task_list - Disclaimer: Task information is subject to final display on Gate official website, data returned by this Skill is for reference only.
- 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.
- 只读查询:该Skill仅查询任务信息,不执行任务领取、奖励发放或其他写入操作。
- 身份验证前提:必须先完成用户类型判定,绝对不能向老用户展示新用户任务列表。
- 仅用真实数据:**严禁编造任务信息!**必须使用MCP接口返回的真实数据,不得使用示例模板中的虚假奖励信息(如"10积分"、"5 USDT体验金券"等)。
- 数据完整性:所有展示的任务名称、描述、奖励金额、奖励单位必须来自接口的真实返回值。
cex_welfare_get_beginner_task_list - 免责声明:任务信息以Gate官网最终展示为准,该Skill返回的数据仅供参考。
- 必填提示文本:展示任务奖励时,必须包含指定的必填提示文本:"非Agent用户、非机构用户且账户状态正常的用户可完成任务并领取奖励。具体任务与奖励以Gate官网/App最终展示为准",不得省略。