Features
xSpeed Hub Pricing Docs Blog Scan
Appearance
Get Plugin
79of 100

speed.press

Scanned Tue, 15 Sep 2026 10:25:21 GMT · https://speed.press/ · scanned 3 times — see history

CLevel 4 · Fast
Graded on mobileAstro
Mobile view of speed.press at scan time. Click for full size
As Lighthouse saw it · click to enlarge
686msTTFB
100Lighthouse desktop
100Lighthouse mobile · graded
920msLCP
0.00CLS
brCompression
MISSCache

Lab data: Lighthouse 13.4.1 mobile run, graded above · Reproduce this run on PageSpeed Insights ↗

Why is this different from the score in my browser?

This view grades the mobile run. Lighthouse 13.4.1 runs at Google through the PageSpeed Insights API on an emulated mid-range Android with a 4× CPU slowdown and a throttled connection. Chrome DevTools on your own machine, on the Desktop preset, applies almost none of that, and the same page routinely scores 30–50 points higher there. Neither number is wrong — they are different tests.

Mobile is what Google ranks on, so this is the number that affects your search performance. This report predates the desktop-graded headline: only the mobile run was graded. To reproduce it, open the same run on PageSpeed Insights, or pass strategy=mobile to the PageSpeed API — it defaults to desktop.

Lighthouse also varies a few points run to run on the same URL. Treat a trend across several scans as the signal, never a single digit.

Lab data: Google PageSpeed Insights (Lighthouse, mobile). Server probes (TTFB, compression, cache, headers) are measured separately from Vilnius, Lithuania (EU).

Astro what actually works on this platform

Astro ships no JavaScript unless you ask for it, so a slow Astro site is almost always one of two things: islands hydrating when they do not need to, or the HTML being built per request when it could have been built once.

  • Nothing indicated the HTML came from a cache on this request, which is worth confirming: a static Astro build should be served straight off a CDN.
  • A crawler reads about 5,703 characters of text from your HTML — healthy, which is what Astro is good at.
  • No CDN detected in front of the site — for a static Astro build that is the cheapest win available.
  1. Check your client: directives before anything else. client:load hydrates an island immediately and costs the visitor JavaScript on first paint. client:visible defers it until the component scrolls into view and client:idle until the browser is free; most islands want one of those. A page full of client:load is the usual reason an Astro site feels heavy.
  2. Know whether each route is static or server-rendered. Astro can output a static file, render per request, or mix the two per route. A page with no per-visitor content that is rendered per request pays for it on every visit. Prerender the ones that can be, and let the CDN serve them.
  3. Use astro:assets for images. It emits modern formats at the sizes actually used and reserves the space so the layout does not shift. Raw <img> tags are usually the largest remaining payload on an otherwise lean Astro site.
  4. Watch what a shared layout pulls in. An import in a layout is charged to every page that uses it. One heavy component or icon set there outweighs anything you will save on an individual route.

The full instruction set, and a machine-readable copy of this report, live at speed.press.md — paste that URL into your AI builder's chat and it can work straight from these measurements.

Top fixes ranked by points recovered

This is an Astro site — act on the report with your AI assistant

  1. Platform detectedAstro — every check below links the official guideline for the fix in this stack.
  2. Act on it with your AIThe machine-readable twin of this report gives an agent every failing check with its evidence, remediation and guideline link.
  3. Check the originHosting sets the floor on TTFB. xCloud hosts any stack — agent/MCP access built in, bring-your-own-server pricing.

xSpeed is a WordPress plugin, so it can't automate Astro fixes — and that's fine. Every check below links its official guideline, and the machine-readable twin of this report gives an AI everything it needs to plan the work (5 checks name a concrete remediation):

Read the speed report at https://xspeedcache.com/scan/r/speed-press-34bb062720.md — it lists every failing check with evidence and the official guideline for the fix. Produce a prioritized fix plan for my Astro site, apply what you can, then re-test by POSTing {"url":"https://speed.press/"} to https://xspeedcache.com/api/scan and compare the scores.
How the checks are graded Scan another site
Hosting is half of every score — and 686ms to first byte says the origin is struggling. Whatever the stack — Astro included, the server behind it sets the floor on TTFB. xCloud — from the team behind xSpeed — hosts any platform (this site's own scanner runs on it), with agent/MCP access built in and bring-your-own-server pricing. Explore xCloud.host →

Connect this scanner to your AI assistant

Free. No API key, no sign-up. Scan any public site and get the same graded report as this one, with the fix for every failing check.

Endpoint

https://xspeedcache.com/scan/mcp

Claude Code — one command

claude mcp add --transport http xspeed-scan https://xspeedcache.com/scan/mcp

Claude Desktop, Cursor, or any MCP client — add to your config

{ "mcpServers": { "xspeed-scan": { "type": "http", "url": "https://xspeedcache.com/scan/mcp" } } }
  • run_speed_scan Scan any public URL and return this whole graded report.
  • get_speed_scan Read a scan already run, by its id.
Read the MCP documentation →
A+

Core Web Vitals & lab metrics

5/5 checks passed · 40/40 pts earned
100/100
Pass
Lighthouse performance score (mobile) 18/18 pts
100/100 (Lighthouse 13.4.1, mobile)
Pass
Largest Contentful Paint ≤ 2.5s 8/8 pts
LCP 920ms
Pass
Cumulative Layout Shift ≤ 0.1 5/5 pts
CLS 0.000
Pass
Total Blocking Time ≤ 200ms 5/5 pts
TBT 0ms
Pass
First Contentful Paint ≤ 1.8s 4/4 pts
FCP 838ms
F

Server response & caching

2/6 checks passed · 9.5/27 pts earned
35/100
Fail
Time to first byte ≤ 200ms 0/8 pts
TTFB 686ms measured from Vilnius, Lithuania (EU) (best of 2 requests). This includes the network round trips between us and your origin, not just server time. Google measured your server responding in 2ms from its own network — the gap between the two numbers is distance, not your server.
The server rebuilds the page on every request. A page cache answers in 5–15ms.
xSpeed Free Page Cache
AI promptUsing my site's xSpeed MCP connection: enable page caching and warm this page with the preloader, then re-check TTFB.
Fail
Page served from cache 0/7 pts
No cache evidence in headers or HTML
Serve HTML from a static cache instead of rebuilding it per visitor.
xSpeed Free Page Cache + Preloader
AI promptUsing my site's xSpeed MCP connection: enable page caching, start the preloader so pages are pre-warmed, and confirm get_cache_status reports hits.
Pass
HTML compression (Brotli/GZIP) 5/5 pts
Content-Encoding: br
Partial
Efficient cache policy on static assets 2.5/5 pts
Lighthouse cache-policy audit score 50% — 1 file: logo.svg
Give CSS/JS/images long Cache-Control lifetimes so repeat views are free.
xSpeed Free Browser Cache
AI promptUsing my site's xSpeed MCP connection: enable browser-cache headers for static assets, then re-run the audit.
Info
CDN / edge network
No CDN signature detected
Optional: put a CDN or Cloudflare in front for global edge delivery.
xSpeed Free Cloudflare integration / CDN rewriter
AI promptUsing my site's xSpeed MCP connection: connect Cloudflare (or configure the CDN rewriter) and purge, then re-scan.
Pass
Clean redirect chain 2/2 pts
No redirects — the URL answers directly
A+

Asset optimization

4/5 checks passed · 16/16 pts earned
100/100
Pass
No render-blocking resources 5/5 pts
Passes the Lighthouse audit
Pass
Minified CSS and JavaScript 4/4 pts
Passes the Lighthouse audit
Pass
Modern, optimized image formats 4/4 pts
Passes the Lighthouse audit
Info
LCP image discoverable early
Audit not reported for this page
Re-run when Lighthouse is available.
xSpeed Free Resource Hints (preload) + Lazy Load exclusions
AI promptUsing my site's xSpeed MCP connection: preload the LCP image for this page and exclude it from lazy loading, then re-test LCP.
Pass
Total page weight ≤ 1.5MB 3/3 pts
0.0MB transferred

Past scans of speed.press newest first · every report keeps its link

ScannedScoreGradeGraded onTTFBLighthouse
2026-09-20 10:22 UTC 97 A+ desktop 130ms 100 View report →
2026-09-15 10:25 UTC this report 79 C mobile 686ms 100
2026-09-15 09:37 UTC 75 C mobile 504ms 100 View report →

Reports graded on different runs are not a trend: mobile-graded rows are the older rubric's headline, desktop-graded rows the current one. Compare like with like.

Share your score a card for X, LinkedIn, Slack — anywhere

Every check here has a one-click fix in xSpeed Cache

xSpeed is launching soon — page caching, compression, image optimization and a built-in MCP server so your AI assistant can run this playbook for you. Early users get in first.

Scan speed-press-34bb062720 · rubric v2026.09.2 · Lab data: Google PageSpeed Insights (Lighthouse 13.4.1), graded on the mobile run · Server probes from xspeedcache.com. Scores vary run to run; treat trends, not single digits, as the signal. Markdown for AI agents · JSON
Own speed.press and would rather this report were not public? Email support@wpdeveloper.com and we will remove it.