← 返回 Skills 市场
meituan-openplatform

美团外卖

作者 Meituan-OpenPlatform · GitHub ↗ · v1.0.5 · MIT-0
cross-platform ✓ 安全检测通过
168
总下载
0
收藏
0
当前安装
6
版本数
在 OpenClaw 中安装
/install meituan-waimai
功能描述
美团优惠领取工具,为用户提供更多的美团优惠,使用户在美团可以获得更好的体验。一期支持:指定券领取(发放美团优惠券)和历史领券记录查询。内置美团账号认证,无需额外安装其他 Skill。当用户输入「领取美团权益」、「领美团券」、「我要领券」、「领优惠券」、「美团发券」、「美团优惠」、「美团红包」、「外卖红包」、「外卖...
安全使用建议
This skill appears to do what it says: call Meituan endpoints to issue coupons and query history. Before installing or using it: - Only use if you trust the skill's source; network calls go to peppermall.meituan.com and scripts will send your user_token/device_token to that service. - The skill will store tokens and coupon history persistently under ~/.xiaomei-workspace by default. To sandbox storage, set environment variables XIAOMEI_AUTH_FILE and XIAOMEI_COUPON_HISTORY_FILE to safe temporary paths (for example /tmp/...) before running. - Be aware the skill asks for your phone number and SMS verification codes (necessary for login). Do not provide codes to untrusted skills. - The auth implementation intentionally shares its token under the key 'meituan-c-user-auth' so other Meituan-related skills may reuse the same token; if you install multiple third-party skills, that increases exposure. - If you have concerns, run the scripts in an isolated environment (separate user account, container, or with environment overrides) to limit persistent storage and reduce cross-skill token reuse.
功能分析
Type: OpenClaw Skill Name: meituan-waimai Version: 1.0.5 The skill bundle is a legitimate tool for managing Meituan coupons, featuring well-structured scripts for authentication, coupon issuance, and history querying. It follows security best practices by enforcing restricted file permissions (0600) on local token storage in `~/.xiaomei-workspace/` and directing all API traffic to official Meituan subdomains (peppermall.meituan.com). The `SKILL.md` instructions are transparent and include defensive guidelines to prevent unauthorized parameter overrides, with no evidence of data exfiltration or malicious intent.
能力评估
Purpose & Capability
Name/description (Meituan coupon issuance + history query) match the included scripts (auth.py, issue.py, query.py) which call Meituan endpoints (peppermall.meituan.com) and use a local config.json subChannelCode. No unrelated credentials, binaries, or services are requested.
Instruction Scope
SKILL.md directs the agent to run the bundled Python scripts, perform online token verification, prompt the user for phone numbers and SMS codes, and optionally fetch a remote version page. The instructions also require reading/writing local files (auth tokens and coupon history); this is within the stated purpose but involves handling sensitive auth material and asking the user for SMS codes.
Install Mechanism
There is no install spec; this is an instruction-only skill with included scripts. Nothing is downloaded or extracted at install time. Scripts run locally (no external install URLs), which is low-risk compared to arbitrary remote installers.
Credentials
The skill declares no required env vars but optionally reads XIAOMEI_AUTH_FILE and XIAOMEI_COUPON_HISTORY_FILE to allow sandboxing. It persistently writes auth tokens and coupon history to ~/.xiaomei-workspace by default. Notably, AUTH_KEY is set to 'meituan-c-user-auth' so tokens are intentionally shared/reused across skills — this is a design choice that can increase the blast radius if other installed skills are untrusted.
Persistence & Privilege
The skill persists user_token, device_token, and coupon history to files in the user's home (~/.xiaomei-workspace). It does not set always:true and does not modify other skills' configs, but the persistent storage (and cross-skill token key) means credentials survive between agent runs and may be reused by other skills.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install meituan-waimai
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /meituan-waimai 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.5
No user-facing changes in this version. - No file changes detected compared to the previous version. - Functionality and usage remain the same as the previous release.
v1.0.4
- Skill 名称由 "meituan-coupon-get-tool" 改为 "meituan-coupon",且 version 升级为 1.0.4 - 公开版本页 URL 更新为 https://clawhub.ai/meituan-zhengchang/meituan-coupon - 验证码安全验证(code=20010)流程优化:强制仅用返回 JSON 的 redirect_url 字段,不允许拼装或猜测 - 新增“账号管理”说明:增加退出登录、清除设备标识(device_token)操作及使用说明 - 增加隐私说明:本地数据文件不会上传,退出登录/清除设备标识行为区分明确 - 旧版 “SKILL.md” 中的若干描述、示例和流程已修正以匹配当前脚本与流程实际实现
v1.0.3
- Skill 名称由“meituan-coupon”更正为“meituan-coupon-get-tool”,displayName 同步为“美团优惠领取工具”。 - 明确规定发券失败(success=false)时,必须立即向用户展示失败原因,流程立即结束,严禁继续自动执行历史领券查询,避免误导用户。 - 更新了流程描述,强调 Step 3(查询领券记录)仅可在用户主动请求时调用,不再自动触发。 - 优化部分术语和表述,确保更准确反映功能定位及使用场景。
v1.0.2
- Skill display name, internal name, and description updated from“美团优惠领取工具 (meituan-waimai-coupon)” to“美团红包 (meituan-coupon)”. - The SKILL.md documentation updated with new display name and internal references. - No functional changes to the workflow, code usage, or capabilities. - Documentation and sample commands retain their original instructions and structure, except for the name change.
v1.0.1
**重大更新:新增美团优惠领取能力,内置账号认证,无需额外安装。** - 新增领取指定美团外卖优惠券及查询历史领券记录功能。 - Skill 重命名为「meituan-waimai-coupon」,并更新描述与使用场景。 - 增加 scripts 目录,支持领取、查询及认证相关操作(auth.py、issue.py、query.py、config.json)。 - 完善用户引导流程及错误处理,包括登录流程、短信验证码及常见错误提示。 - 支持 Skill 开发者接入分佣计划,合作详情见文档说明。
v1.0.0
Initial release of meituan-coupon. - Supports querying user's Meituan coupon list and viewing coupon details (amount, validity, usage conditions). - Enables filtering available coupons by business type, amount threshold, face value, and expiry date. - Allows users to find soon-to-expire coupons, with highlighted reminders for coupons expiring today or tomorrow. - Provides clear error handling for login status, unavailable coupons, network issues, and zero-match filtering. - Integrates guidance for first-time authorization via meituan-c-user-auth if user login is needed.
元数据
Slug meituan-waimai
版本 1.0.5
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 6
常见问题

美团外卖 是什么?

美团优惠领取工具,为用户提供更多的美团优惠,使用户在美团可以获得更好的体验。一期支持:指定券领取(发放美团优惠券)和历史领券记录查询。内置美团账号认证,无需额外安装其他 Skill。当用户输入「领取美团权益」、「领美团券」、「我要领券」、「领优惠券」、「美团发券」、「美团优惠」、「美团红包」、「外卖红包」、「外卖... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 168 次。

如何安装 美团外卖?

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

美团外卖 是免费的吗?

是的,美团外卖 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

美团外卖 支持哪些平台?

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

谁开发了 美团外卖?

由 Meituan-OpenPlatform(@meituan-openplatform)开发并维护,当前版本 v1.0.5。

💬 留言讨论