wallstreetbetslisted
Install: claude install-skill mthli/skills
# r/wallstreetbets
Browse r/wallstreetbets in the terminal. A bundled Python script
(`scripts/wsb.py`, standard library only — no install) fetches Reddit's public
RSS feeds and formats results as Markdown; your job is to map what the user
asked for to the right command, run it, and present the output.
`<SKILL_DIR>` below is the directory containing this `SKILL.md` — substitute its
absolute path when running.
## Why RSS
Reddit's unauthenticated JSON endpoints now return 403, but the `.rss` feeds
still serve fine with a descriptive User-Agent (the script sets one). So
everything here goes through RSS, and importantly the **search feed carries each
post's full body** — listing and reading DD share one fetch path. This is
read-only: the script never posts, votes, or logs in.
## Commands
```
# List posts. Default: flair DD, sorted top over the past week.
# --flair <name> any link flair (DD, News, Gain, Loss, YOLO, Discussion,
# "Daily Discussion", "Earnings Thread"); pass --flair "" for
# the plain front page (no flair filter).
# --query <text> keyword search within the sub (combinable with --flair)
# --sort top | new | relevance | hot | comments (default: top)
# --time hour | day | week | month | year | all (only affects top)
# --sub <name> any subreddit (default: wallstreetbets)
python3 <SKILL_DIR>/scripts/wsb.py list [--flair DD] [--query "<text>"] -n <count> --sort <sort> --time <window>
# Read a post's full bod