This skill defines the only right architecture for android projects. Activate when doing big tasks (related to several files and their interconnections) in this project
Resources
1Install
npx skillscat add f0x1d/logfox/architecture Install via the SkillsCat registry.
SKILL.md
Android Architecture
This skill defines how to design and review architecture changes in LogFox Android modules.
When to use this skill
Use this skill when at least one is true:
- The task touches multiple related Android files or modules.
- A new feature/module is added or existing module boundaries are changed.
- State management, ViewModel flow, reducers, effect handlers, or navigation patterns are updated.
- A PR needs architecture compliance review.
Skip this skill for tiny isolated edits (for example: text change, one-off constant rename).
Fast workflow
- Identify impacted modules (
api,impl,presentation, andcore). - Apply the non-negotiable rules in this file.
- Load only the reference sections needed for the task:
references/CHECKLIST.md(quick compliance pass)references/REFERENCE_INDEX.md(choose targeted rule groups)
- Implement changes with minimal surface area while preserving boundaries.
- Validate with the checklist before finalizing.
Non-negotiable rules
- Use modified TEA: immutable
State,Command,SideEffect, pureReducer, asynchronousEffectHandler. Store.send()must be called from Main thread.- Every feature has both
StateandViewState; mapping happens inside ViewModel viaViewStateMapper. - UI is passive: Fragments/Composables render state and emit events only; no business logic in views.
presentationdepends only onapi; never depend on another module'simpl(except:app).- Use cases expose
operator fun invoke; failable operations returnResult<T>. - Repository interfaces live in
api; data sources and implementations stayinternalinimpl. - Hilt bindings return interfaces, not implementation types.
- Use SideEffects for navigation and one-off UI actions.
- One file contains one top-level type; file name matches type name.
Reference map
- Quick compliance checklist:
references/CHECKLIST.md - Rule-group index:
references/REFERENCE_INDEX.md
Expected output when applying this skill
When you perform architecture work, report:
- Which rules were applied.
- Which modules and layers were changed.
- Any deliberate deviation and why.
- Remaining risks or follow-up refactors.
Edge-case guidance
- If existing code violates these rules and full refactor is out of scope, make the smallest safe change and document the gap.
- If two rules conflict, prefer dependency boundaries and thread-safety first, then naming/style.
- If a feature is hybrid (Fragment + Compose), keep a single source of truth in ViewModel and preserve passive UI on both sides.