From 6a5c878099d34757e52f15d58a9a584e2398213f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 14:30:53 +0000 Subject: [PATCH 1/6] Initial plan From 3d580d523ec7bb1e15adde893288ba2296fa6e59 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 14:52:10 +0000 Subject: [PATCH 2/6] Add broken redirects for patterns pages Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/astro.config.mjs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index ea750ebbaf8..f9d153ce565 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -126,6 +126,16 @@ export default defineConfig({ '/patterns/specops/': '/patterns/spec-ops/', '/patterns/taskops/': '/patterns/task-ops/', '/patterns/trialops/': '/patterns/trial-ops/', + + // Patterns with /gh-aw/ base prefix that has wrong slug + '/gh-aw/patterns/chatops/': '/patterns/chat-ops/', + + // Patterns missing /gh-aw/ base prefix → correct paths with base + '/patterns/daily-ops/': 'https://github.github.com/gh-aw/patterns/daily-ops/', + '/patterns/data-ops/': 'https://github.github.com/gh-aw/patterns/data-ops/', + '/patterns/issue-ops/': 'https://github.github.com/gh-aw/patterns/issue-ops/', + '/patterns/project-ops/': 'https://github.github.com/gh-aw/patterns/project-ops/', + '/patterns/multi-repo-ops/': 'https://github.github.com/gh-aw/patterns/multi-repo-ops/', }, integrations: [ mermaid(), From 87262c21a9e07b4b648ddf3fa6d0f4a82b0d75b3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:01:24 +0000 Subject: [PATCH 3/6] Remove redirects for /patterns/* missing-base-prefix URLs Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/astro.config.mjs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index f9d153ce565..caf9ab51375 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -129,13 +129,6 @@ export default defineConfig({ // Patterns with /gh-aw/ base prefix that has wrong slug '/gh-aw/patterns/chatops/': '/patterns/chat-ops/', - - // Patterns missing /gh-aw/ base prefix → correct paths with base - '/patterns/daily-ops/': 'https://github.github.com/gh-aw/patterns/daily-ops/', - '/patterns/data-ops/': 'https://github.github.com/gh-aw/patterns/data-ops/', - '/patterns/issue-ops/': 'https://github.github.com/gh-aw/patterns/issue-ops/', - '/patterns/project-ops/': 'https://github.github.com/gh-aw/patterns/project-ops/', - '/patterns/multi-repo-ops/': 'https://github.github.com/gh-aw/patterns/multi-repo-ops/', }, integrations: [ mermaid(), From 9e8b43e0fc167b31c0b83f29d7566214eaa5edd3 Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Thu, 26 Feb 2026 07:08:34 -0800 Subject: [PATCH 4/6] Update astro.config.mjs --- docs/astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index caf9ab51375..33de458791b 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -128,7 +128,7 @@ export default defineConfig({ '/patterns/trialops/': '/patterns/trial-ops/', // Patterns with /gh-aw/ base prefix that has wrong slug - '/gh-aw/patterns/chatops/': '/patterns/chat-ops/', + '/patterns/chatops/': '/patterns/chat-ops/', }, integrations: [ mermaid(), From 4d7080d99c5451e6a7f8be24fb837cda5c5e59d8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:15:47 +0000 Subject: [PATCH 5/6] Remove duplicate chatops redirect - already covered by existing entry Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/astro.config.mjs | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 33de458791b..ea750ebbaf8 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -126,9 +126,6 @@ export default defineConfig({ '/patterns/specops/': '/patterns/spec-ops/', '/patterns/taskops/': '/patterns/task-ops/', '/patterns/trialops/': '/patterns/trial-ops/', - - // Patterns with /gh-aw/ base prefix that has wrong slug - '/patterns/chatops/': '/patterns/chat-ops/', }, integrations: [ mermaid(), From 664f8c91bb4e08c6f1e491af4d586887b3ad7583 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 16:06:28 +0000 Subject: [PATCH 6/6] Fix chatops redirect destination to include /gh-aw/ base prefix Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index ea750ebbaf8..68c900b44a4 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -114,7 +114,7 @@ export default defineConfig({ // Patterns unhyphenated → hyphenated slugs '/patterns/centralrepoops/': '/patterns/central-repo-ops/', - '/patterns/chatops/': '/patterns/chat-ops/', + '/patterns/chatops/': '/gh-aw/patterns/chat-ops/', '/patterns/dailyops/': '/patterns/daily-ops/', '/patterns/dataops/': '/patterns/data-ops/', '/patterns/dispatchops/': '/patterns/dispatch-ops/',