Our review
This skill audits and organizes a project's file structure by moving misplaced files, updating imports, and suggesting cleanup of empty directories and obsolete configs.
Strengths
- Automatically detects misplaced test and source files
- Updates import statements after moving files
- Provides cleanup suggestions for empty or obsolete directories
Limitations
- May not handle complex import paths or relative imports correctly
- Could potentially move files that are intentionally misplaced
- Requires manual review before executing suggested changes
Use when a project's directory structure has become messy with files in wrong locations, such as test files in source directories or source files in root.
Do not use when files are intentionally placed in non-standard locations for specific tooling or deployment reasons.
Security analysis
CautionThe skill performs file system modifications (move, update imports) that are powerful but not inherently malicious. Risk lies in accidental misplacement or import breakage, though it's presented as a legitimate organizational tool.
- •Instructs moving files and updating imports across the project, which could break the build or test environment if applied incorrectly.
Examples
Audit and organize the file structure of this project. Move test files from the package directory to the tests/ directory and source files from root to the package directory. Update any imports that break due to moves. Clean up empty directories.I think some files are in the wrong folders. Please check the root and src directories and move anything that doesn't belong. Also, update imports accordingly.name: organize description: プロジェクトのディレクトリ構造を整理し、配置ミスのファイルをクリーンアップする
Organize Files
This skill audits and organizes the project file structure.
Instructions
-
Audit:
- List files in the root directory.
- Check for test files inside the package directory (
gwexpy/) instead oftests/. - Check for source files in the root instead of the package directory.
-
Action:
- Move misplaced files to their correct locations.
- Update Imports: If a file is moved, check standard imports within it and imports of it in other files.
-
Cleanup:
- Suggest removal of empty directories or obsolete configuration files.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.