# Send Pain Point Finder to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pain-point-finder",
    "name": "Pain Point Finder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/yanji84/pain-point-finder",
    "canonicalUrl": "https://clawhub.ai/yanji84/pain-point-finder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pain-point-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pain-point-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "_meta.json",
      "SKILL.md",
      "package.json",
      "docs/pain_point_discovery.md",
      "scripts/pain-points.mjs",
      ".clawhub/origin.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pain-point-finder"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pain-point-finder",
    "downloadUrl": "https://openagent3.xyz/downloads/pain-point-finder",
    "agentUrl": "https://openagent3.xyz/skills/pain-point-finder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pain-point-finder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pain-point-finder/agent.md"
  }
}
```
## Documentation

### Pain Point Finder

Discover validated pain points on Reddit. Searches for frustrations, complaints, and unmet needs, then analyzes comment threads for agreement signals and failed solutions. Powered by PullPush API — no API keys needed.

### Workflow

Follow these 4 phases in order. Each phase builds on the previous.

### Phase 1: Discover Subreddits

Find the right subreddits for the user's domain.

node {baseDir}/scripts/pain-points.mjs discover --domain "<user's domain>" --limit 8

Example:

node {baseDir}/scripts/pain-points.mjs discover --domain "project management" --limit 8

Take the top 3-5 subreddits from the output for phase 2.

### Phase 2: Scan for Pain Points

Broad search across discovered subreddits.

node {baseDir}/scripts/pain-points.mjs scan \\
  --subreddits "<sub1>,<sub2>,<sub3>" \\
  --domain "<domain>" \\
  --days 90 \\
  --limit 20

Example:

node {baseDir}/scripts/pain-points.mjs scan \\
  --subreddits "projectmanagement,SaaS,smallbusiness" \\
  --domain "project management" \\
  --days 90 \\
  --limit 20

Review the scored posts. Posts with high painScore and high num_comments are the best candidates for deep analysis.

### Phase 3: Deep-Dive Analysis

Analyze comment threads of top posts for agreement and solution signals.

Single post:

node {baseDir}/scripts/pain-points.mjs deep-dive --post <post_id>

Top N from scan output:

node {baseDir}/scripts/pain-points.mjs deep-dive --from-scan <scan_output.json> --top 5

Look at the validationStrength field:

strong: widespread, validated pain (agreementRatio > 0.20, 10+ agreements)
moderate: notable pain with some validation
weak: some signal but limited agreement
anecdotal: one person's complaint, needs more evidence

### Phase 4: Synthesis (you do this)

For each validated pain point, present a structured proposal:

Problem: One-sentence description of the pain
Evidence: Top quotes + agreement count + subreddit
Who feels this: Type of person/business affected
Current solutions & gaps: What people have tried (from solutionAttempts) and why it fails
Competitive landscape: Tools mentioned (from mentionedTools)
Opportunity: What's missing in current solutions
Idea sketch: Brief product/service concept
Validation: strong/moderate/weak + data backing it

### discover

FlagDefaultDescription--domainrequiredDomain to explore--limit10Max subreddits to return

### scan

FlagDefaultDescription--subredditsrequiredComma-separated subreddit list--domainDomain for extra search queries--days365How far back to search--minScore1Min post score filter--minComments3Min comment count filter--limit30Max posts to return--pages2Pages per query (more = deeper, slower)

### deep-dive

FlagDefaultDescription--postSingle post ID or Reddit URL--from-scanPath to scan output JSON--stdinRead scan JSON from stdin--top10How many posts to analyze from scan--maxComments200Max comments to fetch per post

### Rate Limits

The script self-limits to 1 request/sec, 30/min, 300/run. If PullPush is slow or returns errors, it retries with exponential backoff. Progress is logged to stderr.

### Tips

Start broad with --days 90 then narrow to --days 30 for recent trends
High num_comments + high score = validated pain (many people agree)
High painScore + low num_comments = niche pain (worth investigating)
The mentionedTools in deep-dive output maps the competitive landscape
Posts with validationStrength: "strong" are the best startup candidates
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yanji84
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pain-point-finder)
- [Send to Agent page](https://openagent3.xyz/skills/pain-point-finder/agent)
- [JSON manifest](https://openagent3.xyz/skills/pain-point-finder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pain-point-finder/agent.md)
- [Download page](https://openagent3.xyz/downloads/pain-point-finder)