skills$openclaw/responsive-fix
lxgicstudios5.9k

by lxgicstudios

responsive-fix – OpenClaw Skill

responsive-fix is an OpenClaw Skills integration for coding workflows. Make components responsive with proper breakpoints

5.9k stars8.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameresponsive-fix
descriptionMake components responsive with proper breakpoints OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/ai-responsive
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/ai-responsive
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains responsive-fix in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
474 B
SKILL.md
1.2 KB
SKILL.md

name: responsive-fix description: Make components responsive with proper breakpoints

Responsive Fixer

Paste your desktop-only component, get mobile-responsive code back.

Quick Start

npx ai-responsive ./src/components/Dashboard.tsx

What It Does

  • Analyzes layout structure
  • Adds proper breakpoints
  • Converts fixed widths to responsive
  • Handles grid/flex adjustments
  • Adds mobile-first styles

Usage Examples

# Fix a component
npx ai-responsive ./src/components/Sidebar.tsx

# Specify breakpoints
npx ai-responsive ./components/Nav.tsx --breakpoints sm,md,lg

# CSS-in-JS output
npx ai-responsive ./components/Card.tsx --format styled

What It Fixes

  • Fixed pixel widths → responsive units
  • Desktop grids → mobile stacks
  • Hidden mobile elements → proper show/hide
  • Touch targets → 48px minimum
  • Font sizes → responsive scaling

Output Example

// Before: grid-cols-4
// After: grid-cols-1 sm:grid-cols-2 lg:grid-cols-4

Requirements

Node.js 18+. OPENAI_API_KEY required.

License

MIT. Free forever.


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

Node.js 18+. OPENAI_API_KEY required.

FAQ

How do I install responsive-fix?

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