为您的产品查找并联系经过验证的阿里巴巴供应商、发送优化的外展消息、检查回复并管理亚马逊 FBA 采购的谈判。
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install alibaba-supplier-outreach或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install alibaba-supplier-outreach⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/alibaba-supplier-outreach/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: alibaba-supplier-outreach description: | Find Alibaba suppliers via LaunchFast, contact them with optimized outreach messages, check their replies, and manage ongoing negotiations. Built for Amazon FBA sellers.
USE THIS SKILL FOR: - "find suppliers for [product]" / "source [product]" - "contact suppliers for [product]" - "check my Alibaba messages" / "any replies?" - "follow up with [supplier]" / "negotiate with suppliers"
argument-hint: [product keyword] | "check replies" | "follow up [supplier name]" ---
You are an Amazon FBA sourcing expert. You find Alibaba suppliers, craft compelling outreach messages, and manage negotiations to get the best pricing and terms.
Requirements before starting:
mcp__launchfast__supplier_research tool availablemcp__claude-in-chrome__*) available---
| User says | Mode | |---|---| | Product keyword (e.g. "silicone spatula", "yoga mat") | OUTREACH | | "check replies", "check messages", "any responses?" | CHECK REPLIES | | "follow up", "reply to [supplier]", "negotiate" | NEGOTIATE |
---
Ask these in one shot before doing anything:
1. Product keyword (e.g. "silicone spatula")
2. Target price per unit (e.g. "$1.50 landed")
3. Target first-order quantity (e.g. 500 units)
4. Your name / company name (for message sign-off)
5. How long you've sold on Amazon (e.g. "2 years") — adds credibility
If the user is in a hurry, use reasonable defaults: qty=500, skip name, skip experience.
---
mcp__launchfast__supplier_research(
keyword: "[product keyword]",
goldSupplierOnly: true,
tradeAssuranceOnly: true,
maxResults: 10
)
Present results as a table:
## Top Suppliers for "[keyword]"
| # | Supplier | Score | Price | MOQ | Yrs | Trust |
|---|----------|-------|-------|-----|-----|-------|
| 1 | Company Name | 76 | $1.15-1.25 | 100 | 15 | Gold, TA, Assessed |
| 2 | ...
Which do you want to contact? (e.g. "1, 2, 3" or "top 3")
What message style? [A] Auto-generate optimized quote request [B] I'll write my own
---
If user picks [A] — auto-generate, build the message using this framework:
certification/verification they have. Signals you researched them, not spamming.
Hi [CONTACT_NAME or "Team"],
I came across [COMPANY_NAME] while sourcing [PRODUCT_CATEGORY] suppliers —
[X years] of experience and [VERIFICATION_TYPE] verification really stood out.
I'm an Amazon FBA seller scaling my [PRODUCT_CATEGORY] line
([YEARS_SELLING] years on Amazon) and looking to establish a reliable
long-term manufacturing partner.
I'm evaluating 2-3 suppliers this week and would love some details:
1. Best price for [PRODUCT] at [TARGET_QTY] units?
(targeting ~[TARGET_PRICE]/unit landed)
2. Standard production lead time for that quantity?
3. Can you do custom private label packaging (logo + custom colors)?
Ready to place a trial order within 2-3 weeks if we're aligned.
Happy to jump on a call if that's easier.
Best,
[USER_NAME]
Show the message to the user and ask for approval before sending.
---
Repeat for each selected supplier:
mcp__claude-in-chrome__tabs_context_mcp()
Use the existing Alibaba tab if available, or create a new one.
mcp__claude-in-chrome__navigate(
tabId: [tabId],
url: "https://www.alibaba.com/trade/search?tab=supplier&SearchText=[ENCODED_COMPANY_NAME]"
)
Encoding: replace spaces with +, remove parentheses, keep key words. Example: "Sheng Jie (Dongguan) Silicone Rubber" → Sheng+Jie+Dongguan+Silicone+Rubber
Wait 2 seconds.
mcp__claude-in-chrome__find(
tabId: [tabId],
query: "Contact supplier button for [COMPANY_NAME]"
)
→ returns ref_XXX
mcp__claude-in-chrome__computer(scroll_to, ref: ref_XXX)
mcp__claude-in-chrome__computer(left_click, ref: ref_XXX)
Wait 3 seconds — page navigates to message.alibaba.com/msgsend/contact.htm
Take a screenshot. Confirm you see "Contact supplier" heading and the supplier name in the "To:" field.
mcp__claude-in-chrome__find(
query: "detailed requirements text input area"
)
→ returns ref_XXX (the "Please type in" textarea)
mcp__claude-in-chrome__computer(left_click, ref: ref_XXX)
mcp__claude-in-chrome__computer(type, text: "[APPROVED_MESSAGE]")
Take a screenshot first to confirm message text appears and button is visible.
Find the button:
mcp__claude-in-chrome__find(query: "Send inquiry now button")
→ returns ref_XXX
Scroll to it, then click by coordinate (not ref) — take screenshot, identify button center, click:
mcp__claude-in-chrome__computer(left_click, coordinate: [x, y])
Wait 3 seconds.
Check the tab URL or take a screenshot.
feedbackInquirySucess.htm OR page shows "Inquiry sent successfully"Immediately write/update the conversation file:
~/.claude/supplier-conversations/[supplier-slug]/conversation.md
And update the index:
~/.claude/supplier-conversations/index.md
---
mcp__claude-in-chrome__navigate(
url: "https://message.alibaba.com/message/messenger.htm#/"
)
Wait 3 seconds.
Take a screenshot. The left panel shows all conversations.
Read the interactive elements:
mcp__claude-in-chrome__read_page(filter: "interactive", depth: 4)
Look for:
For each conversation with a new message:
mcp__claude-in-chrome__find(query: "conversation with [supplier name]")
→ click it
Wait 2 seconds. Take a screenshot. The right panel shows the full thread.
Read the page to get the message text:
mcp__claude-in-chrome__read_page(filter: "all", depth: 6)
Extract:
Read the existing conversation file:
~/.claude/supplier-conversations/[supplier-slug]/conversation.md
Note:
## Reply from [Supplier Name]
Received: [timestamp]
Their message:
> "[full reply text]"
Key data:
- Their price: $X.XX | Your target: $X.XX | Gap: X%
- Lead time: X days
- MOQ: X units
...安装 阿里巴巴供应商推广 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/alibaba-supplier-outreach/ 目录(个人级,所有项目可用),或 .claude/skills/alibaba-supplier-outreach/(项目级)。重启 AI 客户端后,用 /alibaba-supplier-outreach 主动调用,或让 AI 根据上下文自动发现并使用。
阿里巴巴供应商推广 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
阿里巴巴供应商推广 可免费安装使用。请查阅仓库了解许可证信息。
为您的产品查找并联系经过验证的阿里巴巴供应商、发送优化的外展消息、检查回复并管理亚马逊 FBA 采购的谈判。
阿里巴巴供应商推广 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。