Android code review toolkit v3.1.1 - Refactored architecture with clear responsibility separation
npx claudepluginhub daishengda2018/claude-code-for-androidAndroid code review toolkit v3.1.1 - Refactored architecture with clear responsibility separation
Automated Android code review for Kotlin/Java code — security, quality, and performance checks based on Google's official Android best practices.
Key Features: Zero configuration • 90% confidence threshold • ~55% token optimization • Compatible with all Claude providers
# Step 1: Add marketplace
/plugin marketplace add daishengda2018/claude-code-for-android
# Step 2: Install plugin
/plugin install claude-code-for-android@claude-code-for-android
# Step 3: Verify installation
/plugin
# Clone repository
git clone https://github.com/daishengda2018/claude-code-for-android.git
cd claude-code-for-android
# Copy plugin files to ~/.claude/
cp -r commands/* ~/.claude/commands/
cp -r agents/* ~/.claude/agents/
cp -r skills/* ~/.claude/skills/
# Restart Claude Code
Note: Manual installation requires restarting Claude Code to load the plugin.
# Smart auto-detection (zero configuration)
/android-code-review
The plugin automatically detects what to review:
git diff --stagedgit diffgit log -1 --patchIn case you only want to review the stated files:
# Explicit staged changes
/android-code-review --target staged
/android-code-review --target file:app/src/main/java/com/example/MyFragment.kt
# Security-only (fastest)
/android-code-review --severity critical
# High-severity (default)
/android-code-review --severity high
# All checks
/android-code-review --severity all
android-code-review --output-format json > review.json
# Review a PR by number
/android-code-review --target pr:123
# High-severity only (faster)
/android-code-review --target pr:123 --severity high
# Export as JSON for archiving
/android-code-review --target pr:123 --output-format json > pr-123-review.json
Note: The default behavior reviews local git changes, not pull requests. Use --target pr:<number> for PR review.
| Category | Checks |
|---|---|
| Security | Hardcoded secrets, insecure storage, Intent hijacking, WebView flaws, cleartext traffic |
| Code Quality | Memory leaks, error handling, large functions, deep nesting, dead code |
| Android Patterns | Lifecycle violations, ViewModel misuse, deprecated APIs, permissions |
| Jetpack/Kotlin | Coroutine misconfiguration, Room issues, Hilt errors, Compose anti-patterns |
| Performance | ANR risks, layout inefficiencies, bitmap mismanagement, startup bottlenecks |
| Best Practices | Naming conventions, documentation, accessibility, resource management |
| Severity | Patterns Loaded | Token Cost | Use Case |
|---|---|---|---|
critical | Security only | ~1,500 | Fast security scan |
high | Security + Quality + Architecture | ~6,950 | Default review |
medium | Above + Performance | ~8,100 | Comprehensive review |
all | All patterns | ~8,900 | Complete analysis |
claude-code-for-android/
├── commands/
│ └── android-code-review.md # User-facing command
├── agents/
│ └── android-code-reviewer.md # Code review agent
├── skills/
│ └── android-code-review/
│ └── SKILL.md # Detection rules orchestration
├── .claude-plugin/ # Marketplace metadata
│ ├── plugin.json # Plugin manifest
│ └── marketplace.json # Marketplace description
└── [other files]
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
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations