From 38dc89b12cdf4638fb1512cffc6116d71332c3d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 00:29:11 +0000 Subject: [PATCH 1/3] Initial plan From 1dd0b9364b11f3ca12ab2009104afa2e84f24737 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 00:34:35 +0000 Subject: [PATCH 2/3] docs: add agent-factory-status to sidebar TOC and fix badge height CSS Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/gh-aw/sessions/29be5406-05e6-4d4e-bf97-a8793eab4d37 --- docs/astro.config.mjs | 1 + docs/src/styles/custom.css | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index acba93764e6..961d8b32764 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -342,6 +342,7 @@ export default defineConfig({ autogenerate: { directory: 'troubleshooting' }, }, { label: 'Editors', link: '/reference/editors/' }, + { label: 'Agent Factory', link: '/agent-factory-status/' }, ], }), ], diff --git a/docs/src/styles/custom.css b/docs/src/styles/custom.css index 7f3b2e3d899..8cd89a313b7 100644 --- a/docs/src/styles/custom.css +++ b/docs/src/styles/custom.css @@ -1519,6 +1519,12 @@ a:hover { color: #ffffff; } +/* Action status badges — uniform height so all rows have consistent sizing */ +table img[src*="badge.svg"] { + height: 20px; + vertical-align: middle; +} + /* Hero Styling */ .hero { background: transparent; From 2ed85582dc15edd3154cfc06e51d36064ea90db1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 00:39:54 +0000 Subject: [PATCH 3/3] docs: move Agent Factory sidebar entry before Editors at bottom Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/gh-aw/sessions/ae4115f2-55a8-42b7-a3de-3bc4dfc024bb --- 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 961d8b32764..230ac93b6c1 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -341,8 +341,8 @@ export default defineConfig({ label: 'Troubleshooting', autogenerate: { directory: 'troubleshooting' }, }, - { label: 'Editors', link: '/reference/editors/' }, { label: 'Agent Factory', link: '/agent-factory-status/' }, + { label: 'Editors', link: '/reference/editors/' }, ], }), ],