Awesome-omni-skill import-organization

Order imports by: built-in modules, external packages, internal modules, relative imports Use when maintaining consistent code style. Style category skill.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data-ai/import-organization-majiayu000" ~/.claude/skills/diegosouzapw-awesome-omni-skill-import-organization && rm -rf "$T"
manifest: skills/data-ai/import-organization-majiayu000/SKILL.md
source content

Import Organization

Order imports by: built-in modules, external packages, internal modules, relative imports. Separate groups with blank lines. Alphabetize within groups. Prefer named imports over default imports for better refactoring. Use absolute imports for cross-module references, relative for within modules. Configure ESLint/Prettier to enforce import ordering automatically.