create-voltx-app
v0.3.2
Published
Create a new VoltX AI-powered app with one command
Maintainers
Readme
The fastest way to start a new VoltX project. Interactive CLI with template selection, package manager detection, and git initialization.
Usage
npx create-voltx-app my-appOr with a specific template:
npx create-voltx-app my-app --template chatbot
npx create-voltx-app my-app --template rag-app
npx create-voltx-app my-app --template agent-appNon-Interactive Mode
npx create-voltx-app my-app --template chatbot --yesPackage Manager
npx create-voltx-app my-app --use-pnpm
npx create-voltx-app my-app --use-yarn
npx create-voltx-app my-app --use-bunTemplates
| Template | What you get |
|----------|-------------|
| blank | Minimal Hono server with file-based routing |
| chatbot | Streaming chat with @voltx/ai + @voltx/memory |
| rag-app | Document Q&A with @voltx/rag + vector search |
| agent-app | AI agent with tools via @voltx/agents |
What Gets Scaffolded
my-app/
├── src/
│ ├── routes/
│ │ ├── api/
│ │ │ └── chat.ts # Template-specific API route
│ │ └── index.ts # Health check endpoint
│ └── index.ts # App entry point
├── public/ # Static files
├── voltx.config.ts # VoltX configuration
├── .env.example # Environment variables template
├── .gitignore
├── tsconfig.json
├── package.json
└── README.mdPart of VoltX
This is the project scaffolder for the VoltX framework. See the monorepo for full documentation.
License
MIT — Made by the Promptly AI Team
