smithery/pluginagentmarketplace

production

Unit testing, performance optimization, security implementation, Play Store deployment.

Installation

$ npx skills add smithery/pluginagentmarketplace --skill production

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/pluginagentmarketplace · top by installs.

npx skills add smithery/pluginagentmarketplace

Browse all from smithery/pluginagentmarketplace

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version2.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,360 B
  • docs SUMMARY.md 105 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Production Quality Skill

Quick Start

Unit Testing

@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)
}

Security

// 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()

Play Store Deployment

./gradlew bundleRelease
# Upload to Google Play Console
# Monitor crashes and ratings

Key Concepts

Testing

  • Unit tests (70-80% coverage)
  • Integration tests
  • UI tests with Espresso
  • Mock external dependencies

Performance

  • ANR prevention
  • Memory leak detection
  • 60 FPS target
  • Battery optimization

Security

  • Data encryption
  • HTTPS/SSL pinning
  • Permission handling
  • OWASP Top 10

Deployment

  • Internal → Closed → Open → Production
  • Staged rollout strategy
  • Crash analytics monitoring
  • User rating management

Best Practices

✅ Write comprehensive tests ✅ Profile regularly ✅ Implement security features ✅ Monitor production apps ✅ Use staged rollouts

Resources