AI-powered web application generator. Describe what you want, and Mini-Muse uses Claude as an AI agent to generate a complete React + Tailwind project.
- Natural language to web app generation
- Real-time progress streaming via SSE
- AI agent loop with tool use (analyze, plan, generate, validate)
- Live preview and file download
- Backend: Egg.js 3 + TypeScript
- Frontend: React 18 + Vite + Tailwind CSS
- AI: Anthropic Claude API (tool use)
- Node.js >= 18
- npm or other package manager
# Backend
npm install
# Frontend
cd frontend && npm install && cd ..cp .env.example .env
# Edit .env with your Anthropic API keycd frontend && npm run build && cd ..# Development
npm run dev
# Production
npm run build && npm startThe app will be available at http://127.0.0.1:7001
See docs/design.md for detailed architecture and design documentation.