Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Each skill maintains its own independent version. Use this matrix to understand

| Skill | Current Version | Requires | Min Versions |
|-------|-----------------|----------|--------------|
| **requesthunt** | 2.0.0 | - | - |
| **requesthunt** | 2.1.0 | - | - |
| **domain-hunter** | 1.0.0 | twitter, reddit | twitter ≥1.0.0, reddit ≥1.0.0 |
| **logo-creator** | 1.0.0 | nanobanana | nanobanana ≥1.0.0 |
| **banner-creator** | 1.0.0 | nanobanana | nanobanana ≥1.0.0 |
Expand All @@ -34,6 +34,13 @@ Each skill maintains its own independent version. Use this matrix to understand

## Released Versions

## [1.2.0] - 2026-04-15

### requesthunt
- **Version**: 2.0.0 → 2.1.0
- Added YouTube and LinkedIn as supported data sources across all commands (search, list, scrape)
- Updated skill description, platform references, and command examples to include 5 platforms

## [1.1.1] - 2026-03-31

### requesthunt
Expand Down
4 changes: 2 additions & 2 deletions skills.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
},
{
"name": "requesthunt",
"version": "2.0.0",
"description": "Generate user demand research reports from real user feedback. Scrape and analyze feature requests, complaints, and questions from Reddit, X, and GitHub.",
"version": "2.1.0",
"description": "Generate user demand research reports from real user feedback. Scrape and analyze feature requests, complaints, and questions from Reddit, X, GitHub, YouTube, and LinkedIn.",
"logo": "https://raw.githubusercontent.com/ReScienceLab/opc-skills/main/skill-logos/requesthunt.svg",
"icon": "globe",
"color": "6366F1",
Expand Down
16 changes: 8 additions & 8 deletions skills/requesthunt/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
name: requesthunt
description: Generate user demand research reports from real user feedback. Scrape and analyze feature requests, complaints, and questions from Reddit, X, and GitHub. Use when user wants to do demand research, find feature requests, analyze user demand, or run RequestHunt queries.
description: Generate user demand research reports from real user feedback. Scrape and analyze feature requests, complaints, and questions from Reddit, X, GitHub, YouTube, and LinkedIn. Use when user wants to do demand research, find feature requests, analyze user demand, or run RequestHunt queries.
---

# RequestHunt Skill

Generate user demand research reports by collecting and analyzing real user feedback from Reddit, X (Twitter), and GitHub.
Generate user demand research reports by collecting and analyzing real user feedback from Reddit, X (Twitter), GitHub, YouTube, and LinkedIn.

## Prerequisites

Expand Down Expand Up @@ -40,15 +40,15 @@ Use `--json` for raw JSON or `--human` for table/key-value display.
Before collecting data, clarify with the user:
1. **Research Goal**: What domain/area to investigate? (e.g., AI coding assistants, project management tools)
2. **Specific Products**: Any products/competitors to focus on? (e.g., Cursor, GitHub Copilot)
3. **Platform Preference**: Which platforms to prioritize? (reddit, x, github)
3. **Platform Preference**: Which platforms to prioritize? (reddit, x, github, youtube, linkedin)
4. **Time Range**: How recent should the feedback be?
5. **Report Purpose**: Product planning / competitive analysis / market research?

### Step 2: Collect Data

```bash
# 1. Trigger realtime scrape for the topic
requesthunt scrape start "ai-coding-assistant" --platforms reddit,x,github --depth 2
requesthunt scrape start "ai-coding-assistant" --platforms reddit,x,github,youtube,linkedin --depth 2

# 2. Search with expansion for more data
requesthunt search "code completion" --expand --limit 50
Expand All @@ -66,7 +66,7 @@ Analyze collected data and generate a structured Markdown report:

## Overview
- Scope: ...
- Data Sources: Reddit (X), X (Y), GitHub (Z)
- Data Sources: Reddit (X), X (Y), GitHub (Z), YouTube (W), LinkedIn (V)
- Time Range: ...

## Key Findings
Expand Down Expand Up @@ -94,22 +94,22 @@ Based on N real user feedbacks collected via RequestHunt...
```bash
requesthunt search "authentication" --limit 20
requesthunt search "oauth" --expand # With realtime expansion
requesthunt search "API rate limit" --expand --platforms reddit,x
requesthunt search "API rate limit" --expand --platforms reddit,x,youtube
```

### List
```bash
requesthunt list --limit 20 # Recent requests
requesthunt list --topic "ai-tools" --limit 10 # By topic
requesthunt list --platforms reddit,github # By platform
requesthunt list --platforms reddit,github,youtube # By platform
requesthunt list --category "Developer Tools" # By category
requesthunt list --sort top --limit 20 # Top voted
```

### Scrape
```bash
requesthunt scrape start "developer-tools" --depth 1 # Default: all platforms
requesthunt scrape start "ai-assistant" --platforms reddit,x,github --depth 2
requesthunt scrape start "ai-assistant" --platforms reddit,x,github,youtube,linkedin --depth 2
requesthunt scrape status "job_123" # Check job status
```

Expand Down
Loading