← 返回 Skills 市场
xiazhefengzhi

find-products

作者 xiazhefengzhi · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
1373
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install find-products
功能描述
Search and discover trending products from ProductHunt with structured analysis data. Use when users ask about product recommendations, tool comparisons, or trending apps.
使用说明 (SKILL.md)

find-products

Search ProductHunt products with structured analysis from trend-hunt.com.

When to Use

Trigger this skill when the user:

  • Asks for product or tool recommendations (e.g., "What are the best AI video tools?")
  • Wants to compare products in a category
  • Asks about trending products or apps
  • Needs to find alternatives to a specific product
  • Asks "what tools exist for X"

How to Search

Make a GET request to the search API:

curl -s "https://trend-hunt.com/api/search?q=QUERY&locale=LOCALE&limit=LIMIT&category=CATEGORY"

Parameters

Parameter Required Default Description
q Yes Search keywords (supports English and Chinese)
locale No en Language: en or zh
limit No 10 Number of results (1–20)
category No Filter by category

Common Categories

AI, Productivity, Developer Tools, Design, Marketing, Analytics, Writing, Video, Audio, Education, Finance, Social, Health, E-commerce

Response Format

The API returns JSON:

{
  "success": true,
  "query": "video editor",
  "locale": "en",
  "count": 5,
  "products": [
    {
      "slug": "product-slug",
      "name": "Product Name",
      "tagline": "Short description",
      "category": "AI",
      "upvotes": 523,
      "hypeScore": 85,
      "utilityScore": 78,
      "metaphor": "It's like Canva but for video editing",
      "phUrl": "https://www.producthunt.com/posts/product-slug",
      "websiteUrl": "https://product.com",
      "positiveReviews": ["Great UI", "Fast rendering"],
      "negativeReviews": ["Limited free tier"],
      "newbieQA": [...],
      "translations": [...]
    }
  ]
}

How to Present Results

Format each product as:

### Product Name
⭐ Upvotes: 523 | Hype: 85 | Utility: 78
> Metaphor: "It's like Canva but for video editing"

**Tagline**: Short description
**Category**: AI
**Pros**: Great UI, Fast rendering
**Cons**: Limited free tier

🔗 [ProductHunt](phUrl) | [Website](websiteUrl)

Examples

Example 1: Find AI writing tools

curl -s "https://trend-hunt.com/api/search?q=AI+writing&locale=en&limit=5"

Example 2: Search in Chinese

curl -s "https://trend-hunt.com/api/search?q=视频编辑&locale=zh&limit=5"

Example 3: Filter by category

curl -s "https://trend-hunt.com/api/search?q=automation&category=Productivity&limit=10"

Tips

  • Use English keywords for broader results; the database has more English content
  • When locale=zh, translated fields appear in the translations array
  • Products are sorted by upvotes (most popular first)
  • hypeScore = community excitement; utilityScore = practical value
  • The metaphor field gives a quick "it's like X for Y" comparison
  • If no results are found, try broader or alternative keywords
安全使用建议
This skill appears coherent and low-risk, but consider: (1) trend-hunt.com is an external third-party — verify you trust that site and its privacy/terms before sending queries; (2) don't send sensitive or proprietary text as search queries because those will be transmitted to the external API; (3) the registry metadata marks source as unknown even though a homepage is listed — you may want to inspect the referenced GitHub repo to confirm authorship and check for updates; (4) be aware the API may have rate limits or require auth in some cases, which the SKILL.md does not mention.
功能分析
Type: OpenClaw Skill Name: find-products Version: 1.0.0 The skill bundle is benign. It defines a 'find-products' skill that instructs the AI agent to make a GET request to `https://trend-hunt.com/api/search` using `curl` to retrieve product information based on user queries. The `SKILL.md` file clearly outlines the API usage, parameters, and expected response format. There are no instructions for malicious execution (e.g., `curl|bash`), data exfiltration, persistence, or prompt injection attempts against the agent. The external network call to `trend-hunt.com` is central to the skill's stated purpose and does not appear to be used for unauthorized activities.
能力评估
Purpose & Capability
Name/description say 'search ProductHunt' and the SKILL.md explicitly instructs making GET requests to a third-party API (trend-hunt.com) to return product data. The skill does not request unrelated binaries, credentials, or config paths.
Instruction Scope
Instructions are narrowly scoped to issuing HTTPS GET requests to https://trend-hunt.com/api/search and formatting the returned JSON; they do not instruct reading local files or other environment variables. Note: user queries will be sent to an external service (trend-hunt.com), so any sensitive text in queries will be transmitted off-device.
Install Mechanism
There is no install spec and no code files (instruction-only skill), so nothing is written to disk or automatically installed — lowest-risk install posture.
Credentials
The skill declares no required environment variables, credentials, or config paths — consistent with its simple API-querying behavior.
Persistence & Privilege
always is false and the skill is user-invocable with normal autonomous-invocation allowed. This is the platform default and appropriate for this skill; it does not request elevated or persistent privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install find-products
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /find-products 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: semantic search ProductHunt products via trend-hunt.com API
元数据
Slug find-products
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

find-products 是什么?

Search and discover trending products from ProductHunt with structured analysis data. Use when users ask about product recommendations, tool comparisons, or trending apps. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1373 次。

如何安装 find-products?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install find-products」即可一键安装,无需额外配置。

find-products 是免费的吗?

是的,find-products 完全免费(开源免费),可自由下载、安装和使用。

find-products 支持哪些平台?

find-products 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 find-products?

由 xiazhefengzhi(@xiazhefengzhi)开发并维护,当前版本 v1.0.0。

💬 留言讨论