# Openhands Software Agent Sdk Python Linting

> Python Linting Skill

- Skill: `tomevault-io/openhands-software-agent-sdk-python-linting` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/openhands-software-agent-sdk-python-linting`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/openhands-software-agent-sdk-python-linting/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/openhands-software-agent-sdk-python-linting

---


# 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).
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/OpenHands) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-16 -->

