# Source Command Format

> Auto-format all Python code

- Skill: `enuno/source-command-format` (Agent Skill)
- Install (CLI): `npx skillmds@latest add enuno/source-command-format`
- Raw SKILL.md: https://api.skillmd.com/api/skills/enuno/source-command-format/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: enuno (https://skillmd.com/u/enuno)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/enuno/source-command-format

---


# source-command-format

Use this skill when the user asks to run the migrated source command `format`.

## Command Template

Automatically format all Python code in the project.

Execute the following commands:

1. Format code with Black: `black src/ tests/`
2. Sort imports with isort: `isort src/ tests/`
3. Fix auto-fixable linting issues: `ruff check src/ tests/ --fix`

Report back with:

- Files that were modified
- Summary of changes made
- Any remaining issues that require manual intervention

