소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 11일 16:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill naming-conventions명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | naming-conventions |
| description | Naming and file structure — framework-agnostic with per-framework notes. |
| Thing | Convention | Example |
|---|---|---|
| Component | PascalCase | UserCard, OrderSummary |
| Hook / Composable | camelCase, prefixed use | useOrders, useAuthState |
| Service / class | PascalCase | OrderService, AuthClient |
| Utility function | camelCase, verb-first | formatDate, parseAmount |
| Constant | SCREAMING_SNAKE_CASE | MAX_RETRIES, API_BASE_URL |
| CSS class (BEM) | kebab-case | order-card__title--active |
| CSS custom property | kebab-case, prefixed | --color-primary, --spacing-md |
| Event handler prop | camelCase, prefixed on | onSubmit, onItemSelect |
| Internal handler | camelCase, prefixed handle | handleSubmit, handleItemSelect |
| Boolean prop/var | prefixed is, has, can, should | isLoading, hasError, canEdit |
| Enum / union literal | PascalCase (type) + SCREAMING (value) | Status.PENDING |
| File type | Convention | Example |
|---|---|---|
| Component file | PascalCase | UserCard.tsx, UserCard.vue |
| Hook file | camelCase | useOrders.ts |
| Service file | camelCase or PascalCase (match class) | orderService.ts |
| Test file | same name + .test / .spec | UserCard.test.tsx |
| Style module | same name + .module.css | UserCard.module.css |
| Index barrel | index.ts | only at feature boundary |
Barrel files (index.ts): use only at the public boundary of a feature folder. Never create barrels inside a feature just to shorten import paths — they prevent tree-shaking and obscure where code lives.
Prefer feature-based over type-based once the project exceeds ~5 components.
src/
├── features/
│ └── orders/
│ ├── components/ ← UI components scoped to this feature
│ ├── hooks/ ← composables / hooks scoped to this feature
│ ├── services/ ← API calls, business logic
│ ├── types.ts ← feature-local types
│ └── index.ts ← public API of the feature
├── shared/
│ ├── components/ ← reusable across features
│ ├── hooks/
│ └── utils/
└── app/ ← routing, providers, global layout
Rules:
features/orders must not import directly from features/users — go through shared/shared/ components must have zero feature-specific knowledgeshared/ when a second feature needs it (YAGNI).tsx for components, .ts for everything elsePascalCase.vueUserCard, not Card)composables/ folder for use* files; stores/ for Pinia storesfeature-name.component.ts, feature-name.service.ts, feature-name.module.tsComponent, Service, Pipe, Directive, Guard, ResolverUserCard.sveltestores/ folder; suffix with Store if ambiguous (cartStore.ts)| Anti-Pattern | Problem |
|---|---|
data, info, util, helper as names | Too generic — describe what it does, not that it exists |
handleClick on every button | Describe the intent: handleAddToCart, handleDeleteUser |
isLoading2, newValue, temp | Temporary names that survive into production |
| Abbreviations beyond 3 letters | usr, ord, cfg — spell it out |
| Inconsistent casing in the same codebase | Pick a convention and enforce it via linter |
Deep nesting: components/ui/base/atoms/Button | Flatten — depth signals over-engineering |