用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/KunanonJ/ai-skills-hub --skill aside-image-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | aside-image-search |
| description | Use when you need to search images |
| metadata | {"version":"0.1.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.
const 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.
interface 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;
}