Skills Agentes

Developer Device Platform Basics

Guía e instrucciones para gestionar dispositivos remotos en Developer Device Platform (DDP): reservar dispositivos Android, establecer túneles de conexión, comprobar sesiones o extender/cancelar leases. No usar para iOS o hardware local.

Oficial
Estrellas
19.5k

en todo el repo

Actividad
59

0–100, la ruta de este skill

Actualizado
el mes pasado

último commit aquí

Commits
4

últimos 90 días

Contexto
2.5k tok

71 tok en reposo

Paquete
11 archivos

27 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add google/skills --skill developer-device-platform-basics --agent claude-code

Se instala solo en este repositorio.

Este skill makes network requests.

Qué hace

  • Guía el proceso de reservar dispositivos Android remotos en Developer Device Platform (DDP) usando comandos gcloud y curl
  • Configura la autenticación de Google Cloud y habilita las APIs devicerun, devicestreaming y testing
  • Gestiona el ciclo de vida completo de la sesión: reserva, espera de estado ACTIVE, conexión ADB, extensión y cancelación
  • Advierte explícitamente sobre costos de facturación antes de reservar o extender sesiones, pidiendo confirmación del usuario

Úsalo cuando

  • Al reservar dispositivos Android remotos
  • Al establecer túneles de conexión con el dispositivo
  • Al comprobar el estado de una sesión
  • Al extender o cancelar una sesión (lease)

No lo uses cuando

  • Para consultas sobre dispositivos iOS
  • Para consultas sobre dispositivos o hardware local

Qué lo activa

Di cualquiera de estas frases y el agente debería cargar este skill.

  • Reserva un Pixel 8 con Android 34 en DDP
  • Conéctame a un dispositivo Android remoto vía ADB
  • Extiende la sesión del dispositivo por una hora más
  • Cancela mi sesión activa de dispositivo remoto

SKILL.md

En inglés

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 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-browser
    
  2. 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.

  1. Enable gcloud beta component:

    gcloud components install beta
    
  2. 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)
    
  3. 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.product.model to 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}
    
  8. 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:

  1. 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.

  2. Cancel Session via API: Cancel the session via the API. Always rely on the exact curl command and instructions provided in cancel_session.md.

  3. Terminate Connection Forwarder: Terminate the background process matching {command_id} using your environment's process management capability.

  4. 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.

  1. Extract Parameters:

    • session_name: The active session name.
    • ttl: The new remaining duration (e.g., 3600s). Derive the ttl if it's provided in another format.
  2. 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.

  3. 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 --ttl duration in seconds and storing the newly returned Command ID).
  4. 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

Reproducido de google/skills bajo licencia Apache-2.0. Leer esta página en markdown.

Archivos

11 archivos en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

Antes de instalar

Requiere gcloud CLI instalado, autenticación con Google Cloud (ADC), el componente beta de gcloud y las APIs devicerun/devicestreaming/testing habilitadas.

Necesita en el PATH:gcloud

Detalles

Creador
google
Licencia
Apache-2.0
Recursos incluidos
scripts en python + referencias
Repositorio
google/skills
Código fuente
Ver SKILL.md

Etiquetas

Más de google/skills

Este repo incluye 131 skills. Si instalas uno, normalmente ya tienes los demás. Ver el pack skills entero y su comando de instalación

Configura políticas de alerta de buenas prácticas para agentes de IA usando métricas OpenTelemetry (OTel), generando la salida como archivos de configuración Terraform (.tf).

Costo de contexto al activarse
4.2k tok
Tamaño del paquete
28 archivos
Última actualización
hace 19 días
Oficialdevops infraestructura

Descubre requisitos de forma interactiva y diseña arquitecturas de solución multiproducto, planos de solución y recomendaciones de despliegue para cargas de trabajo complejas en Google Cloud.

Costo de contexto al activarse
3.4k tok
Tamaño del paquete
5 archivos
Última actualización
hace 3 días
Oficialdevops infraestructura

Gestiona la provisión de clústeres GKE, credenciales, elección entre Autopilot y Standard, y despliegue de workloads en Google Kubernetes Engine.

Costo de contexto al activarse
914 tok
Tamaño del paquete
6 archivos
Última actualización
el mes pasado
Oficialdevops infraestructura

Planifica, ejecuta y valida actualizaciones y mantenimiento de clusters de Google Kubernetes Engine (GKE), tanto Standard como Autopilot, con planes, checklists y runbooks con comandos gcloud.

Costo de contexto al activarse
5k tok
Tamaño del paquete
4 archivos
Última actualización
hace 4 días
Oficialdevops infraestructura

Ajuste fino de modelos en Agent Platform: para afinar modelos abiertos o Gemini. No usar para entrenar fuera de Agent Platform, desplegar a endpoints o gestionar endpoints de serving.

Costo de contexto al activarse
6.4k tok
Tamaño del paquete
12 archivos
Última actualización
hace 4 días
Oficialaprendizaje

Gestiona y orquesta prompts en Agent Platform: crear, listar, recuperar, versionar o eliminar prompts gestionados; no sirve para entrenamiento ni despliegue de modelos.

Costo de contexto al activarse
2.2k tok
Tamaño del paquete
2 archivos
Última actualización
hace 4 días
Oficialaprendizaje