Agent Skills: SwiftLint Auto-Fix Workflow

Run SwiftFormat and fix all auto-correctable SwiftLint issues

UncategorizedID: willsigmon/sigstack/swiftlint-autofix

Install this agent skill to your local

pnpm dlx add-skill https://github.com/willsigmon/sigstack/tree/HEAD/claude/skills/swiftlint-autofix

Skill Files

Browse the full folder contents for swiftlint-autofix.

Download Skill

Loading file tree…

claude/skills/swiftlint-autofix/SKILL.md

Skill Metadata

Name
swiftlint-autofix
Description
Run SwiftFormat and fix all auto-correctable SwiftLint issues

SwiftLint Auto-Fix Workflow

Automatically fix code style issues:

  1. Run SwiftFormat:
make format
  1. Run SwiftLint with autocorrect:
swiftlint --fix --quiet
  1. Check remaining issues:
swiftlint | grep -E "(error:|warning:)" | head -20
  1. Report:
  • Files formatted count
  • Issues auto-fixed count
  • Remaining manual issues
  • File paths needing manual attention

Return concise summary of what was fixed.

SwiftLint Auto-Fix Workflow Skill | Agent Skills