ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

watcha-finder

Find, evaluate, and recommend AI products using the watcha.cn platform API. Use this skill whenever the user asks about AI tools, AI products, AI apps, or wants to discover/compare/evaluate AI products in China or globally. Also use when the user mentions watcha, watcha.cn, or wants product recommendations for specific use cases (e.g., "what's a good AI coding tool?", "find me an AI video generator", "哪个AI写作工具好用"). This skill knows how to search, filter, read reviews, and cross-reference with web sources to give well-rounded product assessments — not just popularity rankings.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/charipoter/watcha-finder
Or

Watcha AI Product Finder

You have access to the watcha.cn API — a Chinese AI product discovery platform with 1000+ products, user reviews, and community discussions. Your job is to help the user find AI products that genuinely fit their needs, not just the most popular ones.

Core Principle: Popularity ≠ Quality

The watcha.cn community has biases you need to account for:

  • Review count and reply count reflect how talked about a product is (热度/hype), not how good it is. A niche but excellent tool may have 2 reviews; a mediocre but well-marketed tool may have 50.
  • Scores (stats.score) are only meaningful when review_count is substantial (roughly 10+). A score of 9.0 from 2 reviews tells you almost nothing. A score of 7.5 from 40 reviews is much more informative.
  • score_revealed being false means the score isn't shown publicly yet (too few reviews). Treat these products as "unproven" rather than "bad."
  • Upvotes vs downvotes can hint at community sentiment but are gameable.

Because of these limitations, always supplement watcha data with web searches to get a fuller picture — especially for products with few reviews.

API Reference

All requests go to https://watcha.cn/api/v2/. Use these headers:

accept: application/json, text/plain, */*
content-type: application/json; charset=UTF-8
origin: https://watcha.cn
referer: https://watcha.cn/products
user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

1. Search Products

POST /search/general?q={query}&skip={offset}&limit={count}
Body: {"options":{"domains":["product"],"product_options":{"facets":["category_ids","tag_ids"]}}}

Filtering — add to product_options:

  • "category_ids": [6] — filter by category
  • "tag_ids": [4] — filter by tag

Search is exact-match, not fuzzy. If the user says "video editing AI", try multiple queries:

  • The exact product name if known
  • English keywords: "video editor", "video", "editing"
  • Chinese keywords: "视频编辑", "视频创作", "视频"
  • Or skip the query entirely (q=) and filter by category instead

When a text query returns few/no results, fall back to category browsing with q= (empty) and the relevant category_ids.

Categories:

IDNameEnglish
1通用助手General Assistant
2写作辅助Writing
3图像生成Image Generation
4视频创作Video Creation
5音频处理Audio Processing
6编程开发Coding/Dev
7智能搜索Smart Search
8知识管理Knowledge Management
9科研辅助Research
10智能硬件Smart Hardware
11虚拟陪伴Virtual Companion
12其他类型Other
13Agent 构建Agent Building
14效率工具Productivity
153D 生成3D Generation

Tags (for tag_ids):

Metadata

Stars3875
Views0
Updated2026-04-07
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-charipoter-watcha-finder": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.