CLI Commands
Complete reference for Frame-Master command-line interface tools.
📦 Installation
The CLI ships with Frame-Master.
# Install Frame-Master (includes CLI)
# Verify installation
bunx frame-master --version📋 Commands Overview
All available CLI commands at a glance.
frame-master dev— Start development server with hot reloadframe-master start— Start production serverframe-master build— Build project for productionframe-master init— Initialize in existing projectframe-master create [name]— Create new projectframe-master plugin <cmd>— Manage pluginsframe-master test start— Testing server with GUIframe-master extended-cli <cmd>— Plugin custom commands
⚙️ Global Options
Options available for all commands.
-v, --verbose— Enable detailed logging-V, --version— Show version number-h, --help— Show help for command
# Enable verbose mode
frame-master --verbose dev
# Show help
frame-master --help
frame-master dev --help🚀 Common Workflows
Typical command sequences for different tasks.
New Project
frame-master create my-app
cd my-app
frame-master devExisting Project
cd existing-project
bun add frame-master
frame-master init
frame-master devProduction Deployment
frame-master build
NODE_ENV=production frame-master startCreate Plugin
frame-master plugin create my-plugin
cd my-plugin
# Edit index.ts...