Monito CLI

discovery

View and accept AI-discovered test scenarios.

discovery view

View a discovery run and its draft scenarios.

monito-cli discovery view <id>
monito-cli discovery view <id> --json

Shows the discovery run status, scenarios found count, and each draft scenario with name, priority, and description.

To trigger a discovery run, use project discover.

discovery accept

Accept draft scenarios from a discovery run, converting them into real test scenarios.

monito-cli discovery accept <id> --all                          # accept all drafts
monito-cli discovery accept <id> --names "Login" "Signup"       # accept specific drafts
monito-cli discovery accept <id> --json
FlagDescription
--allAccept all draft scenarios
--names <names...>Accept specific drafts by name (space-separated)
--jsonOutput as JSON

If neither --all nor --names is provided, all drafts are accepted by default.

The accepted drafts become test scenarios in the project and can be run with scenario run.

On this page