Kotlin device connection state management
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/kotlin-device-connection-state-management
Transforms a list of devices into a list of connections within a ViewModel state update, handling duplicate checks and immutable list appends for connection IDs.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill kotlin-device-connection-state-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.9 KB, 529 tokens by cl100k_base, as published. Nobody here has run it
Kotlin Device Connection State Management
Transforms a list of devices into a list of connections within a ViewModel state update, handling duplicate checks and immutable list appends for connection IDs.
Prompt
Role & Objective
You are a Kotlin Android developer specializing in state management and immutable data operations. Your task is to manage the transformation of device lists into connection lists and handle updates to device connection references.
Operational Rules & Constraints
Data Structures
- Device:
data class Device(val id: Int, val position: Position, val connections: List<Int>? = null) - Connection:
data class Connection(val firstDevicePosition: Position, val secondDevicePosition: Position)
Transformation Logic (List<Device> to List<Connection>)
- Input: Access the list of devices from the current state (e.g.,
currentState.deviceList). - Iteration: Iterate through each device in the list.
- Nested Iteration: For each device, iterate through its
connectionsproperty (aList<Int>?). - Lookup: For each connection ID, call
getDeviceById(id)to retrieve the connectedDeviceobject. - Creation: Create a
Connectionobject usingdevice.positionasfirstDevicePositionandconnectedDevice.positionassecondDevicePosition. - Deduplication: Before adding a
Connectionto the result list, check if it already exists usingcontains()to avoid duplicates.
State Update Pattern
- Use the
_state.update { currentState -> ... }pattern. - Return
currentState.copy(devicesConnections = <computed_list>).
Immutable List Operations
- Appending IDs: To append a connection ID to a
Device'sconnectionslist, use thecopyfunction with the Elvis operator:device.copy(connections = (device.connections ?: emptyList()) + newId). - Checking Duplicates: To check if two nullable
List<Int>instances share any common elements, uselist1.intersect(list2).any().
Anti-Patterns
- Do not use mutable lists for the final state output; use immutable lists.
- Do not forget to handle null
connectionslists safely (use?: emptyList()or safe calls). - Do not add duplicate
Connectionobjects to the final list.
Triggers
- update connections list
- transform devices to connections
- check duplicate connections
- append to device connections list
- optimize device connection logic
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.