▲ 2 r/u_1staura+1 crossposts

Feed got a glam up

Friends and everyone feed added a header to let you post from more screen. Added in selection to see you view from the newest posts or the most liked in each section. Weekly contests for most and least points on a post coming soon!

-Aura team

u/1staura — 3 days ago

What to do when you’re out of ideas

Ok, I’m certainly not an expert. In fact I would say closer to a novice at this whole founder, developer,
Builder type. I’ve gone through now 25 test builds of the app and landed on what, for now I personally enjoy using. Maybe my friends are blowing smoke up
my ass but they’re using it too. Do I need to keep iterating or just let it marinate for a bit

\-signed
A tired guy

reddit.com
u/1staura — 4 days ago
▲ 2 r/Aurajudge+1 crossposts

What to do when you’re out of ideas

Ok, I’m certainly not an expert. In fact I would say closer to a novice at this whole founder, developer,
Builder type. I’ve gone through now 25 test builds of the app and landed on what, for now I personally enjoy using. Maybe my friends are blowing smoke up
my ass but they’re using it too. Do I need to keep iterating or just let it marinate for a bit

-signed
A tired guy

reddit.com
u/1staura — 4 days ago
▲ 6 r/Aurajudge+4 crossposts

What stops you in the onboarding process

Working on the onboarding flow for Aura right now
and trying to figure out where people actually drop
off versus where I assume they drop off.

The pattern I keep running into: it's rarely the
first screen. People will sit through an intro or a
permissions prompt if the value is obvious. Where it
actually breaks is somewhere in the middle, usually
right before the first real action, the moment where
the app asks you to actually do something instead of
just tap next.

A few specific things that kill it based on what
I've seen:

Asking for too much before showing anything. If
someone has to create a username, pick preferences, and grant three permissions before they see a single piece of actual content, a lot of people bail before they understand why any of it matters.

No clear first action. If the app explains what it
does but doesn't immediately hand you something to do, the momentum from downloading dies fast.

Empty state after signup. Finishing onboarding and
landing on a blank feed or an empty profile with
nothing happening yet is a bad first impression even
if the rest of the app is solid.

Curious what actually gets people to bail for you,
either as a builder watching your own funnel or just
as someone who's deleted an app mid onboarding.

What was the actual moment you checked out?

reddit.com
u/1staura — 6 days ago
▲ 8 r/Aurajudge+5 crossposts

Unpopular Opinions: You have to monetize at some point

Been building Aura for a while now and the cost
curve has been interesting to watch, so wanted to
share some real numbers.

Early on, costs are basically nothing. Supabase free
tier covers auth, database, and storage for a small
user base. Claude API costs stay low because you're
not generating many verdicts yet. EAS builds have a
free tier too. You can genuinely build and launch an
app for close to zero dollars if you're doing the
work yourself.

The shift happens once real usage kicks in. A few
things scale faster than people expect:

API costs scale directly with usage, not users. One
active user posting ten times a day costs more than
ten users posting once a week. Volume matters more than headcount.

Storage adds up quietly. Photos, especially with
moderation passes running on each one, become a
real line item once you're not just storing a
handful of test images anymore.

Database reads scale with every feed, leaderboard,
and profile view, not just posts. A leaderboard
that recalculates on every load gets expensive fast
if you're not caching it.

The stuff that felt free in month one starts showing
up as a real number by month three or four, even
before you're at a scale where monetization makes
obvious sense.

The upfront cost to start is close to nothing right
now, which is genuinely great for solo builders. But
the cost curve as you grow isn't linear, it's more
like a series of steps where each new feature or
usage pattern quietly adds a new expense you didn't
plan for.

Curious what others have seen. Does the jump happen gradually or was there a specific point where costs spiked for you?

reddit.com
u/1staura — 7 days ago
▲ 6 r/Aurajudge+5 crossposts

What makes you open a social app again the next day?

Been thinking about this a lot while working on
retention for Aura. Notifications can get you to
open something once, but they don't explain why
people come back on their own days later.

For me it's usually one of these:

Something changed since I left. A new comment, a
score update, a ranking shift. If nothing's different, there's no reason to check.

A reason tied to another person. Seeing what a
friend posted matters more than seeing a generic
feed. The social pull is stronger than the content
itself most of the time.

Low effort to check but high payoff if something's
there. Opening the app should take two seconds, and if there's nothing new that's fine, but if there is something it needs to feel worth it.

Curious what pulls other people back. Is it
notifications, habit, social pressure, or something
else entirely? Trying to figure out which of these
actually matters versus which ones just feel
important from the inside.

reddit.com
u/1staura — 8 days ago

How Aura actually works under the hood

Figured some of you might be curious how the
judging actually happens, so here's a rundown.

When you log something, it goes to Claude (Anthropic's
AI model) through their API. The prompt tells it to
read what you wrote and respond with a verdict plus
a score between -10,000 and +10,000. That response
comes back in under a second most of the time.

The backend is Supabase, which handles the database,
auth, and file storage. Postgres under the hood, with
row-level security controlling who can see what.
Friends feed, leaderboard, all of that runs off the
same database with different queries filtering what
you're allowed to see.

Photos go through a separate moderation pass before
they're visible to anyone. Claude reviews the image
first, flags anything that shouldn't be posted, and
only then does it become visible on your profile or
in the feed. Currently the AI only judges the text
you write, not the photo itself, though that's
something being looked at for a future update.

The app itself is built in React Native through Expo,
so it's one codebase for iOS and Android instead of
maintaining two separate native apps.

A few things that were harder than expected:

Push notifications silently failed early on. The
logs said "sent" but nothing showed up on phones.
Turned out to be a missing key in the build config
that caused failures after the code had already
returned a success response, so nothing in the logs
pointed to the actual problem.

Getting the AI moderation calibrated took a few
rounds. First version rejected completely normal
photos because the prompt was too conservative. Had
to add explicit guidance for it to approve when
uncertain instead of defaulting to reject.

Happy to go deeper on any part of this if people

reddit.com
u/1staura — 8 days ago
▲ 11 r/Aurajudge+4 crossposts

Build and app to avoid Instagram

Hey guys. Feel free to give me your best shot.

Got tired of Instagram and FB so made an app for my friend group. We think it’s fun but just now releasing it to the larger world.

Post like twitter/threads get judged by our algorithm that creates a score and judgement. That shares to the feed and friend groups. Access tiers of features based on use.

Find us here r/aurajudge

https://apps.apple.com/us/app/aura-judge-me/id6769072074

u/1staura — 7 days ago
▲ 4 r/Aurajudge+3 crossposts

How Aura actually works under the hood

Figured some of you might be curious how the
judging actually happens, so here's a rundown.

When you log something, it goes to Claude (Anthropic's
AI model) through their API. The prompt tells it to
read what you wrote and respond with a verdict plus
a score between -10,000 and +10,000. That response
comes back in under a second most of the time.

The backend is Supabase, which handles the database,
auth, and file storage. Postgres under the hood, with
row-level security controlling who can see what.
Friends feed, leaderboard, all of that runs off the
same database with different queries filtering what
you're allowed to see.

Photos go through a separate moderation pass before
they're visible to anyone. Claude reviews the image
first, flags anything that shouldn't be posted, and
only then does it become visible on your profile or
in the feed. Currently the AI only judges the text
you write, not the photo itself, though that's
something being looked at for a future update.

The app itself is built in React Native through Expo,
so it's one codebase for iOS and Android instead of
maintaining two separate native apps.

A few things that were harder than expected:

Push notifications silently failed early on. The
logs said "sent" but nothing showed up on phones.
Turned out to be a missing key in the build config
that caused failures after the code had already
returned a success response, so nothing in the logs
pointed to the actual problem.

Getting the AI moderation calibrated took a few
rounds. First version rejected completely normal
photos because the prompt was too conservative. Had
to add explicit guidance for it to approve when
uncertain instead of defaulting to reject.

Happy to go deeper on any part of this if people

reddit.com
u/1staura — 9 days ago

👋 Welcome to r/Aurajudge - Introduce Yourself and Read First!

Hey everyone! I'm u/1staura, a founding moderator of r/Aurajudge.

This is our new home for everything related to Aura, the AI that judges your daily decisions and scores them from -10,000 to +10,000. We're excited to have you join us.

What to Post

Post your best (or worst) verdicts, funny things the AI has said, leaderboard updates, feature requests, bugs you've run into, or general thoughts on how the app is going.

Community Vibe

We're all about being friendly, constructive, and inclusive. Let's build a space where everyone feels comfortable sharing their scores without actual judgment, even though the AI has plenty.

How to Get Started

Introduce yourself in the comments below.

Post something today! Even a low score is worth sharing.

If you know someone who would enjoy this community, invite them to join.

Interested in helping out? We're always looking for new moderators, so feel free to reach out to me to apply.

Thanks for being part of the very first wave.

Together, let's make r/Aurajudge amazing.

reddit.com
u/1staura — 9 days ago
▲ 2 r/Aurajudge+1 crossposts

👋 Welcome to r/Aurajudge - Introduce Yourself and Read First!

Hey everyone! I'm u/1staura, a founding moderator of r/Aurajudge.

This is our new home for everything related to Aura, the AI that judges your daily decisions and scores them from -10,000 to +10,000. We're excited to have you join us.

What to Post

Post your best (or worst) verdicts, funny things the AI has said, leaderboard updates, feature requests, bugs you've run into, or general thoughts on how the app is going.

Community Vibe

We're all about being friendly, constructive, and inclusive. Let's build a space where everyone feels comfortable sharing their scores without actual judgment, even though the AI has plenty.

How to Get Started

Introduce yourself in the comments below.

Post something today! Even a low score is worth sharing.

If you know someone who would enjoy this community, invite them to join.

Interested in helping out? We're always looking for new moderators, so feel free to reach out to me to apply.

Thanks for being part of the very first wave.

Together, let's make r/Aurajudge amazing.

reddit.com
u/1staura — 10 days ago
▲ 5 r/Aurajudge+3 crossposts

Built an app where Ai judges your every post decision you make. From idea to App Store in 6 weeks solo.

Hey everyone, wanted to share something I've been building solo the past couple months

Aura is an app where you log a decision — texted your ex, skipped the gym, called your mom, whatever it is — and an AI instantly judges it and gives you a score from -10,000 to +10,000. Friends can see each other's scores on a leaderboard. Basically an AI that roasts your daily decisions and keeps score.

The idea came from noticing how much people already narrate their daily decisions online. I wanted to build something that takes that same behavior and makes it interactive and social instead of just a passive scroll.

just me building, took about 6 weeks.

Stack:

- React Native + Expo (single codebase, iOS first)

- Supabase for backend — postgres, auth, storage

- Claude API for the judging, moderation, and daily prompts

- EAS Build for native builds

- PostHog for analytics

I used Cursor with Claude Code for most of the implementation.

Sticking points for me were:

- Push notifications silently failed for a while. My logs said "sent" but nothing arrived on device. Turned out to be a missing APNs key in EAS — the failure happened after my code returned success, invisible until I used Expo's push tool directly to surface the actual error.

- Fixed a security policy to let users view friend profiles, which broke a separate feed because it had been quietly relying on that same policy to filter data. Learned not to treat row-level security as application logic.

- Image moderation was too strict initially — rejected completely normal photos. Had to rewrite the prompt with explicit "when in doubt, approve" guidance and concrete edge case examples.

- AI verdicts kept repeating the same phrases because my prompt listed them as examples and the model latched onto them. Had to explicitly ban certain phrases and push for variety in tone.

Right now were live on the App Store, iterating quickly — shipped 4 releases in the first week alone. Growing organically right now, no paid ads yet. Relying mostly on the share cards (every verdict generates a shareable image) and word of mouth.

Costs are low. Supabase runs about $15/month. Claude API costs are capped at $10/month through batching. No servers to manage, which keeps this sustainable as a solo project.

Happy to answer questions about the build, the AI judging system, or the App Store submission process. Not trying to sell anything here — just wanted to share since this sub has helped me with other people's builds in the past.

u/1staura — 9 days ago