Use this skill when the user wants to sort Python imports, organize imports alphabetically, fix import order, or clean up Python imports.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-7306c97a)More formats (shields.io, HTML) on the badges page.
---
name: isort
description: Use this skill when the user wants to sort Python imports, organize imports alphabetically, fix import order, or clean up Python imports.
---
# isort Plugin
Python import sorter.
## Commands
### Sort
- `isort sort check` — Check import sorting (dry run)
- `isort sort write` — Sort imports in-place
## Usage Examples
- "Sort imports in this Python file"
- "Check if imports are sorted correctly"
- "Organize imports in the whole project"
- "Fix import ordering"
## Installation
```bash
pip install isort
```
## Examples
```bash
# Sort imports in-place
isort .
# Check only
isort --check-only .
# Show diff
isort --check-only --diff .
# Profile for black compatibility
isort --profile black .
# Force single line
isort --force-single-line-imports .
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!