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.
npx skills add ECNU-ICALK/AutoSkill --skill kotlin-device-connection-state-management --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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>) 1. **Input**: Access the list of devices from the current state (e.g., `currentState.deviceList`). 2. **Iteration**: Iterate through each device in the list. 3. **Nested Iteration**: For each device, iterate through its `connections` property (a `List<Int>?`). 4. **Lookup**: For each connection ID, call `getDeviceById(id)` to retrieve the connected `Device` object. 5. **Creation**: Create a `Connect
- Prompt
- Data Structures
- Transformation Logic (List<Device> to List<Connection>)
- State Update Pattern
- Immutable List Operations
- Triggers
What does the Kotlin Device Connection State Management skill do?
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.
How do I install it?
Run `npx skills add ECNU-ICALK/AutoSkill --skill kotlin-device-connection-state-management --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
