← 返回 Skills 市场
browseract-ai

amazon-buy-box-monitor-api-skill

作者 browser-act · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
130
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install amazon-buy-box-monitor-api-skill
功能描述
This skill helps users extract basic product details other sellers prices and seller ratings from Amazon via ASIN automatically using the BrowserAct API. Age...
使用说明 (SKILL.md)

\r \r

Amazon Buy Box Monitor API Skill\r

\r

📖 Introduction\r

This skill provides users with an automated Amazon Buy Box monitoring service using the BrowserAct API template. It can directly extract structured data including basic product details, other sellers' prices, and seller ratings from Amazon via a specific ASIN. No coding or proxies are required, and users only need to provide the ASIN and an optional marketplace URL to retrieve clean and usable data.\r \r

✨ Features\r

  1. No hallucinations, ensuring stable and accurate data extraction: Pre-set workflows avoid AI generative hallucinations.\r
  2. No CAPTCHA issues: No need to handle reCAPTCHA or other verification challenges.\r
  3. No IP access restrictions or geo-fencing: No need to handle regional IP restrictions.\r
  4. More agile execution speed: Faster task execution compared to purely AI-driven browser automation solutions.\r
  5. Extremely high cost-effectiveness: Significantly reduces data acquisition costs compared to AI solutions that consume massive amounts of tokens.\r \r

🔑 API Key Guidance\r

Before running, you must check the BROWSERACT_API_KEY environment variable. If it is not set, do not take any other actions; you must prompt and wait for the user to provide it.\r The Agent must inform the user at this time:\r

"Since you have not configured the BrowserAct API Key, please go to the BrowserAct Console first to get your Key."\r \r

🛠️ Input Parameters\r

When calling the script, the Agent should flexibly configure the following parameters based on the user's needs:\r \r

  1. ASIN\r
    • Type: string\r
    • Description: The Amazon Standard Identification Number. This is the unique identifier for the product on Amazon.\r
    • Example: B005O2ZU68\r
    • Required: Yes\r \r
  2. Marketplace_url\r
    • Type: string\r
    • Description: The Amazon marketplace URL indicating the region.\r
    • Default value: https://amazon.com/\r
    • Example: https://amazon.co.uk/\r
    • Required: Yes\r \r

🚀 Invocation Method (Recommended)\r

The Agent should execute the following standalone script to achieve "one command to get results":\r \r

# Example invocation\r
python -u ./scripts/amazon_buy_box_monitor_api.py "ASIN" "Marketplace_url"\r
```\r
\r
### ⏳ Running Status Monitoring\r
Since this task involves automated browser operations, it may take some time (several minutes). The script will **continuously output status logs with timestamps** while running (e.g., `[14:30:05] Task Status: running`).\r
**Agent Instructions**:\r
- While waiting for the script to return results, please keep paying attention to the terminal output.\r
- As long as the terminal is still outputting new status logs, it means the task is running normally. Do not misjudge it as deadlocked or unresponsive.\r
- If the status remains unchanged for a long time or the script stops outputting without returning a result, then consider triggering the retry mechanism.\r
\r
## 📊 Data Output Description\r
After successful execution, the script will parse and print the result directly from the API response. The result includes:\r
- `asin`: The Amazon Standard Identification Number\r
- `product_title`: The title of the product\r
- `buy_box_owner`: The owner of the buy box\r
- `buy_box_price`: The current buy box price\r
- `currency`: The currency of the price\r
- `fulfillment_method`: The fulfillment method (e.g., FBA, FBM)\r
- `availability_status`: Stock availability status\r
- `other_sellers`: An array of other sellers including their name, price, shipping fee, and seller rating\r
- `seller_info`: Detailed information about the main seller including rating and feedback count\r
\r
## ⚠️ Error Handling & Retry\r
If an error is encountered during the execution of the script (such as network fluctuations or task failure), the Agent should follow this logic:\r
\r
1. **Check output content**:\r
   - If the output **contains** `"Invalid authorization"`, it means the API Key is invalid or expired. In this case, **do not retry**, but guide the user to re-check and provide the correct API Key.\r
   - If the output **does not contain** `"Invalid authorization"` but the task fails (e.g., output starts with `Error:` or returns empty results), the Agent should **automatically attempt to execute the script once more**.\r
\r
2. **Retry limits**:\r
   - Automatic retry is limited to **only once**. If the second attempt still fails, stop retrying and report the specific error message to the user.\r
\r
## 🌟 Typical Use Cases\r
1. **Query Amazon buy box information**: Find out who currently owns the buy box for a specific ASIN.\r
2. **Monitor Amazon product prices**: Track the current price and buy box price changes.\r
3. **Extract Amazon product details by ASIN**: Get basic product information like title and brand.\r
4. **Check other sellers prices on Amazon**: Analyze pricing strategies of competitors for the same product.\r
5. **Get Amazon seller ratings and feedback count**: Evaluate the reputation of sellers on the listing.\r
6. **Monitor buy box ownership for a specific ASIN**: Check if a particular seller maintains the buy box.\r
7. **Track Amazon fulfillment methods for competitors**: Determine whether competitors are using FBA or FBM.\r
8. **Compare Amazon product prices across different sellers**: View shipping fees and total prices from multiple sellers.\r
9. **Retrieve Amazon buy box availability status**: Check if the product is in stock or backordered.\r
10. **Analyze Amazon seller profile details**: Extract detailed seller info and recent feedback summaries.
安全使用建议
This skill appears to do exactly what it says: it sends the ASIN and marketplace URL to BrowserAct using the BROWSERACT_API_KEY and prints the returned data. Before installing: 1) Only provide a BrowserAct API key you trust — the key will be sent to api.browseract.com and can be used to run tasks in your account. 2) Ensure Python and the 'requests' package are available in the execution environment. 3) Review BrowserAct's terms and billing (calls may incur charges) and monitor API key usage. 4) If you need stronger assurance, review the included script locally to confirm no changes are needed and consider using a key with limited scope or rotation. Overall this skill is coherent, but security depends on trusting the external BrowserAct service and protecting the API key.
功能分析
Type: OpenClaw Skill Name: amazon-buy-box-monitor-api-skill Version: 1.0.0 The skill is a legitimate integration for the BrowserAct API designed to monitor Amazon product data. The Python script (amazon_buy_box_monitor_api.py) correctly handles API authentication via environment variables and performs standard task polling without any signs of data exfiltration, obfuscation, or unauthorized execution.
能力评估
Purpose & Capability
Name/description match the behavior: the script submits an ASIN and marketplace URL to BrowserAct and polls for results. Requested env var (BROWSERACT_API_KEY) is appropriate. Minor mismatch: the runtime depends on the Python 'requests' library but the skill metadata only lists 'python' as a required binary and does not declare Python package dependencies.
Instruction Scope
SKILL.md instructs the agent to check BROWSERACT_API_KEY, invoke the included script with ASIN and marketplace URL, and handle simple retry/error logic. The instructions do not ask the agent to read unrelated files, other env vars, or to exfiltrate data to unexpected endpoints — the only external endpoint is api.browseract.com, which is consistent with the stated purpose.
Install Mechanism
No install spec (instruction-only) and the included script is a straightforward Python client that uses standard HTTP calls. There are no downloads from untrusted URLs or archive extraction. Note: no guidance is provided to ensure the 'requests' package is available; the agent/user must ensure appropriate Python dependencies are installed.
Credentials
Only BROWSERACT_API_KEY is required, which is proportional to a skill that calls the BrowserAct API. No unrelated credentials or config paths are requested.
Persistence & Privilege
The skill does not request permanent/always-on presence (always: false) and does not modify other skills or system-wide settings. Autonomous invocation is allowed by default but not excessive here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install amazon-buy-box-monitor-api-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /amazon-buy-box-monitor-api-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Amazon Buy Box Monitor API Skill v1.0.0 - Initial release of the Amazon Buy Box Monitor skill powered by the BrowserAct API. - Enables automated extraction of Amazon product details, buy box status, seller info, and competitor prices via ASIN. - Features built-in guidance for API key setup and robust error/retry logic. - Supports monitoring tasks including buy box ownership, fulfillment method analysis, and seller ratings/feedback retrieval. - Provides clear data output structure and detailed running/logging workflow for seamless user experience.
元数据
Slug amazon-buy-box-monitor-api-skill
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

amazon-buy-box-monitor-api-skill 是什么?

This skill helps users extract basic product details other sellers prices and seller ratings from Amazon via ASIN automatically using the BrowserAct API. Age... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 130 次。

如何安装 amazon-buy-box-monitor-api-skill?

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

amazon-buy-box-monitor-api-skill 是免费的吗?

是的,amazon-buy-box-monitor-api-skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

amazon-buy-box-monitor-api-skill 支持哪些平台?

amazon-buy-box-monitor-api-skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 amazon-buy-box-monitor-api-skill?

由 browser-act(@browseract-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论