Skip to main content
ClaudeWave
Slash Command393 repo starsupdated today

reddit-moderate

The reddit-moderate command automates Reddit community moderation by retrieving pending items from the modqueue, analyzing each against subreddit rules, and either recommending or executing moderation actions. Use interactive mode for manual review of flagged content, auto mode for hands-off removal of clear violations, or dry-run mode to preview recommendations without taking action.

Install in Claude Code
Copy
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/notque/vexjoy-agent/HEAD/commands/reddit-moderate.md -o ~/.claude/commands/reddit-moderate.md
Then start a new Claude Code session; the slash command loads automatically.

reddit-moderate.md

# /reddit-moderate

Moderate your Reddit community. Fetches the modqueue, classifies each item against
subreddit rules, and recommends actions for your approval.

## Usage

```
/reddit-moderate           # Interactive: fetch, classify, present, confirm, act
/reddit-moderate --auto    # Auto mode: remove clear spam, skip uncertain
/reddit-moderate --dry-run # Dry-run: show recommendations without acting
```

## Loop Mode

```
/loop 10m /reddit-moderate --auto
```

When invoked, load and follow the skill at `skills/reddit-moderate/SKILL.md`.

Parse the argument:
- No argument → run interactive mode (Phase 1-5)
- "--auto" → run auto mode
- "--dry-run" → run dry-run mode