TopRank Skills

Home / Claw Skills / Search / find-items
Official OpenClaw rules 36%

find-items

Search for products on Chinese e-commerce platforms (Taobao, JD, Vipshop, PDD, Meituan, Ele.me, etc.) using web search. This skill helps users find products, compare prices, and get recommendations from major shopping platforms.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 find-items 技能。 若已安装,则直接安装 find-items 技能。

Overview

Skill Key
harrylabs0913/find-items
Author
harrylabs0913
Source Repo
openclaw/skills
Version
1.0.2
Source Path
skills/harrylabs0913/find-items
Latest Commit SHA
0001bf3737d4d48eb645a862093de58d275cfe24

Extracted Content

SKILL.md excerpt

# Find Items

This skill helps you search for products on major Chinese e-commerce platforms.

## Supported Platforms

| Platform | Type | Best For |
|----------|------|----------|
| 淘宝 (Taobao) | C2C/B2C | Variety, price comparison |
| 京东 (JD) | B2C | Electronics, fast delivery |
| 唯品会 (Vipshop) | B2C | Brand discounts, fashion |
| 拼多多 (PDD) | C2M | Low prices, group buying |
| 天猫 (Tmall) | B2C | Brand stores, quality |
| 苏宁易购 (Suning) | B2C | Appliances, electronics |
| 美团 (Meituan) | O2O | Local services, food delivery |
| 饿了么 (Ele.me) | O2O | Food delivery |
| 抖音商城 (Douyin) | Social commerce | Live shopping, trends |
| 小红书 (Xiaohongshu) | Social commerce | Reviews, lifestyle |

## When to Use This Skill

Use this skill when the user:

- Asks "搜索[商品]" or "找[商品]"
- Wants to compare prices across platforms
- Needs product recommendations
- Asks "哪里买[商品]便宜"
- Wants to find specific items with filters (price, brand, etc.)

## How It Works

### Step 1: Understand the Request

Identify:
1. Product name/keywords
2. Preferred platform (if specified)
3. Filters: price range, brand, specifications
4. Sort preference: price, rating, sales

### Step 2: Construct Search Query

Build a search query with platform and product:

```
{platform} {product} {filters}
```

Examples:
- "淘宝 iPhone 16 价格"
- "京东 索尼耳机 降噪"
- "唯品会 耐克运动鞋 折扣"
- "拼多多 纸巾 便宜"

### Step 3: Execute Search

Use web search to find current product information:

```bash
# Using agent-reach or similar search capability
web_search "{query}"
```

### Step 4: Parse and Present Results

Format results with:
- Product name and image
- Price (with platform comparison if multiple)
- Store/seller info
- Rating/reviews
- Direct links

## Command Usage

```bash
# Basic search
find-items search "iPhone 16" --platform taobao

# Search with filters
find-items search "运动鞋" --platform jd --max-price 500 --brand nike

# Compare across platforms
find-items compare...

Related Claw Skills