Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Get Wikipedia Image

ASecurity

Fetch the Wikipedia thumbnail image for any topic and save it as a local asset in the Logseq wiki. Returns the markdown image reference to embed in a page.

8 stars
0 votes
0 copies
0 views
Added 9/20/2026
developmentpythongobashgitapi

Works with

apimcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add tstapler/dotfiles --skill get-wikipedia-image --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Get Wikipedia Image?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Get Wikipedia Image
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/tstapler-get-wikipedia-image/badge)](https://www.skillsdirectory.com/skills/tstapler-get-wikipedia-image)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
description: Fetch the Wikipedia thumbnail image for any topic and save it as a local asset in the Logseq wiki. Returns the markdown image reference to embed in a page.
---

## Prerequisites

Install required Homebrew dependencies before use:

```bash
brew install libavif   # AVIF encoder/decoder (avifenc, avifdec)
```

`libavif` provides `avifenc` for converting downloaded JPEG/PNG images to AVIF format (~50% smaller than JPEG, supported in Logseq via Electron 28+).

# Get Wikipedia Image

Download a Wikipedia thumbnail for `{{args}}` and save it locally in the Logseq assets folder.

## Arguments

- **topic** (required): The topic name, e.g. "Oregon Grape" or "Sword Fern". Used both as the Wikipedia article title and to derive the local filename.
- **subfolder** (optional): Subdirectory under `logseq/assets/` to save into, e.g. `plants`. Defaults to `images`.

## Workflow

### Step 1 — Locate the wiki root

Look for the personal wiki at `~/Documents/personal-wiki`. Confirm it exists:

```bash
ls ~/Documents/personal-wiki/logseq/assets/ 2>/dev/null && echo "found" || echo "not found"
```

If not found, ask the user where their wiki is.

### Step 2 — Call the Wikipedia Summary API

Use `mcp__fetch__fetch` to call:

```
https://en.wikipedia.org/api/rest_v1/page/summary/{URL_ENCODED_TOPIC}
```

Replace spaces with underscores in the topic name, e.g. `Oregon_Grape`.

Extract from the JSON response:
- `thumbnail.source` — the pre-rendered thumbnail URL (standard 330px, safe to use)
- `title` — the canonical Wikipedia title (use for the image alt text)
- If `thumbnail` is missing, the article may have no image; report this to the user.

### Step 3 — Derive local filename

Convert the topic to a kebab-case slug:
- Lowercase all characters
- Replace spaces and underscores with hyphens
- Remove apostrophes and special characters

Examples:
- "Oregon Grape" → `oregon-grape`
- "False Solomon's Seal" → `false-solomons-seal`
- "Western Red Cedar" → `western-red-cedar`

Append the file extension from the thumbnail URL (`.jpg`, `.JPG`, `.png`, etc.).

Full asset path: `~/Documents/personal-wiki/logseq/assets/{subfolder}/{slug}{ext}`

### Step 4 — Download with curl

```bash
mkdir -p ~/Documents/personal-wiki/logseq/assets/{subfolder}

curl -L \
  --silent \
  --show-error \
  -H 'User-Agent: personal-wiki-image-downloader/1.0 (https://github.com/tylerstapler/personal-wiki; logseq-wiki)' \
  --retry 3 \
  --retry-delay 5 \
  -o "~/Documents/personal-wiki/logseq/assets/{subfolder}/{slug}{ext}" \
  "{thumbnail_url}"
```

**Wikimedia bot policy compliance** (https://w.wiki/4wJS):
- Use the thumbnail URL from the API (it returns standard 330px — a compliant size)
- Do NOT construct your own thumbnail URLs; guessed filenames will fail
- Identify the bot properly via User-Agent
- If you get a 429, wait for the `Retry-After` header value before retrying
- Do not download more than 2 files concurrently

### Step 5 — Return the result

Report back:
1. The local file path
2. The markdown embed syntax to paste into a Logseq page:

```markdown
![{Topic Name}](../assets/{subfolder}/{slug}{ext})
```

If the page being edited is not in `logseq/pages/`, adjust the relative path accordingly.

## Bulk Downloads

For downloading images for many topics at once, use the existing script:

```bash
uv run ~/Documents/personal-wiki/scripts/download-plant-images.py
```

To add new entries, append to the `PLANT_MAP` list in that file:
```python
("PageName.md", "Wikipedia_Article_Title", "local-slug"),
```

## Error Handling

| Error | Action |
|-------|--------|
| 404 from summary API | Topic not found on Wikipedia — try alternate title or spelling |
| `thumbnail` missing in response | No image on this Wikipedia article — report to user |
| 429 on download | Wait `Retry-After` seconds, then retry |
| File already exists | Skip download, return existing path |

Attribution

tstaplertstapler
View sourceMore from tstapler →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →