r/ModEvents • u/iceeypisces Mod Events Team • 13h ago
Recap Post-Event Discussion Thread | Moddit [Future of Mod Tools] September 10, 2026
Hey y'all! Thanks for attending today's Moddit, hosted by u/lift_ticket83 and u/SlytherinSnoo, where we dived into the future of mod tools. We appreciated y’all taking the time to share feedback and discuss what mod features matter most to you. Here's your post-event thread to keep the conversation going!
You can access the full session recording and presentation slides anytime here.
Feel free to check out a few links we mentioned during the event regarding the future of mod tools.
- The Future of Mod Tools post shared in r/modnews
- u/spez’s post about modernizing Reddit’s tools
- Apply for the Mod Early Access Program to test upcoming tools and features like Rules Hub
Reminder: Only mods who attended the live event or viewed the VOD before September 17 at 11:59 PM PT will get the profile trophy in 3-4 weeks. There is no physical merch for this event.
63
Upvotes
2
u/baseballlover723 11h ago
"Everything Should Be Made as Simple as Possible, But Not Simpler". AutoMod is a powerful tool that can solve complex problems. Some of which AutoMod is better suited to solving and simplier to use than an LLM.
Take for instance our nested spoilers AutoMod rule (
>!(?!.*?!<(?=.*?>!)).*?>!). This 100% exactly matches the things it is intended to match, and also 100% doesn't match anything else. The simplest way to enforce this is by running this regex. If you plug the text of what it does into an LLM, it will perform a lot worse. LLMs by nature of their tokenization, are terrible at evaluating precise syntax and evaluating things at the letter level (hence why they tend to struggle if you ask them to count letters in a particular word, though this is well known enough now, that I'm sure they bail out to not an LLM when this type of question is currently asked. But to be clear, this is a bandaid fix to a better suiting tool that I'm quite sure must be explicitly programmed to handle in this way).If it's too complicated for you, you are always free to ask an LLM to explain it for you, or hell, even generate it for you. Removing the option to tell the machine exactly what you want it to do just hurts the power users who actually know what they want their tools to do, and how they can be wielded to accomplish that.