Agent Skill

Generate user demand research reports by collecting and analyzing real user feedback from Reddit, X (Twitter), and GitHub. Available on skills.sh.

Quick Start

  1. Install the skill using the command below
  2. Set your API key in your environment
  3. Ask your AI agent to generate a research report

Installation

Install via npx
npx skills add https://github.com/resciencelab/opc-skills --skill requesthunt

Works with Factory Droid, Claude Code, Cursor, Codex, and other AI agents.

Prerequisites

Set your API key in ~/.zshrc or ~/.bashrc:

Environment Setup
export REQUESTHUNT_API_KEY="your_api_key"

Get your key from Settings → API

Research Workflow

Step 1: Define Scope

Clarify with your AI agent:

  • Research goal (e.g., AI coding assistants, project management tools)
  • Specific products to focus on (e.g., Cursor, GitHub Copilot)
  • Platform preference (reddit, x, github)
  • Time range for feedback

Step 2: Collect Data

The skill will scrape topics, search requests, and list filtered results automatically.

Step 3: Generate Report

Get a structured markdown report with top feature requests, pain points, competitive analysis, and opportunities.

Available Commands

The skill provides Python scripts that your AI agent can run:

list_requests.py

List feature requests with filters for topic, platform, category, and sorting.

python3 scripts/list_requests.py --topic "ai-tools" --limit 10
python3 scripts/list_requests.py --platforms reddit,github
python3 scripts/list_requests.py --sortBy top --limit 20

search_requests.py

Full-text search with optional --expand for realtime data.

python3 scripts/search_requests.py "authentication" --limit 20
python3 scripts/search_requests.py "oauth" --expand

scrape_topic.py

Trigger realtime scraping for a topic (uses realtime quota).

python3 scripts/scrape_topic.py "developer-tools" --platforms reddit,x,github

get_topics.py

List all available topics by category.

get_usage.py

Check your API usage stats.

Example Prompts

Market research:

"Generate a user demand research report for AI coding assistants"

Product-specific:

"What features are users requesting for Notion?"

Competitive analysis:

"Compare user feedback between Cursor and GitHub Copilot"

Resources