Back to list
powdream

start-emulator

by powdream

Claude Code plugins to boost your development workflow

0🍴 0📅 Jan 21, 2026

SKILL.md


name: start-emulator description: Start an Android emulator. Use when you need to launch an AVD for testing.

Start Emulator

Start an Android emulator (AVD) with quick boot or cold boot option.

Instructions

Script location: scripts/start-emulator.sh (relative to this skill's directory)

Before running, locate this skill's directory (where this SKILL.md is located), then execute:

bash <skill-directory>/scripts/start-emulator.sh [avd_name] [boot_type]

Arguments:

  • avd_name (optional): The name of the AVD to start
  • boot_type (optional): "quick" (default) or "cold"

JSON Output Schema

Success - Launch

{
  "success": true,
  "message": "Emulator started",
  "avd": "Pixel_6_API_33",
  "cold_boot": false
}

Success - Multiple emulators (ask user)

{
  "success": true,
  "action": "select_emulator",
  "emulators": ["Pixel_6_API_33", "Pixel_4_API_30"]
}

Failure

{
  "success": false,
  "error": "no available emulator",
  "hint": "Create an AVD using Android Studio or avdmanager"
}

Claude's Handling

IMPORTANT: ALWAYS ask the user about boot type before launching. Never skip this step.

Flow

  1. Determine emulator:

    • If user specified an emulator name → use that name
    • Otherwise → run script with no arguments to get the list, then ask user to select if multiple emulators exist
  2. Ask boot type (REQUIRED - never skip): Use AskUserQuestion to ask "Quick boot or cold boot?"

    • First option: "Quick boot (Recommended)"
    • Second option: "Cold boot"
  3. Launch: Run script with avd_name and boot_type arguments

  4. Report result: Inform user the emulator is starting or show error

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon