product-image-processor

product-image-processor is a skill for Claude Code from AlpacaLabsLLC/skills-for-architects. It costs 45 tokens per session (1,507 once invoked), scanned A, original, MIT.

A batch tool for downloading and preparing product images from an FF&E (furniture, fixtures, and equipment) schedule. It can resize images and remove their backgrounds while keeping the product library unchanged.

In plain words
What is it for?
Use it to process image URLs from a project's product library, create standardized product photos, and save each processing stage.
Why use it?
It avoids processing product photos one at a time and creates consistently sized images for later use.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Claude Code; mentions Codex.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is 📁 Output: ./product-images-YYYY-MM-DD/.

Part of the as plugin — 46 skills, 7 agents, 3 hooks shipped together

Good fit Use it to process image URLs from a project's product library, create standardized product photos, and save each processing stage.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/AlpacaLabsLLC/skills-for-architects
agentmods
npx agentmods add skills/alpacalabsllc/skills-for-architects/product-image-processor

Made for: Claude Code.

Or install as, the plugin that ships this one along with the rest of its 46 skills, 7 agents, 3 hooks.

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 product-image-processor

README.md
[![agentmods](https://agentmods.dev/badge/skills/alpacalabsllc/skills-for-architects/product-image-processor/github.svg)](https://agentmods.dev/skills/alpacalabsllc/skills-for-architects/product-image-processor)
Your own site
<a href="https://agentmods.dev/skills/alpacalabsllc/skills-for-architects/product-image-processor"><img src="https://agentmods.dev/badge/skills/alpacalabsllc/skills-for-architects/product-image-processor/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 product-image-processor

Your own site · 80×15
<a href="https://agentmods.dev/skills/alpacalabsllc/skills-for-architects/product-image-processor"><img src="https://agentmods.dev/badge/skills/alpacalabsllc/skills-for-architects/product-image-processor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,507 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00045 $0.01507
Opus 5 $0.00023 $0.00754
Sonnet 5 $0.00009 $0.00301
Haiku 4.5 $0.00005 $0.00151

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

Security

Grade A, and why

product-image-processor 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.

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.

Download each image using `curl` in Bash:
skills/product-image-processor/SKILL.md · 168 lines

How it starts

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

/as:product-image-processor — Product Image Processor

Harness note: use /as:<skill> on Claude Code and $<skill> on Codex. Resolve <skill-root> as the directory containing this loaded SKILL.md and <plugin-root> as the plugin root that contains skills/, and use equivalent native tools when host tool names differ.

Read product image records from the nearest project's product-library.csv, download them, normalize sizing, and remove backgrounds. Saves output at each processing stage without mutating the library.

Read ../../schema/product-schema.md and ../../schema/csv-conventions.md. Resolve the nearest ancestor containing PROJECT.md, strictly validate its product-library.csv, and address fields by the exact names Image URL and Product Name, never by position or letters.

Step 1: Get Input

If no arguments are provided, use the nearest project's product-library.csv and ask only for the output location when it cannot be inferred. Suggest ./product-images-YYYY-MM-DD/.

Step 2: Read URLs from CSV

Run python3 "<plugin-root>/skills/master-schedule/scripts/csv-library.py" validate product --project <project-root> before reading. Parse the entire UTF-8 CSV strictly and select the named Image URL and Product Name fields.

Build a list of { index, url, name } entries. Skip empty rows.

Step 3: Create Output Folders

Create the output directory at the user's chosen path with 3 subfolders:

<output-path>/
├── originals/     # Raw downloads
├── resized/       # Normalized sizing
└── nobg/          # Background removed

If the folder already exists, append a suffix: -2, -3, etc.

Step 4: Download Images

Download each image using curl in Bash:

curl -L -o "<output-path>" "<url>"

IMPORTANT: Use curl, NOT WebFetch. WebFetch processes content through an AI model which corrupts binary image data.

Name files as: 001-product-name.png, 002-product-name.png, etc.

  • Slugify the product name: lowercase, replace spaces/special chars with hyphens, strip consecutive hyphens
  • If no name column, extract a name from the URL filename (strip extension and query params)
  • If the URL gives no usable name, use 001-image.png, 002-image.png, etc.

Read the full file on GitHub · 168 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. 12d ago First seen · 168 lines · 45 tokens per session scan A 0afc2600b9be

Subscribe to this mod's changes

product-image-processor is a skill published in the GitHub repository AlpacaLabsLLC/skills-for-architects (351 stars, last pushed 8d ago), licensed MIT. It adds 45 tokens to every session and 1,507 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

tiktok-shop-branding

Brand building and positioning on TikTok Shop. Brand identity development, content pillars, community engagement, brand storytelling, and authenticity strategies. Use when the user asks about TikTok branding, brand building, brand identity, or brand positioning on TikTok.

nexscope-ai/eCommerce-Skills · 55 tokens

tiktok-shop-content-strategy

TikTok Shop content creation strategy and planning. Trending formats, viral hooks, product showcasing, hashtag strategy, and content calendar development. Use when the user asks about TikTok content strategy, viral content creation, TikTok marketing, or content planning.

nexscope-ai/eCommerce-Skills · 56 tokens

shopify-product-photography-guide

DIY product photography — setup, lighting, backgrounds, editing, lifestyle shots, 360 views.

nexscope-ai/eCommerce-Skills · 26 tokens

etsy-digital-products

Digital product creation and selling — templates, printables, planners, digital art, delivery setup.

nexscope-ai/eCommerce-Skills · 23 tokens

etsy-listing-photography

Product photography for Etsy — composition, lighting, backgrounds, editing, lifestyle shots, 360 views.

nexscope-ai/eCommerce-Skills · 26 tokens

watermark-engine

Generates a watermark overlay system for images and video with configurable positioning, opacity, tiling, and paywall integration for automatic removal on subscription or purchase. Use when user wants to add branding, attribution, or free-tier watermarks to visual content.

rshankras/claude-code-apple-skills · 54 tokens