Agent skill
analyze-code-structure
Examine code organization and identify structural patterns. Use when reviewing module design or understanding architecture.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/analyze-code-structure-homericintelligence-projectodyssey
SKILL.md
Analyze Code Structure
Examine code organization, dependencies, and architectural patterns to understand how modules are organized.
When to Use
- Reviewing module design before implementation
- Understanding how components connect
- Identifying structural improvements needed
- Planning refactoring strategies
Quick Reference
# Analyze Python file structure
python3 << 'EOF'
import ast
import sys
def analyze_structure(filepath):
with open(filepath) as f:
tree = ast.parse(f.read())
classes = [n.name for n in ast.walk(tree) if isinstance(n, ast.ClassDef)]
functions = [n.name for n in ast.walk(tree) if isinstance(n, ast.FunctionDef)]
print(f"Classes: {classes}")
print(f"Functions: {functions}")
analyze_structure(sys.argv[1])
EOF
Workflow
- Identify module components: List classes, functions, and major imports
- Map dependencies: Trace how modules import and reference each other
- Analyze layers: Categorize code into logical layers (interface, business logic, persistence)
- Document patterns: Note recurring architectural patterns (factory, singleton, observer)
- Propose improvements: Identify coupling issues or missing separation of concerns
Output Format
Structured analysis report:
- Component inventory (classes, functions, data structures)
- Dependency graph (which modules import which)
- Layer organization (presentation, business, data)
- Design patterns identified
- Recommendations for improvement
References
- See CLAUDE.md > Modularity section for design principles
- See
identify-architectureskill for full architecture analysis - See CLAUDE.md > SOLID principles for structural best practices
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?