poster precheck
Shows the user their likely duplicates before they submit. The tool surfaces the closest threads with a short excerpt and similarity score, not a binary block.
reddit mod tools hackathon · proof page
A Reddit-native duplicate-review tool built entirely inside Devvit. Posters see likely repeats before they hit submit. Mods get a structured 7-day duplicates queue with similarity scores and one-click actions. No LLM. No off-platform HTTP. No fake demo.
01 · demo
43 seconds covering both surfaces: poster precheck and moderator queue. Recorded against real Reddit infrastructure, not a mock or a local fixture.
02 · screenshots
All screenshots are from the live Reddit Developer Platform, not mocked states or local renders.
Shows the user their likely duplicates before they submit. The tool surfaces the closest threads with a short excerpt and similarity score, not a binary block.
Mods see the last 7 days of likely duplicate pairs, ranked by similarity. Each row has a direct link to both posts and one-click lock/remove/leave.
When the queue is empty, the tool says so and gets out of the way. No empty skeleton, no placeholder content. Clean boards matter for mod trust.
Precheck rendered against real public AskReddit posts, not a controlled fixture. Confirms the similarity engine works on live Reddit content at scale.
03 · architecture
The entire tool lives in the Devvit sandbox. No external HTTP, no scheduler, no LLM API, no third-party service. This is a constraint, not a simplification — it means the tool installs in seconds and never touches external infrastructure.
similarity engine
Title similarity is computed via normalized token overlap — fast, explainable, no model inference. Threshold is adjustable per subreddit by mods via a settings menu.
storage
Post metadata for the last 7 days is stored in Devvit's built-in Redis KV. No external database, no HTTP writes, no off-platform data. Keys expire automatically.
triggers
When a post is submitted, the Devvit hook fires the precheck synchronously against the KV store. The mod queue reads the same store on-demand when opened.
permissions
The app manifest does not request the http permission. Judges can verify this in the source — the tool makes no outbound network calls.
ui
Both surfaces — poster precheck card and moderator queue — are built with Devvit Blocks, Reddit's native UI framework. No external CSS, no iframes.
install surface
Mods install via the official Reddit Developer Platform. The app is live, approved, and publicly installable on any subreddit.
04 · hackathon alignment
Mod Tools Hackathon prizes apps that solve a real moderation problem, use native Reddit/Devvit features, and can be proven to work. dupe-detector addresses each criterion directly.
onPostSubmit trigger, native mod menu integration, subreddit settings panel. No http permission requested. All features are from the Devvit platform SDK.05 · community proof
The dev subreddit has public feedback threads that were created before the submission was finalized — the community surface was not built retroactively for judges.
The app is live, the submission is on Devpost, the proof is here. Every claim on this page has a direct link to the underlying evidence.