| name | github-repo-architect-1-repository-structure-analysis |
| description | Sub-skill of github-repo-architect: 1. Repository Structure Analysis (+2). |
| version | 1.0.0 |
| category | development |
| type | reference |
| scripts_exempt | true |
1. Repository Structure Analysis (+2)
1. Repository Structure Analysis
task: "Analyze and optimize repository structure for scalability and maintainability",
strategy: "adaptive",
priority: "medium"
})
2. Analyze Current Structure
ls -la
find . -name "*.json" -o -name "*.yml" -o -name "*.yaml" | head -20
cat package.json | jq '.dependencies, .devDependencies'
*See sub-skills for full details.*
```bash
gh repo create Codex-project-template \
--public \
--description "Standardized template for Codex projects" \
--template
gh repo clone owner/Codex-project-template
cd Codex-project-template
*See sub-skills for full details.*