How this skill is triggered — by the user, by Claude, or both
Slash command
/dx:reddit-fetchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
---
When WebFetch fails to access Reddit (blocked, 403, etc.), use Gemini CLI via tmux.
Pick a unique session name (e.g., gemini_abc123) and use it consistently throughout.
tmux new-session -d -s <session_name> -x 200 -y 50
tmux send-keys -t <session_name> 'gemini' Enter
sleep 3 # wait for Gemini CLI to load
tmux send-keys -t <session_name> 'Your Reddit query here' Enter
sleep 30 # wait for response (adjust as needed, up to 90s for complex searches)
tmux capture-pane -t <session_name> -p -S -500 # capture output
Look for YOUR QUERY TEXT specifically. Is it inside or outside the bordered box?
Enter NOT sent - your query is INSIDE the box:
╭─────────────────────────────────────╮
│ > Your actual query text here │
╰─────────────────────────────────────╯
Enter WAS sent - your query is OUTSIDE the box, followed by activity:
> Your actual query text here
⠋ Our hamsters are working... (processing)
╭────────────────────────────────────────────╮
│ > Type your message or @path/to/file │
╰────────────────────────────────────────────╯
Note: The empty prompt Type your message or @path/to/file always appears in the box - that's normal. What matters is whether YOUR query text is inside or outside the box.
If your query is inside the box, run tmux send-keys -t <session_name> Enter to submit.
tmux kill-session -t <session_name>
npx claudepluginhub kilomusician/claude-code-tips --plugin dxFetches Reddit content via the curl JSON API when users share Reddit URLs, need research from subreddits, or encounter 403/blocked errors on Reddit. Provides bash one-liners for listing posts, fetching threads, searching, and parsing with jq.
Fetches web content from blocked or rate-limited sites (Reddit, LinkedIn, 403 errors) using Gemini CLI and curl when WebFetch fails. Manual /gemini-fetch or auto-triggers on errors.
Reads public Reddit data via UnifAPI: subreddit profiles, thread comment trees, user activity, feeds, and trending searches. Read-only, seed-driven discovery.