Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when you need to search images
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | -53% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -49% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -27% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -42% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -7% | 0% |
Use the imageSearch global in the REPL tool. It fetches Google Images with the browser profile's cookies, parses result metadata from the returned HTML, and returns compact JSON. You do not need to manually inspect the DOM.
jsconst results = await imageSearch.search('max verstappen', { limit: 10 }); console.log(JSON.stringify(results, null, 2)); // → [{ title, sourceName, pageUrl, imageUrl, thumbnailUrl, width, height, dominantColor, licensable }]
imageSearch.search(query: string, opts?: ImageSearchOptions): Promise<ImageSearchResult[]>Search Google Images. Returned imageUrl points to the discovered original image when Google exposes it. thumbnailUrl points to Google's thumbnail cache. License hints from Google are not legal guarantees; verify before reuse. Browse the Google Images page directly if the helper fails.
tsinterface ImageSearchOptions { limit?: number; // max search results. (default: 20) safeSearch?: 'active' | 'off'; size?: 'large' | 'medium' | 'icon'; color?: 'black' | 'blue' | 'brown' | 'gray' | 'green' | 'orange' | 'pink' | 'purple' | 'red' | 'teal' | 'transparent' | 'white' | 'yellow'; type?: 'animated' | 'clipart' | 'lineart'; license?: 'creativeCommons' | 'commercial'; time?: 'day' | 'week' | 'month' | 'year'; } interface ImageSearchResult { /** Human-readable image/result title from Google or the source page. */ title: string; /** Publisher or site name when Google exposes it. */ sourceName?: string; /** Source page that contains the image. Open this to inspect context or attribution. */ pageUrl: string; /** Best-effort original image URL. Prefer this when you need the actual image asset. */ imageUrl?: string; /** Google thumbnail URL. Useful for quick preview when `imageUrl` is missing or huge. */ thumbnailUrl?: string; /** Original image width in pixels when Google exposes it. */ width?: number; /** Original image height in pixels when Google exposes it. */ height?: number; /** Dominant CSS color from Google, useful for quick UI placeholders. Example: `rgb(192,198,224)`. */ dominantColor?: string; /** Google marked the result as licensable or it came from a license-filtered search. Example: `true`. */ licensable?: boolean; }
Other measured skills in the registry, with their headline benchmark lift.