cohesion

Installation
SKILL.md

응집도

함께 수정되는 코드는 함께 있어야 한다.

핵심 패턴

함께 수정되는 파일을 같은 디렉토리에 두기

❌ 종류별 분리 (의존 관계 파악 어려움):

src/
├── components/UserForm.tsx
├── hooks/useUserValidation.ts
├── types/userTypes.ts
└── api/userApi.ts
Installs
32
GitHub Stars
2.0K
First Seen
Mar 16, 2026
cohesion — toss/frontend-fundamentals