Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

ecommerce-logistics电商物流

Agent Skill

ecommerce-logistics 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,246

周安装

138

GitHub Stars

公开资料未说明

下载量

1,137
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ecommerce-logistics

简介

聚合多平台物流查询工具,支持淘宝、京东、拼多多、抖音订单追踪。

  • 一键获取跨渠道物流状态,提升售后响应与客户服务效率。
  • 支持持久化登录态存储,简化重复查询操作流程。
  • 安装命令:openclaw skills install ecommerce-logistics,需绑定账号凭证。
  • 使用时注意账号安全与平台反爬机制,避免频繁请求导致封禁。

SKILL.md

name
ecommerce-logistics
description
Aggregate logistics information from Taobao, JD, PDD, and Douyin. One-click query for multi-platform order tracking. Supports persistent cookie storage and QR code login. Use when user asks to check orders, track packages from shopping platforms, or mentions 淘宝/京东/拼多多/抖音 物流/订单.

E-commerce Logistics Aggregator(电商物流聚合)

Query order logistics from Taobao, JD.com, Pinduoduo, and Douyin with persistent authentication.

Features

  • 🔗 Multi-platform: Taobao, PDD (JD & Douyin not supported due to anti-bot)
  • 🔒 Persistent login: Cookie storage, no repeated logins
  • 🛡️ Stealth mode: Bypass basic anti-bot detection
  • ⏱️ Rate limiting: Built-in request throttling
  • 📱 QR login: Graceful handling of expired sessions
  • 🚚 In-transit filter: Only show orders currently in transit

Setup

# Install dependencies
cd scripts && npm install

# Required environment variables (optional, for headless operation)
export ECOM_LOGISTICS_DATA_DIR="$HOME/.ecommerce-logistics"

Usage

First Time: Login to Platforms

cd scripts

# Login to Taobao (opens browser for QR scan)
npm run query -- --platform taobao --login

# Login to PDD
npm run query -- --platform pdd --login

# Note: JD and Douyin are not supported due to strict anti-bot measures

Query Logistics

# Query all platforms (requires prior login)
npm run query -- --all

# Query specific platform
npm run query -- --platform taobao
npm run query -- --platform pdd

# Query with custom data directory
npm run query -- --all --data-dir /path/to/cookies

# Run in headless mode (no browser window)
npm run query -- --all --headless

QR Login Process

When cookies are missing or expired:

  1. The skill opens a browser window with the platform login page
  2. A QR code screenshot is saved to ~/.ecommerce-logistics/{platform}-qr.png
  3. Scan the QR code with the platform's mobile app
  4. Complete login in the browser window
  5. Cookies are automatically saved for future use

Note: If you see "Cookie 已过期,需要重新登录", run the login command again.

Cookie Storage

Cookies are stored encrypted in:

  • Default: ~/.ecommerce-logistics/cookies/
  • Each platform has separate cookie file
  • Auto-refresh on expiration

Architecture

scripts/src/
├── index.ts              # CLI entry
├── core/
│   ├── aggregator.ts     # Main orchestrator
│   ├── auth-manager.ts   # Cookie & QR login
│   ├── rate-limiter.ts   # Request throttling
│   └── stealth-browser.ts # Anti-detection browser
├── adapters/
│   ├── base-adapter.ts   # Abstract base class
│   ├── taobao-adapter.ts
│   ├── jd-adapter.ts
│   ├── pdd-adapter.ts
│   └── douyin-adapter.ts
└── types/
    └── index.ts          # TypeScript interfaces

references/
└── selectors.md          # Platform-specific CSS selectors

Error Handling

ErrorHandling
Cookie expiredPrompt QR re-login
Rate limitedAuto-backoff retry
Login page detectedGraceful error with instructions
Network timeout3 retries with exponential backoff

Platform Support Status

PlatformStatusNotes
Taobao✅ AvailableOrder list + logistics info
JD❌ UnsupportedAnti-bot detection too strict
PDD✅ AvailableOrder list + tracking number + pickup code
Douyin❌ UnsupportedRequires mobile app access

Implementation Notes

Anti-Detection Measures

The skill implements several stealth techniques:

  1. navigator.webdriver override - Hides automation flag
  2. Plugins spoofing - Simulates real browser plugins
  3. Viewport & User-Agent - Uses realistic desktop/mobile profiles
  4. Permissions API - Overrides notification permissions
  5. Playwright-specific cleanup - Removes __playwright properties

Rate Limiting

Each platform has independent rate limits:

PlatformMax RequestsWindow
Taobao1060s
JD1560s
PDD860s
Douyin1060s

Cookie Expiration

  • Cookies are considered expired after 30 days
  • Expired cookies trigger QR re-login prompt
  • Each platform stores cookies independently

Development

Updating Selectors

Platform websites change frequently. Update selectors in:

  • references/selectors.md - Documentation
  • src/adapters/*-adapter.ts - Implementation

Testing

# Compile TypeScript
cd scripts && npm run build

# Run in development mode
npm run dev -- --platform taobao

# Debug with visible browser
npm run query -- --platform taobao --headless=false

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.7%
按下载量换算929

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills