gsd-audit-fix

Automate code quality issue detection, classification, and test-verified fixes.

Updated Apr 22, 2026
One-click install
npx skills add https://github.com/hadpadrahul/school-erp --skill gsd-audit-fix
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gsd-audit-fix
Source: https://github.com/hadpadrahul/school-erp/tree/main/.codex/skills/gsd-audit-fix
Command: npx skills add https://github.com/hadpadrahul/school-erp --skill gsd-audit-fix

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Autonomous audit-to-fix pipeline that automatically discovers issues, classifies them by fixability and severity, and applies safe fixes with verification.

Core Features & Use Cases

  • Automated issue detection and classification
  • Autonomous fixes with test verification and atomic commits
  • Works with CI-enabled codebases and reports non-fixable findings for manual review

Quick Start

Invoke the audit-to-fix workflow using the $gsd-audit-fix trigger to start an autonomous audit.

Frequently Asked Questions about gsd-audit-fix

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate code quality issue detection and remediation in my CI pipeline?

Automating code quality remediation requires a tool that detects issues, classifies them by severity, and applies safe fixes. This Skill autonomously audits codebases, verifies patches through tests, and commits fixes while reporting non-fixable findings for manual review.

Can I automatically fix code findings by severity and limit the number of applied patches?

Yes, you can filter code findings by severity and limit applied patches using configurable flags like --max and --severity. The Skill classifies issues by fixability and severity, applying only safe fixes that match your constraints before verifying them through tests.

How does autonomous audit-to-fix handle test verification before committing code changes?

Autonomous audit-to-fix pipelines verify patches by integrating directly with your existing test suites. After classifying and applying a fix, the Skill runs tests to verify the patch before committing the changes atomically to ensure codebase stability.

What is the best way to preview automatic code fixes without modifying the repository?

To preview automatic code fixes without modifying the repository, run the audit-to-fix workflow using the --dry-run flag. This evaluates the codebase, classifies findings by severity, and simulates fixes without applying patches or making atomic commits.

Does this autonomous code fix workflow require a CI-enabled codebase to function?

Yes, the autonomous code fix workflow is designed for codebases with CI pipelines. It relies on existing test suites to verify fixes before committing, ensuring that automatically applied patches for classified code quality issues do not break the build.

What happens to code quality findings that cannot be fixed autonomously?

Code quality findings that cannot be fixed autonomously are reported for manual review. The Skill detects and classifies issues by fixability, automatically remediates safe ones with test verification, and flags the rest so developers can address them manually.