image-optimization
/install image-optimization
SEO On-Page: Image Optimization
Guides image optimization for Google Search (text results, Image Pack, Google Images, Discover), Core Web Vitals (LCP), and accessibility. Consolidates image-related best practices from components (hero, trust-badges) and pages (landing-page). References: Google Image SEO, Semrush Image SEO.
When invoking: On first use, if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output.
Scope
- Discovery & indexing: HTML img elements, image sitemap
- Format & performance: WebP, responsive images, lazy loading, LCP; full CWV optimization in core-web-vitals
- Metadata: Alt text, file names, captions
- Preferred image: primaryImageOfPage, og:image; thumbnail next to title/description in search results
- Structured data: ImageObject, image in Article/Product/etc.
Initial Assessment
Check for project context first: If .claude/project-context.md or .cursor/project-context.md exists, read it for brand and page context.
Identify:
- Context: Hero, content page, product, trust badge, social preview
- Above vs below fold: LCP candidate (hero) vs lazy-loadable
- Image count: Single hero vs gallery, programmatic pages
1. Discovery & Indexing
Use HTML Image Elements
Google finds images in the src attribute of \x3Cimg> (including inside \x3Cpicture>). CSS background images are not indexed.
| Do | Don't |
|---|---|
\x3Cimg src="puppy.jpg" alt="Golden retriever puppy" /> |
\x3Cdiv style="background-image:url(puppy.jpg)"> |
Image Sitemap
Submit an image sitemap to help Google discover images it might otherwise miss. Image sitemaps can include URLs from CDNs (other domains); verify CDN domain in Search Console for crawl error reporting.
Structure (from Google):
\x3C?xml version="1.0" encoding="UTF-8"?>
\x3Curlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
\x3Curl>
\x3Cloc>https://example.com/page\x3C/loc>
\x3Cimage:image>
\x3Cimage:loc>https://example.com/image.jpg\x3C/image:loc>
\x3C/image:image>
\x3C/url>
\x3C/urlset>
See xml-sitemap for sitemap index and submission. Image sitemap is an extension; can be standalone or combined with page sitemap.
2. Format & Performance
Supported Formats
Google supports: BMP, GIF, JPEG, PNG, WebP, SVG, AVIF. Match filename extension to format.
| Format | Best for | Notes |
|---|---|---|
| WebP | Photos, graphics | Smaller files, faster load; lossy + lossless; transparency, animation |
| AVIF | Modern browsers | Even smaller than WebP; check support |
| JPEG | Standard photos | Fallback; widely supported |
| PNG | Transparency, detail | Larger; use when needed |
| SVG | Icons, logos | Scalable; use \x3Ctitle> for inline SVG alt |
| GIF | Simple animation | First frame only for preview |
Responsive Images
Use \x3Cpicture> or srcset for different screen sizes. Always provide fallback src—some crawlers don't understand srcset.
\x3Cimg
srcset="image-320w.jpg 320w, image-480w.jpg 480w, image-800w.jpg 800w"
sizes="(max-width: 320px) 280px, (max-width: 480px) 440px, 800px"
src="image-800w.jpg"
alt="Descriptive alt text">
Picture element (format fallback, e.g. WebP → PNG):
\x3Cpicture>
\x3Csource type="image/webp" srcset="image.webp">
\x3Cimg src="image.png" alt="Descriptive alt text">
\x3C/picture>
Data URI (Inline Images)
Base64 data URIs (data:image/...;base64,...) reduce HTTP requests but increase HTML size. Use sparingly for small icons; avoid for large images. See web.dev.
Resize & Compress
- Max width: Generally ≤2,500px; match container max-width
- Compression: WebP preferred; quality 75–85 for lossy; 72dpi for web
- LCP: Hero/above-fold images are LCP candidates; optimize aggressively
Lazy Loading
Use loading="lazy" only for below-fold images. Above-fold images (hero) must load immediately—lazy loading them hurts LCP.
\x3Cimg src="hero.jpg" alt="..." loading="eager">
\x3Cimg src="below-fold.jpg" alt="..." loading="lazy">
3. Alt Text
Alt text improves accessibility (screen readers, low bandwidth) and SEO (Google uses it with computer vision to understand images). It also serves as anchor text if the image is a link.
Best Practices
| Do | Don't |
|---|---|
| Useful, information-rich description | Keyword stuffing |
| Context of page content | "image of" or "photo of" (redundant) |
| Max ~125 characters (some assistive tech truncates) | Empty alt on meaningful images |
| Descriptive for functional images | Alt on purely decorative images (use alt="") |
Examples (from Google):
- ❌ Missing:
\x3Cimg src="puppy.jpg"/> - ❌ Stuffing:
alt="puppy dog baby dog pup pups puppies..." - ✅ Better:
alt="puppy" - ✅ Best:
alt="Dalmatian puppy playing fetch"
Captions
Google extracts image context from captions and nearby text. Use \x3Cfigcaption> or descriptive text near the image.
| Use | Purpose |
|---|---|
| Topic relevance | Caption describes image subject; supports indexing |
| Featured Snippets | Images near answers with captions can capture thumbnail slots; see featured-snippet |
| Image Pack | Alt + caption + file name help Image Pack display; see serp-features |
Inline SVG
Use \x3Ctitle> inside SVG for accessibility:
\x3Csvg aria-labelledby="svgtitle1">
\x3Ctitle id="svgtitle1">Descriptive text for the SVG\x3C/title>
\x3C/svg>
4. File Names
Descriptive filenames give Google light clues about subject matter.
| Do | Don't |
|---|---|
apple-iphone-15-pink-side-view.jpg |
IMG00353.jpg |
| Short, hyphen-separated | Generic: image1.jpg, pic.gif |
| Localize filenames for translated pages | Overly long filenames |
5. Preferred Image (SERP Thumbnail & Discover)
When users search for keywords, optimized images can appear as thumbnails next to the page title and description in search results—enhancing visibility and CTR. Google also uses these images for Google Discover. Search Engine Land
Google selects thumbnails automatically from multiple sources. Influence selection via:
Schema: primaryImageOfPage
{
"@context": "https://schema.org",
"@type": "WebPage",
"url": "https://example.com/page",
"primaryImageOfPage": "https://example.com/images/cat.png"
}
Or attach image to main entity (e.g. BlogPosting, Article) via mainEntity or mainEntityOfPage.
Open Graph
\x3Cmeta property="og:image" content="https://example.com/images/cat.png">
Preferred image rules: Relevant, representative; avoid generic (e.g. logo) or text-heavy images; avoid extreme aspect ratios; high resolution. See open-graph, twitter-cards for social specs.
Google Discover (if targeting Discover): ≥1200px wide; ≥300KB; 16:9 aspect ratio preferred; important content visible in landscape crop.
6. Page Context
- Title & meta description: Google uses page title and meta for image result snippets. See title-tag, meta-description.
- Placement: Put images near relevant text; page subject matter influences image indexing.
- Same URL: Reference the same image with the same URL across pages for cache efficiency and crawl budget.
7. Structured Data
Add structured data for rich results in Google Images (badges, extra info). Image attribute is required for eligibility. See schema-markup for ImageObject, Article, Product, Recipe, etc.
8. Specs by Context
| Context | Priority | Notes |
|---|---|---|
| Hero | LCP, alt, no lazy | See hero-generator; above-fold, fast load |
| Article / Blog hero | 1200–1600px wide; proportional height; 1200×630 for og:image | Same image for Schema, Open Graph, Twitter Cards; under 200 KB; WebP preferred; descriptive alt; set width/height to prevent CLS; use srcset/sizes for responsive; articles with relevant images get ~94% more views |
| Trust badges | Alt text | See trust-badges-generator; e.g. "Norton Secured" |
| Landing page | All above | See landing-page-generator Pre-Delivery Checklist |
| OG / Twitter | 1200×630, 1200×675 | See open-graph, twitter-cards |
| Platforms | Per-platform | X, LinkedIn, Pinterest—see platform skills |
9. Opt-Out & SafeSearch
- Inline linking opt-out: Prevent full-sized image display in Google Images via HTTP referrer check (200 or 204). See Google docs.
- SafeSearch: Label pages for explicit content if applicable.
Output Format
- Alt text suggestions per image
- Captions (if applicable; snippet/Image Pack context)
- File name recommendations
- Format (WebP, fallback)
- Responsive (srcset/sizes or picture)
- Lazy loading (above-fold vs below-fold)
- Image sitemap (if many images)
- Preferred image (schema, og:image) for key pages
Related Skills
- core-web-vitals: LCP, INP, CLS; image optimization supports LCP
- xml-sitemap: Sitemap structure; image sitemap extension
- open-graph, twitter-cards: og:image, twitter:image; social preview
- schema-markup: ImageObject, Article/Product image
- content-optimization: Multimedia in content; defers image SEO to this skill
- featured-snippet: Images near answers + captions; snippet thumbnail
- serp-features: Image Pack; alt, captions, file names
- visual-content: Visual content for social, infographics; website images use this skill
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install image-optimization - 安装完成后,直接呼叫该 Skill 的名称或使用
/image-optimization触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
image-optimization 是什么?
When the user wants to optimize images for search engines and performance. Also use when the user mentions "image SEO," "alt text," "image captions," "figcap... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 159 次。
如何安装 image-optimization?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install image-optimization」即可一键安装,无需额外配置。
image-optimization 是免费的吗?
是的,image-optimization 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
image-optimization 支持哪些平台?
image-optimization 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 image-optimization?
由 Kostja Zhang(@kostja94)开发并维护,当前版本 v1.2.1。