← 返回 Skills 市场
apiclaw

Amazon Pricing Command Center

作者 apiclaw · GitHub ↗ · v1.1.1 · MIT-0
cross-platform ✓ 安全检测通过
141
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install amazon-pricing-command-center
功能描述
Data-driven pricing strategy engine for Amazon sellers. Give me your ASIN(s) — I auto-detect the leaf category, analyze pricing landscape, and deliver RAISE/...
使用说明 (SKILL.md)

Dynamic Pricing Intelligence Agent — RAISE / HOLD / LOWER

Give me your ASIN(s). I'll tell you whether to raise, hold, or lower — with data.

Files

  • Script: {skill_base_dir}/scripts/apiclaw.py — run --help for params
  • Reference: {skill_base_dir}/references/reference.md (field names & response structure)

Credential

Required: APICLAW_API_KEY. Get free key at apiclaw.io/api-keys

Input

  • Required: one or more ASINs (your products). No keyword needed — category is auto-detected.
  • Optional: competitor_asins

On first interaction, tell user: "Give me your ASIN(s). I support single or batch analysis — I'll auto-detect each product's category and analyze the pricing landscape for you."

Auto Category Detection (CRITICAL — replaces manual keyword input)

  1. For each ASIN: product --asin {asin} → extract bestsellersRank array
  2. The last entry in bestsellersRank = leaf (most specific) category
  3. Use leaf category name → categories --keyword "{leaf_category_name}" → get categoryPath
  4. If categories returns empty, try the second-to-last BSR entry, or ask user
  5. Batch mode: group ASINs by leaf category → share market data within same category (saves credits)

API Pitfalls

  • Revenue = sampleAvgMonthlyRevenue directly. NEVER calculate price×sales.
  • Sales = monthlySalesFloor (lower bound)
  • Price in realtime: buyboxWinner.price, NOT top-level price
  • All keyword-based endpoints MUST include --category once categoryPath is locked
  • FBA fees from products/search are estimates — verify with Amazon FBA calculator
  • Aggregation endpoints without categoryPath produce severely distorted data

Pricing Signal Logic

Signal Condition
RAISE Price below opportunity band AND rating ≥ category avg AND BSR stable/rising
HOLD Price in optimal band AND BSR stable AND no competitor price war
LOWER Price above hottest band AND BSR declining OR competitor undercut detected

New Seller Price Band Selection

Don't pick highest-sales band. Calculate per band: Sales/Competition Ratio = Avg Monthly Sales ÷ Avg Review Count Highest ratio = best entry point (strong demand + low review barriers).

Profit Simulation

3 scenarios: Conservative (current price), Moderate (±$1-2), Aggressive (±$3-5). Per scenario: Revenue = Price × Est. Sales − FBA Fee − Referral Fee (15%) − COGS = Net Profit & Margin.

Profit Margin Interpretation

Net Margin Signal Interpretation
>30% 🟢 Healthy Strong margin, room for ad spend and promotions 📊
15-30% 🟡 Acceptable Viable but monitor costs closely 🔍
5-15% 🟠 Thin One price war or cost increase away from loss 🔍
\x3C5% 🔴 Unsustainable Must raise price, cut costs, or exit 💡

Price Position Analysis

  • Price \x3C opportunity band min: Underpriced — likely leaving money on the table if rating ≥ category avg 🔍
  • Price in opportunity band: Optimal zone — hold unless competitors shift 🔍
  • Price in hottest band: Maximum volume zone — high competition, margin pressure likely 🔍
  • Price > hottest band max: Premium positioning — only viable with strong brand/reviews 🔍
  • DB price ≠ Realtime price (>5% diff): Likely running a promotion or coupon — flag as temporary 📊

Output

Respond in user's language.

Per ASIN: Price Signal (RAISE/HOLD/LOWER) → Current Position in Category → Price Band Heatmap (with Sales/Competition Ratio) → Competitor Price Map (top 10 in leaf category) → 30-Day Trend → Profit Simulation (3 scenarios) → BuyBox Analysis → Recommended Price.

Batch summary (if multiple ASINs): Overview table (ASIN | Product | Category | Current Price | Signal | Recommended) → Per-ASIN detail.

End with: Data Provenance → API Usage. Flag DB vs Realtime discrepancies as likely promotions.

Language (required)

Output language MUST match the user's input language. If the user asks in Chinese, the entire report is in Chinese. If in English, output in English. Exception: API field names (e.g. monthlySalesFloor, categoryPath), endpoint names, technical terms (e.g. ASIN, BSR, CR10, FBA, credits) remain in English.

Disclaimer (required, at the top of every report)

Data is based on APIClaw API sampling as of [date]. Monthly sales (monthlySalesFloor) are lower-bound estimates. This analysis is for reference only and should not be the sole basis for business decisions. Validate with additional sources before acting.

Confidence Labels (required, tag EVERY conclusion)

  • 📊 Data-backed — direct API data (e.g. "current price $12.99 📊")
  • 🔍 Inferred — logical reasoning from data (e.g. "price is below opportunity band 🔍")
  • 💡 Directional — suggestions, predictions, strategy (e.g. "consider raising to $14.99 💡")

Rules: Strategy recommendations and price signals (RAISE/HOLD/LOWER) are NEVER 📊. User criteria override AI judgment.

Data Provenance (required)

Include a table at the end of every report:

Data Endpoint Key Params Notes
(e.g. Market Overview) markets/search categoryPath, topN=10 📊 Top N sampling, sales are lower-bound
... ... ... ...

Extract endpoint and params from _query in JSON output. Add notes: sampling method, T+1 delay, realtime vs DB, minimum review threshold, etc.

API Usage (required)

Endpoint Calls Credits
(each endpoint used) N N
Total N N

Extract from meta.creditsConsumed per response. End with Credits remaining: N.

API Budget

  • Single ASIN: ~20-25 credits
  • Batch N ASINs (same category): ~20-25 + 1 per additional ASIN
  • Batch N ASINs (different categories): ~20-25 per unique category
安全使用建议
This skill appears internally consistent: it needs only an APICLAW_API_KEY and calls api.apiclaw.io endpoints to perform pricing analysis. Before installing, confirm you are comfortable providing an APIClaw key and that apiclaw.io is a service you trust. Note two small mismatches to consider: (1) the bundled script requires a Python interpreter but the skill metadata doesn't list Python as a required binary — ensure the runtime will provide Python if you plan to execute the script; (2) the CLI will fall back to reading config.json in the skill directory for the API key if the environment variable is missing — avoid placing other sensitive credentials in that file and be aware the config file is stored with the skill files. If you want extra caution, create and use an API key limited to this tool (or with restricted credits) rather than a broadly-scoped/long-lived credential.
功能分析
Type: OpenClaw Skill Name: amazon-pricing-command-center Version: 1.1.1 The Amazon Pricing Command Center is a legitimate data analysis tool for Amazon sellers. The skill bundle consists of a Python CLI (`apiclaw.py`) and markdown instructions (`SKILL.md`) that facilitate market research via the APIClaw API (api.apiclaw.io). The code uses standard libraries, implements transparent logging of API calls, and lacks any indicators of data exfiltration, malicious execution, or prompt injection attacks.
能力评估
Purpose & Capability
The name/description (Amazon pricing analysis) match the declared API usage and required APICLAW_API_KEY. Minor mismatch: the package includes an executable Python CLI (scripts/apiclaw.py) but the skill metadata does not declare a required binary (python). A Python runtime is effectively required to run the bundled script.
Instruction Scope
SKILL.md instructs only to call APIClaw endpoints for product/category/market data and to produce pricing signals; it does not ask for unrelated system data. The script may read a local config.json in the skill directory as a fallback for the API key — SKILL.md requires the API key but does not call out the local config.json fallback explicitly.
Install Mechanism
No install spec (instruction-only) which minimizes installation risk. However, a substantial CLI script is included and expected to be executed; no external downloads or obscure URLs are used. Because the code is bundled rather than a pure prose skill, ensure the runtime will run the provided script and that you trust the included code.
Credentials
Only APICLAW_API_KEY is required (declared as primaryEnv) which is appropriate for an API-driven pricing tool. The script also supports reading api_key from a local config.json in the skill directory if the env var is absent — this file path is not declared in requires.configPaths and is worth noting before storing secrets there.
Persistence & Privilege
Skill does not request permanent always-on inclusion and does not attempt to modify other skills or global agent settings. It does not persist credentials beyond reading a local config.json (if present).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install amazon-pricing-command-center
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /amazon-pricing-command-center 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.1
**amazon-pricing-command-center v1.1.1** - Updated script usage instructions in SKILL.md (no longer instructs to "read" the script; only execute). - Clarified and streamlined references to files in documentation. - No changes to business logic or API usage.
v1.1.0
Initial release
元数据
Slug amazon-pricing-command-center
版本 1.1.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Amazon Pricing Command Center 是什么?

Data-driven pricing strategy engine for Amazon sellers. Give me your ASIN(s) — I auto-detect the leaf category, analyze pricing landscape, and deliver RAISE/... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 141 次。

如何安装 Amazon Pricing Command Center?

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

Amazon Pricing Command Center 是免费的吗?

是的,Amazon Pricing Command Center 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Amazon Pricing Command Center 支持哪些平台?

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

谁开发了 Amazon Pricing Command Center?

由 apiclaw(@apiclaw)开发并维护,当前版本 v1.1.1。

💬 留言讨论