Magic CLI
The Magic CLI is an fluttersdk_artisan plugin that ships as part of the magic package, providing magic:install, key:generate, and 14 make:* scaffold commands through magic's bundled artisan executable (dart run magic:artisan).
Introduction
Magic CLI is the Artisan-like command-line tool for Magic. If you've used Laravel's Artisan, you'll feel right at home. Scaffold controllers, models, views, migrations, and more with a single command.
Installation
The Magic CLI ships as an fluttersdk_artisan plugin bundled with the magic package, which exposes its own artisan executable. There is no separate install step: run commands via that executable. (If your app sets up its own aggregated artisan dispatcher, the same commands are available there too.)
dart run magic:artisan [arguments] [options]
Magic ships the artisan executable in its pubspec.yaml, so dart run magic:artisan works from any project that depends on magic, with no global activation or package-name substitution.
Project Setup
install
Initializes Magic in an existing Flutter project with the recommended directory structure and configuration.
dart run magic:artisan magic:install
This command:
- Creates the directory structure (
lib/app/,lib/config/,lib/routes/, etc.) - Generates configuration files with sensible defaults (app, routing, view are always created; others are optional)
- Creates starter service providers (
AppServiceProvider,RouteServiceProvider) - Writes
lib/main.dartwith Magic bootstrap - Creates
.envand.env.examplefiles - Registers
.envas a Flutter asset inpubspec.yaml - Downloads
sqlite3.wasmfor web platform support (when database is enabled)
Excluding Features
You can exclude features you don't need with --without-* flags:
dart run magic:artisan magic:install --without-database
dart run magic:artisan magic:install --without-auth --without-events
| Flag | What it skips |
|---|---|
--without-auth |
Auth config, VaultServiceProvider, AuthServiceProvider |
--without-database |
Database directories, config/database.dart, DatabaseServiceProvider, web SQLite setup |
--without-network |
config/network.dart, NetworkServiceProvider |
--without-cache |
config/cache.dart, CacheServiceProvider |
--without-events |
lib/app/events/ and lib/app/listeners/ directories |
--without-localization |
assets/lang/ directory, LocalizationServiceProvider |
--without-logging |
config/logging.dart |
--without-broadcasting |
config/broadcasting.dart, BroadcastServiceProvider |
Installing the debug tooling in one step
The optional debug trio (magic_devtools + fluttersdk_dusk + fluttersdk_telescope) gives you the LLM-agent E2E driver (Dusk) and the runtime inspector (Telescope). Pass --with-devtools to wire all three in a single command instead of the manual multi-step bootstrap:
dart run magic:artisan magic:install --with-devtools
When set, after the core install completes the command:
- Adds
magic_devtools,fluttersdk_dusk, andfluttersdk_telescopetodependencies(notdev_dependencies:lib/main.dartimports them, and thekDebugModegate tree-shakes the subsystem out of release builds). - Wires the runtime setup into
lib/main.dartunderkDebugMode:DuskPlugin.install()andTelescopePlugin.install()(plus itsExceptionWatcher+DumpWatcher) beforeMagic.init(), thenMagicDuskIntegration.install()andMagicTelescopeIntegration.install()after it.
The wiring is idempotent: re-running magic:install --with-devtools never duplicates the blocks or the dependency entries. Run flutter pub get afterwards, then dart run magic:artisan mcp:install to surface the Dusk/Telescope MCP tools.
key:generate
Generates a random 32-byte encryption key for your application:
dart run magic:artisan key:generate
Updates your .env file with:
APP_KEY=base64:randomGeneratedKey...
Options
| Option | Description |
|---|---|
--show |
Display the key in the terminal instead of writing to .env |
Make Commands
All make:* commands support the --force flag to overwrite existing files. Nested paths are supported via slash syntax (e.g., Admin/Dashboard), which creates subdirectories automatically.
Commands that auto-append a suffix (Controller, View, Factory, Seeder, Policy, ServiceProvider, Request) handle duplicates gracefully — make:controller UserController will not produce UserControllerController.
make:model
Creates an Eloquent-style model with optional related files:
dart run magic:artisan make:model User
dart run magic:artisan make:model Post --migration --controller --factory
dart run magic:artisan make:model Comment -mcf
dart run magic:artisan make:model Product -mcfsp
dart run magic:artisan make:model Order --all
Options
| Option | Shortcut | Description |
|---|---|---|
--migration |
-m |
Create a database migration |
--controller |
-c |
Create a controller |
--factory |
-f |
Create a model factory |
--seeder |
-s |
Create a database seeder |
--policy |
-p |
Create an authorization policy |
--all |
-a |
Create migration, seeder, factory, policy, and resource controller |
[!NOTE] The
-mcfspshorthand combines all five flags: migration, controller, factory, seeder, and policy. The--allflag does the same but also makes the controller a resource controller with CRUD methods.
Output: lib/app/models/
make:controller
Creates a controller class:
dart run magic:artisan make:controller User
dart run magic:artisan make:controller UserController
dart run magic:artisan make:controller Admin/Dashboard
dart run magic:artisan make:controller Post --resource
dart run magic:artisan make:controller Post --resource --model=Post
Options
| Option | Shortcut | Description |
|---|---|---|
--resource |
-r |
Generate a resource controller with CRUD methods |
--model |
-m |
The model the controller applies to |
Output: lib/app/controllers/
make:view
Creates a view class:
dart run magic:artisan make:view Login
dart run magic:artisan make:view LoginView
dart run magic:artisan make:view Auth/Register
dart run magic:artisan make:view Dashboard --stateful
Options
| Option | Description |
|---|---|
--stateful |
Generate a stateful view with lifecycle hooks |
Output: lib/resources/views/
make:migration
Creates a timestamped database migration file:
dart run magic:artisan make:migration create_users_table
dart run magic:artisan make:migration create_users_table --create=users
dart run magic:artisan make:migration add_email_to_users --table=users
Options
| Option | Shortcut | Description |
|---|---|---|
--create |
-c |
The table to be created (selects the create stub) |
--table |
-t |
The table to migrate |
Output: lib/database/migrations/m_YYYYMMDDHHMMSS_
make:seeder
Creates a database seeder:
dart run magic:artisan make:seeder User
dart run magic:artisan make:seeder UserSeeder
Output: lib/database/seeders/
make:factory
Creates a model factory for generating fake data:
dart run magic:artisan make:factory User
dart run magic:artisan make:factory UserFactory
Output: lib/database/factories/
make:policy
Creates an authorization policy:
dart run magic:artisan make:policy Post
dart run magic:artisan make:policy PostPolicy
dart run magic:artisan make:policy Post --model=Post
dart run magic:artisan make:policy Admin/Dashboard
Options
| Option | Shortcut | Description |
|---|---|---|
--model |
-m |
The model the policy applies to |
Output: lib/app/policies/
make:provider
Creates a service provider class with register() and boot() stubs:
dart run magic:artisan make:provider Payment
dart run magic:artisan make:provider PaymentServiceProvider
The ServiceProvider suffix is appended automatically when omitted.
Output: lib/app/providers/
make:middleware
Creates a middleware class:
dart run magic:artisan make:middleware EnsureAuthenticated
dart run magic:artisan make:middleware Admin/RoleCheck
Output: lib/app/middleware/
make:enum
Creates a string-backed enum with fromValue() factory and selectOptions getter:
dart run magic:artisan make:enum MonitorType
dart run magic:artisan make:enum Status/OrderStatus
Output: lib/app/enums/
make:event
Creates a dispatchable event class that extends MagicEvent:
dart run magic:artisan make:event UserLoggedIn
dart run magic:artisan make:event Auth/TokenRefreshed
Output: lib/app/events/
make:listener
Creates an event listener class that extends MagicListener:
dart run magic:artisan make:listener AuthRestore
dart run magic:artisan make:listener AuthRestore --event=UserLoggedInEvent
dart run magic:artisan make:listener Auth/RestoreSession
Options
| Option | Shortcut | Description |
|---|---|---|
--event |
-e |
The event class the listener handles (defaults to MagicEvent) |
Output: lib/app/listeners/
make:request
Creates a form request class with a typed rules() method for request validation:
dart run magic:artisan make:request StoreMonitor
dart run magic:artisan make:request StoreMonitorRequest
The Request suffix is appended automatically when omitted.
Output: lib/app/validation/requests/
make:lang
Creates a language JSON file:
dart run magic:artisan make:lang tr
dart run magic:artisan make:lang es
dart run magic:artisan make:lang de
Output: assets/lang/
make:component
Scaffolds an atomic 4-file component folder under lib/ui/components/:
dart run magic:artisan make:component Avatar
dart run magic:artisan make:component Avatar --variants=intent,size
dart run magic:artisan make:component Panel --slots
Output (for Avatar):
lib/ui/components/avatar/avatar.dart(class Avatar, unprefixed PascalCase)lib/ui/components/avatar/avatar.recipe.dart(aWindRecipe, or aWindSlotRecipeunder--slots, seeded with the requested--variantsaxes)lib/ui/components/avatar/avatar.preview.dart(a single publicAvatarPreviewmatrix)lib/ui/components/avatar/index.dart(re-exports the component + recipe, NOT the preview)
After scaffolding, make:component chains previews:refresh so the new preview lands in _previews.g.dart automatically.
Options
--variants=a,b: seed the named variant axes into the recipe (values left empty to fill in).--slots: scaffold a multi-partWindSlotRecipeinstead of a single-elementWindRecipe.--force: overwrite an existing component.
previews:refresh
Regenerates the dev-only preview catalog index from *.preview.dart files:
dart run magic:artisan previews:refresh
dart run magic:artisan previews:refresh --path=lib/ui/components
Output: (default scan dir lib).
Each *.preview.dart file must declare exactly ONE public *Preview class. The command validates the class name, fails fast on a slug collision, sorts deterministically, and writes atomically. The generated file returns a List from the previewEntries() function (never a top-level const list) so the catalog tree-shakes from release builds. Feed it to the catalog via MagicPreview.register(previewEntries()).
Options
--path=DIR: directory to scan for*.preview.dartfiles (defaultlib).
design:sync
Generates the wind theme (semantic aliases + brand seed) from a DESIGN.md:
dart run magic:artisan design:sync
dart run magic:artisan design:sync --input=DESIGN.md --output=lib/config/wind_theme.g.dart
Output: a Dart source file exposing a Map and a Map. The aliases map carries the 17 property-prefixed semantic keys (bg-surface, text-fg, border-color-border, ...) with arbitrary-hex light + dark: pairs ('bg-surface': 'bg-[#f9f9ff] dark:bg-[#0f1419]'), drop-in for WindThemeData(aliases: designAliases). The brand primary MaterialColor carries a generated 50-900 ramp (seeded from the DESIGN.md primary light hex) for WindThemeData.toThemeData() Material interop.
The command is idempotent (byte-identical output on re-run for an unchanged DESIGN.md) and writes atomically via .tmp + rename. Do not hand-edit the generated file; re-run design:sync instead.
Options
--input=PATH: path to the DESIGN.md source, relative to the project root (defaultDESIGN.md).--output=PATH: path for the generated wind theme file (defaultlib/config/wind_theme.g.dart).
design:lint
Validates a DESIGN.md against the design rules:
dart run magic:artisan design:lint
dart run magic:artisan design:lint --input=DESIGN.md
The command exits nonzero only on an error-severity finding (a broken reference). Warnings and info notes are reported but do not fail the lint. Rules:
- broken-ref (error): a component references a token (
{colors.x},{rounded.x},{spacing.x}) that does not resolve. - missing-primary (warning): colors are defined but
primaryis absent. - unknown-key (warning): a top-level YAML key looks like a typo of a schema key. The single-file
dark:overlay lives insidecolors, so it is never flagged. - section-order (warning): markdown
##sections appear out of canonical order. - missing-sections (info): the optional
spacing/roundedgroups are absent. - orphaned-tokens (warning): a custom color token is defined but never referenced by any component (Material Design 3 baseline families are exempt).
- contrast-ratio (warning): a component
backgroundColor/textColorpair falls below the WCAG AA minimum of 4.5:1.
Options
--input=PATH: path to the DESIGN.md to validate, relative to the project root (defaultDESIGN.md).
DESIGN.md format
DESIGN.md is the single source of truth for the app theme: a YAML front matter (machine-readable design tokens) followed by a markdown body (human-readable rationale; ignored by design:sync).
---
name: Acme
colors:
surface:
light: "#f9f9ff" # single-file dark: overlay per role
dark: "#0f1419"
fg:
light: "#151c27"
dark: "#e6e9f0"
primary:
light: "#7c3aed" # the brand seed for the MaterialColor ramp
dark: "#a78bfa"
on-primary: "#ffffff" # a bare hex is light-only (dark mirrors light)
typography:
body-md:
fontFamily: Plus Jakarta Sans
fontSize: 16px
rounded:
md: 8px
spacing:
md: 16px
components:
button-primary:
backgroundColor: "{colors.primary}" # {group.token} reference
textColor: "{colors.on-primary}"
rounded: "{rounded.md}"
padding: "{spacing.md}"
---
## Overview
...
## Colors
...
Each color role is either a bare hex scalar (light only; dark mirrors light) or a { light, dark } overlay map. The 17 semantic roles map onto the wind alias keys as: surface/surface-container/surface-container-high -> bg-surface*; fg (or on-surface)/fg-muted/fg-disabled -> text-fg*; primary/on-primary/primary-container -> bg-primary / text-on-primary / bg-primary-container; accent -> bg-accent; border/border-subtle -> border-color-border*; destructive/on-destructive/destructive-container -> bg-destructive / text-on-destructive / bg-destructive-container; success/warning -> bg-success / bg-warning.
This is a wind-flavored superset of the open DESIGN.md format: the single-file dark: overlay is the deliberate divergence that lets one document drive both light and dark wind aliases.