From 07acf93f635a28f7ba313806c87b6f137f2100de Mon Sep 17 00:00:00 2001 From: Maximilian Kaske <56969857+mxkaske@users.noreply.github.com> Date: Tue, 23 Jun 2026 09:57:50 +0200 Subject: [PATCH] fix: use root paths in blog token table (#2300) Claude-Session: https://claude.ai/code/session_01RLFMEmdv3BBnCAfAjVNe2v Co-authored-by: Claude --- .../content/pages/blog/status-page-markdown-for-agents.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/content/pages/blog/status-page-markdown-for-agents.mdx b/apps/web/src/content/pages/blog/status-page-markdown-for-agents.mdx index 4f61e413..1b34e402 100644 --- a/apps/web/src/content/pages/blog/status-page-markdown-for-agents.mdx +++ b/apps/web/src/content/pages/blog/status-page-markdown-for-agents.mdx @@ -35,8 +35,8 @@ Same status page, fetched both ways, then tokenized: | Request | What you get | Bytes | Tokens | | --- | --- | --- | --- | -| `GET /status` | HTML | ~166 KB | ~59,500 | -| `GET /status.md` *(or `Accept: text/markdown`)* | markdown | ~4.7 KB | ~1,225 | +| `GET /` | HTML | ~166 KB | ~59,500 | +| `GET /.md` *(or `Accept: text/markdown`)* | markdown | ~4.7 KB | ~1,225 | | **Shrinks by** | | **~36×** | **~49×** | That's a status page going from ~59,500 tokens to ~1,225 - roughly **49× lighter**. The `.md` suffix and the `Accept` header return byte-identical markdown; how you ask doesn't change what you get. The homepage tells the same story: ~181 KB / ~60,000 tokens of HTML collapse to ~8.8 KB / ~2,100 tokens as `/index.md`, about **28× lighter**. -- 2.51.2