โ† All skills
Tencent SkillHub ยท Communication & Collaboration

Reddit Archive

Download and archive Reddit posts including images, GIFs, and videos from specified users or subreddits with filtering and sorting options.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Download and archive Reddit posts including images, GIFs, and videos from specified users or subreddits with filtering and sorting options.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/reddit_archive.py, scripts/requirements.txt

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.3.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

SKILL.md โ€” Reddit Archive

Download and archive Reddit posts (images, GIFs, videos) from users or subreddits.

Auto-Installation

This script automatically checks for and installs its dependencies on first run: requests โ€” Python HTTP library yt-dlp โ€” video downloader If missing, it will attempt to install them via pip install --user. You can also: Pre-install: pip3 install requests yt-dlp Override yt-dlp path: export YTDLP_PATH=/your/custom/path/yt-dlp

When to Use

You want to archive content from Reddit โ€” either from a specific user (u/username) or a subreddit (r/subname).

Usage

python3 ~/path/to/reddit_archive.py [options]

Options

FlagDescriptionDefault-u, --userReddit username (either this OR --subreddit required)โ€”-s, --subredditSubreddit name (either this OR --user required)โ€”-o, --outputOutput directory~/temp/.reddit_<target>--sortSort order: hot, new, rising, top, controversialhot--timeTime filter for top/controversial: hour, day, week, month, year, allโ€”--afterStart date (YYYY-MM-DD)No filter--beforeEnd date (YYYY-MM-DD)No filter--limitMax posts to fetch (0 = unlimited)0--imagesDownload images (jpg, png, webp)โœ“--gifsDownload GIFs/videos (gfycat, redgifs, imgur)โœ“--skip-existingSkip already-downloaded filesโœ“--workersParallel download workers4

Examples

# All posts from a user python3 reddit_archive.py -u someuser # Subreddit with date range python3 reddit_archive.py -s orlando --after 2025-01-01 --before 2025-12-31 # Top 10 most upvoted posts of all time from a subreddit python3 reddit_archive.py -s funny --sort top --time all --limit 10 # New posts only python3 reddit_archive.py -s orlando --sort new # GIFs only, specific user python3 reddit_archive.py -u someguy --gifs # Custom output dir python3 reddit_archive.py -u someuser -o ~/Downloads/reddit_archive

Output

Downloads are saved to the output directory with the following structure: output_directory/ โ”œโ”€โ”€ Pictures/ โ”‚ โ”œโ”€โ”€ {target}_{post_id}.jpg โ”‚ โ”œโ”€โ”€ {target}_{post_id}.png โ”‚ โ””โ”€โ”€ ... โ””โ”€โ”€ Videos/ โ”œโ”€โ”€ {target}_{post_id}.mp4 โ””โ”€โ”€ ...

File Organization

The skill is organized as: reddit-archive/ โ”œโ”€โ”€ SKILL.md โ† This file โ””โ”€โ”€ scripts/ โ”œโ”€โ”€ reddit_archive.py โ† Main downloader script โ””โ”€โ”€ requirements.txt โ† Python dependencies

Rate Limiting

Pauses 0.8s between Reddit API calls to avoid 403s Uses requests with proper User-Agent header Run one instance at a time โ€” parallel runs trigger rate limits

Technical Notes

Uses Reddit's JSON API (/user/{name}/submitted.json or /r/{name}/hot.json) For galleries, extracts all images from media_metadata GIF/video downloads use yt-dlp Date filtering is done client-side after fetching (filters by Reddit's created_utc)

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Files
  • SKILL.md Primary doc
  • scripts/reddit_archive.py Scripts
  • scripts/requirements.txt Files