launchfast-ai
v1.0.7
Published
AI-powered terminal toolkit for developers and founders — ship faster with AI
Maintainers
Readme
⚡ LaunchFast AI
AI-powered terminal toolkit for developers and founders Developed by Raza
██╗ █████╗ ██╗ ██╗███╗ ██╗ ██████╗██╗ ██╗███████╗ █████╗ ███████╗████████╗ █████╗ ██╗
██║ ██╔══██╗██║ ██║████╗ ██║██╔════╝██║ ██║██╔════╝██╔══██╗██╔════╝╚══██╔══╝ ██╔══██╗██║
██║ ███████║██║ ██║██╔██╗ ██║██║ ███████║█████╗ ███████║███████╗ ██║ ███████║██║
██║ ██╔══██║██║ ██║██║╚██╗██║██║ ██╔══██║██╔══╝ ██╔══██║╚════██║ ██║ ██╔══██║██║
███████╗██║ ██║╚██████╔╝██║ ╚████║╚██████╗██║ ██║██║ ██║ ██║███████║ ██║ ██║ ██║██║
╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝A premium, cyberpunk-inspired AI CLI for founders who ship fast. Generate startup ideas, write landing copy, get tech stack recommendations, scaffold real projects, and brainstorm with an AI co-founder all from your terminal.
✨ Features
| Command | Description |
|---|---|
| launchfast idea | Generate startup ideas for any niche |
| launchfast ui | Generate premium UI/UX design prompts |
| launchfast copy | Write conversion-focused landing page copy |
| launchfast brainstorm | Chat with an AI co-founder |
| launchfast scaffold | Scaffold real, runnable project boilerplates |
| launchfast stack | Get tech stack recommendations |
| launchfast roast | Get your startup idea brutally roasted |
| launchfast history | Browse and view saved generations |
| launchfast config | Configure API keys and settings |
| launchfast pitch | Generate investor-ready pitch deck outlines |
| launchfast tweet | Create viral launch tweets and threads |
| launchfast name | Generate brandable startup names + domain ideas |
| launchfast validate | Stress-test your startup idea with AI market analysis |
| launchfast readme | Generate beautiful production-ready README.md files |
🚀 Installation
Option A npm global install (recommended)
npm install -g launchfast-aiThen run from anywhere:
launchfast ideaOption B Clone and link
git clone https://github.com/al-feel/launchfast-ai.git
cd launchfast-ai
npm install
npm linkOption C Run directly (no install)
npx launchfast-ai idea⚙️ Setup
1. Get a Groq API Key (free)
- Go to console.groq.com
- Sign up / log in
- Create an API key it starts with
gsk_
2. Configure LaunchFast
Option A Interactive setup (easiest):
launchfast config
# Select: Set Groq API Key → paste your keyOption B .env file:
cp .env.example .env
# Edit .env:
GROQ_API_KEY=gsk_your_key_hereOption C Environment variable:
export GROQ_API_KEY=gsk_your_key_here
launchfast idea3. Test the connection
launchfast config
# Select: Test API Connection📖 Command Reference
launchfast idea
Generate AI startup ideas for any niche.
launchfast idea
launchfast idea --niche "B2B SaaS for restaurants"
launchfast idea --niche fintech --count 5launchfast scaffold
Scaffold a real, production-ready project with actual code not empty files.
launchfast scaffold
launchfast scaffold --type nextjs
launchfast scaffold --type saas
launchfast scaffold --type mobile
launchfast scaffold --type api
launchfast scaffold --type cli
launchfast scaffold --type landingAfter scaffolding:
cd my-project
npm install
npm run dev # App actually runs!Available templates:
| Template | Stack | Description |
|---|---|---|
| nextjs | Next.js 14, TypeScript, Tailwind, Prisma | Full-stack SaaS starter with auth & payments |
| saas | Express, TypeScript, Prisma, Stripe | Backend REST API with auth, billing & caching |
| api | Express, TypeScript, Zod, Pino | Minimal REST API with validation & logging |
| mobile | Expo, React Native, Redux, Expo Router | Cross-platform mobile app with navigation |
| cli | Node.js, Commander, TypeScript | Beautiful terminal CLI tool |
| landing | Astro, Tailwind | Static landing page optimized for conversion |
launchfast ui
Generate UI/UX design prompts for any screen or app type.
launchfast ui
launchfast ui --type "SaaS dashboard"
launchfast ui --type "mobile onboarding flow"launchfast copy
Generate conversion-focused landing page copy.
launchfast copy
launchfast copy --product "AI writing tool for marketers"launchfast brainstorm
Interactive multi-turn chat with an AI co-founder. Type save to save, exit to quit.
launchfast brainstormlaunchfast stack
Get opinionated tech stack recommendations.
launchfast stack
launchfast stack --project "real-time multiplayer game"launchfast roast
Get your startup idea brutally, hilariously roasted.
launchfast roast
launchfast roast --idea "Airbnb for parking spaces"launchfast pitch
Generate investor-ready pitch deck outlines.
launchfast pitch
launchfast pitch --idea "AI HR tool for startups"launchfast tweet
Generate viral launch tweets and threads.
launchfast tweet
launchfast tweet --product "LaunchFast AI"launchfast name
Generate brandable startup names and domain ideas.
launchfast name
launchfast name --niche "productivity for developers"launchfast validate
Stress-test your startup idea with AI market analysis.
launchfast validate
launchfast validate --idea "Notion for restaurants"launchfast readme
Auto-generate a production-ready README from your project description.
launchfast readmelaunchfast history
Browse and view all saved AI generations.
launchfast history
launchfast history --limit 20
launchfast history --clearlaunchfast config
Configure API keys, models, and settings.
launchfast config🤖 Supported AI Models
All models run on Groq the fastest LLM inference available.
| Model | Best For |
|---|---|
| llama-3.3-70b-versatile | Default best quality |
| llama-3.1-8b-instant | Fast & cheap |
| qwen/qwen3-32b | Long context tasks |
| openai/gpt-oss-120b | Most powerful |
Switch models:
launchfast config
# Select: Change AI ModelOr via env var:
GROQ_MODEL=mixtral-8x7b-32768 launchfast idea📂 File Storage
LaunchFast saves generations locally:
~/.launchfast/
├── history.json # All saved generations
├── config.json # Your settings
├── logs/ # Daily log files
└── cache/ # Cached responses🤝 Contributing
- Fork the repo
- Create a feature branch:
git checkout -b feature/my-feature - Commit:
git commit -m 'feat: add my feature' - Push:
git push origin feature/my-feature - Open a Pull Request
📄 License
MIT see LICENSE
