image-process

image-process is a skill for Claude Code, Codex from Orkas-AI/Orkas-Awesome-AgentSkills. It costs 0 tokens per session (825 once invoked), scanned A, original, MIT.

A guide for deterministic editing of existing local image files, such as resizing, cropping, rotating, converting, compressing, or removing metadata. It is intended for predictable file changes rather than AI-generated visual edits.

In plain words
What is it for?
Use it to create web thumbnails, normalize image batches, change formats or dimensions, adjust quality, or strip EXIF metadata.
Why use it?
It helps prepare images consistently while protecting the original files and making lossy or batch operations explicit.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create web thumbnails, normalize image batches, change formats or dimensions, adjust quality, or strip EXIF metadata.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orkas-ai/orkas-awesome-agentskills/image-process
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 Orkas-AI/Orkas-Awesome-AgentSkills --skill image-process
Clone the repo
git clone --depth 1 https://github.com/Orkas-AI/Orkas-Awesome-AgentSkills

Made for: Claude Code, Codex.

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 image-process

README.md
[![agentmods](https://agentmods.dev/badge/skills/orkas-ai/orkas-awesome-agentskills/image-process/github.svg)](https://agentmods.dev/skills/orkas-ai/orkas-awesome-agentskills/image-process)
Your own site
<a href="https://agentmods.dev/skills/orkas-ai/orkas-awesome-agentskills/image-process"><img src="https://agentmods.dev/badge/skills/orkas-ai/orkas-awesome-agentskills/image-process/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 image-process

Your own site · 80×15
<a href="https://agentmods.dev/skills/orkas-ai/orkas-awesome-agentskills/image-process"><img src="https://agentmods.dev/badge/skills/orkas-ai/orkas-awesome-agentskills/image-process.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 825 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00000 $0.00825
Opus 5 $0.00000 $0.00413
Sonnet 5 $0.00000 $0.00165
Haiku 4.5 $0.00000 $0.00082

Measured 11d ago against content hash 023017d03fca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

image-process scanned grade A with 0 findings 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/image_process.py), 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

creation/skills/image-process/SKILL.md · 97 lines

How it starts

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

Image Process

When to Use

Use this skill when the user already has local image files and needs deterministic post-processing:

  • Resize, crop, thumbnail, rotate, convert format, compress, set quality, or strip EXIF.
  • Normalize a batch of images for web, social, app, marketplace, or document delivery.
  • Produce non-destructive output files while preserving originals.

Do not use this skill for semantic AI edits such as "remove this person", "make the subject prettier", "change the background to a beach", or "generate a new image". Those require image design/editing or an AI image tool.

Workflow

  1. Confirm inputs:
    • exact file paths or glob range.
    • target operation, dimensions, output format, output directory, and whether metadata should be stripped.
  2. Protect originals:
    • default to writing into an output directory or adding a suffix.
    • do not overwrite originals unless the user explicitly confirms overwrite.
  3. For batches:
    • list or count matched files before processing.
    • confirm if the operation is destructive, lossy, or large-scale.
  4. Process in a stable order:
    • auto-orient from EXIF, crop/fit, resize, convert, strip metadata, save quality.
  5. Verify outputs:
    • path, dimensions, format, file size, and failures.

Script

Use scripts/image_process.py when Python and Pillow are available.

Examples:

python scripts/image_process.py --input cover.png --output-dir out --width 1080 --format webp --quality 85 --strip-exif
python scripts/image_process.py --input "images/*.png" --output-dir out --width 1080 --height 1080 --fit cover --format jpg --quality 90

Install dependency if needed:

python -m pip install Pillow

Do not install dependencies without user approval in restricted or shared environments.

Return Format

Return:

{
  "ok": true,
  "outputs": [
    {
      "path": "output.webp",
      "dimensions": "1080x1080",
      "format": "WEBP",
      "file_size": 123456,
      "operations": ["resize", "convert", "strip_exif"]
    }
  ],
  "failed": []
}

Read the full file on GitHub · 97 lines

Files

What ships with it

1 file 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. 11d ago First seen · 97 lines · 0 tokens per session scan A 023017d03fca

Subscribe to this mod's changes

image-process is a skill published in the GitHub repository Orkas-AI/Orkas-Awesome-AgentSkills (13 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 825 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

viral-tech-reel-editor

End-to-end viral tech reel production for Instagram Reels and TikTok using 2026 trend grammar — retention-first pacing, punch-ins, 3D cinematic AI-generated shots, motion design graphics, proof b-roll, trending SFX, karaoke captions (Georgian/English), safe-zone layout, and QA-gated 1080x1920 export. This skill should…

tornikebolokadze1-cyber/awesome-ai-pulse-georgia · 172 tokens

hive.image-generation

Required before calling imagegenerate. Create and edit images from a prompt — generate an image, make a picture / logo / illustration / icon / banner / poster / thumbnail / hero image / mockup / product shot / social graphic, or edit / restyle / combine existing images from reference images. Uses OpenAI gpt-image-2…

aden-hive/hive · 149 tokens

audio-production

Professional audio production for music, podcasts, and sound design. Use when working with audio recording, mixing, mastering, or sound design for any medium.

travisjneuman/.claude · 33 tokens

brand-identity

Brand strategy and identity design for businesses and products. Use when creating brand guidelines, developing visual identity systems, or defining brand positioning.

travisjneuman/.claude · 30 tokens

graphic-design

Professional graphic design principles for digital and print media. Use when creating visual designs, choosing color palettes, typography, layouts, or providing design feedback.

travisjneuman/.claude · 32 tokens

guizang-ppt-skill

A generator for presentation decks delivered as a single HTML file that runs in a web browser. It provides magazine-style and Swiss-style visual templates for swipeable presentations.

seaworld008/Commonly-used-high-value-skills · 56 tokens