بنقرة واحدة
lint-project
Validate code quality by running linting, formatting, and static analysis checks
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Validate code quality by running linting, formatting, and static analysis checks
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Execute comprehensive test suite with coverage reporting
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
Detects code smells, anti-patterns, and readability issues. Use when implementing features, reviewing code, or refactoring.
Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.
| name | lint-project |
| description | Validate code quality by running linting, formatting, and static analysis checks |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"code-quality"} |
After making code changes, I run the project's linting pipeline to catch quality issues early:
Use this skill after making code changes:
I execute: make check
This Makefile target orchestrates the full linting pipeline defined in your project:
make check
Which runs:
uv lock --locked - Validates lock fileuv run pre-commit run -a - All pre-commit hooksuv run mypy - Strict type checkinguv run deptry . - Dependency validationI'll show you:
If make check fails:
uv run ruff format . to auto-fixuv run ruff check --fix . for auto-fixable checksAfter you make changes, ask me to:
Or I may automatically suggest this skill after you've made code changes.
Related Skills: test-project, check-project