Skip to main content
ClaudeWave
Slash Command393 estrellas del repoactualizado 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.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/notque/vexjoy-agent/HEAD/commands/reddit-moderate.md -o ~/.claude/commands/reddit-moderate.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

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