Compétence Reddit

VérifiéSûr

Permet de naviguer sur Reddit, poster des sujets, commenter, voter et gérer votre boîte de réception. Utile pour interagir avec Reddit depuis la ligne de commande, avec une confirmation obligatoire avant toute publication.

Spar Skills Guide Bot
ContenuIntermédiaire
8002/06/2026
Claude Code
#reddit#social-media#posting#commenting#browsing

Recommandé pour

Notre avis

Poste, commente, vote et parcours Reddit directement depuis Claude Code.

Points forts

  • Permet de publier des posts textes et liens après confirmation explicite.
  • Permet de naviguer sur la page d'accueil, les subreddits et de rechercher du contenu.
  • Gère les votes, les sauvegardes et la consultation de la boîte de réception.
  • Sortie en JSON facilement exploitable.

Limites

  • Nécessite une configuration manuelle des credentials OAuth.
  • Ne supporte pas la gestion de plusieurs comptes simultanément.
  • Les actions de publication demandent une confirmation utilisateur qui peut ralentir le flux.
Quand l'utiliser

Quand vous avez besoin d'automatiser la publication, la modération ou la surveillance de contenu Reddit.

Quand l'éviter

Pour des actions nécessitant une interaction temps réel avec l'API Reddit ou une large gestion de communauté.

Analyse de sécurité

Sûr
Score qualité85/100

The skill only runs a local Python script with safe commands (frontpage, subreddit, search, post with user confirmation). There is no downloading, piping to shell, or dangerous instructions. The Bash usage is purely for executing the script, which is expected.

Aucun point d'attention détecté

Exemples

Browse Reddit frontpage
Show me the top 5 posts from the Reddit frontpage.
Post a text to a subreddit
I want to post a text in r/ClaudeAI titled 'My experience with Claude' with content 'It has been great so far.'
Search Reddit for a topic
Search Reddit for 'Claude Code' in the r/artificial subreddit and show me the top 3 results.

name: reddit-skill description: Post, comment, and browse Reddit. Use when the user asks to post on Reddit, read subreddits, check their Reddit inbox, vote on posts, or search Reddit content. allowed-tools: Bash, Read

Reddit Skill - Post, Comment, Browse

Submit posts, comment, vote, and browse Reddit.

CRITICAL: Posting Confirmation Required

Before posting or commenting on Reddit, you MUST get explicit user confirmation.

Show: subreddit, title, content. Ask for confirmation before submitting.

Setup

  1. Go to https://www.reddit.com/prefs/apps
  2. Click "create another app..."
  3. Fill in:
    • Name: Claude Reddit Skill
    • Type: script
    • Redirect URI: http://localhost:9996
  4. Create ~/.claude/skills/reddit-skill/credentials.json:
    {"client_id": "YOUR_ID", "client_secret": "YOUR_SECRET"}
    
  5. Run: python3 ~/.claude/skills/reddit-skill/reddit_skill.py login

Commands

Browsing

# Frontpage
python3 ~/.claude/skills/reddit-skill/reddit_skill.py frontpage [--limit N] [--sort hot|new|top]

# Subreddit
python3 ~/.claude/skills/reddit-skill/reddit_skill.py subreddit NAME [--limit N] [--sort hot|new|top|rising]

# Search
python3 ~/.claude/skills/reddit-skill/reddit_skill.py search "query" [--subreddit NAME] [--limit N]

Posting (Requires Confirmation)

# Text post
python3 ~/.claude/skills/reddit-skill/reddit_skill.py post SUBREDDIT --title "Title" --text "Content"

# Link post
python3 ~/.claude/skills/reddit-skill/reddit_skill.py post SUBREDDIT --title "Title" --url "https://..."

# Comment on post
python3 ~/.claude/skills/reddit-skill/reddit_skill.py comment t3_POSTID --text "Comment"

# Reply to comment
python3 ~/.claude/skills/reddit-skill/reddit_skill.py reply COMMENTID --text "Reply"

Voting & Saving

python3 ~/.claude/skills/reddit-skill/reddit_skill.py vote THING_ID --dir up|down|none
python3 ~/.claude/skills/reddit-skill/reddit_skill.py save THING_ID
python3 ~/.claude/skills/reddit-skill/reddit_skill.py unsave THING_ID

User Content

python3 ~/.claude/skills/reddit-skill/reddit_skill.py me
python3 ~/.claude/skills/reddit-skill/reddit_skill.py submissions [USERNAME] [--limit N]
python3 ~/.claude/skills/reddit-skill/reddit_skill.py comments [USERNAME] [--limit N]
python3 ~/.claude/skills/reddit-skill/reddit_skill.py inbox [--limit N]
python3 ~/.claude/skills/reddit-skill/reddit_skill.py subscriptions

Thing IDs

Reddit uses "thing IDs" with prefixes:

  • t1_ = comment
  • t3_ = post/link
  • t4_ = message

Get IDs from command outputs or URLs.

Output

All commands output JSON.

Skills similaires