diff --git a/packages/cli/src/ai-context/context.ts b/packages/cli/src/ai-context/context.ts index 68f59856d..225ea931a 100644 --- a/packages/cli/src/ai-context/context.ts +++ b/packages/cli/src/ai-context/context.ts @@ -20,9 +20,9 @@ export const REFERENCES = [ description: 'MultiStepCheck construct for complex user flows', }, { - id: 'monitors', - linkText: 'Monitors', - description: 'TCP, URL, DNS, ICMP, and Heartbeat monitors', + id: 'uptime-monitors', + linkText: 'Uptime Monitors', + description: 'TCP (`TcpMonitor`), URL (`UrlMonitor`), DNS (`DnsMonitor`), ICMP (`IcmpMonitor`), and Heartbeat monitors (`HeartbeatMonitor`)', }, { id: 'check-groups', diff --git a/packages/cli/src/ai-context/references/monitors.md b/packages/cli/src/ai-context/references/uptime-monitors.md similarity index 100% rename from packages/cli/src/ai-context/references/monitors.md rename to packages/cli/src/ai-context/references/uptime-monitors.md diff --git a/packages/cli/src/ai-context/skill-header.md b/packages/cli/src/ai-context/skill-header.md index 0fddc2c95..ddd42de52 100644 --- a/packages/cli/src/ai-context/skill-header.md +++ b/packages/cli/src/ai-context/skill-header.md @@ -46,4 +46,6 @@ The `checkly.config.ts` at the root of your project defines a range of defaults ## Check and Monitor Constructs +Parse and read further reference documentation when tasked with creating or managing any of the following Checkly constructs: + diff --git a/skills/monitoring/SKILL.md b/skills/monitoring/SKILL.md index 1a175fe12..98eb1b79a 100644 --- a/skills/monitoring/SKILL.md +++ b/skills/monitoring/SKILL.md @@ -81,11 +81,13 @@ export default defineConfig({ ## Check and Monitor Constructs +Parse and read further reference documentation when tasked with creating or managing any of the following Checkly constructs: + - [API Checks](references/api-checks.md) - ApiCheck construct, assertions, and authentication setup scripts - [Browser Checks](references/browser-checks.md) - BrowserCheck construct with Playwright test files - [Playwright Checks](references/playwright-checks.md) - PlaywrightCheck construct for multi-browser test suites - [MultiStep Checks](references/multistep-checks.md) - MultiStepCheck construct for complex user flows -- [Monitors](references/monitors.md) - TCP, URL, DNS, ICMP, and Heartbeat monitors +- [Uptime Monitors](references/uptime-monitors.md) - TCP (`TcpMonitor`), URL (`UrlMonitor`), DNS (`DnsMonitor`), ICMP (`IcmpMonitor`), and Heartbeat monitors (`HeartbeatMonitor`) - [Check Groups](references/check-groups.md) - CheckGroupV2 construct for organizing checks - [Alert Channels](references/alert-channels.md) - Email, Phone, and Slack alert channels - [Supporting Constructs](references/supporting-constructs.md) - Status pages, dashboards, maintenance windows, and private locations diff --git a/skills/monitoring/references/monitors.md b/skills/monitoring/references/uptime-monitors.md similarity index 100% rename from skills/monitoring/references/monitors.md rename to skills/monitoring/references/uptime-monitors.md