Skip to main content
The Neo CLI provides powerful commands to streamline your Neo project development. Each command supports both interactive and flag-based usage for maximum flexibility.

Commands Overview

neo create

Create a new Flutter project using Neo.

Usage

Options

string
Name of the project to create.
string
Organization identifier in reverse domain notation (e.g., com.example).
string
Comma-separated list of platforms to enable (no spaces, e.g., ios,web,macos).
string
Template to use for project creation.

What Gets Created

The create command performs these steps automatically:
  1. Flutter Project Creation - Runs flutter create with optimized settings
  2. Neo Installation - Adds and configures the Neo package
  3. Template Setup - Applies your chosen template structure
  4. Dependencies - Installs all required packages
  5. Code Generation - Runs build runners for generated code
To explore available templates and choose the right one for your project, visit the Templates page.

neo config

Configure default values for the Neo CLI. These values will be used as defaults when creating new projects, but can be overridden per project.
Configuration only needs to be done once. You can re-run neo config anytime to update your settings.

Usage

Options

flag
Display all current configuration values.
string
Organization identifier in reverse domain notation (e.g., com.example).

neo help

Access comprehensive help information for any command.

Usage

Usage Patterns

Interactive vs Flag-Based

Interactive Mode (recommended for beginners):
  • Guides you through each step
  • Validates input in real-time
  • Uses your configured defaults
  • Perfect for learning and occasional use
Flag-Based Mode (recommended for advanced users):
  • Skip prompts for faster execution
  • Override defaults when needed
  • Ideal for automation and scripts
  • Consistent with CI/CD workflows

Automation Examples

Last modified on November 14, 2025