JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17
  • Score
    100M100P100Q77558F
  • License MIT

VoltX CLI — dev server, build, start, generate, and scaffolding

Package Exports

  • @voltx/cli

Readme

@voltx/cli
CLI tools for the VoltX framework

npm downloads license


Command-line tools for the VoltX framework. Scaffold new projects, run the dev server, and build for production.

Installation

npm install -g @voltx/cli

Or use directly with npx:

npx @voltx/cli create my-app

Commands

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-app

Available 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