One-click install
npx skills add https://github.com/soygabimoreno/Los-ANDROIDES --skill android-cli-soygabimoreno
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: android-cli
Source: https://github.com/soygabimoreno/Los-ANDROIDES/tree/main/.agents/skills/android-cli
Command: npx skills add https://github.com/soygabimoreno/Los-ANDROIDES --skill android-cli-soygabimoreno

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It solves the problem of coordinating Android development tasks by giving a single, practical guide to the Android command-line interface.

Core Features & Use Cases

  • SDK management: Install, update, remove, and list Android SDK packages to keep your environment consistent.
  • Project creation: Scaffold new Android projects from templates for quick setup.
  • Device and app execution: Manage emulators, run apps, capture screenshots, and inspect UI layouts to debug faster.
  • Support tooling: Search official Android documentation, manage skills, and run journeys as repeatable UI behavior tests.

Quick Start

Ask the AI to create an Android project template named "My App" using the android CLI command: android create empty-activity --name="My App" --output=./my-app.

Frequently Asked Questions about android-cli

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Android development workflows from the command line?

You can automate Android development workflows using the Android CLI to manage SDK packages, scaffold new projects, control emulators, and run app execution diagnostics. It provides subcommands like create, run, and emulator to coordinate these tasks.

What's the best way to create a new Android project template locally?

The best way to create an Android project template is using the CLI command `android create empty-activity` with parameters for the app name and output directory, which scaffolds the project structure for quick local setup.

Do I need to configure the Android SDK path to use CLI emulator control?

Yes, you must have the Android CLI tool installed and ensure correct SDK path configuration before using emulator control, app deployment, or UI layout inspection commands to manage your local Android environment effectively.

Can I inspect Android UI layouts and capture screenshots without an IDE?

Yes, you can inspect UI layouts and capture screenshots using CLI subcommands like `screen` and `layout`. These allow you to debug app execution state and review UI directly from the terminal without needing a graphical IDE.

How does journey testing work for Android apps via the command line?

Journey testing via the CLI runs repeatable UI behavior tests on your Android app. By executing the `journey` subcommand, you can validate user flows and app interactions programmatically across emulator or device sessions.

Why is my Android CLI command not finding installed SDK packages?

If your Android CLI cannot find SDK packages, it is likely due to incorrect SDK path configuration. Verify your environment setup and use the `sdk` subcommand to list, install, or update required SDK packages for consistency.