From 0d5b683fb048ed9c82a40fda4248645873f1e1ff Mon Sep 17 00:00:00 2001 From: Oz Date: Thu, 6 Aug 2026 17:49:00 +0000 Subject: [PATCH 1/2] fix(redirects): add no-slash redirect for /agent-platform/capabilities/computer-use Vercel matches redirect sources as exact path strings, so the existing trailing-slash rule never fires for the no-slash URL published in a blog post, which 404s instead of reaching the canonical Computer Use page. Co-Authored-By: Warp Co-Authored-By: Warp Agent --- vercel.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vercel.json b/vercel.json index 21517197..f1eff390 100644 --- a/vercel.json +++ b/vercel.json @@ -125,6 +125,11 @@ "destination": "/agents/capabilities/codebase-context/", "statusCode": 308 }, + { + "source": "/agent-platform/capabilities/computer-use", + "destination": "/agents/capabilities/computer-use/", + "statusCode": 308 + }, { "source": "/agent-platform/capabilities/computer-use/", "destination": "/agents/capabilities/computer-use/", From 03e8d9b2e3a8e59a98be31bb816710550795ed88 Mon Sep 17 00:00:00 2001 From: Rachael Rose Renk <91027132+rachaelrenk@users.noreply.github.com> Date: Thu, 6 Aug 2026 15:16:07 -0600 Subject: [PATCH 2/2] chore: retrigger CI CodeQL default-setup jobs were cancelled after sitting queued without a runner. Empty commit to retrigger checks. Co-Authored-By: Warp Agent