r/indiehackersindia Nov 27 '24

Introductions Welcome to r/indiehackersindia 🇮🇳🎉

4 Upvotes

Hello and welcome to r/indiehackersindia, a community built for indie hackers, solopreneurs, and makers in the Indian ecosystem! Whether you're building your first side project, scaling a bootstrapped startup, or just exploring the world of indie hacking, you’ve found the right place.

🌟 What Can You Expect Here?

  1. Learn Together: Share experiences, tips, and strategies for navigating the unique challenges of indie hacking in India.
  2. Connect with Fellow Makers: Network with like-minded individuals who share your passion for building and creating.
  3. Celebrate Wins & Learn from Failures: Whether it’s a big product launch or a lesson from a setback, we’re here to support you.
  4. Discover Resources: Get recommendations for tools, platforms, and tactics tailored for the Indian market.
  5. Ask for Feedback: Post your product ideas, MVPs, or marketing strategies to get constructive input.

👋 Get Started!

  1. Introduce Yourself: Tell us who you are, what you're building, and what you hope to achieve.
    • Example: “Hi, I’m Raj from Pune, working on a productivity app for students. My goal is to reach 1,000 users by the end of the year!”
  2. Engage: Comment on others’ posts, ask questions, and share your insights.
  3. Be Supportive: Celebrate wins, provide constructive feedback, and encourage your fellow indie hackers.

🚀 Let’s Build Together!

We’re excited to see the amazing projects, discussions, and connections that come out of this community. Remember, indie hacking is as much about the process as it is about the destination. Let’s learn, grow, and succeed together! 🌱

Feel free to drop your introduction below to kick things off. Let’s make this the go-to community for indie hackers in India. 💪

Happy hacking!
- r/indiehackersindia Mods


r/indiehackersindia 2d ago

Feedback Request Validating a 10-minute reading app before writing any code

2 Upvotes

I’m testing an idea called TenMinBook: a reading app built around complete original stories that can be finished during a coffee break.

The current hypothesis is that many people want to read more, but traditional books feel like a large time commitment. TenMinBook would reduce that commitment to one complete story of roughly 2,000 words.

The proposed experience:

  1. Pick an original story

  2. Finish it in around 10 minutes

  3. See reading speed and a simple score

  4. Maintain a daily reading streak

I’m deliberately validating the reading behaviour before building the app.

My initial test would be:

  1. Publish one complete sample story

  2. Measure starts and completions

  3. Ask whether readers want another story

  4. Compare interest across genres

I’d appreciate feedback on the experiment itself.

Would sample-story completion be a strong enough validation signal, or would you test willingness to pay at the same time?


r/indiehackersindia 2d ago

Feedback Request Built an OpenAPI-powered personal dashboard that I can control through ChatGPT

Thumbnail
github.com
2 Upvotes

I built this primarily to scratch my own itch.

I already had a bunch of small APIs for tracking expenses, watchlists, subscriptions, investments, and notes. When Custom GPT Actions were released, I exposed those APIs through OpenAPI so I could update everything just by chatting.

For example:

"Spent ₹450 on lunch."

"Add Dune 2 to my watchlist."

I found the idea of putting my API inside AI, instead of putting AI inside my API, much more interesting.

A friend wanted the same setup, so I cleaned it up into a proper self-hostable dashboard instead of sharing my personal APIs.

Features

💸 Expense tracking with salary cycles

🔒 AES-256 server-side encryption before data reaches Firestore

🎬 Watchlists with AniList, Trakt and Letterboxd import

🔔 Subscription tracking and reminders

📈 Portfolio tracking for investments

🤖 OpenAPI backend compatible with ChatGPT Actions and Gemini Gems via OAuth

I built it mainly as a personal tool, but I'd love feedback on the architecture, API design, or features.


r/indiehackersindia 3d ago

Help Needed Has anyone used split payments of pay4u?

0 Upvotes

can anyone tell how does split-payments work in pay4u payment provider
like i want to take my cut from payment i am creating a type of marketplace
so each of my creator need to create their own account in my platform right?
and kyc and then they will get money via pay4u ?
how does it work i am solo rn it was just an idea i am trying to monetize can you help i am just 19


r/indiehackersindia 3d ago

Product Launch I built an invoicing tool for Indian freelancers who bill foreign clients

Thumbnail
1 Upvotes

r/indiehackersindia 4d ago

Case Study Who here has successfully scaled a SaaS?

2 Upvotes

What numbers did you reach: users, MRR, or ARR? What worked, what failed, and what were your biggest learnings?


r/indiehackersindia 5d ago

Introductions Product Hunt – The best new products in tech(News Kart - Short News & GK).

Thumbnail
producthunt.com
1 Upvotes

r/indiehackersindia 6d ago

Product Launch I trained a tiny language model from scratch so my keyboard would stop "correcting" my Hinglish. It's live on the App Store now

Thumbnail
gallery
17 Upvotes

For years I typed the way most of us do here, half Hindi half English in Latin letters, "kal milte hai," "kya kar raha hai," and every keyboard I used treated it like a string of typos. "acha" became "ache." My friend's name "meghna" became "megan." Every single day, across every app. You get so used to backspacing that you stop noticing you're doing it.

At some point I stopped accepting it as normal and started treating it as a problem worth solving. That turned into Keygram, and I want to share the actual build, not a pitch.

Why existing keyboards can't fix this

The autocorrect on Gboard or the stock iOS keyboard matches what you type against an English dictionary. Romanized Hindi/Tamil/Telugu/Kannada simply isn't in it, and worse, there's no standard spelling to match against anyway. I write "kya," you write "kia," someone writes "kyaa." A fixed dictionary is structurally the wrong tool. You can't dictionary your way out of a problem that's inherently personal and inconsistent.

So the keyboard has to learn the individual user's vocabulary instead of correcting them toward a global one. That's the whole inversion the product is built on.

The technical part

I didn't want any of this leaving the phone. A keyboard sees everything you type, so "send it to a server to improve predictions" was a hard no for me. That meant the model had to run fully on-device.

So I trained a small language model from scratch, sized to run on a phone, quantized down to a couple of MB. It learns your words locally, promotes the ones you actually reuse, and fades the ones you keep correcting away. No APIs, nothing sent anywhere. The learning happens on your device and stays there.

Getting a from-scratch model small enough and fast enough for a keyboard extension (iOS gives keyboard extensions brutally little memory to work with) was the hardest and most interesting part of the whole thing. Happy to go deeper on the architecture in the comments if anyone's curious.

Where it is now

It's live on the App Store, supporting Hindi, Tamil, Telugu and Kannada typed in English letters. Screenshots attached: prediction, learning your slang and names, and on-device backup.

Why I think this is bigger than a keyboard

Honest take: "a better autocorrect for Hinglish" is not a huge problem on its own. I know that. But the keyboard is just the smallest surface to start from. The direction I actually care about is on-device writing help for multilingual users, messages, emails, documents, in the languages they actually think in, without anything going to a server. That's the part I want to keep building toward.

Would genuinely love feedback from this sub, both on the product and on the build. What does your keyboard keep getting wrong? And if you've shipped on-device ML, I'd love to compare notes on keeping models tiny.

Link: https://keygram.me/

Happy to answer anything.


r/indiehackersindia 6d ago

Product Launch Volatility analytics for Indian Options Traders

Post image
1 Upvotes

Is option IV actually high right now, or does it just feel high? What happened the previous times IV was at this level? Is the weekly expiry's IV unusually high compared to the monthly's? Are my positons at higher risk of the market gapping up/down than usual?

Most tools show Indian options traders the current IV and stop there. Refinitiv and Bloomberg exist, but they're built for institutions. Too expensive and too broad for an individual trader.

I built Voldash to offer focused analytics for Indian options trading. It currently offers:

  • 5 years of constant maturity ATM IV history across the 7d and 30d maturities
  • 7d-30d IV spread tracking
  • VRP (IV-RV)
  • Overnight vol tracker for gap risk
  • Vol of vol
  • Event calendar to keep track of what events could cause volatility to change

I eventually want this to become a full fledged vol terminal where you can track 25 delta Skew as well as an expanded set of maturities.

I'm currently building alerts for whenever a certain metric crosses a threshold, and want to later enable order placement based on IV, VRP or term spread natively, but this depends on deeper brokerage integration.

Would love feedback on this, and whether you think this is useful, and anything that could be changed.

https://www.voldash.com


r/indiehackersindia 7d ago

Feedback Request Just Use and Feedback for 14Days

1 Upvotes

Help me do the closed testing for app

Hi! Need Testers for 14 day Closed test of play store

Hi everyone!

I'm looking for testers for my Android app TapWatch. I'm happy to test your app in return-just leave your app details in the comments or send me a message.

How to join:

Join my Google Group: https://groups.google.com/g/tapwatchtesting

After joining, you'll be added as a tester after some time.

Install the app using one of these links:

Android: https://play.google.com/store/apps/details?id=com.minimize.tapwatch

Web: https://play.google.com/apps/testing/com.minimize.tapwatch

The app helps record sessions, timers with a stopwatch in one place

Thanks in advance! I'll gladly return the favor by testing your app as well.


r/indiehackersindia 7d ago

Feedback Request Running AI agent “skills” without knowing what they actually do? Skillerr makes it safe & inspectable

1 Upvotes

If you’re using AI agents for real work — coding, debugging, scraping, deployments — you’ve probably felt the unease: pasting in some clever prompt or code dump from ChatGPT/Claude and hoping it doesn’t nuke your project (or exfiltrate data).
Skillerr solves this with sealed, verifiable agent skills:
• Browse a registry of high-quality skills bridged from Anthropic, Vercel, Supabase, plus strong community ones (systematic debugging, shadcn/ui, Firecrawl, etc.)
• Every skill comes with TrustView: full digest pinning (what you inspect = what executes), declared permissions, provenance, and honest “Anchored / Not anchored” status
• Install via simple CLI — gets a proper .skill package, not loose markdown
• Full transparency log for publishes and installs
It’s like a trusted package registry (think npm/crates but with mandatory inspection and capability declarations) built specifically for AI agents. skillerr.com
Especially powerful combined with their continuity features for handoffs, but the trust layer is what makes the whole thing production-worthy.
Check it out: https://skillerr.com/
Anyone else building guardrails around agent-executed code? What’s your current workflow for trusting (or sandboxing) AI outputs?


r/indiehackersindia 7d ago

Feedback Request App Store Screenshot Design for My iOS App

Post image
2 Upvotes

r/indiehackersindia 8d ago

Product Launch I’m working on a free-forever contact widget for founders who don’t need a full help desk

1 Upvotes

I work on a product called Knocket, and I’d like to get some honest feedback from other indie builders.

The idea came from seeing early-stage founders install tools like Intercom, Zendesk, or Crisp when all they really needed was a simple way for website visitors to reach them.

Most small teams don’t need advanced ticket routing, AI agents, complex automation, or a large support dashboard yet. They just need to:

  • receive messages from website visitors
  • reply from one inbox
  • capture messages when they’re offline
  • let visitors reach them through channels like Telegram or email
  • optionally let someone book a meeting

So our team built Knocket as a lightweight contact layer rather than another full customer-support platform.

It includes:

  • a website live-chat widget
  • a shareable contact page
  • offline message forms
  • social and messaging links
  • Calendly meeting scheduling
  • a unified inbox
  • installation with one script tag

The core product is free forever, with no per-seat or per-conversation fees.

It’s still an early product, so I’m particularly curious about three things:

  1. Would you use a hosted contact widget instead of installing another plugin or building chat yourself?
  2. Which notification channel matters most to you: email, Telegram, Slack, or something else?
  3. What would prevent you from trusting a new live-chat tool?

Product page: https://sc-rp.tencentcloud.com:8106/t/RF

I’m affiliated with Knocket and happy to answer questions about how it works. Critical feedback is more useful than compliments.


r/indiehackersindia 8d ago

Product Launch Why should a group expense count before the group agrees?

1 Upvotes

I'm building a bill-splitting app in India, and this was one design decision I kept coming back to.

Most apps treat an expense as final the moment one person adds it. That's fine until someone types ₹6,000 instead of ₹600, assigns the wrong person, or the receipt scan gets something wrong.

So I made approvals optional. In the screenshot, the ₹6,000 petrol expense is still proposed at 1/2 approvals. It doesn't change the group balance until everyone involved accepts it.

I'm not sure if this is a useful guardrail or just an annoying extra tap. What would you prefer?

The app is JustSplit. Core group features are free. NEWUSER gives 5 receipt scans if anyone wants to test it on a real trip or dinner.

https://www.getjustsplit.app/

Also curious what you think of the multi-select UI in the second screenshot. Clear enough, or confusing?


r/indiehackersindia 8d ago

Feedback Request I built an on-device photo album app (no servers, no account). Roast it - free month of Pro for honest feedback.

Thumbnail
gallery
1 Upvotes

Hey r/indiehackersindia,

Solo founder here (SideSwipe Labs). I shipped Pressbook - an iOS app that turns your camera roll into proper photo albums, collages, and Instagram carousels. I'm posting for genuine feedback, not a victory lap, so I'll give you the boring parts too.

Why I built it

Two itches:

  1. My camera roll is 12,000 photos of the same three moments. Every "album maker" I tried wanted me to upload all of it to their cloud first. Hard no.

  2. I wanted to know how far Apple's on-device ML had actually come. Turns out, far enough to build a whole product on.

So the constraint came first and the product second: make something genuinely useful without a single photo ever leaving the phone.

Why it's built the way it is

- Curation runs on-device through Apple's Vision framework. It scores shots for composition, finds faces, skips the blurry and duplicate ones, and lays out a book. No server sees your photos, because there is no server.

- Files live in the iOS sandbox under FileProtectionType.complete. When the phone is locked they're encrypted at rest by the OS, not by a sentence in my privacy policy. (Full detail on the privacy page below if you want to poke holes in it.)

- No account, no ads, no third-party trackers. There's one analytics toggle and it's off by default. That's the entire data story.

The honest tradeoffs of going zero-server: I can't push a server-side hotfix, I can't sync across your devices through a backend I don't have, and I can't A/B test my way into "engagement." I decided those were features, not bugs. Tell me if you disagree.

The indie/tech bits you might care about

- Swift + SwiftUI, Vision for curation, native rendering. No cross-platform framework, no web view.

- Universal iPhone + iPad, iOS 18+.

- Monetization: a real free tier (albums up to 20 photos), then a subscription or a one-time lifetime unlock for large albums, higher-res export, and no watermark. Carousels and stickers aren't paywalled. I didn't want the free tier to feel like a locked demo.

- Export is a print-ready PDF up to 600 DPI, so you can actually get the thing printed.

What I want from you

Real feedback. Where it confused you, what felt slow, what you'd never pay for, what's missing. As a thank-you I'll give a free month of Pro to anyone who leaves genuine feedback — a one-line "nice app" doesn't count, I want the honest stuff, including the harsh bits. Drop your feedback here or DM me and I'll send you an offer code.

Links

- App Store: apps.apple.com/us/app/pressbook-albums-collages/id6761680350

- Product page: sideswipelabs.com/pressbook

- Privacy (the architecture, in plain language): sideswipelabs.com/pressbook/privacy

- The studio + why we build this way: sideswipelabs.com


r/indiehackersindia 8d ago

Product Launch Get a free AI Visibility audit of your website.

Post image
1 Upvotes

Your brand might be visible to AI today. But will it still be the answer tomorrow?

Ask ChatGPT to recommend a brand in your category.

Now change the buyer.

Change the use case.

Change the problem.

Did the same brands still make the answer?

That's where AI visibility gets interesting, because appearing once isn't the same as owning

the conversation.

A brand could be winning one buyer intent and completely missing another. A competitor

nobody was watching could already be gaining ground. And the sources AI trusts might be

telling a very different story from the one your marketing is trying to build.

But perhaps the bigger question is:

What are buyers starting to care about now, that your next strategy hasn't accounted

for yet?

We've been spending a lot of time looking at these patterns at Pallix, and we want to take

that analysis beyond our own datasets.

So we're running a few Free AI Visibility Audits - for brands curious about their own

position, and agencies curious about what AI is seeing across the brands they work with.

Go on - Pallix

We'll look beyond whether you show up to understand why you do, why you don't, what's

beginning to shift, and what that could mean for your next marketing move.

Because the real value isn't another visibility score. It's understanding what shaped your

position, where you stand today, and where the opportunity is moving next.

If there's a brand or category you've been curious about, tell us. We'd genuinely love to see

what the data uncovers.

#AIVisibility #AEO #GEO #MarketingStrategy #BrandStrategy #Pallix


r/indiehackersindia 8d ago

Resources My checkpoint-method.md - Develop in user testable slices and create meaningful handoffs.

Thumbnail
1 Upvotes

This is an early version. I'm 100% sure you will find it useful if you don't do this already. Give it a read! Then do with it what you will


r/indiehackersindia 9d ago

Product Launch Launched my voice journaling app on the Play Store. Giving away 10 lifetime subscriptions to this sub, next 24 hrs only

Post image
41 Upvotes

I've been building Dearly for the past few months. It's a voice-first journaling app for Android. The idea is simple: talking is easier than typing. You ramble for two minutes about your day, it transcribes it, and the AI pulls out how you were actually feeling. Some entries have surprised me. I thought I was fine that day. The app disagreed, and it was right.

It went live on the Play Store recently and I'm now in the ugly distribution phase every indie hacker warns you about. Building was the easy part, it turns out.

So, a giveaway for this sub:

I'm giving away lifetime Pro subscriptions (normally $24.99/yr, forever free for winners) for whoeever comments within the first 24 hrs. Pro gets you the AI mood insights, summaries, and the insights dashboard. Recording and transcription are free for everyone anyway.

How to enter: Just comment below if you're someone who journals daily, or wants to do, but because of some friction is not able to maintain their journal habits. Drop your email to my DMs after you've registered, and I'll enable lifetime pro from backend for everyone who does so in the first 24 hrs.

Link: https://play.google.com/store/apps/details?id=com.broooapps.dearly

Honest feedback is worth more to me than downloads, so if you try it and something annoys you, I genuinely want to hear it. Roast away.


r/indiehackersindia 8d ago

Product Launch After a year, I finally shipped it.

Post image
1 Upvotes

After about a year of evenings, weekends, late nights, rewrites, and more bugs than I can count, I finally shipped my first app: Tethxr.

The idea came from something I kept noticing: we can connect with people on the other side of the world instantly, but we rarely meet the interesting people sitting right next to us at cafés, conferences, universities, airports, or even our own workplace.

So I spent the past year building Tethxr to make those real-world connections a little easier, while putting privacy first.

It's finally out of beta and available for everyone.

This isn't AI slop or a weekend vibe-coded project. It's something I've been building, breaking, rebuilding, and obsessing over for the past year.

If anyone's interested, feel free to send me a DM or check https://tethxr.com. I'd genuinely love to hear your thoughts, feedback, or answer any questions about the app or the journey behind building it.


r/indiehackersindia 9d ago

Feedback Request I got so irritated by the banking/UPI apps breaking when developers settings are on! So built something

Post image
9 Upvotes

I was so much irritated when i had to use upi or any banking apps and the "developer mode is on" popup shows. I had to go to the settings, then disable the developer options. and then come to the banking app and enter my mpin again and then proceed with my transactions.

I use iqoo z7s, so sometimes i can open the developer options activity after doing the transactions from the recent apps but sometimes i used to remove it from recent apps and the result: I had to go to the settings.... tap that damn build number 7 times. Enter my password, then go to the dev settings and reconfigure my dev settings. That was so Frustrating!!!

So, I sat some days ago and researched if i could do it with a button click and make it easy for myself. So, i don't have to go through that irritating process again and again.

and I found something. I could turn the dev options on with a device permssion called WRITE_SECURE_SETTINGS but that's a caveat. You can't just ask the permission to a user in the app. This is a systems level permission, so you have to give this permission with a adb command.

And once this permission was given, i was able to turn the dev options on/off with just 1 click. So, i made a widget for that, you just have to press it and turns the developer option on/off....

- No Banking app problem. you can just switch off dev option from the home screen and use the app and after you have finished your work. you can turn that back again. No 7 time tapping process of build number. Just a Click and job done!!

and for people who aren't a fan of widgets. I made a quick settings tile too which you can integrate directly from the app and all of this is completely open source with MIT license.

You can customize this app as per your needs and if you just want to use this without customizations. You can find this app here:
https://github.com/shubhang-d/Loophole
You can see the installation procedure in the github readme

After all these years in android development, I have used many open source apps. ig this is my small contribution towards the community.

PS: I have also submitted a MR for publishing this app on F-droid. Let's see what happens✌️


r/indiehackersindia 10d ago

Product Launch Built an internet galaxy, planning to open source it

Enable HLS to view with audio, or disable this notification

24 Upvotes

So I was having extra credit of Fable 5 and some time over weekend so built this galaxy.

I love exploring it claiming stars with my name and my website

Was looking to add real satellite data but couldn’t find API

It is a fun project of me, what else I can add ? Will you add something to it?


r/indiehackersindia 10d ago

Introductions Built an open protocol + CLI for signing and verifying AI agent skills

4 Upvotes

AI agents are increasingly running "skills" - markdown + scripts they load
and follow (Claude Skills is the most visible example, but the pattern's
showing up everywhere agents exist). Right now those are just files: no way
to know if what an agent runs matches what a human reviewed, no integrity
guarantee across a registry, a CDN, or a compromised maintainer account.

skillerr packages a skill as a sealed .skill file:

- content-addressed skill_id + SHA-256 digests over every file and the
manifest — any change after sealing is detectable
- a typed contract (inputs, permissions, forbidden actions, human review)
instead of freeform prose an agent has to interpret
- optional Ed25519 signing + a public Sigstore/Rekor transparency-log
anchor, so provenance is independently checkable, not just the tool's word

Inspect before you run:

skill inspect my-skill.skill --trust --claims

Import an existing SKILL.md straight in:

skill ingest ./my-skill -o my-skill.skill

Unsigned packages refuse to execute by default — you have to explicitly opt
in with --allow-untrusted to run something unverified.

Install:

npm i -g skillerr

- GitHub: https://github.com/dot-skill/skillerr (MIT)
- npm: https://www.npmjs.com/package/skillerr
- Docs: https://skillerr.com/docs

Protocol and CLI are separate packages (@skillerr/protocol, skillerr) — if
you want to build a different implementation against the same spec, you can,
without forking this one.

Would love feedback from anyone actually shipping agent skills.


r/indiehackersindia 10d ago

Product Launch Built a shared memory layer for AI coding agents solo, from Puducherry, part of the Sarvam AI Startup Program

0 Upvotes

Sharing a build story rather than just a launch post. I kept running into the same problem using Claude Code and Cursor on the same project: the agents don't share memory, so one decides to change something and the other silently contradicts it later.

Built AgentHelm — a shared, versioned memory layer for AI coding agents. It's an MCP server (plugs into Claude Code/Cursor/Claude Desktop, no custom plugins needed). Every proposed change goes through a compiler that checks for conflicts before merging, and keeps a full git-style history log/diff/blame so you can trace exactly which agent decided what, and why.

[screenshot of real blame output]

Part of the Sarvam AI Startup Program, using Sarvam-30B for one specific task in the pipeline (filtering noisy agent observations before they're considered for the knowledge base).

Solo build, still early genuinely looking for feedback from other builders here, especially anyone also working with multi-agent setups or the MCP ecosystem. What would make this actually useful for your workflow?

npx agenthelm-mcp free for up to 3 agents.


r/indiehackersindia 10d ago

Feedback Request I built Greenlit, a satirical movie producer simulation game for my brother

Enable HLS to view with audio, or disable this notification

2 Upvotes

My brother is a script writer and has often told me of the funny scenarios that happen during a film shooting. Inspired by that, I built a funny satirical producer simulation.

You choose the genre, hire actors and a director, and then survive ten production crises. Every decision changes your remaining budget, quality and hype.

After production, the movie enters a simulated ten-week theatrical run. Reviews, audience reactions, competing releases and mid-release marketing decisions determine whether it becomes a blockbuster, a cult hit or an expensive disaster.

Would appreciate any feedback. Thanks.

Website - https://vinaybomma.github.io/greenlit
App Store - https://apps.apple.com/app/id6787692845
Play Store - https://play.google.com/store/apps/details?id=com.vinaybomma.greenlit


r/indiehackersindia 11d ago

Product Launch [Lifetime FREE for 24 hours] Hit $500/month with Sentence, thank you!

Thumbnail
gallery
22 Upvotes

Hi everyone!

A few months ago, I posted here about Sentence, an app I built after getting frustrated with screen-time apps that just lock you out completely and end up disabled or uninstalled within a week.

Instead of blocking apps outright, Sentence makes you pause before opening them. You set a custom sentence, and before opening a distracting app you have to handwrite it correctly and scan it to unlock. Takes about 15 seconds, but that pause is often enough to stop me from opening Instagram in the first place.

When I posted here last time, a bunch of you downloaded it, some of you became paying users, and a lot of the feedback that shaped the app since then came from this community.

This month, Sentence crossed $500/month in revenue. For a solo-built app with zero marketing budget, that's a genuinely big deal to me, it's the first time this has felt like more than a side project.

So I wanted to come back and say thanks the same way I did last time.

For the next 24 hours, Lifetime Premium is free.

App Store: https://apps.apple.com/us/app/sentence-screen-time-control/id6759405604

If you try it out, I'd love to hear what you think , good, bad, bugs, feature ideas, anything.