backend-code-organisation
스타0
포크0
업데이트2025년 11월 6일 08:26
Kotlin backend layering and packaging guidelines
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Kotlin backend layering and packaging guidelines
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Coroutine usage guardrails for Kotlin backend reviewers
SQL data access best practices for AIRBot reviewers
Security review guardrails for AIRBot
Testing expectations for AIRBot reviewers
TypeScript style standards for AIRBot reviewers
| name | backend-code-organisation |
| description | Kotlin backend layering and packaging guidelines |
| license | MIT |
service → core → models) to encourage reuse and testability.SecurityContext early.get/invalidate helpers.v2 folders). Prefer managers.slots over managers.slots.v2.managers, helpers, utils, dao, workflows, etc. Mirror structure in tests.core: managers, helpers, data access, transient models. May depend on models.service: Dropwizard resources, configuration, application wiring; no direct DB access.console-service: Console-specific resources/auth; depends on core.client: Outbound clients; depend only on models.models: Shared API/data contracts; no dependencies.db-test, db-dev, db-warehouse-prod) and run the service locally to validate.@Singleton when appropriate.@Named when multiple bindings of the same type exist; otherwise default bindings suffice.v2 package forks.Glob for *.kt within service/ or core/ to inspect layer usage.Read DI modules when new bindings appear to ensure wiring matches guidelines.Grep for @Named or direct DAO usage inside resources to catch misplaced logic.