AI Founder OS
Starter Projects

Pick a first project

The best way to learn the AI Founder OS loop is to run it on something real. Pick a project below that matches the kind of software you want to build. Each one is small enough to finish in 2 to 4 focused sessions. Start with the first task today, commit your work, and keep going from there.

Operator loop: 6-step cycle from define to ship1Define goal2Draft spec3Execute4Handoff5Verify6Ship

The workflow for each project session

Web app

Personal landing page

Web app

A single-page site with your name, a short bio, and links to your work.

First task

Create the project repo, scaffold a Next.js app, and deploy it to Vercel with your name visible on the home page.

Proof

npm run build && git show --stat HEAD

Habit tracker

Web app

A page where you check off daily habits and see a weekly streak count.

First task

Render a list of three hardcoded habits with checkboxes that toggle state in local storage.

Proof

npm run build && git show --stat HEAD

Mobile app

Workout log

Mobile app

A mobile screen that lets you log exercises, sets, and reps for each session.

First task

Create a new Expo project and display a single screen with a text input for exercise name and a submit button that logs to the console.

Proof

npx expo export && git show --stat HEAD

Daily journal

Mobile app

A mobile app where you write one journal entry per day and browse past entries.

First task

Create a new React Native project with a text area and a save button that stores the entry in async storage.

Proof

npx expo export && git show --stat HEAD

Backend API

Link shortener API

Backend API

An API that accepts a URL, stores it with a short code, and redirects when the code is visited.

First task

Set up a Node.js project with a single POST endpoint that accepts a URL in the body and returns a hardcoded short code.

Proof

npm test && git show --stat HEAD

Weather lookup API

Backend API

An API that takes a city name and returns current temperature by calling a public weather service.

First task

Create a GET endpoint that accepts a city query parameter and returns a stubbed JSON response with a hardcoded temperature.

Proof

npm test && git show --stat HEAD

Ready to start?

Pick one project, run the first task, and commit your work. Then come back for the next session.