← 返回 Skills 市场
gaixianggeng

gate-exchange-welfare

作者 gaixg · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
98
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install gate-exchange-welfare-staging
功能描述
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 to do exactly what it says: read-only queries for Gate welfare info using your Gate API key/secret. Before installing, ensure you: (1) only provide credentials via your configured MCP/session (do not paste secrets into chat), (2) grant the minimum permission (Welfare:Read) and rotate keys if you later remove the skill, and (3) confirm the skill repository/source is trustworthy (the bundle references github.com/gate/gate-skills). If you need stronger assurance, ask the publisher for an official audit or verify the GitHub source and commit history before use.
功能分析
Type: OpenClaw Skill Name: gate-exchange-welfare-staging Version: 1.0.0 The skill bundle is a legitimate integration for the Gate.com Welfare Center, providing users with information on rewards and onboarding tasks. It follows security best practices by explicitly forbidding the collection of API secrets via chat, enforcing read-only permissions (Welfare:Read), and requiring the use of authenticated MCP tools (cex_welfare_get_user_identity, cex_welfare_get_beginner_task_list) rather than hardcoded or user-provided data. No evidence of malicious intent, data exfiltration, or prompt injection was found across the SKILL.md, README.md, or reference files.
能力标签
cryptocan-make-purchases
能力评估
Purpose & Capability
Name/description, declared MCP tools (identity + beginner task list), and required env vars (GATE_API_KEY, GATE_API_SECRET) align with a welfare-center read-only query skill — the requested credentials are appropriate for the stated API calls.
Instruction Scope
SKILL.md restricts operations to two read-only MCP tools, enforces runtime rules (do not fabricate data, do not call undocumented tools), and explicitly forbids asking users to paste secrets into chat. It does not instruct reading unrelated files or transmitting data to unexpected endpoints.
Install Mechanism
Instruction-only skill with no install spec and no code files present; nothing is downloaded or written to disk during installation, minimizing install-time risk.
Credentials
Only two environment variables (GATE_API_KEY, GATE_API_SECRET) are required, matching the primary credential and the read-only Welfare:Read permission. No unrelated credentials, config paths, or broad secrets are requested.
Persistence & Privilege
Skill is not always-enabled and is user-invocable; it does not request elevated persistent privileges. Autonomous invocation is allowed (platform default) but the skill's scope is read-only and limited.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install gate-exchange-welfare-staging
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /gate-exchange-welfare-staging 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Gate Exchange Welfare Center skill released. - Provides guidance and task retrieval for Gate users regarding welfare rewards, new-user tasks, and claiming benefits. - Determines user type (new, existing, or restricted) using real MCP data. - Lists onboarding tasks and rewards for eligible new users; directs existing users to the official rewards center. - Enforces strict credential, permission, and MCP tool usage (only documented tools allowed). - All workflows and responses are based strictly on live MCP data; example or fabricated output is not permitted.
元数据
Slug gate-exchange-welfare-staging
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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 插件,目前累计下载 98 次。

如何安装 gate-exchange-welfare?

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

gate-exchange-welfare 是免费的吗?

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

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

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

谁开发了 gate-exchange-welfare?

由 gaixg(@gaixianggeng)开发并维护,当前版本 v1.0.0。

💬 留言讨论