Product loader
面向外贸出口场景的 Hermes / Open claw Agent Skills 包,支持海外客户发现、批量名单处理、公司背调、客户评分、决策层线索、开发信、跟进计划和报价单导出。
npx -y skills add Xuxchloris/export_skills --skill product-loaderAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 19 stars19 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when a trade agent needs product catalog, SKU, specification, packaging, price-rule, MOQ, certification, lead-time, or factory profile data before research, outreach, scoring, or quotation work
SKILL.md
2.8 KB, as published. Nobody here has run it
Product Loader
Overview
Load product and company facts from configured files before any trade workflow uses them. The core rule is simple: no product claim, price, certification, MOQ, packaging size, or delivery promise may be invented.
When to Use
Use this skill when the user asks about product matching, customer development, quotations, product introductions, catalogs, factory advantages, packaging details, model numbers, or delivery terms.
Do not use it to research a prospect website or write the final email body by itself.
Inputs
data/config/PRODUCT.yamldata/config/PRICING.yaml- Optional product catalog file with multiple SKUs
- Optional product query or SKU when the user only wants one product from a catalog
- User-provided product notes in the current conversation
Outputs
{
"company": {},
"products": [],
"pricing_rules": [],
"missing_fields": [],
"safe_to_quote": false
}
Procedure
- Read
PRODUCT.yamland extract company profile, SKUs, product names, HS codes, materials, dimensions, packaging, MOQ, lead time, certifications, applications, and keywords. - Read
PRICING.yamland extract currency, incoterm, validity, payment terms, tier prices, sample fees, and remarks. - If the user names a product, keyword, or SKU, select the matching product from the catalog instead of asking them to rewrite the whole config.
- Prefer current conversation facts only when the user explicitly overrides the configured file.
- Mark missing fields instead of guessing them.
- Set
safe_to_quotetotrueonly when SKU, quantity, unit price, incoterm, payment terms, validity, product size, and packing size are present. - Return a compact product context for downstream skills.
Verification
- Product names and SKUs match the source file.
- Catalog selection returns the named product only.
- Prices come only from
PRICING.yamlor explicit user input. - Missing price, size, packing, MOQ, incoterm, or lead time is listed in
missing_fields. - Certifications are not added unless present in source data.
safe_to_quoteisfalsewhen any required quotation field is missing.
Common Mistakes
| Mistake | Fix |
|---|---|
| Guessing a price from a similar SKU | Ask for confirmation or mark price missing |
| Treating marketing advantages as certifications | Keep certifications in a separate field |
| Using one product's packing size for another SKU | Match by exact SKU |
| Producing a formal quotation with missing freight terms | Produce a draft with human review required |