用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-android --skill ui命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | ui |
| description | XML layouts, ConstraintLayout, Jetpack Compose, Material Design 3. |
| version | 2.0.0 |
| sasmp_version | 1.3.0 |
| bonded_agent | 03-ui-development |
| bond_type | PRIMARY_BOND |
| atomic | true |
| single_responsibility | UI design & implementation |
| parameters | {"paradigm":{"type":"string","enum":["xml","compose","both"],"default":"compose"},"design_system":{"type":"string","enum":["material2","material3"],"default":"material3"}} |
| retry | {"max_attempts":2,"backoff":"exponential","on_failure":"return_basic_layout"} |
| logging | {"level":"info","include":["query","ui_type","accessibility_check"]} |
<androidx.constraintlayout.widget.ConstraintLayout>
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
Column(modifier = Modifier.fillMaxSize().padding(16.dp)) {
Text("Hello Compose", fontSize = 20.sp)
Button(onClick = { }) { Text("Click Me") }
}
Scaffold(
topBar = { TopAppBar(title = { Text("MyApp") }) }
) { padding ->
// Content
}
var count by remember { mutableStateOf(0) }
Button(onClick = { count++ }) { Text("Count: $count") }
✅ Use ConstraintLayout for efficiency ✅ Implement Material Design ✅ Test on multiple screen sizes ✅ Optimize rendering performance ✅ Support accessibility
基于 SOC 职业分类