From coding-skills
Enforces Android platform rules when using MutableList, updating compileSdk, or targeting API 35+. Prevents runtime NoSuchMethodError from removeFirst/removeLast.
How this skill is triggered — by the user, by Claude, or both
Slash command
/coding-skills:android-conventions**/*.kt**/*.javaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `removeAt(0)` and `removeAt(list.lastIndex)` instead. Compiling against API 35+ (`compileSdk 35`) causes `NoSuchMethodError` on Android 14 and below.
Use removeAt(0) and removeAt(list.lastIndex) instead. Compiling against API 35+ (compileSdk 35) causes NoSuchMethodError on Android 14 and below.
// BAD - crashes on Android 14 and below when compileSdk 35
list.removeFirst()
list.removeLast()
// GOOD
list.removeAt(0)
list.removeAt(list.lastIndex)
npx claudepluginhub necatisozer/coding-skills --plugin coding-skillsProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.