skills$openclaw/audit-fixer
lxgicstudios4.9k

by lxgicstudios

audit-fixer – OpenClaw Skill

audit-fixer is an OpenClaw Skills integration for coding workflows. Analyze npm audit output with AI and get actionable fix suggestions. Use when dealing with security vulnerabilities.

4.9k stars4.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameaudit-fixer
descriptionAnalyze npm audit output with AI and get actionable fix suggestions. Use when dealing with security vulnerabilities. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/audit-fix
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/audit-fix
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains audit-fixer in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
812 B
index.ts
1.1 KB
_meta.json
282 B
package-lock.json
30.2 KB
package.json
661 B
README.md
625 B
SKILL.md
2.5 KB
tsconfig.json
251 B
SKILL.md

name: audit-fixer description: Analyze npm audit output with AI and get actionable fix suggestions. Use when dealing with security vulnerabilities.

Audit Fixer

npm audit shows 47 vulnerabilities. Half are in nested dependencies you can't control. This tool analyzes your audit results and gives you actionable fixes. Which ones matter, which to ignore, and exactly what to do about each.

One command. Zero config. Just works.

Quick Start

npm audit --json | npx ai-audit-fix

What It Does

  • Analyzes npm audit output and prioritizes by real risk
  • Identifies which vulnerabilities actually affect your code
  • Provides specific fix commands for each issue
  • Explains when to override vs when to actually fix
  • Distinguishes between dev and production dependencies

Usage Examples

# Pipe audit output directly
npm audit --json | npx ai-audit-fix

# Analyze from a saved file
npx ai-audit-fix --input audit-results.json

# Only show high and critical issues
npm audit --json | npx ai-audit-fix --severity high,critical

# Get fix commands only
npm audit --json | npx ai-audit-fix --fixes-only

Best Practices

  • Focus on production deps first - Dev dependencies don't ship to users
  • Check if vulnerable code is actually called - Many vulnerabilities are in code paths you never use
  • Update parent packages first - Often fixes multiple nested vulnerabilities at once
  • Use overrides carefully - Document why you're overriding and set a reminder to revisit

When to Use This

  • npm audit shows a wall of red and you don't know where to start
  • CI is failing on security checks
  • Need to report on vulnerabilities to a security team
  • Deciding whether to delay a release for security fixes

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.

npx ai-audit-fix --help

How It Works

The tool parses npm audit JSON output, analyzes each vulnerability's dependency chain and severity, determines if it affects your production code, then generates prioritized recommendations with specific fix commands.

License

MIT. Free forever. Use it however you want.

README.md

ai-audit-fix

Analyze npm audit output with AI and get clear, actionable fix suggestions instead of cryptic vulnerability reports.

Install

npm install -g ai-audit-fix

Usage

npx ai-audit-fix

Run it in any project with a package.json. It runs npm audit under the hood, sends the results to GPT-4o-mini, and gives you a plain English breakdown with exact fix commands.

Setup

export OPENAI_API_KEY=sk-...

What you get

  • Vulnerability summary (critical/high/moderate/low counts)
  • Plain English explanation of each issue
  • Exact commands to fix them

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-audit-fix --help ```

FAQ

How do I install audit-fixer?

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