Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
# 1) Confirm auth and target app/build
revyl auth status
revyl app list --platform <ios|android>
# 2) Author YAML locally, then validate it
revyl test validate ./<test-name>.yaml
# 3) Create from YAML (bootstraps .revyl/tests/ and config)
revyl test create <test-name> --from-file ./<test-name>.yaml
# 4) Iterate on .revyl/tests/<test-name>.yaml, then push and run
revyl test push <test-name> --force
revyl test run <test-name>
# 5) Inspect results and refine
revyl test status <test-name>
revyl test report <test-name> --json
YAML-first bootstrap works without an existing .revyl/config.yaml:
revyl test create <test-name> --from-file ./test.yaml
The CLI validates the YAML, copies it into .revyl/tests/, pushes it, and writes .revyl/config.yaml after the remote test is created.
If you prefer to scaffold first:
revyl test create <test-name> --platform ios --no-open
# edit .revyl/tests/<test-name>.yaml
revyl test push <test-name> --force
For full examples and troubleshooting, see docs/tests/creating-tests.md.
If this test comes from a running revyl dev session:
npx skills add RevylAI/revyl-cli --skill revyl-cli-createHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.