take control of your reddit history

analyze, reddact & remove comments that leak pii

brew install taylorwilsdon/tap/reddacted

✨ Key Features

Powerful tools designed for privacy and control

PII Detection

Identifies personally identifiable information in your comment history to protect your real identity.

PRIVACY

Sentiment Analysis

Understand & consider the emotional tone of posts in addition to any privacy issues

ANALYSIS

Zero-Trust Architecture

Client-side execution only. Your data never leaves your machine unless explicitly configured.

SECURITY

Self-Host Ready

Connect to any LLM via Ollama, llama.cpp, or other OpenAI-compatible endpoint.

FLEXIBILITY

Run Locally, Protect Globally

No external API calls. Everything runs on your machine with complete transparency.

πŸ“₯ Installation Options

Homebrew

Recommended for macOS and Linux users

brew install taylorwilsdon/tap/reddacted

PyPI

Python package via pip for all platforms

pip install reddacted

GitHub

Build the latest dev version from source

git clone https://github.com/taylorwilsdon/reddacted.git

πŸ” Privacy & Trust

Can I Trust This With My Data?

You don't need to (nor should you inherently) trust reddacted, it is completely open source, don't take my word for it and read the code to confirm - running it locally ensures your data never leaves your machine.

  • No External Calls

    Outside of Reddit, no servers are contacted unless explicitly configured.

  • Optional Authentication

    Reddit authentication is only required for deletion, not for analysis.

  • Smart Deletion

    Keep popular, positive comments while removing risky content.

πŸ“Š LLM Compatibility

Works with almost any AI modelβ€”no need for expensive computation.

GPT-4o-mini
~15Β’ per million tokens
qwen2.5:3b or 7b
Local, runs on potato PCs
llama 3.2:3b
Excellent local choice

πŸš€ Usage Examples

Examples
1

Quick Start (Interactive)

Quickly analyze a user's recent comments interactively:

reddacted user spez
2

Analyze with Local LLM

Analyze a user's latest comments using a local LLM instance:

reddacted user spez \
    --limit 5 \
    --local-llm "http://localhost:11434" \
    --model "qwen2.5:3b" \
    --sort new
3

Advanced PII Analysis (OpenAI)

Check controversial comments for PII using OpenAI:

export OPENAI_API_KEY="your-api-key"
  reddacted user spez \
    --sort controversial \
    --time month \
    --model "gpt-4" \
    --limit 10 \
    --pii-only