Help us improve
Share bugs, ideas, or general feedback.
android/kotlin development plugins for Claude Code
npx claudepluginhub TaeseongYun/everything-claude-code-androidClaude Code plugin for Android/Kotlin with real code generation and Compose performance analysis
Harness-native ECC skills, hooks, rules, MCP conventions, and operator workflows
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Share bugs, ideas, or general feedback.
Based on everything-claude-code by @affaan-m Based on everything-claude-code-ios by @Okmin — An Anthropic hackathon winner's comprehensive Claude Code configuration collection.
Claude Code plugin optimized for Android/Kotlin development with real code generation and Compose performance analysis.
Unlike simple linting tools, this plugin provides deep analysis of Compose stability:
/compose-stability :feature:home
Output:
📊 Compose Stability Report
🔴 Critical: HomeUiState (Unstable)
└─ unstable val items: List<Item>
Auto-fix suggestion:
@Immutable
data class HomeUiState(
val items: ImmutableList<Item> // Changed
)
Skippable Rate: 75% → Target: 90%
Generate production-ready code with a single command:
./scripts/generate-feature.sh UserProfile --pattern mvi
Creates 7 files instantly:
feature/userprofile/
├── UserProfileContract.kt # State/Intent/SideEffect
├── UserProfileViewModel.kt # Full MVI implementation
├── ui/
│ ├── UserProfileRoute.kt # Navigation entry
│ └── UserProfileScreen.kt # Compose UI with previews
├── navigation/
│ └── UserProfileNavigation.kt
├── UserProfileViewModelTest.kt # Unit tests ready
└── build.gradle.kts # Module config
# Clone
git clone https://github.com/user/everything-claude-code-android.git
# Copy to Claude Code plugins
cp -r everything-claude-code-android ~/.claude/plugins/
# Generate complete feature module
/generate-feature Payment --pattern mvi
# Analyze Compose stability issues
/compose-stability --all
# Get performance metrics
/compose-metrics :feature:home --compare baseline
# Code review with auto-fix suggestions
/kotlin-review feature/auth/
everything-claude-code-android/
├── 🤖 agents/ # 9 specialized AI agents
├── 💬 commands/ # 12 slash commands
├── 📚 skills/ # 8 architecture guides
├── 🪝 hooks/ # Git hooks (ktlint, log detection)
├── 📝 templates/ # Code generation templates
│ └── mvi/ # MVI pattern templates
├── 🔧 scripts/ # Automation scripts
│ ├── generate-feature.sh
│ ├── analyze-compose-stability.sh
│ └── detect-logs.sh
└── ⚙️ .claude/ # Plugin configuration
| Command | Description |
|---|---|
/generate-feature <Name> | Generate complete feature module |
/generate-screen <Name> | Add screen to existing module |
/mvi-create <Name> | Create MVI components |
/mvvm-create <Name> | Create MVVM components |
/compose-preview | Generate preview functions |
| Command | Description |
|---|---|
/compose-stability | Analyze class stability |
/compose-metrics | Performance metrics & trends |
| Command | Description |
|---|---|
/plan | Plan development tasks |
/kotlin-tdd | Test-Driven Development |
/kotlin-review | Code review |
/gradle-build-fix | Fix build issues |
/security-audit | Security audit |
/refactor | Refactoring assistance |
/document | Generate documentation |
| Agent | Description |
|---|---|
planner | Project planning & task breakdown |
architect | Architecture design (MVVM, MVI, Clean) |
tdd | Test-Driven Development |
code-reviewer | Kotlin & Compose review |
security-auditor | OWASP compliance |
build-fixer | Gradle issue resolution |
e2e-tester | End-to-end testing |
refactorer | Code modernization |
documenter | Documentation (KDoc, ADR) |
| Skill | Description |
|---|---|
compose-patterns | Jetpack Compose best practices |
mvi-pattern | MVI with Contract pattern |
mvvm-pattern | MVVM with StateFlow |
coding-standards | Kotlin idioms |
security | Android security |
tdd | Testing strategies |
hilt-di | Dependency injection |
coroutines | Coroutines & Flow |
# Basic MVI feature
./scripts/generate-feature.sh UserProfile