AutoMax
ReferenceCLI commands

automax project

Create and list projects.

project list

automax project list [--matrix] [--shards <n>]

Prints slug, name, layers, browsers, environments (missing files are marked) and the default environment. --matrix emits a CI matrix of project × browser × shard as JSON.

bun run automax project list
bun run automax project list --matrix --shards 2

project create

automax project create <slug> [--name <name>] [--layers ui,api,hybrid,recorded] [--browsers chromium,firefox,webkit]
                      [--ui-url <url>] [--api-url <url>] [--env <name>] [--test-id <attr>] [--force]
FlagDefault
--layersui,api,hybrid
--browserschromium
--ui-url / --api-urlhttp://localhost:3000 / http://localhost:3000/api
--envlocal
--test-iddata-testid

Writes automax.project.yaml, envs/<env>.yaml, .env.example, steps/fixtures.ts, steps/auth.ts, a project step file, pages/HomePage.ts, features/health.feature, features/ui/home.feature, data/common/users.csv, data/factories.ts, empty recorded/ and har/ folders and a README. The slug must be lowercase letters, digits and dashes.

On this page