-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathagentic.check.ts
More file actions
28 lines (26 loc) · 860 Bytes
/
agentic.check.ts
File metadata and controls
28 lines (26 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* eslint-disable */
import { AgenticCheck, Frequency } from 'checkly/constructs'
new AgenticCheck('agentic-pricing-check', {
name: 'Agentic Pricing Check',
prompt:
'Navigate to https://www.checklyhq.com/pricing and verify that at least three plan tiers are displayed on the page.',
activated: false,
muted: true,
frequency: Frequency.EVERY_1H,
tags: ['e2e', 'agentic'],
})
new AgenticCheck('agentic-runtime-check', {
name: 'Agentic Runtime Check',
prompt:
'Navigate to https://www.checklyhq.com and verify the homepage loads with the main heading visible.',
activated: false,
muted: true,
frequency: 60,
agentRuntime: {
skills: ['addyosmani/web-quality-skills'],
exposeEnvironmentVariables: [
'ENVIRONMENT_URL',
{ name: 'TEST_USER_EMAIL', description: 'Login email for the test account' },
],
},
})