CLI commands
The Aucert CLI provides three commands in Phase 1.
aucert init
Initialize a new Aucert project in the current directory.
aucert init [--app <path>] [--platform <android|ios>]
| Flag | Description | Default |
|---|---|---|
--app | Path to APK/AAB file | Auto-detected |
--platform | Target platform | android |
Creates an aucert.config.yaml with default test configuration.
aucert run
Execute a test run against your application.
aucert run [--scope <scope>] [--watch]
| Flag | Description | Default |
|---|---|---|
--scope | Test scope (navigation, user-flows, regression) | All scopes |
--watch | Stream results in real-time | false |
aucert status
Check the status of test runs.
aucert status [--latest] [--run-id <id>]
| Flag | Description | Default |
|---|---|---|
--latest | Show most recent run | false |
--run-id | Show a specific run | — |
What's next
- Configuration — Customize your
aucert.config.yaml - CI/CD integration — Automate with GitHub Actions