원클릭으로
lint-and-fix
Automated linting and fixing loop using `make lint`. Use when you need to resolve linter violations across the codebase.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Automated linting and fixing loop using `make lint`. Use when you need to resolve linter violations across the codebase.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement or refactor a dbt custom generic data test using this package’s patterns (test block, adapter.dispatch, BigQuery-only implementations, macro property YAML, integration_tests fixtures). Use when adding a new generic test, splitting test/query/validation macros, fixing undefined test_* macros from a package, or aligning with dbt’s generic test docs.
Autonomously run tests, analyze failures, and fix them in the `integration_tests` directory.
| name | lint-and-fix |
| description | Automated linting and fixing loop using `make lint`. Use when you need to resolve linter violations across the codebase. |
This skill provides an autonomous loop to identify, fix, and verify linter violations in the codebase using the project's make lint command (which runs pre-commit).
make lint from the workspace root to list current violations.pre-commit (like black, ruff, prettier) can auto-fix issues.pre-commit auto-fixes files, review the changes.make lint.
make lint exits with code 0 (all checks passed).make lint fails with ruff and black errors.make lint again (some linters auto-fix).make lint passes.