3.5k★by lxgicstudios
vitals-fixer – OpenClaw Skill
vitals-fixer is an OpenClaw Skills integration for coding workflows. Fix Core Web Vitals issues with AI guidance. Use when your Lighthouse scores need improvement.
Skill Snapshot
| name | vitals-fixer |
| description | Fix Core Web Vitals issues with AI guidance. Use when your Lighthouse scores need improvement. OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/vitals-fixer |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/vitals-fixer |
| last updated | Feb 7, 2026 |
Maintainer

name: vitals-fixer description: Fix Core Web Vitals issues with AI guidance. Use when your Lighthouse scores need improvement.
Core Web Vitals Fixer
Your Lighthouse scores are red. This tool tells you exactly why and how to fix it. LCP, FID, CLS. all the acronyms, all the solutions. No more guessing at performance problems.
One command. Zero config. Just works.
Quick Start
npx ai-core-vitals ./src
What It Does
- Analyzes your code for Core Web Vitals issues
- Identifies LCP bottlenecks like render-blocking resources
- Finds CLS causes like images without dimensions
- Spots FID problems from heavy JavaScript execution
- Provides specific code changes, not just generic advice
Usage Examples
# Full project analysis
npx ai-core-vitals ./
# Focus on specific metric
npx ai-core-vitals ./src --metric lcp
# Analyze with a URL for real data
npx ai-core-vitals ./src --url https://yoursite.com
# Prioritized fix list
npx ai-core-vitals ./src --prioritize
# Output detailed report
npx ai-core-vitals ./src -o vitals-report.md
Best Practices
- Fix LCP first - It's the biggest impact on perceived performance
- Measure before and after - Run Lighthouse to validate your fixes
- Don't trust dev mode - Production builds behave differently. Test both
- Focus on the biggest wins - One large image fix beats ten micro-optimizations
When to Use This
- Failed a Core Web Vitals assessment on Search Console
- Preparing for a Lighthouse audit
- Client complains the site feels slow
- Building performance regression tests
Part of the LXGIC Dev Toolkit
This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.
Find more:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgic.dev
Requirements
No install needed. Just run with npx. Node.js 18+ recommended.
npx ai-core-vitals --help
How It Works
The tool scans your source files for patterns known to hurt Web Vitals. It identifies specific issues like unoptimized images, missing preloads, layout-shifting elements, and heavy bundle imports. AI correlates these findings with your actual code to suggest targeted fixes.
License
MIT. Free forever. Use it however you want.
ai-core-vitals
Fix Core Web Vitals issues with AI guidance.
Install
npm install -g ai-core-vitals
Usage
npx ai-core-vitals ./src/
npx ai-core-vitals ./app/
Setup
export OPENAI_API_KEY=sk-...
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. ```bash npx ai-core-vitals --help ```
FAQ
How do I install vitals-fixer?
Run openclaw add @lxgicstudios/vitals-fixer in your terminal. This installs vitals-fixer into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/vitals-fixer. Review commits and README documentation before installing.
