android-plugin
Manage and execute app-specific plugins — install, configure, run actions, check status, approval workflows
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage and execute app-specific plugins — install, configure, run actions, check status, approval workflows
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
High-level Android automation — find-and-tap, scroll-to-find, device readiness, stuck detection
Interact with the Android device — tap, type text, swipe, scroll, press keys, navigate
Perceive Android device state — screenshots, annotated UI views, OCR, activity detection, screen state queries
| name | android-plugin |
| description | Manage and execute app-specific plugins — install, configure, run actions, check status, approval workflows |
Use this skill when automating a specific app that has a dedicated plugin (e.g., messaging apps, social apps). Plugins wrap app-specific logic behind a standard interface with approval gates for sensitive actions.
| Tool | Purpose |
|---|---|
android_plugin_action | Execute a plugin action (e.g., weather.fetch, telegram.send) |
android_plugin_status | Get status of all loaded plugins (ready/offline, rate limits) |
android_plugin_cycle | Run a plugin's autonomous heartbeat cycle |
android_skills | Discover all plugin capabilities and their parameters |
android_skills { format: "markdown" }android_plugin_statusandroid_plugin_action { plugin: "name", action: "capability", params: {...} }Actions marked requiresApproval: true trigger a confirmation flow before execution. This applies to actions that:
Read-only actions (status checks, profile viewing) execute immediately.
plugin.initialize(config) → Setup and auth
plugin.getStatus() → Health check (ready/offline/rate-limited)
plugin.execute(action, params) → Run an action
plugin.onHeartbeat() → Autonomous cycle (check for new activity)
plugin.destroy() → Graceful shutdown
"What plugins are available?" → android_skills { format: "markdown" }
"Check if Telegram is connected" → android_plugin_status
"Run the weather cycle" → android_plugin_cycle { plugin: "weather" }
"Send a message via plugin" → android_plugin_action { plugin: "telegram", action: "telegram.send", params: { text: "Hello" } }