Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

alibaba-supplier-outreach阿里巴巴供应商推广

Agent Skill

alibaba-supplier-outreach 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

24,676

周安装

1,008

GitHub Stars

1

下载量

7,983
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:alibaba-supplier-outreach(阿里巴巴供应商推广)
来源仓库:https://github.com/blockchainhb/alibaba-supplier-outreach
安装命令:
openclaw skills install alibaba-supplier-outreach
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install alibaba-supplier-outreach

简介

为您的产品查找并联系经过验证的阿里巴巴供应商、发送优化的外展消息、检查回复并管理亚马逊 FBA 采购的谈判。

SKILL.md

name
alibaba-supplier-outreach
description
|
argument-hint
[product keyword] | "check replies" | "follow up [supplier name]

Alibaba Supplier Outreach Skill

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:

  • Chrome open with Alibaba.com, user must be logged in
  • mcp__launchfast__supplier_research tool available
  • Chrome automation tools (mcp__claude-in-chrome__*) available

DETECT MODE FROM USER INPUT

User saysMode
Product keyword (e.g. "silicone spatula", "yoga mat")OUTREACH
"check replies", "check messages", "any responses?"CHECK REPLIES
"follow up", "reply to [supplier]", "negotiate"NEGOTIATE

═══════════════════════════════════════

MODE 1 — OUTREACH

═══════════════════════════════════════

STEP 1 — Gather context (ask user if unknown)

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.


STEP 2 — Find suppliers with LaunchFast

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

STEP 3 — Craft the outreach message

If user picks [A] — auto-generate, build the message using this framework:

Psychological Outreach Formula

  1. Name them specifically — reference their company name, years in business, and a

certification/verification they have. Signals you researched them, not spamming.

  1. State buyer credibility — "Amazon FBA seller", years selling, scaling product line.
  2. Anchor with real numbers — target quantity + target price. No vague "how much for samples".
  3. Soft urgency — "evaluating 2-3 suppliers this week".
  4. Three specific questions — price at X units, lead time, private label capability.
  5. Warm close — invite a call if easier.

Message template (fill from LaunchFast data):

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.


STEP 4 — Send via Chrome automation

Repeat for each selected supplier:

4a — Get browser tab

mcp__claude-in-chrome__tabs_context_mcp()

Use the existing Alibaba tab if available, or create a new one.

4b — Navigate to supplier search

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.

4c — Find and click "Contact Supplier"

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

4d — Confirm contact form loaded

Take a screenshot. Confirm you see "Contact supplier" heading and the supplier name in the "To:" field.

4e — Find and fill the message textarea

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]")

4f — Send the inquiry

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.

4g — Confirm success

Check the tab URL or take a screenshot.

  • Success: URL contains feedbackInquirySucess.htm OR page shows "Inquiry sent successfully"
  • Failure: Page still shows contact form → scroll to see if there's a validation error

4h — Save to memory

Immediately write/update the conversation file:

~/.claude/supplier-conversations/[supplier-slug]/conversation.md

And update the index:

~/.claude/supplier-conversations/index.md

═══════════════════════════════════════

MODE 2 — CHECK REPLIES

═══════════════════════════════════════

STEP 1 — Open Message Center

mcp__claude-in-chrome__navigate(
  url: "https://message.alibaba.com/message/messenger.htm#/"
)

Wait 3 seconds.

STEP 2 — Read the conversation list

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:

  • Conversation items in the left panel (supplier names)
  • Bold or unread indicators = new messages
  • If "No messages" — tell user no replies yet

STEP 3 — Open each unread conversation

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.

STEP 4 — Extract reply content

Read the page to get the message text:

mcp__claude-in-chrome__read_page(filter: "all", depth: 6)

Extract:

  • Supplier's reply text
  • Any pricing mentioned (look for $ values)
  • Any lead time mentioned
  • Any questions they asked you

STEP 5 — Load memory file

Read the existing conversation file:

~/.claude/supplier-conversations/[supplier-slug]/conversation.md

Note:

  • Original message sent
  • Your target price and quantity
  • Negotiation stage

STEP 6 — Present summary to user

## 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

Negotiation stage: [initial_reply | counter | closing]

Suggested next step: [draft reply A] or [draft reply B]

Want me to draft and send a reply? (yes / show me options / no)

═══════════════════════════════════════

MODE 3 — NEGOTIATE (send reply)

═══════════════════════════════════════

STEP 1 — Navigate to the conversation

mcp__claude-in-chrome__navigate(
  url: "https://message.alibaba.com/message/messenger.htm#/"
)

Use find to click on the supplier's conversation in the left panel. Wait 2 seconds. Take screenshot to confirm the conversation is open.

STEP 2 — Read the full thread

Read the page. Extract ALL messages in order:

  • Your sent messages
  • Their replies
  • Note timestamps

STEP 3 — Load memory and determine negotiation stage

Read:

~/.claude/supplier-conversations/[supplier-slug]/conversation.md

Determine stage:

StageSignalStrategy
1 — First replyThey responded to your initial inquiryAcknowledge, counter price, maintain warmth
2 — Counter receivedThey gave a price, you need to pushFind middle ground, add value levers
3 — ClosingPrice agreed or closeConfirm all terms, request PI
4 — OngoingEstablished relationshipDirect and brief

STEP 4 — Draft negotiation reply

Stage 1 — They replied to initial outreach

Goal: thank them, counter price, keep warmth, ask about samples

Thank them for quick response → Acknowledge their quote positively →
State your volume commitment again → Counter with specific number
("Could you do $X.XX at 500 units?") → Ask about sample process →
Mention long-term potential

Stage 2 — Counter-offer exchange

Goal: find middle ground or introduce value levers

Acknowledge the gap → Propose compromise price →
Offer value they want: faster payment (30% deposit, balance on shipment),
larger initial order, commitment to reorders →
Set soft deadline: "I need to finalize supplier selection by [date+7 days]"

Stage 3 — Closing

Goal: lock in terms, move to PI

Confirm: unit price + quantity + lead time + payment terms →
Request 1-2 samples before full order →
Ask for Proforma Invoice →
Confirm packaging/labeling requirements (logo file format, etc.)

Stage 4 — Ongoing relationship

Reference previous order/conversation → Be direct →
Short message → Show appreciation

STEP 5 — Show draft to user and get approval

Always show the message before sending. Never auto-send a negotiation reply.

STEP 6 — Send the reply in the open conversation

The messenger uses an inline chat interface. In the open conversation:

mcp__claude-in-chrome__find(query: "message input box or reply text area")
→ click it
→ type the approved message

Then find and click the Send button:

mcp__claude-in-chrome__find(query: "Send button in chat")
→ screenshot to confirm position
→ click by coordinate

Wait 2 seconds. Screenshot to confirm message sent (it should appear in the thread).

STEP 7 — Update memory file

Append the sent reply to the conversation log with timestamp. Update stage.


MEMORY FILE FORMAT

File paths

~/.claude/supplier-conversations/
  index.md                    ← Master list of all suppliers
  {supplier-slug}/
    conversation.md           ← Full thread log for one supplier

Create the directory if it doesn't exist before writing files.

supplier-slug

Lowercase company name, hyphens for spaces, no special chars. "Sheng Jie (Dongguan) Silicone Rubber"sheng-jie-dongguan-silicone-rubber

conversation.md template

# [Company Name]
- Product: [keyword]
- Supplier ID: [LaunchFast ID]
- Contact URL: [Alibaba URL used]
- First contacted: [YYYY-MM-DD]
- Stage: outreach_sent | reply_received | negotiating | sample_requested | order_placed | dead
- Target price: $X.XX/unit at X units
- Their current offer: $X.XX/unit
- Contact name: [name from "To:" field on contact form]

## Log

### [YYYY-MM-DD HH:MM] SENT — Initial Outreach
[message text]

### [YYYY-MM-DD HH:MM] RECEIVED
[their reply]

### [YYYY-MM-DD HH:MM] SENT — Counter Offer
[your reply]

index.md template

# Supplier Negotiations

| Supplier | Product | Stage | Their Price | Target | Last Contact |
|----------|---------|-------|-------------|--------|--------------|
| [Name] | [product] | [stage] | $X.XX | $X.XX | [date] |

RULES

  1. Always show messages to user before sending — never auto-send
  2. Take a screenshot before and after every form interaction — page layouts shift
  3. Always update memory immediately after sending — don't batch updates
  4. Max 5 suppliers per session — quality over quantity
  5. If contact form shows wrong supplier — check "To:" field before typing
  6. If messenger shows "No messages" — RFQ replies may take hours; tell user to check back
  7. Success URL pattern: feedbackInquirySucess.htm = confirmed sent

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.58%
按下载量换算7,151

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills