create-ai-mvp
v0.1.3
Published
CLI to scaffold a Next.js AI SaaS MVP in minutes
Readme
create-ai-mvp
Create a Next.js AI SaaS MVP in minutes.
Requirements
- Node.js >= 20
- Internet access for
npxand package installation
Quick Start
npx create-ai-mvp@latest my-app
# or
npm create ai-mvp@latest my-app
# or (pnpm)
pnpm create ai-mvp my-app
# or
pnpm dlx create-ai-mvp@latest my-appCLI Usage
npx create-ai-mvp@latest <project-name>Options
--pm <npm|pnpm|yarn|bun>--yes--with-shadcn--without-shadcn--agents <cursor,codex,claude,antigravity>--with-ai--without-ai--providers <openai,anthropic,google>
Examples
# Default prompts
npx create-ai-mvp@latest my-app
# Fully non-interactive defaults
npx create-ai-mvp@latest my-app --yes
# AI SDK with OpenAI + Anthropic
npx create-ai-mvp@latest my-app --yes --with-ai --providers openai,anthropic
# Skip shadcn and AI
npx create-ai-mvp@latest my-app --yes --without-shadcn --without-aiLocal Development
npm install
npm run build
node dist/cli.js <project-name>Included in v0.1
- Next.js project generation via
create-next-app@latestwith--yes - Optional
shadcn/uiinstall (button,input,card) - Optional AI agent files:
.cursorrulesCODEX.mdCLAUDE.md.antigravity.md
- Optional AI SDK integration:
lib/ai.ts.env.local.example
Out of Scope for v0.1
- Skills integration
- Supabase setup
- GitHub repo provisioning
