CodeFlow

WHAT?Chat with agents, get a working Next.js app. They generate and execute code inside a real E2B sandbox, and the result lands in a split-pane live preview you can keep iterating on.
WHY?Most AI builders spit out static mockups or hand you a zip. CodeFlow runs actual code in an actual sandbox, so what you see is what works — and you can keep talking to it until it's right.
HOW?Next.js + Tailwind on the front. tRPC fronts agent calls; Inngest runs them as background jobs so long generations don't block the UI. E2B sandboxes execute the code; OpenAI/Gemini are interchangeable models. Prisma + Postgres for persistence, Clerk for auth.
TaskForge

WHAT?Real-time collaborative Kanban — Trello meets Notion with multiplayer baked in. Customizable boards, drag-and-drop cards, threaded comments, Google OAuth, and a whole team moving tickets around in seconds.
WHY?Most Kanban tools feel slow or quietly fall apart once two people open the same board. I wanted presence as a first-class citizen — live cursors, live drags, comments landing in real time — without losing the structure of a real sprint tracker.
HOW?Next.js + Tailwind for the shell. Liveblocks runs the entire realtime layer — board state, cursors, edits — so I never wrote a line of websocket code. NextAuth + Google OAuth for access, MongoDB for persistence. Drag-and-drop wires straight into Liveblocks.
Traveloop

WHAT?Full-stack travel-planning workspace from the Odoo Hackathon. Multi-city itineraries, day-grouped activities, per-stop budgets with Recharts, packing checklists, markdown notes, and a community feed of shared trips — all in one app.
WHY?Planning a trip usually means a dozen disconnected tabs: itinerary, budget, restaurants, notes. We wanted one workspace where the trip, the money, the gear list, and the journal live together — fast enough to open every day.
HOW?Next.js App Router with server components by default, client islands only where needed. Server Actions share Zod schemas with React Hook Form so the same validation runs on both sides. Prisma + Postgres back a 12-table schema; NextAuth v5 gates the app at the layout level.