producthunt-launches
Scrape Product Hunt daily/weekly/monthly/yearly leaderboard launches with full product details, maker profiles, and website contact info. Use when user mentions Product Hunt, producthunt, PH scraper, product hunt launches, product hunt leaderboard, scrape product hunt, product hunt data, PH daily launches, product hunt upvotes, product hunt maker info, extract product hunt, product hunt today, top products product hunt, product hunt archive, PH products, product hunt email extraction, product hunt contact info, producthunt.com scraping, get product hunt launches, product hunt API alternative. Also applies to: startup launch monitoring, new product discovery, maker/founder contact enrichment, product hunt lead generation, daily product hunt digest, competitive product tracking.
适合你,如果经常需要从 Product Hunt 获取产品数据和创始人联系方式。
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
~/.claude/skills/(项目级 .claude/skills/)~/.codex/skills/npx oh-my-skill add browser-act/skills/producthunt-launchescurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- browser-act/skills/producthunt-launchesnpx oh-my-skill verify browser-act/skills/producthunt-launches怎么用
商店整理自技能原文 · 版本 51daea1 · 表述以原文为准安装后,Claude 可以抓取 Product Hunt 每日、每周、每月或每年的排行榜产品数据,包括产品详情、创建者资料和网站联系信息。
当用户提到 Product Hunt、产品排行榜、抓取产品数据、获取创建者信息等关键词,或要求监控新产品发布时触发。
技能原文 SKILL.md
Product Hunt — Launch Data Extraction
Input: date/period parameters → Output: structured product launch data with maker profiles and website contact info
Language
All process output to user (progress updates, process notifications) follows the user's language.
Objective
Extract complete product launch data from Product Hunt leaderboard pages, enriched with maker profile information and product website contact details.
Prerequisites
- Browser session is open and can access producthunt.com
- Cloudflare challenge may appear on first visit; use
solve-captchaor wait for auto-pass
Pre-execution Checks
1. Tool Readiness
If browser-act has been confirmed available in the current session → skip this step.
Invoke browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.
2. Cloudflare Verification
Product Hunt uses Cloudflare protection. On first navigation:
- Navigate to target URL
- If page title shows "Just a moment..." →
wait stable --timeout 15000then check title again - If still blocked →
solve-captcha - Verify page loaded: title should contain "Product Hunt" or "Best of Product Hunt"
Capability Components
This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page, never bypassing authentication or access controls. JS code is encapsulated in Python files under thescripts/directory, invoked viaeval "$(python scripts/xxx.py)".$(...)is bash syntax; use the bash tool for execution.
DOM: Extract product list from leaderboard page
Navigate to the target leaderboard URL first, then extract:
eval "$(python scripts/extract-leaderboard.py)"
URL patterns (navigate to the appropriate one before extraction):
- Daily:
https://www.producthunt.com/leaderboard/daily/{YYYY}/{M}/{DD}/all - Weekly:
https://www.producthunt.com/leaderboard/weekly/{YYYY}/{week-number}/all - Monthly:
https://www.producthunt.com/leaderboard/monthly/{YYYY}/{M}/all - Yearly:
https://www.producthunt.com/leaderboard/yearly/{YYYY}/all
Replace all with featured for featured-only products.
Output example:
[
{
"rank": 1,
"name": "Product Name",
"tagline": "Short product description",
"categories": ["Productivity", "AI"],
"thumbnail": "https://ph-files.imgix.net/...",
"upvotes": 135,
"comments": 42,
"url": "https://www.producthunt.com/products/product-slug",
"slug": "product-slug"
}
]
DOM: Extract launch detail page
Navigate to the launch page URL first (https://www.producthunt.com/products/{slug}/launches/{launch-slug}), then extract:
eval "$(python scripts/extract-launch-detail.py)"
To find the launch URL from a product page: navigate to https://www.producthunt.com/products/{slug} and look for links matching /products/{slug}/launches/{launch-slug}.
Output example:
{
"name": "Product Name",
"tagline": "Short product tagline",
"description": "Full product description from OG meta",
"categories": ["Productivity", "Social Media"],
"images": ["https://ph-files.imgix.net/gallery1.png", "https://ph-files.imgix.net/gallery2.png"],
"websiteUrl": "https://product-website.com/?ref=producthunt",
"upvotes": 135,
"launchDate": "2025-05-27T07:26:33-07:00",
"makers": [{"href": "/@username", "name": "Maker Name"}],
"ogImage": "https://ph-files.imgix.net/og-image.png"
}
DOM: Extract maker profile
Navigate to maker profile URL (https://www.producthunt.com/@{username}), then extract:
eval "$(python scripts/extract-maker-profile.py)"
Output example:
{
"name": "Maker Name",
"slug": "@username",
"headline": "Creating SaaS Products",
"aboutText": "Bio text about the maker",
"links": ["https://twitter.com/username", "https://linkedin.com/in/username"],
"followers": 22,
"url": "https://www.producthunt.com/@username"
}
DOM: Extract website email and content
Navigate to the product website URL, wait for load, then extract:
eval "$(python scripts/extract-website-content.py)"
Alternatively, use stealth-extract for faster extraction without a browser session: stealth-extract {website-url} --content-type markdown then parse the markdown for email patterns.
Output example:
{
"title": "Product Website Title",
"url": "https://product-website.com",
"email": "contact@product-website.com",
"allEmails": ["contact@product-website.com", "support@product-website.com"],
"websiteRawText": "Full visible text content of the website..."
}
Composite: Full product extraction (leaderboard + detail + maker + website)
Complete pipeline replicating the full Product Hunt scraper workflow:
- Navigate to leaderboard page →
wait stable→eval "$(python scripts/extract-leaderboard.py)" - For each product from step 1: a. Navigate to
https://www.producthunt.com/products/{slug}→ find launch link → navigate to launch page b.wait stable→eval "$(python scripts/extract-launch-detail.py)"→ get full details + maker links + website URL - (Optional, if
scrapeMakersis enabled) For each unique maker from step 2: a. Navigate tohttps://www.producthunt.com/{maker.href}→wait stable→eval "$(python scripts/extract-maker-profile.py)" - (Optional, if
scrapeWebsiteis enabled) For each product website URL from step 2: a. Navigate to website URL →wait stable→eval "$(python scripts/extract-website-content.py)" - Merge all data by product slug
Final output example per product:
{
"date": "2026-06-10T00:00:00Z",
"launchDate": "2026-06-10T07:01:04Z",
"url": "https://www.producthunt.com/products/product-slug",
"name": "Product Name",
"shortDescription": "Short tagline",
"description": "Full description text",
"categories": ["Productivity", "AI"],
"maker": {
"makerHref": "https://www.producthunt.com/@username",
"name": "Maker Name",
"slug": "@username",
"url": "https://www.producthunt.com/@username",
"links": ["https://twitter.com/maker", "https://linkedin.com/in/maker"],
"aboutText": "Maker bio text"
},
"websiteUrl": "https://product-website.com",
"images": ["https://ph-files.imgix.net/image1.png"],
"upvotes": 135,
"website": {
"title": "Product Website",
"url": "https://product-website.com",
"email": "hello@product-website.com",
"websiteRawText": "Full page text content..."
}
}
Pagination
No pagination required for daily/weekly leaderboard: All products for a given day load on a single page (typically 15-50 products per day). No infinite scroll or "load more" button exists.
Yearly leaderboard: May contain many products. Apply topNProducts filter to limit. All visible products are rendered on the single page.
Success Criteria
result count >= 1(at least one product extracted from leaderboard)- Core fields non-null:
name,tagline,upvotes,urlpresent for every product - Data consistency: extracted product names match what is displayed on the page
- When detail enrichment is performed:
websiteUrlormakerpresent for enriched items
Known Limitations
- Cloudflare protection requires initial challenge pass; may need
solve-captchaon first visit - No public API available; Product Hunt only accepts persisted GraphQL queries. All data must be extracted via DOM
- Rate limiting: rapid sequential page navigations may trigger Cloudflare blocks. Add 2-3 second delays between product detail page visits
- The
/allURL path (used by older scrapers) now returns 404; use/leaderboard/daily/path instead - Product detail pages may vary in structure for older launches vs newer ones
- Website email extraction depends on email being visible in page text or HTML; mailto links and contact forms with obfuscated emails will not be captured
Execution Efficiency
- Batch orchestration: Write a bash script to loop through the command templates serially within a single session; do not parallelize within one browser. Add 2-3 second delays between navigations to avoid Cloudflare blocks. To increase throughput, open multiple stealth browser sessions and distribute work across them
- Test before batch execution: After writing a batch script, first test with 1-2 items to verify the script runs correctly; only then run the full batch
- Reduce redundant pre-operations: The leaderboard extraction gives all basic data in one pass; only visit detail pages when full description, images, or maker info are needed
- Error resumption: Save results item by item during batch processing; on failure, resume from the breakpoint rather than starting over
- Skip website extraction when not needed: Website content extraction is the slowest step (external site navigation). Only enable when email/content data is specifically required
Experience Notes
Path: browser-act-skill-forge-memories/producthunt-scraper-producthunt-launches.memory.md (working directory is determined by the Agent running the Skill)
Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions (e.g., a strategy has become ineffective); adjust strategy order accordingly.
After execution: If an unexpected situation is encountered (strategy became ineffective, page redesigned, anti-scraping upgraded, better path discovered), append a line: {YYYY-MM-DD}: {what happened} → {conclusion}
Normal execution does not write to the file.