Agent Skillsdmccreary/ibook-skills › chapter-image-enhancer

chapter-image-enhancer

GitHub

为教科书章节添加高质量、免费授权的地图和照片。通过搜索公共领域及知识共享资源,优化图片并插入正文,附带说明和版权信息,提升内容可视化效果。

skills/archived/chapter-image-enhancer/SKILL.md dmccreary/ibook-skills

Trigger Scenarios

用户要求为章节添加图片或使其更具视觉吸引力 章节内容生成后、发布前需要增强视觉效果

Install

npx skills add dmccreary/ibook-skills --skill chapter-image-enhancer -g -y
More Options

Non-standard path

npx skills add https://github.com/dmccreary/ibook-skills/tree/main/skills/archived/chapter-image-enhancer -g -y

Use without installing

npx skills use dmccreary/ibook-skills@chapter-image-enhancer

指定 Agent (Claude Code)

npx skills add dmccreary/ibook-skills --skill chapter-image-enhancer -a claude-code -g -y

安装 repo 全部 skill

npx skills add dmccreary/ibook-skills --all -g -y

预览 repo 内 skill

npx skills add dmccreary/ibook-skills --list

SKILL.md

Frontmatter
{
    "name": "chapter-image-enhancer",
    "description": "Adds freely-licensed maps and photos to textbook chapters by sourcing from Wikimedia Commons and US government archives, then inserting them with captions and proper attribution."
}

Chapter Image Enhancer

Add high-quality, freely-licensed images to intelligent textbook chapters. This skill finds relevant maps and photos from public domain and Creative Commons sources, downloads and optimizes them for web, inserts them at appropriate locations with captions, and adds proper attribution.

When to Use

  • A chapter is text-heavy and would benefit from maps, photos, or diagrams
  • The user asks to "add images", "make it more visual", or "find photos for" a chapter
  • A chapter covers geographic, scientific, or visual topics where images are essential
  • After chapter content is generated but before final publication

Image Source Priority

The skill uses only images compatible with CC BY-NC-SA 4.0 textbooks. Search in this order:

Tier 1: US Government (Public Domain — No Restrictions)

US federal government works are public domain and the safest to use:

  • USDA — hardiness zone maps, soil maps, agricultural photos
  • EPA — ecoregion maps, environmental data visualizations
  • USGS — topographic maps, geological surveys, satellite imagery
  • USFWS — wildlife and habitat photos (Fish & Wildlife Service)
  • US Forest Service — forest and wilderness photos
  • NOAA — weather, climate, and ocean imagery
  • NASA — Earth observation and satellite photos
  • NPS — National Park Service landscape photos
  • Library of Congress — historical photos and maps

Tier 2: Wikimedia Commons (CC BY or CC BY-SA)

Wikimedia Commons hosts millions of freely-licensed educational images:

  • CC BY 2.0/3.0/4.0 — attribution required, fully compatible
  • CC BY-SA 2.0/3.0/4.0 — attribution + share-alike, compatible with CC BY-NC-SA
  • CC0 / Public Domain — no restrictions

Avoid these licenses (incompatible with CC BY-NC-SA 4.0):

  • CC BY-ND — No Derivatives conflicts with SA
  • All Rights Reserved — cannot use without explicit permission
  • CC BY-NC-ND — No Derivatives is incompatible

Tier 3: State Government and University Sources

State works are NOT automatically public domain (unlike federal). Check terms of use individually. Many state agencies and universities grant educational use.

Workflow

Step 1: Analyze the Chapter

Read the chapter's index.md to understand:

  • The chapter title and main topic
  • Major H2 sections — each is a candidate for an image
  • What types of images would be most helpful (maps, photos, diagrams, charts)
  • The subject domain (geography, biology, history, etc.) to guide image search

Identify 3-6 insertion points where an image would add the most value. Prioritize:

  1. Geographic topics → maps
  2. Species or organisms → photos
  3. Processes or systems → diagrams
  4. Historical topics → archival photos
  5. Locations or landmarks → landscape photos

Step 2: Find Images

For each insertion point, find a suitable image.

Using the Wikimedia API to get correct download URLs:

The Wikimedia API reliably returns actual image URLs (direct curl/wget often fails due to hash-path issues):

import urllib.request, json

title = "File:Example_Image.jpg"
api_url = f"https://en.wikipedia.org/w/api.php?action=query&titles={urllib.request.quote(title)}&prop=imageinfo&iiprop=url&iiurlwidth=1280&format=json"
req = urllib.request.Request(api_url, headers={"User-Agent": "TextbookProject/1.0 (Educational; CC-BY-NC-SA)"})
with urllib.request.urlopen(req) as resp:
    data = json.loads(resp.read())
    pages = data["query"]["pages"]
    for pid, page in pages.items():
        if "imageinfo" in page:
            url = page["imageinfo"][0].get("thumburl", page["imageinfo"][0]["url"])

The iiurlwidth=1280 parameter requests a pre-scaled thumbnail — this is faster than downloading the full-resolution original and resizing locally.

For US Government sources, direct URLs typically work fine with curl.

Important: Always verify the license before downloading. On Wikimedia Commons, check the file page for the license template. For US government images, confirm they come from a federal (not state or contractor) source.

Step 3: Download Images

Create a directory for the chapter's images:

docs/img/chapters/XX-chapter-name/

Download with Python's urllib (more reliable than curl for Wikimedia):

import urllib.request

headers = {"User-Agent": "TextbookProject/1.0 (Educational)"}
req = urllib.request.Request(url, headers=headers)
with urllib.request.urlopen(req) as resp:
    data = resp.read()
    with open(filepath, "wb") as f:
        f.write(data)

Note: Wikimedia rate-limits aggressively. If you get HTTP 429, wait 5 seconds and retry. Download images sequentially, not in parallel.

Step 4: Optimize for Web

Resize and compress images using Pillow:

from PIL import Image

img = Image.open(path)
max_width = 1200

if img.width > max_width:
    ratio = max_width / img.width
    img = img.resize((max_width, int(img.height * ratio)), Image.LANCZOS)

if path.endswith('.png') and img.mode != 'RGBA':
    # Convert to JPEG for smaller file size (unless transparency needed)
    img.convert('RGB').save(path.replace('.png', '.jpg'), 'JPEG', quality=82, optimize=True)
else:
    img.save(path, optimize=True)

Target file sizes:

  • Photos: under 500KB (JPEG quality 80-85)
  • Maps: under 600KB (JPEG if no transparency, PNG if needed)
  • Diagrams: under 300KB (PNG for sharp lines)

Step 5: Insert Images into the Chapter

Place each image at the identified insertion point using standard Markdown image syntax. Include a caption in italics below the image:

![Descriptive alt text for accessibility](../../img/chapters/XX-name/filename.jpg)
*Caption describing the image content and context. Source: Creator Name (License).*

Placement rules:

  • Insert images immediately after the section heading (H2) they relate to, before the first paragraph of text
  • One blank line before the image, one blank line after the caption
  • The alt text should describe the image content for screen readers
  • The caption should explain what the reader is looking at and credit the source

Caption format:

*[Description of what the image shows]. [Source attribution] ([License]).*

Examples:

*Big Bluestem grass towering in a tallgrass prairie. Photo: Jennifer Briggs / USFWS (CC BY 2.0).*
*EPA Level III Ecoregions of Minnesota. Source: U.S. Environmental Protection Agency (public domain).*

Step 6: Add Image Credits Section

Add an "Image Credits" section at the bottom of the chapter, before the "See Annotated References" link (or before "## Concepts Covered" if no references link exists):

## Image Credits

- [Brief description]: [Creator/Organization] ([License])
- [Brief description]: [Creator/Organization] ([License])

This serves as a consolidated attribution block for all images in the chapter, making license compliance easy to verify.

Step 7: Build and Verify

Run mkdocs build (or the project's build command) to verify:

  • No broken image paths
  • Images render at correct locations
  • GLightbox (if installed) enables click-to-zoom
  • Page load time is reasonable

License Compatibility Quick Reference

Source License Compatible with CC BY-NC-SA 4.0? Attribution Required?
Public Domain (US Gov) Yes No (but good practice)
CC0 Yes No
CC BY 2.0/3.0/4.0 Yes Yes
CC BY-SA 2.0/3.0/4.0 Yes Yes (SA carries through)
CC BY-NC 2.0/3.0/4.0 Yes Yes
CC BY-NC-SA Yes (same license) Yes
CC BY-ND No N/A
CC BY-NC-ND No N/A
All Rights Reserved No N/A

Common Pitfalls

  1. Wikimedia download URLs: Never guess the hash path. Always use the Wikimedia API to get the actual URL. The hash path (/a/ab/File.jpg) is computed from the filename and is easy to get wrong.

  2. State government images: Unlike federal works, state government images are NOT automatically public domain. Check each state's terms of use.

  3. Flickr uploads on Commons: Many Wikimedia Commons photos were uploaded from Flickr. The license shown on Commons is what matters (it was verified at upload time), even if the Flickr page has since changed.

  4. Missing alt text: Every image must have descriptive alt text for accessibility. Describe what the image shows, not just its title.

  5. Oversized images: Always resize before committing. A 5MB photo will slow page loads significantly. Target 1200px max width and under 500KB.

  6. Portrait-oriented photos: Very tall images (portrait orientation) can dominate the page. Consider whether a landscape crop would work better, or use CSS to constrain the height.

Example Output

For a chapter about Minnesota ecoregions, the skill would produce:

5 images in docs/img/chapters/02-ecoregions/:

File Source Size
mn-ecoregion-map.png EPA (public domain) 583 KB
usda-hardiness-zones-mn.jpg USDA-ARS (public domain) 301 KB
tallgrass-prairie.jpg USFWS via Wikimedia (CC BY 2.0) 383 KB
deciduous-forest.jpg Wikimedia Commons (CC BY-SA 2.0) 432 KB
boreal-forest-bwca.jpg US Forest Service (public domain) 113 KB

5 insertions in the chapter markdown, each with alt text, caption, and attribution.

1 Image Credits section at the bottom of the chapter consolidating all attributions.

Version History

  • fa205dc Current 2026-08-20 08:59

Same Skill Collection

skills/archived/causal-loop-diagram-generator/SKILL.md
skills/archived/diagram-reports-generator/SKILL.md
skills/archived/init-textbook/SKILL.md
skills/archived/interactive-infographic-overlay/SKILL.md
skills/archived/linkedin-announcement-generator/SKILL.md
skills/archived/linkedin-carousel-generator/SKILL.md
skills/archived/press-release-generator/SKILL.md
skills/archived/pronounce-button/SKILL.md
skills/archived/readme-generator/SKILL.md
skills/archived/register-book-analytics/SKILL.md
skills/archived/story-generator/SKILL.md
skills/archived/text-to-speech/SKILL.md
skills/archived/textbook-to-presentation-generator/SKILL.md
skills/archived/verified-infographic-generator/SKILL.md
skills/book-chapter-generator/SKILL.md
skills/book-installer/SKILL.md
skills/book-media-generator/SKILL.md
skills/book-publisher/SKILL.md
skills/chapter-content-generator/SKILL.md
skills/course-description-analyzer/SKILL.md
skills/docx-to-web-publisher/SKILL.md
skills/faq-generator/SKILL.md
skills/glossary-generator/SKILL.md
skills/learning-graph-generator/SKILL.md
skills/microsim-utils/SKILL.md
skills/quiz-generator/SKILL.md
skills/reference-generator/SKILL.md
skills/archived/docker-python-lab/SKILL.md
skills/archived/marp-generator/SKILL.md
skills/microsim-generator/SKILL.md

Metadata

Files
0
Version
163bb4a
Hash
15e3eb97
Indexed
2026-08-20 08:59

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-30 09:26
浙ICP备14020137号-1 $Carte des visiteurs$