원클릭으로
standards
Master index for project coding standards. Load this to get a summary; load individual skills below for detailed rules.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Master index for project coding standards. Load this to get a summary; load individual skills below for detailed rules.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | standards |
| description | Master index for project coding standards. Load this to get a summary; load individual skills below for detailed rules. |
This project's standards are split into separate skills for focused reference.
| Skill | Purpose |
|---|---|
file-organization | Naming conventions, folder structure, when/how to split files into folders |
frontend | React component structure, hooks, Panda CSS styling, state management, frontend import order, usecase extraction, sub-component barrel imports |
backend | Server file SoC (router / types / utils split), API response envelope, error handling, server import order, absolute vs relative imports |
@/ internal → relative imports by depth (../../ → ../ → ./). Within each depth: value imports → import type → import {} from './styles'. Blank line between each section.import type { ... } for type-only imports.index.ts, types.ts, utils.ts, etc.).@/*) work only inside src/. Files in server/, scripts/, etc. use relative imports.{ data, meta } (success) or { errors, meta, data? } (error) envelope with proper HTTP status codes.options object for parameters, infer return type (no explicit Return interface). If complex, split into a folder with types.ts, constants.ts, etc.useState, useCallback, useEffect, useMemo, useRef in .tsx files. All logic goes in usecase hooks, composed by an "actions" usecase.For detailed rules, load the specific skill (e.g. skill("backend"), skill("frontend"), skill("file-organization")).
Backend API coding standards — server file structure, response envelope, error handling, import rules, and route organization.
Universal file and folder organization rules — naming conventions, refactoring, and when to split files.
Frontend React coding standards — component structure, hooks, Panda CSS styling, state management, usecase extraction, react-query usage, sub-component barrel imports, and strict import ordering.