<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Sayo Adegoroye</title>
    <description>The latest articles on Forem by Sayo Adegoroye (@shayomiiiii).</description>
    <link>https://forem.com/shayomiiiii</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3795592%2F5417f4e5-d57a-4e6a-86bd-545f145801d1.jpg</url>
      <title>Forem: Sayo Adegoroye</title>
      <link>https://forem.com/shayomiiiii</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/shayomiiiii"/>
    <language>en</language>
    <item>
      <title>I Built a CLI That Turns One Sentence Into a Full Project 🚀</title>
      <dc:creator>Sayo Adegoroye</dc:creator>
      <pubDate>Thu, 26 Feb 2026 23:17:38 +0000</pubDate>
      <link>https://forem.com/shayomiiiii/i-built-a-cli-that-turns-one-sentence-into-a-full-project-19af</link>
      <guid>https://forem.com/shayomiiiii/i-built-a-cli-that-turns-one-sentence-into-a-full-project-19af</guid>
      <description>&lt;p&gt;just-start-dude create "a SaaS app for freelancers to track invoices"&lt;br&gt;
You get this:&lt;/p&gt;

&lt;p&gt;✅ Full Next.js project with Tailwind, Prisma, and Auth&lt;br&gt;
✅ All components, routes, and DB schema written&lt;br&gt;
✅ .env.example with every variable documented&lt;br&gt;
✅ Professional README&lt;br&gt;
✅ Dependencies installed&lt;br&gt;
✅ Git repo initialized&lt;br&gt;
✅ Opens in VS Code&lt;/p&gt;

&lt;p&gt;In 30 seconds. No setup. No boilerplate. Just start.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why I built this&lt;/strong&gt;&lt;br&gt;
Every time I start a new project I waste the first 2 hours on the same things — setting up Tailwind, wiring up auth, writing the Prisma schema, creating the folder structure. It's not hard, it's just annoying.&lt;br&gt;
So I built just-start-dude. You describe what you want to build in plain English, and Claude AI figures out the right stack, generates every file, and hands you a project that's ready to run.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How it works&lt;/strong&gt;&lt;br&gt;
When you run the command, three things happen:&lt;br&gt;
Step 1 — AI analyzes your description&lt;br&gt;
Your description gets sent to Claude, which returns a structured project plan: the best template for your use case, the stack, the features, the DB schema, the API routes, and a list of every file to generate.&lt;br&gt;
Step 2 — You confirm the plan&lt;br&gt;
Before anything gets written, you see exactly what's about to be created:&lt;br&gt;
  Name:       invoice-tracker&lt;br&gt;
  Template:   nextjs&lt;br&gt;
  Stack:      Next.js 14, Tailwind CSS, Prisma, NextAuth&lt;br&gt;
  Features:   auth, dashboard, invoice CRUD, client management&lt;/p&gt;

&lt;p&gt;Files to be created:&lt;br&gt;
  ├─ app/layout.tsx&lt;br&gt;
  ├─ app/page.tsx&lt;br&gt;
  ├─ app/dashboard/page.tsx&lt;br&gt;
  ├─ app/invoices/page.tsx&lt;br&gt;
  ├─ prisma/schema.prisma&lt;br&gt;
  ├─ components/InvoiceCard.tsx&lt;br&gt;
  ├─ ...and 12 more files&lt;br&gt;
Step 3 — AI writes every file&lt;br&gt;
Each file gets generated with full context — the DB schema, the routes, the other components. Not placeholder code. Actual working logic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Templates supported&lt;/strong&gt;&lt;br&gt;
TemplateStacknextjsNext.js 14 + Tailwind + Prisma + NextAuthfastapiFastAPI + SQLAlchemy + Alembic + DockerreactReact + Vite + Tailwind + React QueryexpressExpress.js + TypeScript + Prisma + JWTfullstackNext.js + FastAPI + Docker ComposecliNode.js + Commander + Chalkchrome-extChrome Extension + React + Vite&lt;br&gt;
The AI picks the right one automatically based on your description — or you can force one with --template.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Try it yourself&lt;/strong&gt;&lt;br&gt;
bash# Install globally&lt;br&gt;
npm install -g just-start-dude&lt;/p&gt;

&lt;h1&gt;
  
  
  Or just run it directly
&lt;/h1&gt;

&lt;p&gt;npx just-start-dude create "your project idea here"&lt;br&gt;
You'll need an Anthropic API key — takes 2 minutes to get one, and a few cents per project generated.&lt;br&gt;
First time you run it:&lt;br&gt;
bashjust-start-dude config&lt;/p&gt;

&lt;h1&gt;
  
  
  enter your API key once, never asked again
&lt;/h1&gt;

&lt;p&gt;Some prompts to try&lt;br&gt;
bashjust-start-dude create "a Twitter clone with posts, likes, and follows"&lt;br&gt;
just-start-dude create "a Python API that classifies images with ML"&lt;br&gt;
just-start-dude create "a Notion-like notes app with markdown support"&lt;br&gt;
just-start-dude create "a Chrome extension that summarizes YouTube videos"&lt;br&gt;
just-start-dude create "a real-time chat app with rooms and file sharing"&lt;/p&gt;

&lt;p&gt;What's next&lt;br&gt;
A few things I want to add:&lt;/p&gt;

&lt;p&gt;just-start-dude add auth — add features to an existing project&lt;br&gt;
More templates (Flutter, Go, Django, Rails)&lt;br&gt;
VS Code extension&lt;br&gt;
GitHub Actions for auto-deploying generated projects&lt;/p&gt;

&lt;p&gt;Links&lt;/p&gt;

&lt;p&gt;📦 npm: npmjs.com/package/just-start-dude&lt;br&gt;
⭐ GitHub: github.com/shayomi/just-start-dude&lt;/p&gt;

&lt;p&gt;If this saves you even one hour of boilerplate setup, drop a ⭐ on GitHub — it helps more people find it.&lt;br&gt;
And if you build something with it, drop it in the comments. I'd love to see what people make.&lt;/p&gt;

&lt;p&gt;Built with Node.js and the Anthropic Claude API.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>ai</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
