{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pain-point-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pain-point-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "_meta.json",
      "SKILL.md",
      "package.json",
      "docs/pain_point_discovery.md",
      "scripts/pain-points.mjs",
      ".clawhub/origin.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/pain-point-finder",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Pain Point Finder",
        "body": "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."
      },
      {
        "title": "Workflow",
        "body": "Follow these 4 phases in order. Each phase builds on the previous."
      },
      {
        "title": "Phase 1: Discover Subreddits",
        "body": "Find the right subreddits for the user's domain.\n\nnode {baseDir}/scripts/pain-points.mjs discover --domain \"<user's domain>\" --limit 8\n\nExample:\n\nnode {baseDir}/scripts/pain-points.mjs discover --domain \"project management\" --limit 8\n\nTake the top 3-5 subreddits from the output for phase 2."
      },
      {
        "title": "Phase 2: Scan for Pain Points",
        "body": "Broad search across discovered subreddits.\n\nnode {baseDir}/scripts/pain-points.mjs scan \\\n  --subreddits \"<sub1>,<sub2>,<sub3>\" \\\n  --domain \"<domain>\" \\\n  --days 90 \\\n  --limit 20\n\nExample:\n\nnode {baseDir}/scripts/pain-points.mjs scan \\\n  --subreddits \"projectmanagement,SaaS,smallbusiness\" \\\n  --domain \"project management\" \\\n  --days 90 \\\n  --limit 20\n\nReview the scored posts. Posts with high painScore and high num_comments are the best candidates for deep analysis."
      },
      {
        "title": "Phase 3: Deep-Dive Analysis",
        "body": "Analyze comment threads of top posts for agreement and solution signals.\n\nSingle post:\n\nnode {baseDir}/scripts/pain-points.mjs deep-dive --post <post_id>\n\nTop N from scan output:\n\nnode {baseDir}/scripts/pain-points.mjs deep-dive --from-scan <scan_output.json> --top 5\n\nLook at the validationStrength field:\n\nstrong: widespread, validated pain (agreementRatio > 0.20, 10+ agreements)\nmoderate: notable pain with some validation\nweak: some signal but limited agreement\nanecdotal: one person's complaint, needs more evidence"
      },
      {
        "title": "Phase 4: Synthesis (you do this)",
        "body": "For each validated pain point, present a structured proposal:\n\nProblem: One-sentence description of the pain\nEvidence: Top quotes + agreement count + subreddit\nWho feels this: Type of person/business affected\nCurrent solutions & gaps: What people have tried (from solutionAttempts) and why it fails\nCompetitive landscape: Tools mentioned (from mentionedTools)\nOpportunity: What's missing in current solutions\nIdea sketch: Brief product/service concept\nValidation: strong/moderate/weak + data backing it"
      },
      {
        "title": "discover",
        "body": "FlagDefaultDescription--domainrequiredDomain to explore--limit10Max subreddits to return"
      },
      {
        "title": "scan",
        "body": "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)"
      },
      {
        "title": "deep-dive",
        "body": "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"
      },
      {
        "title": "Rate Limits",
        "body": "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."
      },
      {
        "title": "Tips",
        "body": "Start broad with --days 90 then narrow to --days 30 for recent trends\nHigh num_comments + high score = validated pain (many people agree)\nHigh painScore + low num_comments = niche pain (worth investigating)\nThe mentionedTools in deep-dive output maps the competitive landscape\nPosts with validationStrength: \"strong\" are the best startup candidates"
      }
    ],
    "body": "Pain Point Finder\n\nDiscover 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.\n\nWorkflow\n\nFollow these 4 phases in order. Each phase builds on the previous.\n\nPhase 1: Discover Subreddits\n\nFind the right subreddits for the user's domain.\n\nnode {baseDir}/scripts/pain-points.mjs discover --domain \"<user's domain>\" --limit 8\n\n\nExample:\n\nnode {baseDir}/scripts/pain-points.mjs discover --domain \"project management\" --limit 8\n\n\nTake the top 3-5 subreddits from the output for phase 2.\n\nPhase 2: Scan for Pain Points\n\nBroad search across discovered subreddits.\n\nnode {baseDir}/scripts/pain-points.mjs scan \\\n  --subreddits \"<sub1>,<sub2>,<sub3>\" \\\n  --domain \"<domain>\" \\\n  --days 90 \\\n  --limit 20\n\n\nExample:\n\nnode {baseDir}/scripts/pain-points.mjs scan \\\n  --subreddits \"projectmanagement,SaaS,smallbusiness\" \\\n  --domain \"project management\" \\\n  --days 90 \\\n  --limit 20\n\n\nReview the scored posts. Posts with high painScore and high num_comments are the best candidates for deep analysis.\n\nPhase 3: Deep-Dive Analysis\n\nAnalyze comment threads of top posts for agreement and solution signals.\n\nSingle post:\n\nnode {baseDir}/scripts/pain-points.mjs deep-dive --post <post_id>\n\n\nTop N from scan output:\n\nnode {baseDir}/scripts/pain-points.mjs deep-dive --from-scan <scan_output.json> --top 5\n\n\nLook at the validationStrength field:\n\nstrong: widespread, validated pain (agreementRatio > 0.20, 10+ agreements)\nmoderate: notable pain with some validation\nweak: some signal but limited agreement\nanecdotal: one person's complaint, needs more evidence\nPhase 4: Synthesis (you do this)\n\nFor each validated pain point, present a structured proposal:\n\nProblem: One-sentence description of the pain\nEvidence: Top quotes + agreement count + subreddit\nWho feels this: Type of person/business affected\nCurrent solutions & gaps: What people have tried (from solutionAttempts) and why it fails\nCompetitive landscape: Tools mentioned (from mentionedTools)\nOpportunity: What's missing in current solutions\nIdea sketch: Brief product/service concept\nValidation: strong/moderate/weak + data backing it\nOptions Reference\ndiscover\nFlag\tDefault\tDescription\n--domain\trequired\tDomain to explore\n--limit\t10\tMax subreddits to return\nscan\nFlag\tDefault\tDescription\n--subreddits\trequired\tComma-separated subreddit list\n--domain\t\tDomain for extra search queries\n--days\t365\tHow far back to search\n--minScore\t1\tMin post score filter\n--minComments\t3\tMin comment count filter\n--limit\t30\tMax posts to return\n--pages\t2\tPages per query (more = deeper, slower)\ndeep-dive\nFlag\tDefault\tDescription\n--post\t\tSingle post ID or Reddit URL\n--from-scan\t\tPath to scan output JSON\n--stdin\t\tRead scan JSON from stdin\n--top\t10\tHow many posts to analyze from scan\n--maxComments\t200\tMax comments to fetch per post\nRate Limits\n\nThe 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.\n\nTips\nStart broad with --days 90 then narrow to --days 30 for recent trends\nHigh num_comments + high score = validated pain (many people agree)\nHigh painScore + low num_comments = niche pain (worth investigating)\nThe mentionedTools in deep-dive output maps the competitive landscape\nPosts with validationStrength: \"strong\" are the best startup candidates"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/yanji84/pain-point-finder",
    "publisherUrl": "https://clawhub.ai/yanji84/pain-point-finder",
    "owner": "yanji84",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}