What problem does it solve?
This Skill helps you safely delete a feature from a Kotlin/Jetpack Compose codebase by ensuring you remove all dependent UI, state, event logic, helper functions, imports, and related resources without leaving broken references or dead code.
Core Features & Use Cases
- Dependency-aware deletion workflow: Builds a “function dependency tree” so you can identify what must be removed together (state, UI components, event handlers, helper functions, imports, and resources).
- Bottom-up removal order: Recommends deleting from leaf nodes to root (UI → events → state → helpers → imports → resources) to minimize compile errors during refactors.
- Post-change verification checklist: Guides you to confirm compilation, remove unused imports/variables, and validate feature behavior via app/test runs.
- Use Case: When a product requirement changes (e.g., removing a search feature or a toggle-based UI path), use this Skill to delete the feature end-to-end while keeping the rest of the screen stable.
Quick Start
Ask the AI to generate a deletion checklist and step-by-step code changes to remove the specified Compose feature, including UI/state/event/utility cleanup, unused import/resource removal, and the exact verification steps to confirm the project compiles and behaves correctly.