Agent skill

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.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt3.5_8/kotlin-device-connection-state-management/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Prompt
  2. Data Structures
  3. Transformation Logic (List<Device> to List<Connection>)
  4. State Update Pattern
  5. Immutable List Operations
  6. Triggers
More from AutoSkill
All skills →
About this skill
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.

Keep going