From 34939aa13649b75fbc656ef12d0a911f0871bcd9 Mon Sep 17 00:00:00 2001 From: stefan judis Date: Tue, 10 Feb 2026 13:40:56 +0100 Subject: [PATCH 01/10] Restructure AI integrations docs with Skills and Rules pages Consolidate per-tool pages (Claude, Cursor, Copilot, Windsurf) into a single Rules page. Add a Skills page explaining the Agent Skills standard. Update overview with Skills vs Rules guidance. --- docs.json | 8 +-- integrations/ai/claude.mdx | 37 ----------- integrations/ai/copilot.mdx | 29 -------- integrations/ai/cursor.mdx | 35 ---------- integrations/ai/overview.mdx | 52 ++++++--------- integrations/ai/rules.mdx | 125 +++++++++++++++++++++++++++++++++++ integrations/ai/skills.mdx | 38 +++++++++++ integrations/ai/windsurf.mdx | 22 ------ snippets/agent-example.mdx | 11 +++ 9 files changed, 198 insertions(+), 159 deletions(-) delete mode 100644 integrations/ai/claude.mdx delete mode 100644 integrations/ai/copilot.mdx delete mode 100644 integrations/ai/cursor.mdx create mode 100644 integrations/ai/rules.mdx create mode 100644 integrations/ai/skills.mdx delete mode 100644 integrations/ai/windsurf.mdx create mode 100644 snippets/agent-example.mdx diff --git a/docs.json b/docs.json index bd1f56cb..4c340691 100644 --- a/docs.json +++ b/docs.json @@ -351,13 +351,11 @@ "group": "Integrations", "pages": [ { - "group": "AI coding asssistants", + "group": "AI Agents & Coding Assistants", "pages": [ "integrations/ai/overview", - "integrations/ai/claude", - "integrations/ai/cursor", - "integrations/ai/copilot", - "integrations/ai/windsurf" + "integrations/ai/skills", + "integrations/ai/rules" ] }, { diff --git a/integrations/ai/claude.mdx b/integrations/ai/claude.mdx deleted file mode 100644 index 2e56fcc9..00000000 --- a/integrations/ai/claude.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 'Claude Code' -description: 'Learn how to use Claude Code to create checks.' -sidebarTitle: 'Claude Code' ---- - -Claude is a code editor that supports AI-powered code completion and suggestions. - -## Using Claude Code to create checks - - - - -```bash setup-claude-rules -mkdir -p .claude && -curl -o .claude/checkly.rules.md https://www.checklyhq.com/docs/ai/checkly.rules.md -L -echo "- examine checkly.rules.md for code generation rules" >> .claude/CLAUDE.md -``` - - - - - -```bash setup-claude-rules-windows -New-Item -ItemType Directory -Path ".claude" -Force -Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".claude\checkly.rules.md" -echo "- examine checkly.rules.md for code generation rules" >> .claude/CLAUDE.md -``` - - - - -Exit and restart your Claude Code session to re-read the `CLAUDE.md` file into Claude Code's context. - -You can now ask Claude to install the `checkly` NPM package and generate code for API Checks, Browser checks, Multistep checks and all other constructs. Make sure to use the `checkly.rules.md` file as context for your questions. - - diff --git a/integrations/ai/copilot.mdx b/integrations/ai/copilot.mdx deleted file mode 100644 index bb32902e..00000000 --- a/integrations/ai/copilot.mdx +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: 'GitHub Copilot' -sidebarTitle: 'GitHub Copilot' ---- - - - - - - -```bash setup-copilot-rules -mkdir -p .github && curl -o .github/copilot-instructions.md "https://www.checklyhq.com/docs/ai/checkly.rules.md" -L -``` - - - - - -```bash setup-copilot-rules-windows -New-Item -ItemType Directory -Path ".github" -Force -Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".github\copilot-instructions.md" -``` - - - - - -You can ask Copilot to install the `checkly` NPM package and generate code for API Checks, Browser checks, Multistep checks -and all other constructs. diff --git a/integrations/ai/cursor.mdx b/integrations/ai/cursor.mdx deleted file mode 100644 index e1de10a3..00000000 --- a/integrations/ai/cursor.mdx +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: 'Cursor' -description: 'Learn how to use Cursor to create checks.' -sidebarTitle: 'Cursor' ---- - -Cursor is a code editor that supports AI-powered code completion and suggestions. - -## Cursor - - - - -```bash setup-cursor-rules -mkdir -p .cursor/rules && curl -o .cursor/rules/checkly.mdc "https://www.checklyhq.com/docs/ai/checkly.rules.md" -L -``` - -Now make sure to add the new `checkly.mdc` file to your context. - -You can now ask Cursor to install the `checkly` NPM package and generate code for API Checks, Browser checks, Multistep checks -and all other constructs. Make sure to use the `checkly.mdc` file as context for your questions. - - - - -```bash setup-cursor-rules-windows -New-Item -ItemType Directory -Path ".cursor\rules" -Force -Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".cursor\rules\checkly.mdc" -``` - - - - -You can now reference the `checkly.mdc` using `@checkly.mdc` file in your Cursor chats and ask it to generate code for -API Checks, Browser checks, Multistep checks and all other constructs. \ No newline at end of file diff --git a/integrations/ai/overview.mdx b/integrations/ai/overview.mdx index 88ae6a78..21589b46 100644 --- a/integrations/ai/overview.mdx +++ b/integrations/ai/overview.mdx @@ -5,9 +5,11 @@ sidebarTitle: 'Overview' keywords: ['mcp', 'ai', 'rules', 'generate checks', 'agents', 'context'] --- -import { YoutubeEmbed } from "/snippets/youtube-embed.jsx" +import AgentExamples from "/snippets/agent-example.mdx" -From the beginning, Checkly has bet on [Monitoring as Code](/concepts/monitoring-as-code) which lets you create and control your monitoring infrastructure entirely using code. [Checkly constructs](/constructs/overview) can reflect all your monitoring properties. +From the beginning, Checkly has bet on [Monitoring as Code](/concepts/monitoring-as-code) which lets you create and control your monitoring infrastructure entirely using code. + +By default, [Checkly constructs](/constructs/overview) reflect all your monitoring properties. ```ts api.check.ts import { ApiCheck, AssertionBuilder } from "checkly/constructs" @@ -36,40 +38,32 @@ npx checkly deploy **The Monitoring as Code workflow is by default AI-native** because LLMs are excellent at writing and editing Checkly constructs code and modern AI agents can execute CLI commands easily. -You only need to provide the necessary context about Checkly and your monitoring setup to your AI agent of choice. - -## Add custom Checkly rules to your AI conversation +Provide the necessary Checkly context and let your AI agent of choice do the rest. -The [`checkly.rules.md` file](https://www.checklyhq.com/docs/ai/checkly.rules.md) includes best practices, example code and required CLI commands to give your AI workflow enough context to perform Checkly-related tasks. + -Once the Checkly rules are included in your AI context window, your agent can effectively assist you in managing your monitoring setup. +## Add Checkly context to your AI agent conversation -It will be able to: - - - "Can you create a new `BrowserCheck` monitoring `example.com`" - +Install [Checkly Skills](/integrations/ai/skills) or add the [Checkly Rules](/integrations/ai/rules) to your AI conversation to give your AI agent enough context to perform Checkly-related tasks. - - "What are the currently used monitoring locations?" + + +Let your agents pull in all required Checkly context on demand. - - "Can you change all checks to run every 5 minutes instead of every 10 minutes?" + +Include the entire Checkly context in commands or documentation. + -With enough application context you can even create checks for your specific use cases. +### Skills vs Rules - - "Can you create new API Checks for the application API endpoints?" - - -Find a live session explaining how to automate Checkly monitoring with AI below and [read the "Agentic Workflows" guide](/guides/agentic-workflows) for more details. +**Use Skills** when your AI agent supports the [Agent Skills](https://agentskills.io) standard. Skills load context on demand, keeping your agent's context window lean until Checkly-related tasks arise. This is the recommended approach for compatible agents. - +**Use Rules** when your agent doesn't support skills or when you want the Checkly context always available. Rules files are loaded at session start and provide consistent context throughout your conversation. -## Why is there no Checkly MCP server? +## Why is there no Checkly MCP server (yet)? The MCP concept is often used to enable LLMs to interact with external systems. It acts as a bridge between the AI model and the target system, translating natural language commands into actionable API calls or code snippets. @@ -77,10 +71,6 @@ The MCP concept is often used to enable LLMs to interact with external systems. Whether you need to create new resources or update existing ones, AI can write and update the necessary construct files and execute the Checkly CLI commands autonomously. -## Additional Resources - -Follow these guides if you use one of the popular AI coding tools: - -- [Claude Code](/integrations/ai/claude) -- [Cursor](/integrations/ai/cursor) -- [GitHub Copilot](/integrations/ai/copilot) + +We are investigating additional AI-native workflows. [Let us know in the public roadmap](https://feedback.checklyhq.com/p/checkly-mcp) if you are interested in more agent-friendly integrations. + diff --git a/integrations/ai/rules.mdx b/integrations/ai/rules.mdx new file mode 100644 index 00000000..64c946dc --- /dev/null +++ b/integrations/ai/rules.mdx @@ -0,0 +1,125 @@ +--- +title: 'Checkly Rules' +description: 'Use the provided Checkly rules to control, update and deploy your monitoring.' +sidebarTitle: 'Checkly Rules' +--- + +import AgentExamples from "/snippets/agent-example.mdx" +import { YoutubeEmbed } from "/snippets/youtube-embed.jsx" + +The [`checkly.rules.md` file](https://www.checklyhq.com/docs/ai/checkly.rules.md) includes best practices, example code and required CLI commands to give your AI workflow enough context to perform Checkly-related tasks. + +Once the Checkly rules are included in your AI context window, your agent can effectively assist you in managing your monitoring setup. + +It will be able to: + + + +With enough application context, you can even create checks for your specific use cases. + + + "Can you create new API Checks for the application API endpoints?" + + +Find a live session explaining how to automate Checkly monitoring with AI below and [read the "Agentic Workflows" guide](/guides/agentic-workflows) for more details. + + + +## Claude Code + +Claude Code reads instructions from `CLAUDE.md` files. You can place these files globally (in your home directory) or locally (in your project root). Claude Code automatically includes these files in its context. + +To use Checkly rules with Claude Code, download the rules file and reference it in your `CLAUDE.md`: + + + + +```bash +mkdir -p .claude && +curl -o .claude/checkly.rules.md https://www.checklyhq.com/docs/ai/checkly.rules.md -L +echo "- examine checkly.rules.md for code generation rules" >> .claude/CLAUDE.md +``` + + + + +```powershell +New-Item -ItemType Directory -Path ".claude" -Force +Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".claude\checkly.rules.md" +Add-Content -Path ".claude\CLAUDE.md" -Value "- examine checkly.rules.md for code generation rules" +``` + + + + +Restart your Claude Code session to load the instructions. + +## GitHub Copilot + +GitHub Copilot reads project-level instructions from `.github/copilot-instructions.md`. This file is automatically included in Copilot's context for all chat interactions. + + + + +```bash +mkdir -p .github && curl -o .github/copilot-instructions.md "https://www.checklyhq.com/docs/ai/checkly.rules.md" -L +``` + + + + +```powershell +New-Item -ItemType Directory -Path ".github" -Force +Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".github\copilot-instructions.md" +``` + + + + +## Cursor + +Cursor uses `.mdc` (Markdown Cursor) files stored in `.cursor/rules/` for project-specific instructions. These rules are automatically included in Cursor's context. + + + + +```bash +mkdir -p .cursor/rules && curl -o .cursor/rules/checkly.mdc "https://www.checklyhq.com/docs/ai/checkly.rules.md" -L +``` + + + + +```powershell +New-Item -ItemType Directory -Path ".cursor\rules" -Force +Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".cursor\rules\checkly.mdc" +``` + + + + +You can reference the rules file explicitly using `@checkly.mdc` in your Cursor chats. + +## Windsurf + +Windsurf stores rules in `.windsurf/rules/` as Markdown files. These are included in the AI context when you interact with Windsurf's assistant. + + + + +```bash +mkdir -p .windsurf/rules && curl -o .windsurf/rules/checkly.md "https://www.checklyhq.com/docs/ai/checkly.rules.md" -L +``` + + + + +```powershell +New-Item -ItemType Directory -Path ".windsurf\rules" -Force +Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".windsurf\rules\checkly.md" +``` + + + + +You can reference the rules file using `@checkly.md` in your Windsurf chats. diff --git a/integrations/ai/skills.mdx b/integrations/ai/skills.mdx new file mode 100644 index 00000000..2622dc90 --- /dev/null +++ b/integrations/ai/skills.mdx @@ -0,0 +1,38 @@ +--- +title: 'Checkly Skills' +description: 'Use the provided Checkly skills to control, update and deploy your monitoring.' +sidebarTitle: 'Checkly Skills' +--- + +Skills are reusable and modular capabilities for AI agents. They provide procedural knowledge that helps agents accomplish Checkly tasks more effectively. Think of Checkly Skills as plugins or extensions that enhance what your AI agent can do with your monitoring infrastructure. + +[Agent Skills](https://agentskills.io) are an open standard supported by many AI agents and coding assistants including Claude Code, Cursor, OpenAI Codex, Gemini CLI, GitHub Copilot, and others. If your agent supports skills, you can use the Checkly Skills to manage your monitoring setup. + +Use [the `skills` CLI](https://www.npmjs.com/package/skills) to install [Checkly skills](https://github.com/checkly/checkly-cli/tree/main/skills/monitoring) globally or in your project: + +```bash +npx skills add checkly/checkly-cli +``` + +This will make the Checkly Skills available to your AI agent. When your agent needs to perform a Checkly-related task, it can automatically pull in the relevant context and use the provided instructions and resources to execute the task effectively. + +```txt Claude Code Example highlight={3-4} +❯ Can you create a new URLMonitor with Checkly for example.com? + +⏺ Skill(monitoring) + ⎿  Successfully loaded skill · 2 tools allowed + +⏺ Let me first check the existing Checkly setup in this project. + +⏺ Searched for 2 patterns, read 2 files (ctrl+o to expand) + +⏺ I'll create a new UrlMonitor for example.com! +``` + +Thanks to [Monitoring as Code](/concepts/monitoring-as-code), you can now control your monitoring setup with AI agents without needing a specific MCP server or API for your monitoring. Just give your agent the necessary context and let it use the Checkly Skills to manage your monitoring setup effectively. + +## Additional resources + +- [Checkly CLI Documentation](/cli/overview/) +- [Checkly Constructs Reference](/constructs/overview/) +- [Agent Skills Specification](https://agentskills.io/specification.md) diff --git a/integrations/ai/windsurf.mdx b/integrations/ai/windsurf.mdx deleted file mode 100644 index 26561826..00000000 --- a/integrations/ai/windsurf.mdx +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: 'Windsurf' -description: 'Learn how to use Windsurf to create checks.' -sidebarTitle: 'Windsurf' ---- - - - - ```bash Terminal - mkdir -p .windsurf/rules && curl -o .windsurf/rules/checkly.md "https://www.checklyhq.com/docs/ai/checkly.rules.md" -L - ``` - - - ```bash Terminal - New-Item -ItemType Directory -Path ".windsurf\rules" -Force - Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".windsurf\rules\checkly.md" - ``` - - - -You can now reference the `checkly.md` using `@checkly.md` file in your WindSurf chats and ask it to generate code for -API Checks, Browser checks, Multistep checks and all other constructs. \ No newline at end of file diff --git a/snippets/agent-example.mdx b/snippets/agent-example.mdx new file mode 100644 index 00000000..206051c8 --- /dev/null +++ b/snippets/agent-example.mdx @@ -0,0 +1,11 @@ + + "Can you create a new `BrowserCheck` monitoring `example.com`" + + + + "What are the currently used monitoring locations?" + + + + "Can you change all checks to run every 5 minutes instead of every 10 minutes?" + From d577a86ad50bc9ae900ebbaaf57a16114778088f Mon Sep 17 00:00:00 2001 From: Stefan Judis Date: Tue, 10 Feb 2026 13:50:50 +0100 Subject: [PATCH 02/10] Update snippets/agent-example.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- snippets/agent-example.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snippets/agent-example.mdx b/snippets/agent-example.mdx index 206051c8..d54f0e0f 100644 --- a/snippets/agent-example.mdx +++ b/snippets/agent-example.mdx @@ -1,11 +1,11 @@ - "Can you create a new `BrowserCheck` monitoring `example.com`" +Can you create a new `BrowserCheck` monitoring `example.com` - "What are the currently used monitoring locations?" +What are the currently used monitoring locations? - "Can you change all checks to run every 5 minutes instead of every 10 minutes?" +Can you change all checks to run every 5 minutes instead of every 10 minutes? From b28f866481e8d3654a4da627075eefe11d64a9fa Mon Sep 17 00:00:00 2001 From: Stefan Judis Date: Tue, 10 Feb 2026 13:52:22 +0100 Subject: [PATCH 03/10] Update integrations/ai/skills.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- integrations/ai/skills.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/ai/skills.mdx b/integrations/ai/skills.mdx index 2622dc90..01148ee0 100644 --- a/integrations/ai/skills.mdx +++ b/integrations/ai/skills.mdx @@ -26,7 +26,7 @@ This will make the Checkly Skills available to your AI agent. When your agent ne ⏺ Searched for 2 patterns, read 2 files (ctrl+o to expand) -⏺ I'll create a new UrlMonitor for example.com! +⏺ I'll create a new URLMonitor for example.com! ``` Thanks to [Monitoring as Code](/concepts/monitoring-as-code), you can now control your monitoring setup with AI agents without needing a specific MCP server or API for your monitoring. Just give your agent the necessary context and let it use the Checkly Skills to manage your monitoring setup effectively. From 1b0d7964f6b5f409cd0119f15ea69838e59ffff8 Mon Sep 17 00:00:00 2001 From: stefan judis Date: Tue, 10 Feb 2026 13:50:26 +0100 Subject: [PATCH 04/10] Update AI integrations section in sitemap to match docs.json The AI integrations were restructured from individual tool pages (claude, cursor, copilot) to a unified structure (overview, skills, rules). --- sitemap-crawl.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sitemap-crawl.md b/sitemap-crawl.md index dd3aa7fa..69a3816d 100644 --- a/sitemap-crawl.md +++ b/sitemap-crawl.md @@ -190,9 +190,9 @@ This file contains all valid URLs extracted from docs.json organized by director ## Integrations ### Integrations - AI -- /integrations/ai/claude -- /integrations/ai/cursor -- /integrations/ai/copilot +- /integrations/ai/overview +- /integrations/ai/skills +- /integrations/ai/rules ### Integrations - Alerts & Notifications - /integrations/alerts/discord From 8fead3d96331dc72534faa9e6277b65767208757 Mon Sep 17 00:00:00 2001 From: stefan judis Date: Tue, 10 Feb 2026 13:54:41 +0100 Subject: [PATCH 05/10] Add quotes around example prompts in AI docs Wrap example prompts in quotes for consistent formatting. --- integrations/ai/rules.mdx | 2 +- snippets/agent-example.mdx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/integrations/ai/rules.mdx b/integrations/ai/rules.mdx index 64c946dc..18e5a67e 100644 --- a/integrations/ai/rules.mdx +++ b/integrations/ai/rules.mdx @@ -18,7 +18,7 @@ It will be able to: With enough application context, you can even create checks for your specific use cases. - "Can you create new API Checks for the application API endpoints?" +"Can you create new API Checks for the application API endpoints?" Find a live session explaining how to automate Checkly monitoring with AI below and [read the "Agentic Workflows" guide](/guides/agentic-workflows) for more details. diff --git a/snippets/agent-example.mdx b/snippets/agent-example.mdx index d54f0e0f..01e90061 100644 --- a/snippets/agent-example.mdx +++ b/snippets/agent-example.mdx @@ -1,11 +1,11 @@ -Can you create a new `BrowserCheck` monitoring `example.com` +"Can you create a new `BrowserCheck` monitoring `example.com`" -What are the currently used monitoring locations? +"What are the currently used monitoring locations?" -Can you change all checks to run every 5 minutes instead of every 10 minutes? +"Can you change all checks to run every 5 minutes instead of every 10 minutes?" From 29c1c3c6ae98bc8b3295e882f5e4c8812f15b2c2 Mon Sep 17 00:00:00 2001 From: stefan judis Date: Tue, 10 Feb 2026 16:41:31 +0100 Subject: [PATCH 06/10] Update CLI overview to reference Skills and Rules pages Consolidate AI IDE/Copilot section to link to the new Skills and Rules documentation instead of individual tool-specific pages. --- cli/overview.mdx | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/cli/overview.mdx b/cli/overview.mdx index 64e44118..2818b96b 100644 --- a/cli/overview.mdx +++ b/cli/overview.mdx @@ -7,7 +7,7 @@ sidebarTitle: 'Overview' import MainCicdCards from "/snippets/main-cicd-cards.mdx" The Checkly CLI gives you a JavaScript/TypeScript-native workflow for coding, testing and deploying synthetic -monitoring at scale, from your code base. The Checkly CLI comes with **native `@playwright/test` support.** No lock-in, +monitoring at scale, from your code base. The Checkly CLI comes with **native `@playwright/test` support.** No lock-in, just write standard `*.spec.ts` files. ## Starting your first project @@ -31,7 +31,7 @@ After this, let's dry run the Checks in your new project against the global Chec npx checkly test ``` -This should report the following output to your terminal +This should report the following output to your terminal ``` Running 4 checks in eu-west-1. @@ -53,25 +53,22 @@ Lastly, you deploy your Checks and related alert channels to Checkly, so we run npx checkly deploy ``` -You just created your entire synthetic monitoring setup with API and Playwright-based Browser Checks from your code base! +You just created your entire synthetic monitoring setup with API and Playwright-based Browser Checks from your code base! Open up [your Checkly dashboard](https://app.checklyhq.com) and you should see your check, ready to start monitoring around the clock. For a custom installation check out [our installation docs](/cli/installation/). -## Using AI IDEs and Copilots +## Using Agents, AI IDEs and Copilots -Checkly is designed to work with AI IDEs and Copilots. You can use your preferred provider to generate code for API +Checkly is designed to work with Agents, AI IDEs, and Copilots. You can use your preferred provider to generate code for API Checks, Browser Checks and all other constructs. - - - Download the Checkly instructions file and let copilot generate Checkly CLI code for you. + + + Install the Checkly Skills and let AI agents generate Checkly CLI code for you. - - Download the Checkly `.mdc` rules file and let Cursor generate Checkly CLI code for you. - - - Download the Checkly rules file and let Claude generate Checkly CLI code for you. + + Include the Checkly Rules in your conversations to generate Checkly CLI code for you. @@ -80,4 +77,4 @@ Checks, Browser Checks and all other constructs. After kicking the tires, you should delegate the testing and deploying of your checks to your CI/CD pipeline. Check our docs on [setting up the Checkly CLI with your favourite CI/CD platform](/integrations/ci-cd/overview). - \ No newline at end of file + From db298a022b4afcfcc7fe4e5805e557d89cd1ef93 Mon Sep 17 00:00:00 2001 From: Stefan Judis Date: Wed, 11 Feb 2026 14:57:50 +0100 Subject: [PATCH 07/10] Update cli/overview.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: María de Antón --- cli/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/overview.mdx b/cli/overview.mdx index 2818b96b..6ef1f35a 100644 --- a/cli/overview.mdx +++ b/cli/overview.mdx @@ -65,7 +65,7 @@ Checks, Browser Checks and all other constructs. - Install the Checkly Skills and let AI agents generate Checkly CLI code for you. + Install Checkly Skills and let AI agents generate Checkly monitoring code for you. Include the Checkly Rules in your conversations to generate Checkly CLI code for you. From e48c2d8227ce94ba73f3a3d0fb92bbf628a35598 Mon Sep 17 00:00:00 2001 From: Stefan Judis Date: Wed, 11 Feb 2026 14:58:05 +0100 Subject: [PATCH 08/10] Update cli/overview.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: María de Antón --- cli/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/overview.mdx b/cli/overview.mdx index 6ef1f35a..f2a1eca0 100644 --- a/cli/overview.mdx +++ b/cli/overview.mdx @@ -68,7 +68,7 @@ Checks, Browser Checks and all other constructs. Install Checkly Skills and let AI agents generate Checkly monitoring code for you. - Include the Checkly Rules in your conversations to generate Checkly CLI code for you. + Include the Checkly Rules in your conversations to generate Checkly monitoring code for you. From 5a40bafe7db7cdaf2431548928ba6d1dae84e73e Mon Sep 17 00:00:00 2001 From: Stefan Judis Date: Wed, 11 Feb 2026 14:58:19 +0100 Subject: [PATCH 09/10] Update integrations/ai/overview.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: María de Antón --- integrations/ai/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/ai/overview.mdx b/integrations/ai/overview.mdx index 21589b46..07956664 100644 --- a/integrations/ai/overview.mdx +++ b/integrations/ai/overview.mdx @@ -72,5 +72,5 @@ The MCP concept is often used to enable LLMs to interact with external systems. Whether you need to create new resources or update existing ones, AI can write and update the necessary construct files and execute the Checkly CLI commands autonomously. -We are investigating additional AI-native workflows. [Let us know in the public roadmap](https://feedback.checklyhq.com/p/checkly-mcp) if you are interested in more agent-friendly integrations. +We are researching additional AI-native workflows. [Let us know in the public roadmap](https://feedback.checklyhq.com/p/checkly-mcp) if you are interested in more agent-friendly integrations. From bd1ed441f0a95d27a642cf7abb396e1b957e2292 Mon Sep 17 00:00:00 2001 From: Stefan Judis Date: Wed, 11 Feb 2026 14:58:40 +0100 Subject: [PATCH 10/10] Update integrations/ai/skills.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: María de Antón --- integrations/ai/skills.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/ai/skills.mdx b/integrations/ai/skills.mdx index 01148ee0..747219c3 100644 --- a/integrations/ai/skills.mdx +++ b/integrations/ai/skills.mdx @@ -29,7 +29,7 @@ This will make the Checkly Skills available to your AI agent. When your agent ne ⏺ I'll create a new URLMonitor for example.com! ``` -Thanks to [Monitoring as Code](/concepts/monitoring-as-code), you can now control your monitoring setup with AI agents without needing a specific MCP server or API for your monitoring. Just give your agent the necessary context and let it use the Checkly Skills to manage your monitoring setup effectively. +Using [Monitoring as Code](/concepts/monitoring-as-code), you can now control your monitoring setup with AI agents without needing a specific MCP server or API for your monitoring. Just give your agent the necessary context and let it use the Checkly Skills to manage your monitoring setup effectively. ## Additional resources