Package Exports
- @voltx/cli
Readme
@voltx/cli
CLI tools for the VoltX framework
Command-line tools for the VoltX framework. Scaffold new projects, run the dev server, and build for production.
Installation
npm install -g @voltx/cliOr use directly with npx:
npx @voltx/cli create my-appCommands
Create a New Project
voltx create my-app
voltx create my-app --template chatbot
voltx create my-app --template rag-app
voltx create my-app --template agent-appAvailable Templates
| Template | Description |
|---|---|
blank |
Minimal server with file-based routing |
chatbot |
Streaming chat with AI + conversation memory |
rag-app |
Document Q&A with embeddings + vector search |
agent-app |
Autonomous agent with tools + memory |
Programmatic Usage
import { createProject } from "@voltx/cli";
await createProject({
name: "my-app",
template: "chatbot",
});Part of VoltX
This package is part of the VoltX framework. See the monorepo for full documentation.
License
MIT — Made by the Promptly AI Team