Documentation

CLI Commands

Complete reference for Frame-Master command-line interface tools.

📦 Installation

The CLI is included with Frame-Master.

terminal
# Install Frame-Master (includes CLI)
bun add frame-master
# Verify installation
bunx frame-master --version

📋 Commands Overview

All available CLI commands at a glance.

dev

Development

Start development server with hot reload

frame-master dev

start

Production

Start production server

frame-master start

build

Build

Build project for production

frame-master build

init

Setup

Initialize in existing project

frame-master init

create

Setup

Create new project

frame-master create [name]

plugin

Plugins

Manage plugins

frame-master plugin <cmd>

test

Testing

Testing server with GUI

frame-master test start

extended-cli

Plugins

Plugin custom commands

frame-master extended-cli <cmd>

⚙️ Global Options

Options available for all commands.

-v, --verboseEnable detailed logging
-V, --versionShow version number
-h, --helpShow help for command
terminal
# 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

terminal
frame-master create my-app
cd my-app
frame-master dev

Existing Project

terminal
cd existing-project
bun add frame-master
frame-master init
frame-master dev

Production Deployment

terminal
frame-master build
NODE_ENV=production frame-master start

Create Plugin

terminal
frame-master plugin create my-plugin
cd my-plugin
# Edit index.ts...

🎯Command Reference