plugins marketplace
← All plugins

test-android-apps

v0.1.2

Test Android apps with emulator workflows for reproduction, screenshots, UI inspection, log capture, and performance profiling.

Codex2 skills

by OpenAIMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/test-android-apps/ inside the repository.

Layout

plugins/test-android-apps/
├── .codex-plugin/plugin.json
├── skills/android-emulator-qa/SKILL.md
└── skills/android-performance/SKILL.md

Skills2

android-emulator-qaskills/android-emulator-qa/SKILL.md

Use when validating Android feature flows in an emulator with adb-driven launch, input, UI-tree inspection, screenshots, and logcat capture.

android-performanceskills/android-performance/SKILL.md

Gather and interpret Android performance evidence on an adb target using Simpleperf CPU profiles, Perfetto or Compose traces, gfxinfo frame data, dumpsys meminfo snapshots, Java heap dumps, and native allocation traces. Use when asked to profile an Android app flow, find CPU-heavy functions, diagnose jank, capture startup or frame timing evidence, compare before/after performance, explain what code is taking time, or gather memory/leak profiling artifacts.

Manifests1

plugins/test-android-apps/.codex-plugin/plugin.json
{
  "name": "test-android-apps",
  "version": "0.1.2",
  "description": "Test Android apps with emulator workflows for reproduction, screenshots, UI inspection, log capture, and performance profiling.",
  "author": {
    "name": "OpenAI",
    "email": "support@openai.com",
    "url": "https://openai.com/"
  },
  "homepage": "https://openai.com/",
  "repository": "https://github.com/openai/plugins",
  "license": "MIT",
  "keywords": [
    "android",
    "adb",
    "emulator",
    "qa",
    "logcat",
    "uiautomator",
    "performance",
    "simpleperf",
    "perfetto",
    "memory",
    "leaks",
    "heap"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Test Android Apps",
    "shortDescription": "Reproduce issues, inspect UI, and capture performance evidence from Android emulators",
    "longDescription": "Use Test Android Apps to build and install app variants, drive a booted Android emulator with adb input events, inspect UI trees, capture screenshots, collect logcat output, and gather Simpleperf, Perfetto, gfxinfo, or memory/leak evidence while reproducing issues.",
    "developerName": "OpenAI",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Read"
    ],
    "websiteURL": "https://openai.com/",
    "privacyPolicyURL": "https://openai.com/policies/privacy-policy/",
    "termsOfServiceURL": "https://openai.com/policies/terms-of-use/",
    "defaultPrompt": [
      "Use Test Android Apps to reproduce an emulator issue, then capture screenshots, logs, UI state, and performance evidence."
    ],
    "brandColor": "#3DDC84",
    "composerIcon": "./assets/test-android-apps-small.svg",
    "logo": "./assets/app-icon.png",
    "screenshots": []
  }
}