plugins marketplace
← All plugins

claude-code-for-android

v3.1.1

Android code review toolkit v3.1.1 - Refactored architecture with clear responsibility separation

Claude Code1 skill

by daishengda2018Apache-2.00updated 5 months ago

Source

git clone https://github.com/daishengda2018/claude-code-for-android

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

claude-code-for-android/
├── .claude-plugin/plugin.json
└── skills/release-checklist/SKILL.md

Skills1

release-checklistskills/release-checklist/SKILL.md

Claude Plugin 发布清单。在发布插件时,自动验证结构、兼容性、版本完整性、Git 同步等所有检查项。当用户提到"发布插件"、"准备发布"、"创建 release"、"打 tag"、"验证发布"或询问"是否可以发布"时使用此 skill。确保插件符合所有发布要求,避免发布失败。**此 skill 完全自动化执行所有检查和发布步骤,无需用户确认。**

Manifests1

.claude-plugin/plugin.json
{
  "name": "claude-code-for-android",
  "version": "3.1.1",
  "description": "Android code review toolkit v3.1.1 - Refactored architecture with clear responsibility separation",
  "author": {
    "name": "daishengda2018",
    "url": "https://github.com/daishengda2018"
  },
  "homepage": "https://github.com/daishengda2018/claude-code-for-android",
  "repository": "https://github.com/daishengda2018/claude-code-for-android",
  "license": "Apache-2.0",
  "keywords": [
    "android",
    "kotlin",
    "java",
    "code-review",
    "security",
    "performance",
    "quality",
    "lifecycle",
    "coroutines",
    "jetpack",
    "v3.1.1"
  ],
  "skills": [
    "./skills/"
  ],
  "agents": [
    "./agents/android-code-reviewer.md"
  ]
}