Skill: Module Routing
Use this when deciding where a change belongs.
Rules
- •Put reusable OTP/business logic in
sharedLib. - •Put cross-platform UI in
composeApp/src/commonMain. - •Put platform-specific UI/entrypoints in each platform source set.
- •Put terminal UX and command wiring in
cliApp. - •Put Wear-only UI and Android watch integration in
watchApp.