repo-structurer
Installation
SKILL.md
Repo Structurer
Makes any repository clean, documented, and agent-friendly by adding READMEs, improving organization, and removing clutter.
How It Works
- Analyze the current directory structure
- Identify directories missing READMEs
- Generate context-aware READMEs for each directory
- Identify dead code and unused files
- Suggest modularization improvements
- Create agent configuration files (AGENTS.md, .cursorrules)
Step-by-Step Procedure
Step 1: Map the Directory Structure
find . -type d -not -path './.git/*' -not -path './node_modules/*' -not -path './.next/*' -not -path './dist/*' -not -path './__pycache__/*' -not -path './venv/*'