BUILDING & APPS
How to make money building real apps with Claude and Emergent ⚡
Master this high-ROI AI workflow: The people making money with AI apps don't chase the next big thing, they build one tiny tool that fixes one annoying pro
Master this high-ROI AI workflow: The people making money with AI apps don't chase the next big thing, they build one tiny tool that fixes one annoying problem people already pay for. Claude scopes and specs it, Emergent builds it into a live app you can charge for, no code. Below: the exact prompts, the real costs, and how to take payments.
The real unlock of AI agents is not full autonomy, but human-in-the-loop systems design. Structure your agent inputs with explicit constraints, negative prompts, and automated test checkpoints. When building tools, keep token consumption lean by caching system prompts and isolating tasks into specialized sub-agents.
The one that got me thinking 💭
Sebastian Volkis (x.com/sebastianvolkis) publicly posted around $21k in one month. Only about $5,500 of that was a SaaS tool he built with AI in four days (TrendFeed, which finds trending news and drafts short-form scripts); the rest was his personal brand and a course, and he says the month was brutal. So no, this is not push-a-button money. But the mechanic underneath is real and repeatable: one person, no engineering team, shipped a small paid tool fast and people paid for it. The lesson is not "copy his app", it's copy his approach: build small, launch in days not months, and only scale the ones people actually pay for.
The strategy: pick small, specific, and already-paid-for 🎯
This is the part that decides whether you make money, before you touch either tool. Three rules:
- Small. One job, one screen or two, one type of user. Not a platform, not "Uber for X". A tool you could describe in one sentence.
- Specific. A narrow audience beats a broad one. "Invoice reminders for freelance photographers" outsells "an invoicing app". Narrow means you know exactly who to sell to and your tool fits them perfectly.
- Already paid for. The safest ideas replace something people already spend money on, or save them time they currently pay for. If people are already paying (for a clunky tool, a VA, a spreadsheet consultant, a $200 course workaround), the demand is proven. You are not creating a new habit, you are doing an existing job better or cheaper.
Real tool shapes with the kind of prices solo builders actually charge:
Single-feature tools like Plausible (privacy analytics) and Healthchecks.io reached $5k-30k a month with a solo founder behind them. You are not aiming there on day one. You are aiming at your first paying person.
How the two tools split the work 🧩
- Claude (claude.ai or the desktop app) is your spec engineer. It interviews you, helps you pick a small monetizable tool, then writes a build-ready spec: the written blueprint of exactly what to build.
- Emergent is the builder, and it builds with Fable 5 (Anthropic's newest Claude-family model) under the hood. A team of AI agents (architect, designer, developer, tester) turns that spec into a working full-stack web app (React front end, FastAPI back end, a real database, with email-and-password login built in) and deploys it to a live URL. "Live app" means a real website with its own link that people open in a browser, nothing to install.
Why this split works: Emergent's architect agent reads your first prompt and turns it into data models, screens, and flows. A spec that already arrives organized that way builds far better on the first pass, and that is exactly what the Claude prompt below produces.
Step 1: scope and pick the idea with Claude 🧠
Open a new Claude chat and paste the prompt below. It does two jobs in order: first it asks you 3-5 questions to land on a small, specific, monetizable tool (not "the next big app"), then it writes the full build spec you paste into Emergent. Answer honestly from what you actually know and who you actually have access to, then copy the spec it returns.
Step 2: build it in Emergent 🛠
What to expect: paste the spec, and a working preview usually appears in a few minutes, with a full first build of something this size done in roughly 15-30. When you deploy, you get a live URL with SSL, and you can connect your own domain later.
Try it here: Emergent
- Paste the whole spec first. Start a new build and drop in the entire spec from Claude as your very first message. Don't summarize it, the detail is the point. Answer any clarifying questions in one message.
- Preview before you deploy. Click through everything first. A deployed app holds around 50 credits per month, so ship only when v1 actually works.
- Connect GitHub on day one. Your code syncs there, which is your safety net and your proof of ownership.
- One change per follow-up message. Bundle closely related tweaks ("settings page with profile editing and a plan field") into one prompt to save credits.
- Be surgical, not vague. "The signup button doesn't redirect after success, send the user to the main tool screen" beats "signup is broken". Vague prompts are the number one credit burner.
- Roll back, don't argue. If a bug survives two fix attempts, revert to the last good checkpoint (rollbacks are free, fix-loops cost credits). Fork before anything risky so your working version stays safe.
Step 3: iterate, one change at a time 🔁
First builds come out roughly 80% right, and that is normal, not failure. Plan on 3-5 rounds. The order matters: structure first (fields, screens), then behavior (the core job, signup), then paint (style), then data, because a style pass before structural changes gets clobbered. Everything in [brackets] is a placeholder with a worked example, so swap in your own values.
1. Fix the core job first
2. Make signup and empty states friendly
3. Landing page that sells it
4. Style pass (swap in your own colors)
5. Bug fix template (reuse for anything broken)
Step 4: test it like a paying customer ✅
Run all seven before you show it to a single real person.
- Signup: create a fresh account from an incognito window with a real email and password. You should land somewhere useful, not a blank page.
- The core job: do the one thing the tool exists to do, end to end. This is the whole product, so it has to feel obvious.
- Persistence: log out, log back in, and check your work is still there. Refresh the page too.
- Privacy: create a second account in another browser. Account two must never see account one's data. Non-negotiable if people are trusting you with their info.
- Empty state: a brand-new account should see an encouraging "here's how to start", never a broken-looking blank screen.
- Validation: try a bad email, a short password, and a duplicate signup. Each should show a clear, human message.
- The stranger test: send the live link to one friend who fits the audience and watch them use it without your help. Where they get stuck is your next iteration prompt.
Step 5: price it and take signups 💵
Get people using it free first, then charge. Here is the honest order:
- Ship v1 with free signup, no payments. This is on purpose. You want 5-10 real people using it and telling you what is missing before you build a checkout. The prompt above already sets it up this way.
- Pick a simple price. For a v1 tool, $9 to $49/mo is the sweet spot. One plan, one price. Do not build three tiers on day one. If you are unsure, price it a little higher than feels comfortable; too cheap signals "toy".
- Charge once you have a few fans. When a handful of people would be annoyed if the tool disappeared, add payments. That is your signal there is something worth charging for.
How payments actually work: the standard tool for recurring payments is Stripe. It charges per transaction (in Australia, roughly 1.75% + A$0.30 on domestic cards, more for international), with no monthly fee to start, so you only pay when you get paid. The simplest setup is Stripe Checkout: a hosted payment page you send customers to, so you never touch card details. Good news for achievability: Emergent has a built-in Stripe integration and lets you test with Stripe's test keys before going live, so this is a real prompt, not a "figure out code" project. When you have a few fans, wire it in:
The honest part (read this before you quit your job) 🫶
- Building it is the easy 20%. Marketing it is the other 80%. A live app with no users makes $0, which is exactly why Step 1 anchors on a specific audience you already reach.
- Payments are a separate afternoon. Stripe means identity verification and a bank account, not five minutes.
- It is not free to run. Owning one live app is about $20/mo before Stripe's cut, tiny next to what the tool can earn. Here is the full math:
| Item | Cost | Notes |
|---|---|---|
| Claude | $0-20 | Free plan runs the scoping chat; Pro (~$20/mo) if it's part of your day |
| Emergent Standard | ~$20 | 100 credits; one deployed app holds ~50/mo; top-ups ~$10 per 50 |
| Stripe | $0 + per sale | No monthly fee; ~1.75% + A$0.30 per domestic card charge |
| Domain (optional) | ~$1-2 | About $10-20/yr; connect it to your app for a real brand |
| Rough total to run | ~$20-42/mo | Plus Stripe's cut only when you get paid |
Quick answers 💬
Do I need to know how to code? No. Claude writes the spec in plain language, Emergent writes the actual code and hosts it. Your job is judgment: pick the right small idea, describe it clearly, test it, and sell it.
What should I build first? The smallest tool for a group of people you already understand or can reach. If you photograph weddings, build something for photographers. Access to the audience beats a clever idea.
How do I take money? Stripe. It is the standard, there is no monthly fee to start, and Stripe Checkout means you never touch card details. Add it after you have a few free users who love the tool.
What if the first build comes out wrong? Normal. Expect roughly 80% right, then 3-5 iteration prompts. If it keeps drifting, fork or start a fresh build with a tighter spec instead of patching forever.
How many Emergent credits will this take? Ballpark 60-150 credits for a first build like this. Small tweaks cost 1-2, a new feature 5-10, and one deployed app holds around 50/mo. Burn varies with how much fixing you do, so specific prompts and free rollbacks are your best economy. Top-ups are about $10 per 50 credits if you run out.
Will I actually make money? Building it is the easy part. Whether it earns depends on picking something people already pay for and getting it in front of them. The app is the tool, not the business. The business is you knowing a specific group of people and solving one real problem for them.
The move 💡
Links used in the reel 🔗
- Sebastian Volkis (the ~$21k/month post): x.com/sebastianvolkis
- Try Emergent: app.emergent.sh
- Emergent pricing and credits: https://emergent.sh/pricing
- Stripe pricing: https://stripe.com/pricing
- Claude: https://claude.ai