用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-android --skill production命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | production |
| description | Unit testing, performance optimization, security implementation, Play Store deployment. |
| version | 2.0.0 |
| sasmp_version | 1.3.0 |
| bonded_agent | 07-production |
| bond_type | PRIMARY_BOND |
| atomic | true |
| single_responsibility | Production quality & deployment |
| parameters | {"concern":{"type":"string","enum":["testing","performance","security","deployment"],"required":false},"urgency":{"type":"string","enum":["low","medium","high","critical"],"default":"medium"}} |
| retry | {"max_attempts":3,"backoff":"exponential","on_failure":"escalate_to_human"} |
| logging | {"level":"warn","include":["concern_type","security_level","test_coverage"]} |
@Test
fun loadUser_updates_state() = runTest {
val user = User(1, "John")
val mockRepo = mockk<UserRepository>()
coEvery { mockRepo.getUser(1) } returns user
val viewModel = UserViewModel(mockRepo)
viewModel.loadUser(1)
assertEquals(user, viewModel.state.value)
}
// Encrypted storage
val prefs = EncryptedSharedPreferences.create(context, "secret",
MasterKey.Builder(context).build(), AES256_SIV, AES256_GCM)
// SSL pinning
CertificatePinner.Builder()
.add("api.example.com", "sha256/...").build()
./gradlew bundleRelease
# Upload to Google Play Console
# Monitor crashes and ratings
✅ Write comprehensive tests ✅ Profile regularly ✅ Implement security features ✅ Monitor production apps ✅ Use staged rollouts