用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill android命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | android |
| description | Android engineering rules — permissions, release signing, Kotlin/Compose. Load for Android. |
This skill is the engineering half of Android support: platform rules that apply to any Android task — permissions, release signing, distribution, and native code standards.
The design half lives in skills/mobile/material-design/SKILL.md (color system, typography scale, components, motion, adaptive layout, accessibility). Load it only when the task touches UI — screen layout, navigation, visual or interaction design. A signing, build, or non-UI logic task does not need it.
WindowInsets to avoid overlap with system barsmipmap-anydpi-v26/) — required for Android 8.0+OnBackPressedCallback instead of overriding onBackPressed()AndroidManifest.xmlActivityResultContracts.RequestPermissionshouldShowRequestPermissionRationale() — show an explanation before re-requestingtargetSdkVersion required by Google PlayversionCode must be monotonically increasing — Play Store rejects builds with the same or lower version codeViewModel + StateFlow/SharedFlow for UI state — never hold state in Activities or Fragmentssuspend functions and Flow over callbacks for all new async code