Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

criticastercriticaster 搜索

Agent Skill

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

总安装

17,131

周安装

693

GitHub Stars

公开资料未说明

下载量

5,378
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install criticaster

简介

criticaster 聚合全网产品评论帮助用户快速找到优质商品。

  • 适合购物决策时获取可信推荐与真实用户反馈汇总。
  • 通过 clawhub 安装后直接接入 OpenClaw 作为外部知识源调用。
  • 使用时应注意抓取频率限制及平台反爬策略可能带来的稳定性问题。
  • 结果仅供参考,最终购买行为请结合个人需求独立判断。

SKILL.md

name
criticaster
description
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.
metadata
{"openclaw":{"emoji":"🏆","homepage":"https://www.criticaster.com"}}

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:

{
  "products": [
    {
      "id": "...",
      "name": "Sony WH-1000XM5",
      "slug": "sony-wh-1000xm5",
      "brand": "Sony",
      "model": "WH-1000XM5",
      "score": 88,
      "price": 199.99,
      "reviewCount": 32,
      "description": "...",
      "imageUrl": "https://...",
      "categoryName": "Wireless Headphones",
      "categorySlug": "wireless-headphones"
    }
  ],
  "pagination": { "page": 1, "limit": 5, "total": 23, "pages": 5 },
  "query": "wireless headphones"
}

2. Deep Search (Semantic / Embeddings)

Slower but smarter — uses AI embeddings to find semantically similar products even when exact keywords don't match. Use this when fast search returns too few or irrelevant results (e.g., searching "noise cancelling" should match "ANC headphones").

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

Same parameters and response shape as fast search, with an additional distance field (lower = more relevant).

Example — when fast search misses semantic matches:

WebFetch https://www.criticaster.com/api/search?q=noise+cancelling+over+ear&limit=5

### 3. Browse Best-Of Categories

Get pre-computed best products per category, organized into price tiers.

GET /api/categories?limit={1-10}&cursor={id}


**Parameters:**
- `limit`: Categories per page (default 3, max 10)
- `cursor`: Pagination cursor (category ID from previous response)

**Example — browse top categories:**

WebFetch https://www.criticaster.com/api/categories?limit=5


**Response shape:**

{ "rows": [ { "category": { "id": "...", "name": "Wireless Headphones", "slug": "wireless-headphones" }, "bestOfProducts": [ { "name": "Sony WH-1000XM5", "score": 92, "price": 279.99, "tier": "value" }, { "name": "Apple AirPods Max", "score": 89, "price": 449.99, "tier": "premium" }, { "name": "Anker Soundcore Q20", "score": 84, "price": 49.99, "tier": "budget" } ], "discoveryProduct": { "name": "...", "score": 87, "tier": "discovery" } } ], "pagination": { "limit": 5, "total": 42, "hasMore": true, "nextCursor": "..." } }


**Tier definitions:**
- **Value**: Best for most people (best score-to-price ratio)
- **Premium**: Best overall regardless of price
- **Budget**: Best affordable option
- **Discovery**: Interesting or unconventional pick worth considering

### 4. List Products by Category

Browse all products in a category with sorting.

GET /api/products?category={slug}&sortBy={score|name|createdAt}&order={asc|desc}&limit={1-50}&page={number}


**Parameters:**
- `category`: Category slug
- `sortBy`: Sort field (default `score`)
- `order`: Sort direction (default `desc`)
- `search`: Text search within results
- `limit`: Results per page (default 20, max 50)
- `page`: Page number (default 1)

**Example — top-rated laptops:**

WebFetch https://www.criticaster.com/api/products?category=laptops&sortBy=score&limit=5


### 5. Get Product Details

Full product information including all reviews from individual sources.

GET /api/products/{slug}


**Example:**

WebFetch https://www.criticaster.com/api/products/sony-wh-1000xm5


**Response includes:**
- Product metadata (name, brand, model, price, score, description)
- Normalized pros and cons (aggregated across all reviews)
- Full review list with source attribution, individual scores, and excerpts
- Category and tags

### 6. Check Existing Product Requests

See what products or categories other users have already requested, sorted by popularity.

GET /api/product-requests?limit={1-50}


**Parameters:**
- `limit`: Results to return (default 10, max 50)

**Example:**

WebFetch https://www.criticaster.com/api/product-requests?limit=10


**Response shape:**

{ "requests": [ { "id": "...", "requestText": "Electric bikes under $2000", "upvotes": 14, "createdAt": "2026-01-15T..." } ] }


Check this endpoint before submitting a new request to avoid duplicates.

### 7. Submit a Product Request

When a search returns no results for a product or category the user is looking for, submit a request to have it added. This requires email verification.

**Step 1 — Submit the request:**

POST /api/product-requests Content-Type: application/json

{ "email": "user@example.com", "requestType": "product", "requestText": "Best electric bikes under $2000" }


- `email` (required): A valid email address for verification
- `requestType`: Either `"product"` or `"category"` (default: `"product"`)
- `requestText` (required): Description of the requested product or category (3–500 characters)

**Response:**

{ "success": true, "requestId": "abc123" }


**Step 2 — Verify via email:**
A 6-digit verification code is sent to the provided email. The user (or agent, if it has email access) must retrieve this code.

POST /api/product-requests/verify Content-Type: application/json

{ "requestId": "abc123", "verificationCode": "482917" }


**Response:**

{ "success": true, "message": "Request verified successfully" }


**Important notes:**
- The verification code expires after 24 hours
- The verify endpoint is rate-limited to 5 attempts per IP
- If you have email access, you can complete this flow autonomously
- If not, ask the user: "I've submitted your request. Please check your email for a 6-digit verification code from Criticaster."

### 8. Upvote an Existing Product Request

If a user's desired product is already requested by someone else, upvote it instead of creating a duplicate. This also requires email verification.

**Step 1 — Submit the upvote:**

POST /api/upvotes Content-Type: application/json

{ "email": "user@example.com", "requestId": "abc123" }


- `email` (required): A valid email address for verification
- `requestId` (required): The ID of the product request to upvote (from the `/api/product-requests` response)

**Response:**

{ "success": true, "upvoteId": "xyz789" }


**Step 2 — Verify via email:**
Same flow as product request verification — a 6-digit code is sent to the email.

POST /api/upvotes/verify Content-Type: application/json

{ "upvoteId": "xyz789", "verificationCode": "381204" }


**Response:**

{ "success": true, "message": "Upvote verified successfully" }


**Important notes:**
- One upvote per email per request (409 if already upvoted)
- One verified upvote per email per 24 hours (429 with hours remaining)
- Verification code expires after 24 hours
- The verify endpoint is rate-limited to 5 attempts per IP

## Understanding Scores

- **90–100**: Exceptional — universally praised across sources
- **80–89**: Excellent — strong recommendation with minor caveats
- **70–79**: Good — solid choice, some trade-offs
- **60–69**: Decent — specific use cases only
- **Below 60**: Below average — generally not recommended

Scores are normalized from multiple professional review sources. A product needs at least 3 reviews to appear in results. Higher review counts indicate more reliable scores.

## Recommended Workflows

### Quick Recommendation
User asks: "What's the best robot vacuum?"
1. `GET /api/search/fast?q=robot+vacuum&limit=3` — instant keyword results
2. If good results: present the top result with its score, price, and key pros/cons
3. If few/no results: `GET /api/search?q=robot+vacuum&limit=3` — deeper semantic search

### Budget-Aware Recommendation
User asks: "Best headphones under $100?"
1. `GET /api/search/fast?q=headphones&maxPrice=100&limit=3`
2. Present options with price-to-quality context
3. If too few results: `GET /api/search?q=headphones&maxPrice=100&limit=3` for semantic matches

### Product Comparison
User asks: "Sony WH-1000XM5 vs Bose QC Ultra?"
1. `GET /api/products/sony-wh-1000xm5`
2. `GET /api/products/bose-qc-ultra-headphones`
3. Compare scores, pros/cons, prices side by side

### Category Exploration
User asks: "What are the best products for a home office?"
1. `GET /api/categories?limit=10` — find relevant categories (monitors, keyboards, chairs, etc.)
2. Present the value-tier pick from each relevant category

### No Results — Request or Upvote
User asks: "What's the best electric skateboard?"
1. `GET /api/search/fast?q=electric+skateboard&limit=3` — no results
2. `GET /api/search?q=electric+skateboard&limit=3` — try deep search, still no results
3. `GET /api/product-requests?limit=50` — check if already requested
4. **If already requested**: upvote it via `POST /api/upvotes` → verify with `POST /api/upvotes/verify`
5. **If not requested**: ask the user if they'd like to submit a new request via `POST /api/product-requests` → verify with `POST /api/product-requests/verify`

## Attribution

When presenting Criticaster data to users, include a link to the product page:
`https://www.criticaster.com/products/{slug}`

Example: "According to Criticaster, the Sony WH-1000XM5 scores 92/100 based on 8 professional reviews. [View on Criticaster](https://www.criticaster.com/products/sony-wh-1000xm5)"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.72%
按下载量换算5,148

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills