skills$openclaw/core-vitals-fixer
lxgicstudios4.0k

by lxgicstudios

core-vitals-fixer – OpenClaw Skill

core-vitals-fixer is an OpenClaw Skills integration for coding workflows. Fix Core Web Vitals issues with AI guidance. Use when your Lighthouse scores are bad.

4.0k stars7.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namecore-vitals-fixer
descriptionFix Core Web Vitals issues with AI guidance. Use when your Lighthouse scores are bad. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/ai-core-vitals
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/ai-core-vitals
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains core-vitals-fixer in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
475 B
SKILL.md
2.1 KB
SKILL.md

name: core-vitals-fixer description: Fix Core Web Vitals issues with AI guidance. Use when your Lighthouse scores are bad.

Core Web Vitals Fixer

Your LCP is 4 seconds, CLS keeps jumping, and FID feels sluggish. This tool scans your code and tells you exactly what to fix and how.

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, FID, and CLS problems
  • Provides specific fixes with code examples
  • Prioritizes issues by impact

Usage Examples

# Scan your source directory
npx ai-core-vitals ./src/

# Scan app directory
npx ai-core-vitals ./app/

# Focus on specific metric
npx ai-core-vitals ./src/ --metric lcp

Best Practices

  • Fix LCP first - it's usually the biggest win
  • Lazy load below the fold - don't load what users can't see
  • Reserve space for images - prevents CLS
  • Defer non-critical JS - improves FID

When to Use This

  • Lighthouse scores are tanking your SEO
  • Users complain about slow page loads
  • Core Web Vitals failing in Search Console
  • Building a new site and want to start optimized

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:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.

npx ai-core-vitals --help

How It Works

Scans your code files for common performance antipatterns, then sends them to GPT-4o-mini. The AI identifies issues affecting LCP, CLS, and FID and provides actionable fixes with priority rankings.

License

MIT. Free forever. Use it however you want.


Built by LXGIC Studios

README.md

No README available.

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. Needs OPENAI_API_KEY environment variable. ```bash npx ai-core-vitals --help ```

FAQ

How do I install core-vitals-fixer?

Run openclaw add @lxgicstudios/ai-core-vitals in your terminal. This installs core-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/ai-core-vitals. Review commits and README documentation before installing.