Documentation Index
Fetch the complete documentation index at: https://checkly-422f444a-herve-agentic-prompt-env-vars.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Prerequisites
Before creating Agentic Checks, ensure you have:
- Access to Agentic Checks on your Checkly account
- Available Agentic Check active capacity if the check will be active
- An initialized Checkly CLI project if you want to manage the check as code
- Any required test credentials saved as Checkly variables or secrets
Define the check goal
Write the prompt as a monitoring objective, not as implementation instructions. Include the target URL, the user journey, and the observable success criteria. For broader guidance, see Prompt best practices.Prompt
- The exact page or flow to start from
- The expected end state
- Important assertions
- Known constraints, such as test account behavior
- What should count as a failure
Reference variables and secrets
Agentic Checks do not automatically expose all account variables or secrets to the agent. To expose one to an Agentic Check, reference it directly in the prompt with double curly brackets, such as{{TEST_USER_EMAIL}}.
checkout.agentic.check.ts
Add skills
Agentic Checks include a default browser automation skill. You can add extra skills when the agent needs domain-specific capabilities.agentic-runtime.check.ts
Scheduling and locations
Agentic Checks can run from up to three public locations by default. Enterprise accounts can contact sales to enable unlimited locations. The CLI construct supports these frequencies:| Frequency in minutes | Frequency constant |
|---|---|
5 | Frequency.EVERY_5M |
10 | Frequency.EVERY_10M |
15 | Frequency.EVERY_15M |
30 | Frequency.EVERY_30M |
60 | Frequency.EVERY_1H |
120 | Frequency.EVERY_2H |
180 | Frequency.EVERY_3H |
360 | Frequency.EVERY_6H |
720 | Frequency.EVERY_12H |
1440 | Frequency.EVERY_24H |
Active capacity
Only active Agentic Checks consume Agentic Check capacity. Useactivated: false when you want to deploy an Agentic Check draft without consuming active capacity:
draft.agentic.check.ts
Test and deploy
Test your project before deploying:Terminal
Terminal