/developer-device-platform-basics
Provides guidance and instructions on managing remote devices on Developer Device Platform (DDP). Use when reserving remote Android devices, establishing connection tunnels, checking session status, or extending/cancelling leases. Don't use for iOS or local device/hardware
$ npx -y skills add google/skills --skill developer-device-platform-basics --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/developer-device-platform-basics
Context preview
The summary Claude sees to decide when to auto-load this skill.
Provides guidance and instructions on managing remote devices on Developer Device Platform (DDP). Use when reserving remote Android devices, establishing connection tunnels, checking session status, or extending/cancelling leases. Don't use for iOS or local device/hardware
SKILL.md
developer-device-platform-basics.SKILL.mdname: developer-device-platform-basics
description: >-
Provides guidance and instructions on managing remote devices on Developer Device Platform (DDP).
Use when reserving remote Android devices, establishing connection tunnels, checking session status, or extending/cancelling leases.
Don't use for iOS or local device/hardware inquiries.
metadata:
category: CloudInfrastructureAndServices
Developer 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 `.md` files.
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](https://docs.cloud.google.com/sdk/docs/install-sdk.md.txt) to install it on the current platform (Linux, macOS, Windows, etc.).
1. **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-browser2. **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.
3. **Enable gcloud beta component**:
gcloud components install beta
4. **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)5. **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:
1. **List Models**: Run the following command to list available Android device models:
gcloud beta device-run devices list
Use the `ID` column to find the value for the `CATALOG_ID` parameter to describe a specific device (e.g., `shiba-36`).
2. **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:
1. **Check Device Availability**:
Look up `CATALOG_ID` of the device using `Listing Available Devices` instructions. Check the device availability of the `CATALOG_ID` by 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_VERSION` was 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_VERSION` is unavailable for `deviceStreaming`, do not reserve one. Prompt the user for an alternative `OS_VERSION`.
2. **Extract Parameters**:
- `model_id`: `modelCode` from device details. Required.
- `version_id`: `osVersion` from device details. Required.
3. **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_id` and `version_id` to 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.
4. **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 `expireTime` from 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").
5. **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**.
6. **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].
7. **Provide Instructions to User**:
Once online, run `adb -s localhost:{port} shell getprop ro.prod
Read more
name: developer-device-platform-basics description: >- Provides guidance and instructions on managing remote devices on Developer Device Platform (DDP). Use when reserving remote Android devices, establishing connection tunnels, checking session status, or extending/cancelling leases. Don't use for iOS or local device/hardware inquiries. metadata: category: CloudInfrastructureAndServices
Developer 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 `.md` files.
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](https://docs.cloud.google.com/sdk/docs/install-sdk.md.txt) to install it on the current platform (Linux, macOS, Windows, etc.).
1. **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-browser2. **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.
3. **Enable gcloud beta component**:
gcloud components install beta
4. **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)5. **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:
1. **List Models**: Run the following command to list available Android device models:
gcloud beta device-run devices list
Use the `ID` column to find the value for the `CATALOG_ID` parameter to describe a specific device (e.g., `shiba-36`).
2. **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:
1. **Check Device Availability**:
Look up `CATALOG_ID` of the device using `Listing Available Devices` instructions. Check the device availability of the `CATALOG_ID` by 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_VERSION` was 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_VERSION` is unavailable for `deviceStreaming`, do not reserve one. Prompt the user for an alternative `OS_VERSION`.
2. **Extract Parameters**:
- `model_id`: `modelCode` from device details. Required.
- `version_id`: `osVersion` from device details. Required.
3. **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_id` and `version_id` to 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.
4. **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 `expireTime` from 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").
5. **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**.
6. **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].
7. **Provide Instructions to User**:
Once online, run `adb -s localhost:{port} shell getprop ro.prod
This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.
Repo: google/skills
Other skills on google-skills.
- /data-manager-api-audience-ingestion
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an
Open skill - /data-manager-api-event-ingestion
Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads,
Open skill - /data-manager-api-setup
Guides developers through client library installation and authentication setup steps for the Data Manager API. Use this skill when a user is getting started with the Data Manager API and needs to setup their local environment, install the client library, or setup access to the
Open skill - /google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share
Open skill - /google-ads-api-mcp-setup
Guides developers through downloading, configuring, and installing the official open-source Google Ads MCP Server. Use this skill when a user wants to connect their AI assistant (such as Gemini, Claude Code, or Cursor) to their Google Ads account to query campaigns or retrieve
Open skill - /google-ads-api-quickstart
Guides developers through Google Ads API quickstart: credential setup, choosing from 6 client libraries/REST, configuring environments, and running a "retrieve campaigns" script. Troubleshoots common setup errors: USER_PERMISSION_DENIED, login_customer_id issues, and
Open skill

