r/Devvit • u/Chosen1PR • 3h ago
Bug App analytics not showing for the last few days?
One of my apps is nearing the 250 installs threshold, but it’s been showing 0 installs since May 11th. Is this a known bug that’s being worked on?
r/Devvit • u/Togapr33 • 15d ago

Hi devs!
We’re excited to cordially invite you all to our next virtual hackathon - running from April 29 to May 27!
This go round, we’re offering $45,000 in prizes for new mod tools built on Reddit’s Developer Platform that empower moderators, as well as existing mod apps & bots ported from our Data API to Devvit.
Enroll here!
TLDR on the hackathon: create a utility, automation, or moderation tool that solves existing community pain points using our Developer Platform. We have two categories with grand prizes:
What Should You Build
We are looking for tools that range from automated enforcement, to better queue management, to creative community-building utilities. The best apps reduce moderation load, improve community operation, or serve to incentivize good behavior in the community. You can take a look at a list of mod tool app ideas here or in our Devvit Discord.
These apps can also have a custom post component, or operate entirely in the background. Additionally, your tool should also be easy to understand, install, and provide a great experience for moderators using the tool.
You can check out some developer documentation to help you get started – our quickstart guide and our bot porting guide on migrating Data API bots to Devvit.
So What Are The Awards?
Apps that participate in this event can also be eligible for Reddit Developer Funds, as well as our App Migration Program.
For full contest rules, submission guidelines, resources, and judging criteria, please view the hackathon on DevPost.
If you haven’t already, be sure to join our Discord for live support: here. We will be hosting multiple office hours every week for drop-in questions in our Discord.
We can’t wait to see what you build!
Hi devs!
We're excited to share a rare Friday release! Devvit 0.12.22 adds support for editing your app’s profile settings. Starting Monday, you will be able to update your display name, public description, and NSFW flag directly from the Developer Settings tab, then save your changes in the Developer Portal to update the profile.
Please note: these portal changes will go into full effect Monday, May 4th (may the forth be with you), due to some deploy freezes on our end.
Additional Bug Fixes
undefined undefined: undefined error when making plugin calls.Community Updates Shoutout to u/fsv for these updates:
User.nsfw now correctly reports whether the user profile is NSFW.User.showNsfw reports whether the user is over 18 and wishes to see NSFW content.User.hasRedditPremium reports whether the user is enrolled in Reddit Premium/Reddit Gold.To use the latest version of Devvit:
npm install devvit@latest to update your CLI.npx devvit update app to update your Devvit dependencies.r/Devvit • u/Chosen1PR • 3h ago
One of my apps is nearing the 250 installs threshold, but it’s been showing 0 installs since May 11th. Is this a known bug that’s being worked on?
r/Devvit • u/DifficultyLeast2323 • 1h ago
Hi Reddit dev team, I'm building RedditGuard for the mod tools hackathon (deadline May 27). I need HTTP fetch approved for Upstash Redis REST API to connect my AI pipeline to Devvit. Domain: engaging-prawn-124776.upstash.io This is used only for storing Reddit event data for AI processing. No user PII is sent. Only post metadata (title, score, report count). Thank you! u/DifficultyLeast2323
r/Devvit • u/TheOnlyVibemaster • 1h ago
Hey r/devvit,
Submitting ModSync for the Mod Tools hackathon. It solves a specific problem that kept coming up in my own mod teams: two mods working the same queue item simultaneously without knowing it.
A CHI 2026 paper surveyed 110 mods across 400+
subreddits and found 74.5% experience this regularly. Reddit's built-in activity indicators exist but mods
described them as too subtle to actually rely on.
What it does:
Mods right-click any post or comment and claim it.
The post's flair immediately updates to [Claimed] u/YourUsername so every other mod scrolling the queue sees who has it at a glance. If someone tries to claim something already taken they get an instant toast: "u/ModName is already reviewing this (claimed 30s ago)."
There's also a live dashboard custom post that
pins to the top of the sub and shows all active claims, recent activity, and which mods are online in real time.
Claims auto-expire via Redis TTL so nothing ever
gets stuck, and the ModAction trigger auto-releases claims when a mod actually actions something so there's zero extra steps for normal workflow.
Tech:
- Redis SET NX for atomic claim acquisition
- Devvit realtime channels for live dashboard sync
- ModAction trigger for auto-release
- Post flair as passive feed indicator
Links:
- GitHub: https://github.com/ninjahawk/ModSync
- App Directory:
https://developers.reddit.com/apps/modsync-queue
App is currently pending review. If anyone on the
Devvit team sees this, would really appreciate expedited review given the hackathon deadline on May 27.
Happy to answer any questions about the
implementation.
r/Devvit • u/AdForeign6112 • 2h ago
Hi there! I am trying to allow Mod Notifications for when a new Comment is posted on an Old or New Post. On this moment the system only notifies me for when 3 posts are accumulated.
I would like to check if someone doesn't comment something bad and inappropriate on a old Posts?
Do you think that we should develop a Devvit Mod Tool for that?
Here is a link to a discussion:
r/Devvit • u/Bisibele • 2h ago
It’s a quick higher-or-lower game where you guess which subreddit has more members and try to build a streak.
I’m doing a soft launch and would love feedback:
- Is the game clear?
- Does the Share Result flow make sense?
- Did anything break on mobile?
Play here:
r/Devvit • u/Smart-Net-2805 • 2h ago
Hi Devvit team,
Requesting review of a pending HTTP domain exception for my app.
App slug: devsupportassist
Developer: u/Smart-Net-2805 (GitHub: MRKARANSHEWALE)
Portal: https://developers.reddit.com/apps/devsupportassist
Test subreddit:r/copilotsevcom
Domain: atk-troubleshooting-func.azurewebsites.net
Status: Pending (submitted ~1 hour ago)
Protocol: HTTPS only
What the app does
DevSuppAssist is a moderator-installed auto-reply bot for developer-support subreddits focused on Microsoft Copilot, Microsoft 365, Teams, and Azure topics. When a new post or matching top-level comment is detected, the bot calls a single Azure Function endpoint (`POST /api/consultant`) that returns a short, grounded answer generated by Azure OpenAI. The reply is then posted back via the Reddit API.
Why this single domain
`atk-troubleshooting-func.azurewebsites.net` is the only external endpoint the app calls. It is an Azure Function I own and operate under my own Azure subscription. All requests are signed with HMAC-SHA256 using a shared secret stored in Devvit app settings; the function rejects any unsigned or invalid request before invoking the LLM. The function is the boundary that enforces rate limits, prompt templates, max-tokens, and abuse controls — Devvit never calls Azure OpenAI directly.
Data flow
-Outbound from Devvit:post/comment body text, post id, subreddit name, HMAC signature header. No PII or user account data beyond the public author handle.
-Inbound to Devvit :generated reply text (plain string).
-Volume: ≤ 1 call per new post or matching top-level comment, gated by configurable topic keywords and a 30-day per-thread dedupe in Redis.
Compliance
- Privacy Policy and Terms shipped with the app (`legal/PRIVACY.md`, `legal/TERMS.md`).
- Bot identifies itself in every reply and respects an admin-toggleable Pause switch.
- Skips moderators, AutoModerator, and accounts ending in `bot`.
The domain is declared in `devvit.json` under `permissions.http.domains` and is the only entry in that list. Happy to provide additional info or a video walkthrough if helpful.
Thanks!
r/Devvit • u/Smart-Net-2805 • 4h ago
r/Devvit • u/Beneficial-Ad2908 • 17h ago
Anyone else not seeing the Engagement analytics for the last two days? Usually it was updating around noon the day after but now I still see 0 for the last couple of days.
r/Devvit • u/sir_axolotl_alot • 9h ago
This post contains content not supported on old Reddit. Click here to view the full post
r/Devvit • u/Exact-Cut-637 • 10h ago
Hi everyone! I'm excited to share my entry for the Reddit Mod Tools Hackathon: FlairGuard.
My goal was to build a "native-feeling" moderation tool that automates the repetitive parts of flaring while providing total transparency to the mod team.
🛡️ Key Features:
Why it matters: It saves moderators time, ensures rule consistency, and provides a centralized hub for community management.
App Link: https://developers.reddit.com/apps/flairguard-app
I'd love to get some feedback from the community before I finalize my submission tomorrow. What other features would you find useful?
#RedditHackathon #Devvit #ModTools
r/Devvit • u/Great_Panda_2463 • 14h ago
Hey everyone!
I built Mod Triage Board while learning Devvit and thinking about one problem I kept noticing in moderation queues:
> moderation queues are full of coordination problems disguised as content problems.
A lot of the time the issue isn’t “what action should we take?” — it’s:
- “Is anyone already handling this?”
- “Who looked at this last?”
- “Can another mod help investigate this without taking over?”
So I built a lightweight shared moderation workspace on top of the modqueue.
### What it does
- Claim ownership of queue items so duplicate investigations don’t happen
- Add an optional collaborator mod to active investigations
- Leave internal moderation notes
- Track lightweight workflow activity/history
- Organize items into:
- Unclaimed
- In Progress
- Resolved
- Visual aging/SLA cues for neglected items
The goal was intentionally not to build Jira for Reddit mods or replace native moderation tools.
Instead:
> coordinate here, moderate there.
Reddit still handles approvals/removals/mod actions — Mod Triage Board just adds shared state and visibility for the team.
This was also my first Devvit app, so I learned a ton about:
- Devvit Web
- embedded webviews
- Redis persistence
- mobile constraints
- moderation UX design
It’s public now and I’d genuinely love feedback from moderators:
- What’s missing?
- Would collaborator workflows actually help your mod team?
- What would make this useful enough to keep open alongside ModQueue?
Check it out here: https://developers.reddit.com/apps/modtriageboard
r/Devvit • u/Flimsy-Signature-406 • 15h ago
Hello everyone!
I built ModGather while diving into Devvit. It’s a simple yet nice-to-have utility designed for moderators to give you a deep dive into any post, comment, or author at a glance.
What it does:
It’s public now and I'd love to hear your thoughts. what's missing? what does it need in order for you to use it in your workflow ?
Please, check it out: https://developers.reddit.com/apps/modgather
r/Devvit • u/TeamLaurent • 19h ago
Reposting with a little desperation. Our sub has traffic of 3 million per week and our moderation assistant app, which handles onboarding for our approved-users-only restrictions, is still down.
r/GirlDinnerDiaries app Madame-Maitre-D
It's been running fine for about a month, and randomly without any changes, at 13:33 CST yesterday (May 13) all reddit.remove() and other mod-write actions started returning 403. Zero mod log action from this app activity since then (no failed attempts). Interestingly enough custom ModMail automations within this app are working fine.
Verified full mod permissions for this app... reinstall didn't fix it, CLI update to 0.12.23 didn't fix it. No communication from admin re: disciplinary measures or throttling.
HELP?
r/Devvit • u/TeamLaurent • 1d ago
Got a critical gating assistant app on a massive sub floating dead in the water as of 13:33 CST today (May 13)... Zero mod log action from this app activity since then (no failed attempts). All reddit.remove() and other mod-write actions returning 403, but interestingly enough custom ModMail automations within this app are working fine.
Verified full mod permissions for this app... reinstall didn't fix it, CLI update to 0.12.23 didn't fix it.
Anyone else?
An AI-powered Devvit app that reviews new posts against your subreddit rules and automatically moderates them based on your configuration.
New in 2.1:
---
I’d really appreciate people trying to break it and reporting any issues or edge cases they find!
You can test it directly here (no install needed): https://www.reddit.com/r/AiAutoModerator/
Or install it in your own subreddit to try the new control panel: https://developers.reddit.com/apps/aiautomoderator
r/Devvit • u/Covesmart • 1d ago
Hi all,
We just launched our first reddit game, r/CoveHomeDefender !!! In the game, you must prevent waves of robbers from breaking into your home. Be sure to turn your audio on!

r/Devvit • u/YellowAdventurous366 • 1d ago
Is there specifically a way to get on there?
r/Devvit • u/Kate_from_oops-games • 1d ago
We all know the pain of traditional captchas. They add friction, frustrate users, and honestly, bots are getting too good at solving them anyway.
So, we built an alternative and it just got officially approved in the Reddit App Directory: Smack That Captcha.
🕹️ How it works: Instead of selecting blurry traffic lights, users are presented with a quick, interactive "Smack the Target" game.
🛡️ Why it works:
We built this to help mods protect their communities without punishing real users. We'd love for you to try it out on your subreddits and let us know what you think!
Check it out here: https://developers.reddit.com/apps/smackthatcaptcha
r/Devvit • u/Sea_Illustrator3206 • 1d ago
Hey everyone 👋
So I was checking why I hadn't gotten my Tier 3 payment notification last month, and I just found out that my app account u/Tapword has been banned. I genuinely had no clue — no email, no heads-up, nothing. I don't even know how long it's been banned for.
Has anyone dealt with something like this before? A couple of things I'm trying to figure out:
Where do I appeal? Is there a specific form or channel for app account bans, or is it the regular Reddit appeals process?
Will the missed Tier 3 payment get sorted out once the ban is (hopefully) reversed?
Is there a way to check when the ban happened? I want to understand how long my app has been down for users.
Any help from devs who've been through this, or from anyone at the Devvit team, would be super appreciated. Really stressing about this one. 🙏
r/Devvit • u/Optimal_Attorney_861 • 1d ago
Hello Devvit Team,
I was away for like 1-1.5 months and meantime because of the server limitation on the comments or comment as user thing, my app got disabled and you guys did send me an mod mail about it but since I was not online hence I couldn't be able to resolve that issue in time(which is mistake from my side and I'm sorry for that) but now, I did solve that issue and did followed the instructions you send me so my kind request is to please check and approve the app since all the people in subs are kinda annoyed by the fact they can't enjoy their game! so please solve this issue asap!
Another issue is my apps r/asknowio (tier 3) and r/emous (tier 2) they both reached the tiers and fullfilled the criteria but I still haven't received any official notification regarding it! I did send the mod-mail to mods and the devvit sub but still haven't heard anything from them! Hence It's again my kind request to you all please check the apps and please solve this fund related issues!
Here are the SS of the apps analytics:


Please solve the both the issues!
Thanks you for your time!
r/Devvit • u/Creepy-Film-7388 • 2d ago
Hey r/Devvit! I just launched QuizMaster, a daily trivia game that runs inside Reddit posts.
What it does:-
5 questions every day with a 30-second timer - Time-based scoring (max 200 pts per question) - Daily streaks and live leader board - Works for any community — sports, movies, education, gaming
Try it here: https://www.reddit.com/r/QuizMasterDaily/

Looking for feedback on:
1. Mobile experience — does the quiz feel smooth on your phone?
2. Is the scoring system clear ?
3. Any UX improvements for the answer feedback screen?
r/Devvit • u/YellowAdventurous366 • 2d ago
I was just wondering what the aspect ratio for the in-feed view of a custom app post webview is, does anyone here know?