← 返回 Skills 市场
285
总下载
1
收藏
0
当前安装
16
版本数
在 OpenClaw 中安装
/install taobao-monthsale-query
功能描述
查询阿里平台(淘宝/天猫)商品月销量,支持商品ID或链接输入,返回月销量数据
安全使用建议
这个技能看上去在功能和请求权限上是自洽的:它只提取商品ID并向 EarlyData 的 API 请求月销量,不会访问你的本地凭证或文件。需要注意的几点:
- EarlyData(mi.earlydata.com)会收到你的查询(至少是商品ID和请求元数据),如果你对把查询记录发送给第三方敏感,请不要使用该技能或联系数据提供方了解隐私政策。
- SKILL.md 声称认证由服务端处理(使用预置 token),这意味着没有本地凭证要求,但也依赖于该服务的诚实与安全性。若想更安全,可要求改用你自己的 API 或受信任的服务商。
- 运行该脚本需要在运行环境中安装 requests 库;当前脚本在导入时会抛出缺失依赖的错误(不会自动安装)。
- 代码中存在未使用的 import(subprocess, sys),虽非直接恶意,但属于小的质量问题。若你需要更高安全保证,可请求源作者提供服务商的隐私/安全说明或审计其 API 响应内容和日志策略。
功能分析
Type: OpenClaw Skill
Name: taobao-monthsale-query
Version: 1.1.5
The skill is designed to query Taobao/Tmall monthly sales data using a third-party API (mi.earlydata.com). The implementation in scripts/agent.py is straightforward, focusing on URL parsing and HTTP GET requests, with no evidence of data exfiltration, malicious execution, or harmful prompt injection. While the subprocess module is imported, it is never used, and the overall behavior aligns perfectly with the documentation in SKILL.md.
能力评估
Purpose & Capability
技能名/描述与实现一致:脚本解析淘宝/天猫链接或接受数字ID,然后向文档中列出的第三方 API (mi.earlydata.com/monthsale) 发起查询。所需的依赖(requests)也与实现相符。
Instruction Scope
SKILL.md 的运行时指令与脚本行为匹配:仅提取商品ID并调用 agent.py 中的 get_tb_month_sale。没有指示读取本地文件、环境变量或向非声明的外部端点发送额外数据。
Install Mechanism
无安装脚本或下载步骤(instruction-only + 附带脚本文件)。脚本在导入时验证本地是否有 requests,但不会自动下载安装,故安装机制风险较低。
Credentials
技能不要求本地凭证或环境变量,代码只将商品ID作为查询参数发送到 EarlyData。注意:EarlyData 作为第三方将能看到查询的商品ID(及来源 IP 等常规请求元数据),这是功能所需但涉及隐私/信任考量。
Persistence & Privilege
技能未请求常驻(always)或修改其他技能/全局配置;允许模型自主调用是平台默认,不构成额外风险。脚本也未写入磁盘或持久化凭证。
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install taobao-monthsale-query - 安装完成后,直接呼叫该 Skill 的名称或使用
/taobao-monthsale-query触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.5
- Updated the skill description to clarify that month sales data refers to the past 30 days.
- Minor text adjustments in instructions and response requirements for more precise user guidance.
- No changes to API endpoints or technical implementation.
v1.1.4
- Refactored code by moving agent.py to the scripts/ directory.
- Removed obsolete files: agent.py (root) and install.txt.
- No changes to skill usage or external behavior.
v1.1.3
- Bumped version to 1.1.3.
- Documentation improvements and minor updates in SKILL.md.
- No functional code changes; usage, API, and interface remain the same.
v1.1.2
Version 1.1.2
- Updated API usage information to clarify that authentication is handled server-side.
- Version bump in metadata.
- No changes to functionality or user interface.
v1.1.1
- 更新版本号至 1.1.1
- 文档中修正 API 版本信息与认证方式表述
- 移除部分冗余描述,内容更精简
v1.1.0
Version 1.1.0
- Updated version number and documentation for clarity and consistency.
- No user-facing logic changes; this update primarily aligns documentation with current features.
- No new dependencies or permission changes.
v1.0.9
- Updated version to 1.0.9.
- Minor documentation edits with no functional or usage changes.
v1.0.8
- Updated version to 1.0.8 in SKILL.md to reflect the new release.
- No functional or usage changes detected in documentation or dependencies.
- Minor maintenance update for metadata consistency.
v1.0.7
- Reverted documentation changes in SKILL.md, removing best practice suggestions and environment variable configuration examples.
- No functional code or feature changes; update is limited to documentation rollback.
- Version number in SKILL.md was reverted from 1.0.6 back to 1.0.4.
v1.0.6
Version 1.0.6
- Updated SKILL.md to remove hardcoded credential warnings and security notes.
- Improved documentation clarity, focusing on best practices and environment variable options.
- No changes to API logic or user-facing functionality.
v1.0.5
- Added security warning in documentation regarding hardcoded API credentials for improved transparency.
- Updated SKILL.md to recommend overriding default API credentials using environment variables in production environments.
- Provided detailed best practice guidance and example for custom API configuration.
- No changes to user-facing functionality or API behavior.
v1.0.4
Version 1.0.4
- 明确说明依赖第三方API服务 EarlyData (mi.earlydata.com) 获取数据,新增了“API Usage Information”板块
- 更新了“permissions”字段,详细标注API请求用途
- 新增“api_provider”和“api_usage”等元数据字段
- 详述接口认证方式、数据安全和隐私说明
- 文档内容更加完善和清晰
v1.0.3
- Added requests to the list of dependencies in SKILL.md.
- Updated SKILL.md metadata: version bump to 1.0.3 and added dependencies section.
- No functional or interface changes to the skill logic.
v1.0.2
Version 1.0.2
- Removed file writing and export result functionality; the skill now only requires network access permission.
- Simplified usage instructions to focus on single and straightforward queries.
- Updated edge case handling to remove batch processing and quota-related scenarios.
- Cleaned up and clarified documentation for easier understanding.
v1.0.1
- Documentation cleanup: simplified and removed detailed implementation descriptions from SKILL.md.
- Consolidated usage instructions and edge case information for clarity.
- No changes to core functionality or features.
v1.0.0
Initial release of Taobao/Tmall monthly sales query skill.
- Supports querying monthly sales for Taobao/Tmall products via item ID or product link
- Allows batch queries (up to 20 items) and result export to file
- Automatically extracts item ID from Taobao/Tmall links
- Returns clear error messages for invalid input, network errors, rate limiting, or other edge cases
- Provides detailed user guidance and handles free query limit (10 times), with contact for extra quota
元数据
常见问题
阿里商品月销查询 是什么?
查询阿里平台(淘宝/天猫)商品月销量,支持商品ID或链接输入,返回月销量数据. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 285 次。
如何安装 阿里商品月销查询?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install taobao-monthsale-query」即可一键安装,无需额外配置。
阿里商品月销查询 是免费的吗?
是的,阿里商品月销查询 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
阿里商品月销查询 支持哪些平台?
阿里商品月销查询 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 阿里商品月销查询?
由 YanJun(@yjcia)开发并维护,当前版本 v1.1.5。
推荐 Skills