producthunt

resciencelab/opc-skills · updated Apr 8, 2026

$npx skills add https://github.com/resciencelab/opc-skills --skill producthunt
0 commentsdiscussion
summary

Search and retrieve Product Hunt posts, topics, users, and collections via GraphQL API.

  • Four command categories: posts (by slug/ID, featured, filtered by topic or date), topics (lookup and search), users (profile and post history), and collections (featured and by ID)
  • Requires a Product Hunt developer token set as PRODUCTHUNT_ACCESS_TOKEN environment variable
  • Rate limited to 6250 complexity points per 15 minutes; includes built-in scripts for quick validation and data retrieval
skill.md

ProductHunt Skill

Get posts, topics, users, and collections from Product Hunt via the official GraphQL API.

Prerequisites

Set access token in ~/.zshrc:

export PRODUCTHUNT_ACCESS_TOKEN="your_developer_token"

Get your token from: https://www.producthunt.com/v2/oauth/applications

Quick Check:

cd <skill_directory>
python3 scripts/get_posts.py --limit 3

Commands

All commands run from the skill directory.

Posts

python3 scripts/get_post.py chatgpt                    # Get post by slug
python3 scripts/get_post.py 12345                      # Get post by ID
python3 scripts/get_posts.py --limit 20                # Today's featured posts
python3 scripts/get_posts.py --topic ai --limit 10     # Posts in topic
python3 scripts/get_posts.py --after 2026-01-01        # Posts after date
python3 scripts/get_post_comments.py POST_ID --limit 20

Topics

python3 scripts/get_topic.py artificial-intelligence  # Get topic by slug
python3 scripts/get_topics.py --query "AI" --limit 20 # Search topics
python3 scripts/get_topics.py --limit 50              # Popular topics

Users

python3 scripts/get_user.py rrhoover                  # Get user by username
python3 scripts/get_user_posts.py rrhoover --limit 20 # User's posts

Collections

python3 scripts/get_collection.py SLUG_OR_ID          # Get collection
python3 scripts/get_collections.py --featured --limit 20

API Info

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.660 reviews
  • Anaya Gupta· Dec 28, 2024

    Useful defaults in producthunt — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Kabir Mensah· Dec 24, 2024

    I recommend producthunt for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Arya Choi· Dec 16, 2024

    Keeps context tight: producthunt is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Lucas Harris· Dec 12, 2024

    producthunt has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Olivia Park· Nov 19, 2024

    producthunt is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Omar Reddy· Nov 15, 2024

    Registry listing for producthunt matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Omar Dixit· Nov 15, 2024

    Keeps context tight: producthunt is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Kabir Kim· Nov 11, 2024

    producthunt reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Sakura Mensah· Nov 7, 2024

    I recommend producthunt for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Jin Rao· Nov 3, 2024

    producthunt fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 60

1 / 6