jina-image-search

jina-image-search is a skill for Claude Code from adamjali/claude-skills. It costs 61 tokens per session (1,299 once invoked), scanned A, original, MIT.

A web image-search add-on that finds and extracts image links using Jina AI, a web search and page-reading service.

In plain words
What is it for?
It is for finding photos and other images from websites such as Unsplash, Pexels, and Pixabay, including images needed for presentations, websites, or designs.
Why use it?
It saves time when collecting images from online sources for a project instead of searching and extracting them by hand.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_SKILL_DIR} variable. Also seen: mentions Claude Code.

Part of the jina-image-search plugin — 1 skill shipped together

Good fit It is for finding photos and other images from websites such as Unsplash, Pexels, and Pixabay, including images needed for presentations, websites, or designs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/adamjali/claude-skills/jina-image-search
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add adamjali/claude-skills --skill jina-image-search
Clone the repo
git clone --depth 1 https://github.com/adamjali/claude-skills

Made for: Claude Code.

Or install jina-image-search, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for jina-image-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/adamjali/claude-skills/jina-image-search/github.svg)](https://agentmods.dev/skills/adamjali/claude-skills/jina-image-search)
Your own site
<a href="https://agentmods.dev/skills/adamjali/claude-skills/jina-image-search"><img src="https://agentmods.dev/badge/skills/adamjali/claude-skills/jina-image-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for jina-image-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/adamjali/claude-skills/jina-image-search"><img src="https://agentmods.dev/badge/skills/adamjali/claude-skills/jina-image-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,299 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.01299
Opus 5 $0.00030 $0.00649
Sonnet 5 $0.00012 $0.00260
Haiku 4.5 $0.00006 $0.00130

Measured 12d ago against content hash 55d3864a7ffc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

jina-image-search scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/search-images.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl "https://s.jina.ai/?q=unsplash+mountains+landscape" \
plugins/jina-image-search/SKILL.md · 132 lines

How it starts

The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Jina AI Image Search & Web Scraping

<execution_context>

  • 🟢 Auto-execute: search, scrape, parse, return URLs
  • Stateless — no history file, no recovery
  • Auth: Bearer token read from the JINA_API_KEY environment variable </execution_context>

Overview

Jina AI provides two endpoints:

  • s.jina.ai - Search the web and return structured results
  • r.jina.ai - Scrape any URL and convert to GitHub-flavored markdown with embedded images

Authentication

This skill reads your Jina key from the JINA_API_KEY environment variable. Get a free key at https://jina.ai (no credit card; a new email address gets a fresh free token grant). Then set it in your shell profile:

export JINA_API_KEY="your-key"

Send it as a Bearer token:

Authorization: Bearer $JINA_API_KEY

Free no-key fallback (verified 2026-06)

If the key returns 402 (InsufficientBalanceError = balance exhausted), or to avoid spending it:

  • Reader r.jina.ai works WITHOUT a key — drop the Authorization header (free, per-IP rate-limited). Use it to scrape/read a page; its clean-markdown output often beats Claude Code's built-in WebFetch, so prefer it (or use both).
  • Search s.jina.ai REQUIRES a key (keyless = 401). When the key is dead, do the search half with Claude Code's built-in WebSearch tool (no key, no cost), then scrape the chosen URLs with keyless r.jina.ai.
  • The 402 is tied to the key's balance, not your IP, so keyless Reader works even when the key is broke.

Recovery order: (1) reads → keyless Reader; (2) search → built-in WebSearch, or mint a fresh free key at https://jina.ai and update JINA_API_KEY; (3) pay to top up only as a last resort.

Image Search Workflow

Step 1: Search for Images

Read the full file on GitHub · 132 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 132 lines · 61 tokens per session scan A 55d3864a7ffc

Subscribe to this mod's changes

jina-image-search is a skill published in the GitHub repository adamjali/claude-skills (1 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 1,299 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

branch-recap

Takes stock of what a branch actually changed, before it gets pushed — works out the scope itself, then lays the change out group by group in one pass: files touched, what was done and why, how, and what deserves a second look, quoting code only where a remark needs it rather than reprinting the diffs. Closes on a…

Malo-T/claude-toolbelt · 338 tokens

audit-context

Measures where a project's Claude context is going before applying any of clean-context's levers. Reports what Glob discovers with and without ignore files applied, the twenty largest files in the repo and which are generated, the cumulative size of every CLAUDE.md loaded for this working directory, and how many MCP…

Malo-T/claude-toolbelt · 218 tokens

slack-changelog

Turns what changed in a release into a Slack changelog a non-technical audience can read: filtered to what they would actually notice, one bullet per idea, plain language, no code vocabulary. Works out the scope itself across however many repositories sit in the working directory (a project can span several…

Malo-T/claude-toolbelt · 332 tokens

ignore-setup

Set up a project so Claude stops discovering lockfiles, generated code, minified assets and binaries on every search — a managed .ignore, the Glob setting that makes Glob obey it, and a short read-deny list for secrets. Use when someone asks for a .claudeignore, asks to exclude files from the context, says Claude…

Malo-T/claude-toolbelt · 157 tokens

plugin-commands

Commands for validating, testing, iterating on, and releasing plugins in this marketplace (claude-toolbelt) — plugin validate, watcher-parity check, eval, --plugin-dir dev loop, plugin tag. Use when validating a plugin before pushing, running skill evals, developing a plugin without touching the installed cache, or…

Malo-T/claude-toolbelt · 73 tokens

commit

Create a single well-crafted git commit from current changes. Analyzes diff, follows repo's commit style, and writes a concise "why not what" message.

sneg55/agent-starter · 35 tokens