
Developer Device Platform
FreeManage remote Android devices with ease.
Free · Opens the source repo
What Developer Device Platform does
The Developer Device Platform (DDP) skill provides developers with essential guidance for managing remote Android devices through a fully managed Google infrastructure. This skill is particularly useful for those who need to reserve devices, establish connection tunnels, and check session statuses as part of their mobile development workflow. With DDP, you can access a variety of physical and virtual devices, enabling effective testing and debugging without the need for local hardware.
To get started, users must ensure their environment is correctly set up, including Google Cloud authentication and enabling necessary APIs. The skill guides users through the critical steps to authenticate and configure their environment, ensuring they are ready to interact with the Developer Device Platform. Users can list available Android devices, check their availability, and reserve them for testing purposes, all while being mindful of potential billing charges associated with device reservations.
Once a device is reserved, the skill facilitates the process of starting a connection forwarder to enable remote access to the device. It provides detailed instructions on polling session status and managing session expiration, ensuring that developers can effectively utilize the resources without running into issues. This skill is ideal for developers and testers who require reliable access to remote Android devices for application testing and debugging in a cloud environment.
It is important to note that this skill is specifically designed for Android devices and does not support iOS or local hardware inquiries. Users looking for a comprehensive solution for cross-platform device management may need to explore additional tools.
When to use it
Use this skill when you need to reserve and manage remote Android devices for testing and development purposes.
When not to use it
Avoid using this skill for iOS devices or local hardware management, as it is tailored specifically for Android devices.
What you can build with it
Testing Android Apps
Utilize the DDP to reserve Android devices for testing your applications in various environments.
Remote Debugging
Establish a connection to remote devices for debugging purposes without needing physical access.
Managing Device Sessions
Easily manage multiple device sessions, including checking statuses and extending leases as needed.
How to install Developer Device Platform
View source1. Install with the skills CLI
npx skills add google/skills/developer-device-platform-basics --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by googleDeveloper Device Platform
Developer Device Platform (DDP) is a Google fully managed, global infrastructure providing access to a wide variety of physical and virtual devices.
[!WARNING] Developer Device Platform (DDP) is currently at Preview.
[!IMPORTANT] For all devicerun and devicestreaming API operations (reserving, status checking, stopping/canceling, updating, or listing a session), always verify and use the exact instructions and curl commands provided in the linked reference
.mdfiles.
Authentication & Setup
CRITICAL: Before running any requests, you MUST ensure the environment is correctly initialized by following these steps:
Before running any requests, verify if the gcloud executable is present. If
missing, refer to the official
Google Cloud CLI Installation Guide
to install it on the current platform (Linux, macOS, Windows, etc.).
-
Google Cloud Authentication: Authenticate with your Google Cloud credentials and configure active Application Default Credentials (ADC) for the Developer Device Platform:
gcloud auth login --no-browser gcloud auth application-default login --no-browser -
Enable APIs (if not already enabled):
gcloud services enable devicerun.googleapis.com devicestreaming.googleapis.com testing.googleapis.com --quiet
[!NOTE] Cloud Testing API is needed for Device Streaming API during Preview.
-
Enable gcloud beta component:
gcloud components install beta -
Setup Environment Variables: Set up the required project variable and access token:
export PROJECT_ID=$(gcloud config get project) export ACCESS_TOKEN=$(gcloud auth application-default print-access-token 2>/dev/null) -
Python Environment: For instructions on setting up the python virtual environment, see start_adb_forwarder.md.
Listing Available Devices
To find the correct modelCode and osVersion to use when starting a session,
you can list the available devices:
-
List Models: Run the following command to list available Android device models:
gcloud beta device-run devices listUse the
IDcolumn to find the value for theCATALOG_IDparameter to describe a specific device (e.g.,shiba-36). -
Describe a Model: Run the API request to get more details about a specific model (e.g., supportedProducts, resolution). Always rely on the exact curl command and instructions provided in describe_device.md.
Starting a Device Session
When the user asks to reserve or connect to a device:
-
Check Device Availability:
Look up
CATALOG_IDof the device usingListing Available Devicesinstructions. Check the device availability of theCATALOG_IDby using the exact curl command and instructions provided in describe_device.md. The device MUST contain "deviceStreaming" in "supportedProducts" to be reserved.If no specific device is specified, use
CATALOG_ID=shiba-34(Pixel 8 on SDK 34).If
OS_VERSIONwas not specified by the user, ask the user to select a version from the device list (preferring the version with the highest availability {"available": "AVAILABILITY_HIGH" }).If
OS_VERSIONis unavailable fordeviceStreaming, do not reserve one. Prompt the user for an alternativeOS_VERSION. -
Extract Parameters:
model_id:modelCodefrom device details. Required.version_id:osVersionfrom device details. Required.
-
Reserve Device:
Rule: Explicit User Confirmation Required. Reserving a device incurs billing charges and creates cloud resources. The agent MUST ALWAYS warn the user explicitly about the billing costs that will be incurred on the active Google Cloud project (e.g.,
${PROJECT_ID}). You MUST STOP and ask for explicit approval before proceeding with any session creation commands.Then, run the API request with
model_idandversion_idto reserve the device. Always rely on the exact curl command and instructions provided in reserve_device.md.Parse the response to get
session_name(the session name, e.g.,projects/${PROJECT_ID}/deviceSessions/session-xxxxxx). If reservation fails, report the error. -
Wait for Session to be Active:
While waiting for the device session to be provisioned, poll the session status until
"state"is"ACTIVE". See session_status.md for the exact curl command.Repeat this check every 5 seconds to prevent hitting API rate limit. If it does not become active within 2 minutes (typically under 1 minute), report failure and cancel the session. Once active, extract
expireTimefrom the session JSON response and convert it to the user's local time in a human-readable format (e.g., "June 9, 2026 at 2:44 PM PDT"). -
Start Connection Forwarder: Start the ADB forwarder script to forward connection to the remote device. Always rely on the exact command and instructions provided in start_adb_forwarder.md. Ensure you record the Command ID.
-
Wait for Online and Parse Port: Wait for the forwarder to be online and extract the listening port. Always rely on the exact logic and instructions provided in start_adb_forwarder.md.
-
Provide Instructions to User:
Once online, run
adb -s localhost:{port} shell getprop ro.product.modelto retrieve the device model name. Then, print a message directly to the user in the chat (do NOT create any artifact file) with the following instructions:Device is ready!
Device Model: {device_model} OS Version: {version_id} ADB Address: localhost:{port} Session Expiration: {expire_time_human_readable_local} -
Save Session State: Save the
{session_name}and{command_id}in your conversation memory/context so you can clean it up later.
Viewing the Device Screen of a Reserved Device
The coding agent can directly interact with the remote device using adb. Users
may use a utility to display the screen and manually control the reserved device
in DDP. See view_device.md for an example utility.
Stopping a Device Session
When the user asks to stop, cleanup, or release the device:
-
Identify Session: Retrieve the active
{session_name}and{command_id}from your context. If you don't have them, list active sessions first (see helper command below) to find the session name. -
Cancel Session via API: Cancel the session via the API. Always rely on the exact curl command and instructions provided in cancel_session.md.
-
Terminate Connection Forwarder: Terminate the background process matching
{command_id}using your environment's process management capability. -
Confirm: Confirm to the user that the session has been cancelled and resources released.
Change Device Session Expiration Time
When the user asks to change the expiration time of an active device session:
Rule: Explicit User Confirmation Required. Extending a device session
incurs additional billing charges and creates cloud resources. The agent MUST
ALWAYS warn the user explicitly about the extra billing costs that will be
incurred on the active Google Cloud project (e.g., ${PROJECT_ID}). You MUST
STOP and ask for explicit approval before proceeding with any session extension
commands.
-
Extract Parameters:
session_name: The active session name.ttl: The new remaining duration (e.g.,3600s). Derive thettlif it's provided in another format.
-
Change Session via API: Change the session via the API using
updateMask=ttl. Always rely on the exact curl commands and instructions provided in update_session_expiration.md. -
Restart Connection Forwarder:
- Run
adb disconnect localhost:{port}to ensure the old forwarder connection is closed. - Stop the old connection forwarder corresponding to
{command_id}. - Start a new connection forwarder by following Step 5 in "Starting a
Device Session" (calculating the new
--ttlduration in seconds and storing the newly returned Command ID).
- Run
-
Confirm: Confirm to the user that the session duration has been updated and the connection forwarder has been restarted with the new TTL.
Helper: List Active Sessions
To find active sessions if you lost context, always rely on the curl command and instructions provided in list_sessions.md.
References
Frequently asked questions about Developer Device Platform
Similar skills
Android App Development
Comprehensive guide for Android and cross-platform app development.
Add App Clip to Expo App
Integrate lightweight iOS App Clips into your Expo project.
APK Reverse
Streamline your Android APK reverse engineering process.
Swift Expert
Master iOS/macOS development with Swift and SwiftUI.
React Native Expert
Build and optimize mobile apps with React Native and Expo.
Kotlin Specialist
Master idiomatic Kotlin with expert patterns and practices.
