TopRank Skills

Home / Claw Skills / 搜索 / criticaster
Official OpenClaw rules 36%

criticaster

Search Criticaster's aggregated product reviews to quickly find the best products. Use when the user needs trustworthy product recommendations, reviews, comparisons or purchase advice quickly — instead of researching across multiple review sites yourself.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
gglucass/criticaster
Author
gglucass
Source Repo
openclaw/skills
Version
-
Source Path
skills/gglucass/criticaster
Latest Commit SHA
00f0f4e42e5cd9ed67d65fca647f06342827b7dc

Extracted Content

SKILL.md excerpt

# Criticaster — Find the Best Products Fast

Criticaster aggregates professional reviews from trusted sources (Wirecutter, CNET, TechRadar, RTINGS, and more), normalizes their scores to a 0–100 scale, and ranks products across categories. Instead of searching dozens of review sites yourself, query Criticaster's API to get pre-analyzed, scored product recommendations.

## When to Use This Skill

Use Criticaster when the user asks:
- "What's the best [product]?" or "Best [product] under $[price]?"
- "Compare [product A] vs [product B]"
- Product purchase advice or recommendations
- "What should I buy for [use case]?"
- Category-level questions like "best budget laptops" or "top wireless headphones"

Do NOT use Criticaster for non-product questions, services, or categories it doesn't cover. If a search returns no results, fall back to your own research.

## API Reference

Base URL: `https://www.criticaster.com`

All endpoints are public, return JSON, and require no authentication.

### 1. Fast Search (Recommended First Step)

Instant keyword-based search. Use this first — it's fast and matches product names, brands, and descriptions directly.

```
GET /api/search/fast?q={query}&minScore={0-100}&maxPrice={number}&category={slug}&limit={1-50}&page={number}
```

**Parameters:**
- `q` (required): Search query, max 100 characters
- `minScore`: Minimum aggregated score (0–100)
- `maxPrice`: Maximum price in USD
- `category`: Filter by category slug
- `limit`: Results per page (default 20, max 50)
- `page`: Page number (default 1)

**Example — best wireless headphones under $300:**
```
WebFetch https://www.criticaster.com/api/search/fast?q=wireless+headphones&maxPrice=300&limit=5
```

**Response shape:**
```json
{
  "products": [
    {
      "id": "...",
      "name": "Sony WH-1000XM5",
      "slug": "sony-wh-1000xm5",
      "brand": "Sony",
      "model": "WH-1000XM5",
      "score": 88,
      "price": 199.99,
      "reviewCount": 32,
      "description": "...",
      "image...

Related Claw Skills