Agent skill

android-cli

Orchestrates Android development tasks including project creation, deployment, SDK management, and environment diagnostics using the `android` command-line tool.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill android-cli --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 11 KB
Bundled scripts: none
Declared author: Owais
Path: skills/android-cli/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Android CLI Specialist This skill provides instructions for using the `android` CLI tool. The tool includes various commands for creating projects, running applications, interacting with devices, and managing the CLI environment. ## When to Use - Use when you need to create, configure, or analyze Android projects from the command line. - Use when interacting with, deploying to, or taking screenshots of running Android devices. - Use when managing Android SDK components, versions, or virtual devices (emulators). - Use when inspecting UI layouts or running XML-specified journey tests. ## Installation If the `android` tool is not in the path, download the platform installer to a private temporary directory, inspect it, then run it only after the user confirms the source and contents: ```bash tmpdir="$(mktemp -d "${TMPDIR:-/tmp}/android-cli.XXXXXX")" || exit 1 curl -fsSL https://dl.google.com/android/cli/latest/linux_x86_64/install.sh -o "$tmpdir/install.sh" sed -n '1,160p' "$tmpdir/install.sh" # After review and explicit user confirmation: bash "$tmpdir/install.sh" ``` Use the matching `darwin_arm64/install.sh` or `windows_x86_64/install.cmd` URL for macOS or Windows. Do not pipe mu

What's inside
Steps it walks through
  1. When to Use
  2. Installation
  3. SDK Management
  4. Project Creation
  5. Interacting with Devices
  6. Running Journey Tests
  7. Doc Searching
  8. Running APKs
  9. Managing Emulators
  10. Capturing Screenshots
  11. Managing Skills
  12. Inspecting UI Layouts
  13. Updating the CLI
  14. Limitations
Ships with 2 files
  • references/interact.md
  • references/journeys.md
Commands it runs
curl -fsSL https://dl.google.com/android/cli/latest/linux_x86_64/install.sh -o "$tmpdir/install.sh"
sed -n '1,160p' "$tmpdir/install.sh"
After review and explicit user confirmation:
bash "$tmpdir/install.sh"
android create empty-activity --name="My App" --output=./my-app
More from agentic-awesome-skills
All skills →
About this skill
What does the android-cli skill do?

Orchestrates Android development tasks including project creation, deployment, SDK management, and environment diagnostics using the `android` command-line tool.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill android-cli --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going