import-organizer
Organizes and sorts import statements in code files. Use when imports are messy or need organization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Organizes and sorts import statements in code files. Use when imports are messy or need organization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Comprehensive Three.js and React Three Fiber skill for creating 3D scenes, characters, NPCs, procedural generation, animation retargeting, and interactive experiences. Use when user asks to "create Three.js scene", "setup React Three Fiber", "add 3D character", "create NPC AI", "procedural 3D generation", "retarget animation", "setup avatar system", or "create 3D game".
Generates comprehensive API documentation including OpenAPI/Swagger specs, endpoint descriptions, request/response examples, and integration guides. Use when documenting APIs.
Creates database migrations with proper schema changes, data migrations, and rollback support for various ORMs (Prisma, TypeORM, Alembic, etc.). Use when managing database schema changes.
Generates Express.js API routes with proper middleware, error handling, validation, and TypeScript support. Use when creating REST APIs or Express endpoints.
Generates FastAPI endpoints with proper Pydantic models, dependency injection, async handlers, and OpenAPI documentation. Use when building Python REST APIs.
Generates GraphQL schemas with type definitions, resolvers, queries, mutations, and subscriptions. Use when building GraphQL APIs.
| name | import-organizer |
| description | Organizes and sorts import statements in code files. Use when imports are messy or need organization. |
| allowed-tools | ["Read","Edit","Grep"] |
Automatically organize and sort import statements in JavaScript, TypeScript, Python, and other languages.
// External packages first
import React from 'react'
import { useState } from 'react'
import axios from 'axios'
// Internal imports
import { Button } from './components/Button'
import { utils } from './utils'
// Type imports (TypeScript)
import type { User } from './types'
// Side-effect imports last
import './styles.css'
# Standard library
import os
import sys
from datetime import datetime
# Third-party
import requests
from django.db import models
# Local
from .models import User
from .utils import helper