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" } }