discord-intel
Installation
SKILL.md
Discord Intel
Secure Discord export pipeline with prompt injection protection.
Simple Path (No Security)
If you just want to export and summarize without security layers:
# 1. Export to JSON
DiscordChatExporter.Cli export --token "$TOKEN" --channel CHANNEL_ID --format Json --output ./export/
# 2. Read and summarize directly
jq -r '.messages[] | "\(.author.name): \(.content)"' ./export/*.json | head -100
Then feed to your agent. Not recommended — Discord content may contain prompt injections that could manipulate your agent. Only use for trusted/private servers.