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.