view --main python-linting-skill-dlya-proverki-kachestva-koda.md
python-linting: Скилл для проверки качества кода
SKILL.md
readonly
--- lines
---
name: python-linting
description: >
This skill helps lint Python code using ruff.
Use when the user asks to "lint", "check code quality", or "fix style issues".
license: MIT
compatibility: Requires Python and ruff
metadata:
author: openhands
version: "1.0"
triggers:
- lint
- linting
- code quality
- style check
- ruff
---
# Python Linting Skill
This skill provides instructions for linting Python code using ruff.
## How to Lint
Run ruff to check for issues:
```bash
ruff check .
```
To automatically fix issues:
```bash
ruff check --fix .
```
## Common Options
- `--select E,W` - Only check for errors and warnings
- `--ignore E501` - Ignore line length errors
- `--fix` - Automatically fix fixable issues
## Example Output
```
example.py:1:1: F401 [*] `os` imported but unused
example.py:5:5: E302 Expected 2 blank lines, found 1
Found 2 errors (1 fixable).
```
Инициализация мануала...
//
$ ls -R related_skills/
2026-03-30
⭐ 3588
openapi2cli — Генератор CLI из OpenAPI спецификаций
2026-03-29
⭐ 3556
blackbox — Автоматизация разработки с помощью AI-агентов
2026-03-30
⭐ 85009
browser-use — Автоматизация веб-действий с помощью AI-агентов
2026-03-30
⭐ 9
anygen-selected-skills — Готовая коллекция навыков для ИИ-агентов
package.json
$ install --global
skills.sh
npx skills add https://github.com/OpenHands/software-agent-sdk/tree/main/examples/05_skills_and_plugins/02_loading_plugins/example_plugins/code-quality/skills/linting
$ download --local
man
[HINT] Скачивает всю директорию скилла с GitHub: SKILL.md и все связанные файлы