Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/linkfox-ai/linkfox-skillsnpx agentmods add skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-reportWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-report)<a href="https://agentmods.dev/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-report"><img src="https://agentmods.dev/badge/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-report/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-report"><img src="https://agentmods.dev/badge/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket warn
- Snyk warn
- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high System Prompt Leakage · line 213 Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
- medium Agent Snooping · line 24 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 27 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00228 | $0.04725 |
| Opus 5 | $0.00114 | $0.02363 |
| Sonnet 5 | $0.00046 | $0.00945 |
| Haiku 4.5 | $0.00023 | $0.00473 |
Grade A, and why
linkfox-amazon-store-report scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Amazon 店铺报告获取
本 skill 提供 亚马逊卖家后台报告的端到端自动化获取:请求 → 轮询 → 下载 → 解压 → 预览。支持 95+ 种报告类型(库存 / 订单 / 销售 / 财务 / FBA / 退货 / Brand Analytics 等)。
⚠️ Prerequisites — MUST READ FIRST
本 skill 依赖 linkfox-amazon-store-auth(授权与店铺/令牌管理)。
🛑 如果
linkfox-amazon-store-auth未安装 / 未加载,请先安装它,再回到本 skill。
怎样判断 linkfox-amazon-store-auth 是否可用
在执行任何报告任务之前,agent 必须先进行依赖检查:
- 读取下列任一路径(skill 加载路径取决于运行环境;
scripts/check_auth_dependency.py会按相同规则自动探测):- 仓库 / 通用扁平目录:
<skills_dir>/linkfox-amazon-store-auth/SKILL.md - Claude:
~/.claude/skills/linkfox-amazon-store-auth/SKILL.md - Cursor:
~/.cursor/skills/...、~/.cursor/skills-cursor/... - OpenClaw:
<OPENCLAW_WORKSPACE>/skills/...、~/.openclaw/skills/...、~/.agents/skills/...(与 OpenClaw Skills 文档 的常见路径一致) - Hermes Agent:
~/.hermes/skills/<category>/linkfox-amazon-store-auth/SKILL.md,以及~/.hermes/plugins/<plugin>/skills/linkfox-amazon-store-auth/SKILL.md(与 Hermes Skills 文档 的布局一致)
- 仓库 / 通用扁平目录:
- 或直接运行脚本:
python scripts/check_auth_dependency.py,脚本会在缺失时以 exit code42退出,并在 stderr 输出结构化提示(以DEPENDENCY_MISSING:开头)。脚本已内置 OpenClaw / Hermes 路径判断;若在 Hermes 的config.yaml里配置了skills.external_dirs,请设置环境变量HERMES_SKILLS_EXTERNAL_DIRS(使用系统路径分隔符串联多个目录)以便探测。 - 如果上述检查全部失败,则判定为
linkfox-amazon-store-auth未安装。
发现未安装时的标准处置
当检测到 linkfox-amazon-store-auth 未安装时,agent 必须按以下顺序执行:
- 尝试自动安装(优先):
- 如果当前运行时具备 skill 安装工具(例如 skill 市场 / skill 管理 MCP /
install_skill类工具),立即调用安装linkfox-amazon-store-auth。 - 安装成功后,重新加载并从头执行本 skill。
- 如果当前运行时具备 skill 安装工具(例如 skill 市场 / skill 管理 MCP /
- 引导用户手动安装(兜底):
- 向用户说明:「本技能依赖
linkfox-amazon-store-auth,尚未安装。请前往 LinkFox Skills 安装该 skill,安装完成后告诉我一声,我会继续为你拉取报告。」 - 不要绕过依赖直接去调
/spApi/authorizeUrl、/spApi/storeTokens、/spApi/authorizedStores等接口——这些接口的选店铺、令牌流程属于linkfox-amazon-store-auth的职责,本 skill 只负责报告业务本身。
- 向用户说明:「本技能依赖
- 不得静默降级:如果既无法自动安装也未获得用户确认,必须停止执行并把依赖缺失的事实回报给用户,不要擅自尝试替代方案。
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/api.md 8.8 KB
- references/onboarding.md 2.0 KB
- references/report-requests/accountHealthReport-2020-11-18.md 2.7 KB
- references/report-requests/b2bProductOpportunitiesNotYetOnAmazonReport-2020-11-19.md 2.7 KB
- references/report-requests/b2bProductOpportunitiesRecommendedForYouReport-2020-11-19.md 2.6 KB
- references/report-requests/endUserDataReport.md 3.0 KB
- references/report-requests/marketplaceAsinPageViewMetrics.md 3.1 KB
- references/report-requests/promotionReport.md 2.9 KB
- references/report-requests/README.md 7.3 KB
- references/report-requests/sellerCouponReport.md 2.8 KB
- references/report-requests/sellerSalesAndTrafficReport.md 3.0 KB
- references/report-requests/sellingPartnerMarketBasketAnalysisReport.md 3.5 KB
- references/report-requests/sellingPartnerRepeatPurchaseReport.md 2.9 KB
- references/report-requests/sellingPartnerSearchCatalogPerformanceReport.md 3.1 KB
- references/report-requests/sellingPartnerSearchQueryPerformanceReport.md 3.2 KB
- references/report-requests/sellingPartnerSearchTermsReport.md 2.9 KB
- references/report-requests/types/END_USER_DATA_REPORT.md 1.6 KB
- references/report-requests/types/FBA_BULK_INVOICE.md 4.1 KB
- references/report-requests/types/FEE_DISCOUNTS_REPORT.md 2.7 KB
- references/report-requests/types/GET_AFN_INVENTORY_DATA_BY_COUNTRY.md 2.8 KB
- references/report-requests/types/GET_AFN_INVENTORY_DATA.md 2.5 KB
- references/report-requests/types/GET_AMAZON_FULFILLED_SHIPMENTS_DATA_GENERAL.md 3.3 KB
- references/report-requests/types/GET_AMAZON_FULFILLED_SHIPMENTS_DATA_INVOICING.md 3.1 KB
- references/report-requests/types/GET_AMAZON_FULFILLED_SHIPMENTS_DATA_TAX.md 3.0 KB
- references/report-requests/types/GET_B2B_PRODUCT_OPPORTUNITIES_NOT_YET_ON_AMAZON.md 1.9 KB
- references/report-requests/types/GET_B2B_PRODUCT_OPPORTUNITIES_RECOMMENDED_FOR_YOU.md 1.9 KB
- references/report-requests/types/GET_BRAND_ANALYTICS_MARKET_BASKET_REPORT.md 2.0 KB
- references/report-requests/types/GET_BRAND_ANALYTICS_REPEAT_PURCHASE_REPORT.md 1.7 KB
- references/report-requests/types/GET_BRAND_ANALYTICS_SEARCH_CATALOG_PERFORMANCE_REPORT.md 2.0 KB
- references/report-requests/types/GET_BRAND_ANALYTICS_SEARCH_QUERY_PERFORMANCE_REPORT.md 2.0 KB
- references/report-requests/types/GET_BRAND_ANALYTICS_SEARCH_TERMS_REPORT.md 1.8 KB
- references/report-requests/types/GET_CONVERGED_FLAT_FILE_PENDING_ORDERS_DATA.md 2.6 KB
- references/report-requests/types/GET_COUPON_PERFORMANCE_REPORT.md 1.8 KB
- references/report-requests/types/GET_CSV_MFN_PRIME_RETURNS_REPORT.md 3.0 KB
- references/report-requests/types/GET_DATE_RANGE_FINANCIAL_HOLDS_DATA.md 2.9 KB
- references/report-requests/types/GET_EASYSHIP_DOCUMENTS.md 2.6 KB
- references/report-requests/types/GET_EASYSHIP_PICKEDUP.md 2.5 KB
- references/report-requests/types/GET_EASYSHIP_WAITING_FOR_PICKUP.md 2.6 KB
- references/report-requests/types/GET_EPR_ANNUAL_REPORTS.md 2.9 KB
- references/report-requests/types/GET_EPR_MONTHLY_REPORTS.md 3.0 KB
- references/report-requests/types/GET_EPR_QUARTERLY_REPORTS.md 3.0 KB
- references/report-requests/types/GET_FBA_ESTIMATED_FBA_FEES_TXT_DATA.md 2.9 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_CUSTOMER_RETURNS_DATA.md 2.7 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_CUSTOMER_SHIPMENT_PROMOTION_DATA.md 2.8 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_CUSTOMER_SHIPMENT_REPLACEMENT_DATA.md 2.7 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_CUSTOMER_SHIPMENT_SALES_DATA.md 3.0 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_CUSTOMER_TAXES_DATA.md 2.8 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_INBOUND_NONCOMPLIANCE_DATA.md 2.7 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_LONGTERM_STORAGE_FEE_CHARGES_DATA.md 2.9 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_REMOVAL_ORDER_DETAIL_DATA.md 3.0 KB
- references/report-requests/types/GET_FBA_FULFILLMENT_REMOVAL_SHIPMENT_DETAIL_DATA.md 3.0 KB
- references/report-requests/types/GET_FBA_INVENTORY_PLANNING_DATA.md 2.8 KB
- references/report-requests/types/GET_FBA_MYI_ALL_INVENTORY_DATA.md 2.7 KB
- references/report-requests/types/GET_FBA_MYI_UNSUPPRESSED_INVENTORY_DATA.md 2.7 KB
- references/report-requests/types/GET_FBA_OVERAGE_FEE_CHARGES_DATA.md 2.7 KB
- references/report-requests/types/GET_FBA_RECOMMENDED_REMOVAL_DATA.md 2.9 KB
- references/report-requests/types/GET_FBA_REIMBURSEMENTS_DATA.md 2.7 KB
- references/report-requests/types/GET_FBA_STORAGE_FEE_CHARGES_DATA.md 2.7 KB
- references/report-requests/types/GET_FLAT_FILE_ACTIONABLE_ORDER_DATA_SHIPPING.md 3.0 KB
- references/report-requests/types/GET_FLAT_FILE_ALL_ORDERS_DATA_BY_LAST_UPDATE_GENERAL.md 3.0 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 285 lines · 228 tokens per session scan A ea9a5765b7ae
linkfox-amazon-store-report is a skill published in the GitHub repository linkfox-ai/linkfox-skills (101 stars, last pushed 20d ago), licensed MIT. It adds 228 tokens to every session and 4,725 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
amazon-reviews-api-skill
This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a…
amazon-competitor-analyzer
Scrapes Amazon product data from ASINs using browseract.com automation API and performs surgical competitive analysis. Compares specifications, pricing, review quality, and visual strategies to identify competitor moats and vulnerabilities.
asc-subscription-localization
Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.
food-order
Reorder previous Foodora orders, preview cart contents, and track delivery ETA/status with ordercli. Use when the user wants to reorder food, check delivery status, or browse recent Foodora order history. Never confirm an order without explicit user approval.
product-description-generator
E-commerce product description generator for any platform. Generates optimized titles, bullet points, descriptions, and backend keywords using competitor research + keyword scoring + FABE copywriting. Two modes: (A) Create — generate listing from product specs with optional competitor analysis, (B) Optimize — improve…
amazon-price-tracker
Amazon price monitoring and competitive pricing intelligence. Real-time price tracking, Buy Box analysis, promotion detection, and dynamic pricing strategy optimization. Use when the user asks about price monitoring, competitor pricing, Buy Box tracking, or pricing strategy.