From 88 to 100 PSI: Claude Code for Front-End Optimisation

A developer used Claude Code as a debugging and implementation partner to push their site's PageSpeed Insights mobile score from 88 to 100 (an article template went from 74 to 100). The post on r/ClaudeAI details the hands-on workflow — not a one-shot fix, but a series of targeted interventions.
Key Optimisations Achieved
- Responsive images + srcset: Claude identified that the mobile hero image was larger than needed, then generated responsive image variants and added
srcsetattributes. - LCP preload: Added a responsive preload for the LCP image using
<link rel="preload" as="image" imagesrcset="...">. - Forced reflow fix: Replaced a header scroll listener (which caused forced layout on scroll) with
IntersectionObserver. - Font audit: Identified which font weights were actually in use and removed unused ones.
- Build-time image dimensions: Added
widthandheightattributes to markdown images at build time to eliminate layout shifts. - Removed font preloads on article pages: Counterintuitive but effective — preloaded fonts were competing with the hero image for bandwidth on throttled mobile. Since fonts used
font-display: swap, removing preloads let the LCP image load faster.
Effective Prompting Pattern
The developer found Claude Code works best with specific diagnostic threads. Instead of vague prompts, feed it PSI findings and ask for the smallest safe patch. Example pattern: feed the PageSpeed Insights finding, ask Claude to inspect the relevant component, then request a minimal fix rather than a broad refactor.
Human Judgment Still Required
Some optimisations felt too aggressive visually — the author bumped logo quality back up while staying at 100. Below-the-fold images and styling trade-offs needed human decisions. Claude Code accelerated the iteration, but the developer still had to balance performance, accessibility, and design quality.
Full Write-Up
The author published a longer technical version with specific CWV changes and before/after numbers at goodrich.digital.
📖 Read the full source: r/ClaudeAI
👀 See Also

Making an MCP Server Install Itself: Three Hosts, Three Mechanisms, Gotchas
A deep dive into programmatically installing MCP servers across VS Code, Cursor, and Claude Code — covering APIs, file writes, and edge cases like malformed JSON, atomic writes, and idempotent updates.

Practical workflow patterns for reliable AI coding in multi-file projects
A Reddit user shares four specific workflow improvements that increased reliability for AI coding on multi-file projects: spec-first starts, task decomposition with checkpoints, stable operating loops, and signal-only review.

Solving Gemini CLI write_file Not Found in OpenClaw: Two Fixes Required
OpenClaw agents using google-gemini-cli can't write files (write_file / default_api_write_file missing) due to wrong tools.profile and missing --approval-mode auto_edit flag in the subprocess. Fix: set profile to full and inject the flag via cliBackends config.

OpenClaw Pre-Launch Checklist for Security and Reliability
A Reddit user shares a practical six-point checklist for OpenClaw setup before going live, covering access control, safety rules, memory management, automation testing, delivery validation, and failure handling.