Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

auto-prd-hunter汽车 PRD 猎人

Agent Skill

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

总安装

4,320

周安装

180

GitHub Stars

公开资料未说明

下载量

1,440
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install auto-prd-hunter

简介

全网搜索用户痛点并输出标准化 PRD JSON。

  • 支持竞品分析与市场需求挖掘功能。auto-prd-hunter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于产品规划与需求定义阶段使用。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 输入关键词后可自动生成结构化的需求文档。
  • 建议人工复核搜索结果的相关性与准确性。

SKILL.md

name
auto-prd-hunter
description
Search web for user pain points and output a PRD JSON.
metadata
openclaw
emoji
🔍
requires
bins
env
required
false
description
Brave Search API key for real-time web search
required
false
description
Baidu Search API key for Chinese content search
network
purpose
Brave Search API for web search
purpose
Hacker News Algolia API for tech discussions
user-invocable
true
disable-model-invocation
false

auto-prd-hunter

Scan platforms for user complaints, extract pain points, and produce a structured PRD + OpenClaw task JSON.

Important Notice

⚠️ No Fabrication Policy: This skill ONLY returns results from real API searches. If no API results are found, it returns an error instead of generating mock/fabricated data.

Commands

All operations use the packaged CLI script:

python3 {baseDir}/scripts/search.py search-pain-points --keyword "<keyword>" --max-results 8

Workflow

  1. Receive a keyword.
  2. Run the search command to fetch real complaints from APIs.
  3. Parse JSON from stdout.
  4. Extract up to 5 pain points (id, title, severity, context, sources).
  5. Invent product name and summary.
  6. Write user stories and MVP features.
  7. Derive openclaw_tasks.
  8. Output ONLY the final JSON (no markdown fences, no greetings).

Constraints

  • MUST run the CLI script. Do NOT fabricate results.
  • If APIs return no results, return error JSON: {"status":"no_results","error":"No API results found"}
  • Final reply MUST be ONLY valid JSON.
  • No markdown fences (no ```json), no greetings, no explanations.
  • If search fails, return: {"status":"error","error":"reason"}

Network Requests

This skill makes outbound network requests to:

  • Brave Search API (api.search.brave.com) - For web search results
  • Hacker News Algolia API (hn.algolia.com) - For tech community discussions

⚠️ Privacy Notice: Your search keywords will be sent to these external services. Do not include sensitive or confidential information in keywords.

Environment Variables

The script optionally reads these environment variables:

VariableRequiredPurpose
BRAVE_API_KEYNoBrave Search API key for enhanced search results
BAIDU_API_KEYNoBaidu Search API key for Chinese content

If no API keys are provided, the skill will attempt to use Hacker News API (no key required).

Output JSON Schema

{
  "status": "success",
  "keyword": "searched keyword",
  "project_name": "product name",
  "summary": "one-line value",
  "pain_points": [
    {
      "id": "PP-001",
      "title": "pain title",
      "severity": "high",
      "context": "description",
      "sources": [
        {
          "platform": "Hacker News",
          "url": "https://news.ycombinator.com/item?id=...",
          "quote": "actual user words from the post"
        }
      ]
    }
  ],
  "user_stories": [
    {
      "id": "US-001",
      "as_a": "role",
      "i_want_to": "desire",
      "so_that": "goal",
      "acceptance_criteria": ["criterion 1"],
      "priority": "P0",
      "pain_point_ids": ["PP-001"]
    }
  ],
  "mvp_features": [
    {
      "id": "F-001",
      "title": "feature name",
      "description": "what it does",
      "priority": "P0",
      "user_story_ids": ["US-001"],
      "pain_point_ids": ["PP-001"]
    }
  ],
  "openclaw_tasks": [
    {
      "task_id": "TASK-001",
      "title": "task name",
      "description": "dev instructions",
      "priority": "P0",
      "acceptance_criteria": ["standard 1"],
      "feature_id": "F-001"
    }
  ],
  "generated_at": "2026-04-07T12:00:00",
  "data_source": "API"
}

Error Handling

Script Not Found

If the CLI script is not found or Python is missing:

{
  "status": "error",
  "error": "Search script not available. Ensure python3 is installed and the script exists at {baseDir}/scripts/search.py"
}

No API Results

If all APIs return no results:

{
  "status": "no_results",
  "keyword": "<keyword>",
  "error": "No API results found. Try providing API keys (BRAVE_API_KEY) or using a different keyword.",
  "suggestions": [
    "Set BRAVE_API_KEY environment variable",
    "Try a broader keyword",
    "Check network connectivity"
  ]
}

API Error

If API calls fail:

{
  "status": "error",
  "error": "API request failed: <error details>"
}

Data Sources

The script fetches user complaints from these platforms:

PlatformTypeAuth RequiredURL
Brave SearchWeb SearchOptional (API key)api.search.brave.com
Hacker NewsTech ForumNohn.algolia.com

Note: Without API keys, only Hacker News results will be available, which may limit results for non-tech topics.

Usage Examples

Basic Usage

python3 scripts/search.py search-pain-points --keyword "remote work" --max-results 10

With API Key

export BRAVE_API_KEY="your_api_key"
python3 scripts/search.py search-pain-points --keyword "AI tools" --max-results 8

Chinese Content

export BAIDU_API_KEY="your_api_key"
python3 scripts/search.py search-pain-points --keyword "远程办公" --max-results 8

Integration with Cron

This skill works with OpenClaw's cron system for automated daily PRD generation:

{
  "name": "每日痛点挖掘与PRD生成",
  "schedule": {
    "kind": "cron",
    "expr": "0 8 * * *",
    "tz": "Asia/Singapore"
  },
  "payload": {
    "kind": "agentTurn",
    "message": "运行 auto-prd-hunter 调研热门领域痛点并生成PRD"
  },
  "sessionTarget": "isolated"
}

Transparency Commitment

This skill adheres to the following principles:

  1. No Fabrication: Never generates fake pain points or sources
  2. Transparency: All network requests are declared in metadata
  3. Privacy: Keyword inputs are sent to external APIs (as declared)
  4. Authenticity: All sources contain real URLs and quotes
  5. Error Handling: Returns clear errors when APIs fail or return no results

Troubleshooting

"No API results found"

  • Cause: No API keys configured and Hacker News has no relevant results
  • Solution: Set BRAVE_API_KEY or try a different keyword

"API request failed"

  • Cause: Network issue or invalid API key
  • Solution: Check network connectivity and verify API keys

Limited results

  • Cause: Only using Hacker News (tech-focused)
  • Solution: Configure BRAVE_API_KEY for broader web search

Getting API Keys

Brave Search API

  1. Visit: https://api.search.brave.com/
  2. Sign up for free tier
  3. Get your API key
  4. Set environment variable: export BRAVE_API_KEY="your_key"

Baidu Search API

  1. Visit: https://cloud.baidu.com/
  2. Enable Baidu Search API
  3. Get your API key
  4. Set environment variable: export BAIDU_API_KEY="your_key"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.04%
按下载量换算1,239

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills