Back to list
powdream

stop-emulator

by powdream

Claude Code plugins to boost your development workflow

0🍴 0📅 Jan 21, 2026

SKILL.md


name: stop-emulator description: Stop a running Android emulator. Use when you need to shut down an AVD.

Stop Emulator

Stop a running Android emulator (AVD).

Instructions

Script location: scripts/stop-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/stop-emulator.sh [avd_name_or_serial]

Arguments:

  • avd_name_or_serial (optional): The name of the AVD (e.g., Pixel_6_API_33) or serial (e.g., emulator-5554) to stop

JSON Output Schema

Success

{
  "success": true,
  "message": "Emulator stopped",
  "avd": "Pixel_6_API_33",
  "serial": "emulator-5554"
}

Success - Multiple running (ask user)

{
  "success": true,
  "action": "select_emulator",
  "running": [
    { "avd": "Pixel_6_API_33", "serial": "emulator-5554" },
    { "avd": "Pixel_4_API_30", "serial": "emulator-5556" }
  ]
}

Failure

{
  "success": false,
  "error": "no running emulator",
  "hint": "Start an emulator first using start-emulator skill"
}

Claude's Handling

  1. If JSON has action: "select_emulator", use AskUserQuestion to let user choose which emulator to stop
  2. After successful stop, inform user the emulator has been stopped
  3. On failure, show the error message and hint to the user

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