Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add linkfox-ai/linkfox-skills --skill linkfox-amazon-store-fulfillment-inboundgit clone --depth 1 https://github.com/linkfox-ai/linkfox-skillsWrote 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-fulfillment-inbound)<a href="https://agentmods.dev/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-fulfillment-inbound"><img src="https://agentmods.dev/badge/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-fulfillment-inbound/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-fulfillment-inbound"><img src="https://agentmods.dev/badge/skills/linkfox-ai/linkfox-skills/linkfox-amazon-store-fulfillment-inbound.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00133 | $0.02561 |
| Opus 5 | $0.00067 | $0.01281 |
| Sonnet 5 | $0.00027 | $0.00512 |
| Haiku 4.5 | $0.00013 | $0.00256 |
Grade A, and why
linkfox-amazon-store-fulfillment-inbound 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 12d 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 — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Amazon 店铺 Fulfillment Inbound
本 Skill 覆盖 Amazon Fulfillment Inbound v2024-03-20 的 45 个 operation,以及仍需配合新流程使用的 6 个 v0 查询/文档 operation。所有请求继续使用 Amazon Store 系列的生产链路:POST /spApi/developerProxy,由服务端通过 sellerId + region 解析授权。
Prerequisites(必须先读)
- 本 Skill 依赖
linkfox-amazon-store-auth。先运行python scripts/check_auth_dependency.py;若 exit code 为42且 stderr 含DEPENDENCY_MISSING:,先安装或加载该依赖。 - 通过 auth Skill 选定店铺,取得
sellerId与region。region仅允许NA、EU、FE。 - 不接收、存储或透传
amzAccessToken、accessToken、refreshToken。不要让调用方覆盖 Amazonpath、method或网关queryString。 - 先读与任务匹配的分组文档;完整契约入口见 references/api.md。
调用方式
- API 端点:
POST /spApi/developerProxy(完整参数/响应/错误码见references/api.md) - Python 脚本:
python scripts/<operation_script>.py '<JSON 参数>' [--inline] [--no-cache] - 调用约束:本工具沿用 Amazon Store Skill 的统一免费配置;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换参数、翻页或连续试探;需要继续调用时先征得用户同意。
输出策略(脚本默认行为):
- 始终将完整响应写入
<cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-amazon-store-fulfillment-inbound-<timestamp>.json(<cwd>为脚本执行时的工作目录,<session>取自环境变量SESSION_ID;禁止写入/tmp,当前目录不可写则报错) - 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
- 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数、最大列表字段长度及前 3 条样本)
- 加
--inline强制全量打印到 stdout(同样落盘) - 加
--no-cache强制本次读/生成操作访问网关;只在用户要求刷新或已确认外部状态变化时使用
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq 或 ConvertFrom-Json 从保存的 JSON 文件按需抽取,避免整份 JSON 进入上下文。
工作方式
每个公开脚本只代表一个固定 operation,并且一次执行最多调用一次网关。统一执行器负责:
- 校验公共字段、path/query/body、枚举、分页上限和关键嵌套约束;
- 对 path segment 与 query 参数进行百分号编码;
- 将 v0 CLI 的 lowerCamelCase 参数映射为 Amazon 要求的 PascalCase wire 名称;
- 识别 200/201/202/204 成功响应并解析 JSON;
- 对异步响应返回显式
nextAction,但不自动轮询; - 保存完整响应,大响应只在 stdout 展示摘要。
调用格式:
python scripts/<operation_script>.py '<JSON parameters>' [--inline] [--no-cache]
公共参数:
| 参数 | 必填 | 说明 |
|---|---|---|
sellerId |
是 | 已授权 Seller ID |
region |
是 | NA / EU / FE |
| path/query 参数 | 条件 | 使用各 operation 文档中的 lowerCamelCase 名称 |
requestBody |
条件 | Amazon JSON body;推荐显式传此对象,也兼容将 body 字段放在顶层 |
confirmWrite |
提交类操作必填 | 用户明确确认目标和选择后传布尔值 true;8 个确定性提交操作缺少该值时脚本会在网关调用前拒绝 |
skipDepCheck |
否 | 仅本地调试使用 |
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 6.0 KB
- references/apis/asynchronous-operations.md 1.7 KB
- references/apis/delivery-windows-and-documents.md 1.8 KB
- references/apis/inbound-plans.md 2.3 KB
- references/apis/legacy-v0.md 3.2 KB
- references/apis/packing.md 2.7 KB
- references/apis/placement.md 1.5 KB
- references/apis/prep-compliance-labels.md 2.0 KB
- references/apis/self-ship-appointments.md 2.0 KB
- references/apis/shipment-content-updates.md 1.6 KB
- references/apis/shipments.md 2.4 KB
- references/apis/transportation.md 2.0 KB
- references/identifiers.md 2.7 KB
- references/marketplace-constraints.md 4.0 KB
- references/onboarding.md 2.0 KB
- references/workflows.md 5.9 KB
- scripts/_linkfox_gateway.py 12 KB runs code
- scripts/_spapi_fulfillment_inbound_common.py 29 KB runs code
- scripts/_spapi_fulfillment_inbound_specs.py 19 KB runs code
- scripts/_spapi_fulfillment_inbound_validators.py 10.0 KB runs code
- scripts/cancel_inbound_plan.py 219 B runs code
- scripts/cancel_self_ship_appointment.py 235 B runs code
- scripts/check_auth_dependency.py 8.6 KB runs code
- scripts/confirm_delivery_window_options.py 241 B runs code
- scripts/confirm_packing_option.py 225 B runs code
- scripts/confirm_placement_option.py 229 B runs code
- scripts/confirm_shipment_content_update_preview.py 255 B runs code
- scripts/confirm_transportation_options.py 241 B runs code
- scripts/create_inbound_plan.py 219 B runs code
- scripts/create_marketplace_item_labels.py 239 B runs code
- scripts/generate_delivery_window_options.py 243 B runs code
- scripts/generate_packing_options.py 229 B runs code
- scripts/generate_placement_options.py 233 B runs code
- scripts/generate_self_ship_appointment_slots.py 249 B runs code
- scripts/generate_shipment_content_update_previews.py 259 B runs code
- scripts/generate_transportation_options.py 243 B runs code
- scripts/get_bill_of_lading.py 215 B runs code
- scripts/get_delivery_challan_document.py 237 B runs code
- scripts/get_inbound_operation_status.py 235 B runs code
- scripts/get_inbound_plan.py 213 B runs code
- scripts/get_labels.py 203 B runs code
- scripts/get_prep_instructions.py 223 B runs code
- scripts/get_self_ship_appointment_slots.py 239 B runs code
- scripts/get_shipment_content_update_preview.py 247 B runs code
- scripts/get_shipment_items_by_shipment_id.py 241 B runs code
- scripts/get_shipment_items.py 217 B runs code
- scripts/get_shipment.py 207 B runs code
- scripts/get_shipments.py 209 B runs code
- scripts/list_delivery_window_options.py 235 B runs code
- scripts/list_inbound_plan_boxes.py 225 B runs code
- scripts/list_inbound_plan_items.py 225 B runs code
- scripts/list_inbound_plan_pallets.py 229 B runs code
- scripts/list_inbound_plans.py 217 B runs code
- scripts/list_item_compliance_details.py 235 B runs code
- scripts/list_packing_group_boxes.py 227 B runs code
- scripts/list_packing_group_items.py 227 B runs code
- scripts/list_packing_options.py 221 B runs code
- scripts/list_placement_options.py 225 B runs code
- scripts/list_prep_details.py 215 B runs code
- scripts/list_shipment_boxes.py 219 B runs code
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.
- 12d ago First seen · 122 lines · 133 tokens per session scan A 29b688d1a9b9
linkfox-amazon-store-fulfillment-inbound is a skill published in the GitHub repository linkfox-ai/linkfox-skills (101 stars, last pushed 22d ago), licensed MIT. It adds 133 tokens to every session and 2,561 once invoked, about $0.0007 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.