Skip to content

Commit 52c7609

Browse files
authored
Merge pull request #73 from ReScienceLab/develop
chore(release): v1.2.0 - requesthunt v2.1.0 YouTube/LinkedIn
2 parents 381f07d + 567f570 commit 52c7609

3 files changed

Lines changed: 18 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Each skill maintains its own independent version. Use this matrix to understand
1111

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

3535
## Released Versions
3636

37+
## [1.2.0] - 2026-04-15
38+
39+
### requesthunt
40+
- **Version**: 2.0.0 → 2.1.0
41+
- Added YouTube and LinkedIn as supported data sources across all commands (search, list, scrape)
42+
- Updated skill description, platform references, and command examples to include 5 platforms
43+
3744
## [1.1.1] - 2026-03-31
3845

3946
### requesthunt

skills.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
},
7575
{
7676
"name": "requesthunt",
77-
"version": "2.0.0",
78-
"description": "Generate user demand research reports from real user feedback. Scrape and analyze feature requests, complaints, and questions from Reddit, X, and GitHub.",
77+
"version": "2.1.0",
78+
"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.",
7979
"logo": "https://raw.githubusercontent.com/ReScienceLab/opc-skills/main/skill-logos/requesthunt.svg",
8080
"icon": "globe",
8181
"color": "6366F1",

skills/requesthunt/SKILL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
name: requesthunt
3-
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.
3+
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.
44
---
55

66
# RequestHunt Skill
77

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

1010
## Prerequisites
1111

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

4747
### Step 2: Collect Data
4848

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

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

6767
## Overview
6868
- Scope: ...
69-
- Data Sources: Reddit (X), X (Y), GitHub (Z)
69+
- Data Sources: Reddit (X), X (Y), GitHub (Z), YouTube (W), LinkedIn (V)
7070
- Time Range: ...
7171

7272
## Key Findings
@@ -94,22 +94,22 @@ Based on N real user feedbacks collected via RequestHunt...
9494
```bash
9595
requesthunt search "authentication" --limit 20
9696
requesthunt search "oauth" --expand # With realtime expansion
97-
requesthunt search "API rate limit" --expand --platforms reddit,x
97+
requesthunt search "API rate limit" --expand --platforms reddit,x,youtube
9898
```
9999

100100
### List
101101
```bash
102102
requesthunt list --limit 20 # Recent requests
103103
requesthunt list --topic "ai-tools" --limit 10 # By topic
104-
requesthunt list --platforms reddit,github # By platform
104+
requesthunt list --platforms reddit,github,youtube # By platform
105105
requesthunt list --category "Developer Tools" # By category
106106
requesthunt list --sort top --limit 20 # Top voted
107107
```
108108

109109
### Scrape
110110
```bash
111111
requesthunt scrape start "developer-tools" --depth 1 # Default: all platforms
112-
requesthunt scrape start "ai-assistant" --platforms reddit,x,github --depth 2
112+
requesthunt scrape start "ai-assistant" --platforms reddit,x,github,youtube,linkedin --depth 2
113113
requesthunt scrape status "job_123" # Check job status
114114
```
115115

0 commit comments

Comments
 (0)