Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

channel3-product-discoveryChannel3 产品发现

Agent Skill

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

总安装

7,713

周安装

312

GitHub Stars

2

下载量

2,421
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:channel3-product-discovery(Channel3 产品发现)
来源仓库:https://github.com/evanfen-c3/channel3-product-discovery
安装命令:
openclaw skills install channel3-product-discovery
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install channel3-product-discovery

简介

提供真实产品数据查询、价格比较与可用性检查服务,支持商品推荐。

  • 适用于电商比价、购物助手与消费决策支持场景。
  • 通过 clawhub 安装,当用户询问产品信息时自动触发搜索逻辑。
  • 依赖外部电商 API,建议验证接口稳定性与地区访问限制。
  • channel3-product-discovery 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
product-discovery
description
|

Product Discovery

You have access to a product search script that queries a catalog of millions of products across thousands of retailers. Use it whenever you need real product data to answer a user's question.

Prerequisites

  • API key: This skill requires a CHANNEL3_API_KEY environment variable. Get a free key at trychannel3.com.
  • Dependencies: curl and jq must be installed.

Search Script

Location: product-discovery/scripts/search.sh (relative to the skill root)

Run it via the shell. The script requires curl and jq.

Usage

search.sh [OPTIONS] "query text"

Options

FlagDescriptionExample
-n NUMNumber of results (default: 5, max: 30)-n 10
-p MAX_PRICEMaximum price in dollars-p 100
--min-price MINMinimum price in dollars--min-price 50
-g GENDERGender filter (male/female/unisex)-g male
-c CONDITIONProduct condition (new/refurbished/used)-c new
-a AGEComma-separated age groups (newborn/infant/toddler/kids/adult)-a "kids,toddler"
--availability STATUSComma-separated availability statuses (InStock/OutOfStock/PreOrder/BackOrder/LimitedAvailability/SoldOut/Discontinued)--availability "InStock"
-i IMAGE_URLSearch by image (visual similarity)-i "https://example.com/photo.jpg"
-b BRAND_IDSComma-separated brand IDs to include-b "brand_abc,brand_def"
-w WEBSITE_IDSComma-separated website IDs to include-w "website_abc"
--categories IDSComma-separated category IDs to include--categories "cat_abc"
--exclude-brands IDSComma-separated brand IDs to exclude--exclude-brands "brand_xyz"
--exclude-websites IDSComma-separated website IDs to exclude--exclude-websites "website_xyz"
--exclude-categories IDSComma-separated category IDs to exclude--exclude-categories "cat_xyz"
--keyword-onlyUse exact keyword matching instead of semantic search--keyword-only
--next TOKENPagination token from a previous search--next "tok_abc..."

The query argument is optional when using -i for image-only search. Text and image can be combined.

Examples

# Basic text search
search.sh "wireless noise cancelling headphones"

# Price-filtered search
search.sh -p 100 -n 10 "running shoes"

# Price range search
search.sh --min-price 50 -p 200 "winter boots"

# Gendered search
search.sh -g female -p 200 "winter jacket"

# Condition filter
search.sh -c used "macbook pro"

# Kids products
search.sh -a kids -p 50 "sneakers"

# Only in-stock products
search.sh --availability "InStock" "yoga mat"

# Image-based visual similarity search
search.sh -i "https://example.com/dress.jpg"

# Combined text + image search
search.sh -i "https://example.com/jacket.jpg" "similar but in blue"

# Keyword-only (exact match, no semantic search)
search.sh --keyword-only "Nike Air Max 90"

# Paginate for more results
search.sh --next "tok_abc123..." "running shoes"

Output Format

The script outputs structured text, not raw JSON. Each product includes its ID, brands, and all merchant offers with prices and buy links:

Found 5 products (next_page: tok_abc123)

1. Nike Air Zoom Pegasus 41
   ID: prod_abc123
   Brands: Nike
   Offers:
     - nordstrom.com: $89.99 (InStock) https://buy.trychannel3.com/...
     - nike.com: $94.99 (InStock) https://buy.trychannel3.com/...

2. Adidas Ultraboost Light
   ID: prod_def456
   Brands: Adidas
   Offers:
     - adidas.com: $97.00 (InStock) https://buy.trychannel3.com/...

If no results are found, the output is: No products found.

If the API key is missing or invalid, the script prints instructions on how to get one.

Workflow Patterns

Find products

User asks "find me running shoes under $100":

  1. Run: search.sh -p 100 "running shoes"
  2. Present the results as a clean numbered list with product name, price, merchant, and buy link.

Compare products

User asks "compare AirPods Pro vs Sony WF-1000XM5":

  1. Run two searches: search.sh -n 3 "AirPods Pro" and search.sh -n 3 "Sony WF-1000XM5"
  2. Build a markdown comparison table with columns for product, price, merchants, and availability.

Best option under a budget

User asks "what's the best laptop under $800":

  1. Run: search.sh -p 800 -n 10 "laptop"
  2. Review the results and recommend the top picks, explaining why based on the product details.

Image-based search

User shares an image URL and says "find me something like this":

  1. Run: search.sh -i "IMAGE_URL"
  2. Present visually similar products with prices and links.

Get more results

If the user wants more results after an initial search:

  1. Copy the next_page token from the previous output.
  2. Run: search.sh --next "TOKEN" "original query"
  3. Present the additional results.

How to Present Results to the User

  • Synthesize the script output into a clean response. Do NOT paste the raw script output.
  • Present products as a numbered list or markdown table — whichever fits the question better.
  • Always include: product name, price, merchant name, and the buy link URL.
  • For comparisons, use a markdown table with columns like Product, Price, Merchant, and Link.
  • If multiple merchants sell the same product at different prices, highlight the cheapest option.
  • Keep it concise — the user wants recommendations, not a data dump.

About This Skill

This skill queries the Channel3 product catalog API (api.trychannel3.com). Search queries and any image URLs you provide are sent to this third-party API. Product buy links point to buy.trychannel3.com, which redirects to merchant sites with affiliate tracking. Avoid sending sensitive or private information in search queries.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.92%
按下载量换算2,007

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills