lint-build-fixer

Installation
SKILL.md

Lint and Build Fixer

This skill provides a systematic workflow for resolving TypeScript and ESLint errors in a project.

Workflow

1. Discovery

Analyze package.json to identify relevant scripts:

  • Build/Type-check: Look for build, type-check, tsc, check-types.
  • Lint: Look for lint, eslint.

2. TypeScript/Build Fixes (Priority 1)

Fix all TypeScript or build-related errors before addressing linting.

  1. Identify Errors: Run the identified build or type-check command (e.g., npm run type-check). Alternatively, use IDE/editor TypeScript diagnostics.
  2. Iterative Fix: Address errors one by one or in small batches.
  3. Verify: Re-run the build/type-check command to ensure all errors are resolved.
  4. Commit: Use git commit -m "fixing the build" once the build is green.
Installs
3
First Seen
Feb 3, 2026
lint-build-fixer — vajahath/skill-lint-build-fixer