← Back to Skills Marketplace
xiazhefengzhi

find-products

by xiazhefengzhi · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
1373
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install find-products
Description
Search and discover trending products from ProductHunt with structured analysis data. Use when users ask about product recommendations, tool comparisons, or trending apps.
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install find-products
  3. After installation, invoke the skill by name or use /find-products
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: semantic search ProductHunt products via trend-hunt.com API
Metadata
Slug find-products
Version 1.0.0
License
All-time Installs 2
Active Installs 2
Total Versions 1
Frequently Asked Questions

What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 1373 downloads so far.

How do I install find-products?

Run "/install find-products" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is find-products free?

Yes, find-products is completely free (open-source). You can download, install and use it at no cost.

Which platforms does find-products support?

find-products is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created find-products?

It is built and maintained by xiazhefengzhi (@xiazhefengzhi); the current version is v1.0.0.

💬 Comments