阿里商品月销查询
Analysis
The skill does what it claims: it extracts a Taobao/Tmall item ID and sends it to a disclosed third-party API to return monthly sales data.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
response = requests.get(API_URL, params=params, timeout=10)
The code performs a bounded HTTP GET request to the declared API URL with the item ID and version as parameters; this is expected for the skill's purpose.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
API Endpoint: `https://mi.earlydata.com/monthsale` ... 本技能仅发送商品ID到API服务器以获取月销量数据
The skill clearly discloses that product IDs are sent to a third-party API provider to obtain sales data.
