From 98d3c6fcb7bec26e78abcc3ac5f42329a18cea17 Mon Sep 17 00:00:00 2001 From: Nik Hagoort Date: Mon, 10 Nov 2025 10:16:38 -0600 Subject: [PATCH 1/3] Fix URL in Windows setup instructions --- integrations/ai/copilot.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/ai/copilot.mdx b/integrations/ai/copilot.mdx index 9e4ae32e..68b7c570 100644 --- a/integrations/ai/copilot.mdx +++ b/integrations/ai/copilot.mdx @@ -18,7 +18,7 @@ mkdir -p .github && curl -o .github/copilot-instructions.md "https://www.checkly ```bash setup-copilot-rules-windows New-Item -ItemType Directory -Path ".github\instructions" -Force -Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/docs/ai/checkly.rules.md" -OutFile ".github\copilot-instructions.md" +Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".github\copilot-instructions.md" ``` @@ -26,4 +26,4 @@ Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/docs/ai/checkly.rules. You can ask Copilot to install the `checkly` NPM package and generate code for API Checks, Browser checks, Multistep checks -and all other constructs. \ No newline at end of file +and all other constructs. From b65619357dd6cedd52d535ab4bd96978206a233e Mon Sep 17 00:00:00 2001 From: Nik Hagoort Date: Mon, 10 Nov 2025 10:27:44 -0600 Subject: [PATCH 2/3] Update file path for downloaded Copilot rules --- integrations/ai/copilot.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/ai/copilot.mdx b/integrations/ai/copilot.mdx index 68b7c570..a6738132 100644 --- a/integrations/ai/copilot.mdx +++ b/integrations/ai/copilot.mdx @@ -18,7 +18,7 @@ mkdir -p .github && curl -o .github/copilot-instructions.md "https://www.checkly ```bash setup-copilot-rules-windows New-Item -ItemType Directory -Path ".github\instructions" -Force -Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".github\copilot-instructions.md" +Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".github\instructions\checkly.rules.md" ``` From 5e8297dd21aca91fa717659144688e7bb1a38db7 Mon Sep 17 00:00:00 2001 From: Laura Guo <48332483+guolau@users.noreply.github.com> Date: Mon, 17 Nov 2025 17:57:06 -0500 Subject: [PATCH 3/3] Update Windows GH Copilot custom rules command to match Mac/Linux command --- integrations/ai/copilot.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/ai/copilot.mdx b/integrations/ai/copilot.mdx index a6738132..bb32902e 100644 --- a/integrations/ai/copilot.mdx +++ b/integrations/ai/copilot.mdx @@ -17,8 +17,8 @@ mkdir -p .github && curl -o .github/copilot-instructions.md "https://www.checkly ```bash setup-copilot-rules-windows -New-Item -ItemType Directory -Path ".github\instructions" -Force -Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".github\instructions\checkly.rules.md" +New-Item -ItemType Directory -Path ".github" -Force +Invoke-WebRequest -Uri "https://www.checklyhq.com/docs/ai/checkly.rules.md" -OutFile ".github\copilot-instructions.md" ```