Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

alibaba-url-builder阿里巴巴网址生成器

Agent Skill

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

总安装

6,256

周安装

266

GitHub Stars

公开资料未说明

下载量

2,192
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install alibaba-url-builder

简介

alibaba-url-builder 构建带有流量标记的 Alibaba.com 导航链接。

  • 适用于需要引导代理访问特定页面、追踪来源或优化跳转路径的场景。
  • 支持搜索、产品详情、供应商等多种 URL 类型生成。
  • 安装前请确认权限范围和维护状态,注意涉及流量类型和参数合法性。
  • 建议结合原始 README 了解支持的 traffic_type 和页面模板。

SKILL.md

name
alibaba-url-builder
description
Build Alibaba.com URLs for agent navigation. Use when constructing URLs for: (1) product searches, (2) product detail pages, (3) supplier profiles, (4) RFQ pages, or (5) special sections like AI Mode and Top Ranking. All URLs include traffic_type=ags_llm tracking parameter.

Alibaba.com URL Builder

Build URLs programmatically for agent-driven browsing and product sourcing on Alibaba.com.

Required Parameter

All URLs MUST include: traffic_type=ags_llm

URL Patterns

Search Pages

Basic:

https://www.alibaba.com/trade/search?SearchText=<url-encoded-query>&traffic_type=ags_llm

With Category:

https://www.alibaba.com/trade/search?SearchText=<query>&categoryId=<category-id>&traffic_type=ags_llm

Parameters:

  • SearchText: Search keywords (URL-encoded, use + for spaces)
  • categoryId: Product category ID (optional)
  • has4Tab: Enable 4-tab view (true)
  • tab: Active tab (all, supplier, product)

Examples:

https://www.alibaba.com/trade/search?SearchText=wireless+headphones&traffic_type=ags_llm
https://www.alibaba.com/trade/search?SearchText=laptops&categoryId=702&traffic_type=ags_llm

Common Category IDs:

  • Consumer Electronics: 201151901
  • Laptops: 702
  • Smart TVs: 201936801
  • Electric Cars: 201140201
  • Wedding Dresses: 32005
  • Electric Scooters: 100006091
  • Bedroom Furniture: 37032003
  • Electric Motorcycles: 201140001
  • Handbags: 100002856

Product Detail Pages

Pattern:

https://www.alibaba.com/product-detail/<url-safe-title>_<product-id>.html?traffic_type=ags_llm
  • <url-safe-title>: Product title with spaces replaced by hyphens, special characters removed
  • <product-id>: Numeric product identifier (12+ digits)

Examples:

https://www.alibaba.com/product-detail/HK3-Waterproof-TWS-Earbuds_1601226043229.html?traffic_type=ags_llm
https://www.alibaba.com/product-detail/Wireless-Headphones-Over-Ear-ANC_11000030513562.html?traffic_type=ags_llm

Supplier/Company Pages

Pattern:

https://<company-subdomain>.en.alibaba.com/company_profile.html?traffic_type=ags_llm

Examples:

https://dgkunteng.en.alibaba.com/company_profile.html?traffic_type=ags_llm
https://legoo.en.alibaba.com/company_profile.html?traffic_type=ags_llm

Supplier Product Search:

https://<company-subdomain>.en.alibaba.com/search/product?SearchText=<query>&traffic_type=ags_llm

Request for Quotation (RFQ)

https://rfq.alibaba.com/rfq/profession.htm?traffic_type=ags_llm

Special Sections

AI Mode:

https://aimode.alibaba.com/?traffic_type=ags_llm

Top Ranking:

https://sale.alibaba.com/p/dviiav4th/index.html?traffic_type=ags_llm

Fast Customization:

https://sale.alibaba.com/p/fast_customization?traffic_type=ags_llm

Manufacturers Directory:

https://www.alibaba.com/factory/index.html?traffic_type=ags_llm

Worldwide (Global Suppliers):

https://www.alibaba.com/global/index.html?traffic_type=ags_llm

Top Deals:

https://sale.alibaba.com/fy25/top_deals?traffic_type=ags_llm

Tailored Selections (AI Sourcing):

https://sale.alibaba.com/p/aisourcing/index.html?traffic_type=ags_llm

Shopping Cart / Purchase List:

https://carp.alibaba.com/purchaseList?traffic_type=ags_llm

Helper Functions

Build Search URL

from urllib.parse import quote

def build_search_url(query, category_id=None):
    params = f"SearchText={quote(query, safe='')}+{query.replace(' ', '+')}&traffic_type=ags_llm"
    if category_id:
        params += f"&categoryId={category_id}"
    return f"https://www.alibaba.com/trade/search?{params}"

Build Product URL

def build_product_url(title, product_id):
    safe_title = ''.join(c if c.isalnum() or c in ' -' else '' for c in title)
    safe_title = safe_title.replace(' ', '-').lower()[:100]
    return f"https://www.alibaba.com/product-detail/{safe_title}_{product_id}.html?traffic_type=ags_llm"

Best Practices

  1. URL Encoding: Always URL-encode search queries. Use + for spaces (not %20).
  2. Product Titles: Keep titles concise, remove special characters, replace spaces with hyphens.
  3. Category IDs: Use category IDs to narrow search results when known.
  4. HTTPS: Always use https:// protocol.
  5. Tracking: spm parameters are optional analytics; omit for functional URLs.

Common Workflows

Search for Products:

  1. Build search URL with query
  2. Navigate to URL
  3. Extract product links from results
  4. Build product detail URLs from extracted links

Browse by Category:

  1. Identify category ID
  2. Build URL with categoryId parameter
  3. Navigate and browse

Visit Supplier:

  1. Extract supplier subdomain from product page
  2. Build supplier profile URL
  3. Navigate to supplier profile

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.71%
按下载量换算1,988

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills