Hacker News Viewer

Launch HN: Modelence (YC S25) – App Builder with TypeScript / MongoDB Framework

by eduardpi on 2/3/2026, 4:03:21 PM

Hi all, Aram and Eduard here - co-founders of Modelence (<a href="https:&#x2F;&#x2F;modelence.com">https:&#x2F;&#x2F;modelence.com</a>). After spending years on scaling our previous startup’s platform, we built an open-source full-stack TypeScript + MongoDB framework to stop solving the same auth &#x2F; database &#x2F; API &#x2F; cron job implementations every time we created an app, and we didn’t like the idea of using multiple managed platforms for each of these to run our apps either.<p>(Here’s our prior Show HN post for reference: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=44902227">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=44902227</a>)<p>At the same time, we were excited by the whole AI app builder boom and realized that the real challenge there is the platform rather than the tool itself. Now we’re making Modelence the first full-stack framework that’s built for coding agents and humans alike:<p>- TypeScript is already great for AI coding because it provides guardrails and catches many errors at build time, so agents can auto-correct<p>- MongoDB eliminates the schema management problem for agents, which is where they fail the most often otherwise (+ works great with TS&#x2F;Node.js)<p>- Built-in auth, database, cron jobs and else that just works together out of the box means agents only focus on your product logic and don’t fail at trying to set these things up (+ less tokens spent on boilerplate).<p>You can now try the Modelence app builder (based on Claude Agent SDK) by just typing a prompt on our landing page ( <a href="https:&#x2F;&#x2F;modelence.com">https:&#x2F;&#x2F;modelence.com</a> ) - watch a demo video here: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;BPsYvj_nGuE" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;BPsYvj_nGuE</a><p>Then you can check it out locally and continue working in your own IDE, while still using Modelence Cloud as your backend, with a dev cloud environment, and later deploy and run on Modelence Cloud with built-in observability around every operation running in your app.<p>We’re also going to add a built-in DevOps agent that lives in the same cloud, knows the framework end-to-end, and will use all this observability data to act on errors, alerts, and incidents - closing the loop, because running in production is much harder than just building.<p>We launched the app builder as a quick start for developers, to demonstrate the framework and Modelence Cloud without having to manually read docs and follow the steps to set up a new app. Our main focus is still the platform itself, since we believe the real challenge in AI coding is the framework and the platform rather than the builder tool itself.

Comments

by: koakuma-chan

You eliminate the schema management problem by not having a schema at all? Also, what do you mean schema management problem? I have never had an issue with that when using LLMs.

2/3/2026, 5:34:49 PM


by: Soerensen

The TypeScript + MongoDB combination for AI coding is a smart architectural choice. I&#x27;ve found that schema-less databases reduce the class of errors agents struggle with most - the migration&#x2F;schema drift issues that require understanding of state over time.<p>Question: How are you handling the built-in auth when users want to extend it? For example, adding OAuth providers that aren&#x27;t pre-configured, or custom claims&#x2F;roles logic. Is this something the framework supports as extension points, or would users need to fork&#x2F;modify core auth code?<p>The Claude Agent SDK integration is interesting - have you found specific prompting patterns that work better for TypeScript generation vs other languages? Curious if the type system actually helps agents self-correct as expected.

2/3/2026, 4:39:35 PM