Skip to content

Instantly share code, notes, and snippets.

@lethargicpanda
Last active April 6, 2026 21:52
Show Gist options
  • Select an option

  • Save lethargicpanda/f17030e24a0edc708d468219cb915d6d to your computer and use it in GitHub Desktop.

Select an option

Save lethargicpanda/f17030e24a0edc708d468219cb915d6d to your computer and use it in GitHub Desktop.
Google Photo Skill
name search_google_photos
description Searches the user's Google Photos library using the system's Search Activity Alias.
tools
intent_dispatch

Search Google Photos

This skill triggers the native search interface of Google Photos to find specific people, objects, or locations.

Parameters

Name Type Description Required
query String The subject to search for (e.g., "Sushi", "Mountains"). Yes

Intent Configuration

The agent must dispatch the following Android Intent:

  • Action: com.google.android.gms.actions.SEARCH_ACTION
  • Target Package: com.google.android.apps.photos
  • Target Component: com.google.android.apps.photos/.search.SearchActivityAlias
  • Extras:
    • query: {query} (String)

Instructions

  1. Identify when a user wants to browse or find existing photos.
  2. Extract the specific keywords from the user's request.
  3. Fire the intent_dispatch tool with the parameters above.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment