Organizes and sorts import statements in code files. Use when imports are messy or need organization.
Automatically organizes and sorts import/require statements in your code files.
cp examples/beginner/simple-skills/import-organizer/SKILL.md \
.claude/skills/import-organizer.md
"organize imports in App.tsx"
"sort the imports in this file"
"clean up import statements"
Before:
import { utils } from './utils'
import React from 'react'
import axios from 'axios'
import React from 'react' // duplicate
import { Button } from './components/Button'
After:
import axios from 'axios'
import React from 'react'
import { Button } from './components/Button'
import { utils } from './utils'
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer