Skip to content

Full Channel Cleanup

Use this workflow when you want to clean a single DM or channel as completely as possible.

  1. Discover IDs first.
  2. Scope the run to one target with --include-ids.
  3. Run --dry-run.
  4. Execute only after the plan looks correct.

Discover the target

Terminal window
delete-me-discord --list-guilds
delete-me-discord --list-channels

Preview a full wipe

Terminal window
delete-me-discord --include-ids <channel_id> --delete-reactions --preserve-n 0 --preserve-last 0 --dry-run

This means:

  • only the selected target is processed
  • no recent messages are preserved
  • no “last N messages” are preserved
  • your reactions are removed where applicable

Execute the wipe

Drop --dry-run once you are satisfied:

Terminal window
delete-me-discord --include-ids <channel_id> --delete-reactions --preserve-n 0 --preserve-last 0

Notes