image-asset-prep

image-asset-prep is a skill for Claude Code, Codex from BingHanOfUESTC/open_agent_team. It costs 0 tokens per session (554 once invoked), scanned A, original, MIT.

A tool for preparing real image files before they are placed into PowerPoint slides. It can process local files or selected web images into a consistent format and size.

In plain words
What is it for?
Use it to scan source folders, process chosen images, or prepare assets from a curated manifest.
Why use it?
It ensures the presentation renderer receives usable image assets instead of leaving empty placeholders or manual insertion tasks.

Skill for Claude CodeCodex

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

Good fit Use it to scan source folders, process chosen images, or prepare assets from a curated manifest.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/binghanofuestc/open_agent_team/image-asset-prep
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 BingHanOfUESTC/open_agent_team --skill image-asset-prep
Clone the repo
git clone --depth 1 https://github.com/BingHanOfUESTC/open_agent_team

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-asset-prep

README.md
[![agentmods](https://agentmods.dev/badge/skills/binghanofuestc/open_agent_team/image-asset-prep/github.svg)](https://agentmods.dev/skills/binghanofuestc/open_agent_team/image-asset-prep)
Your own site
<a href="https://agentmods.dev/skills/binghanofuestc/open_agent_team/image-asset-prep"><img src="https://agentmods.dev/badge/skills/binghanofuestc/open_agent_team/image-asset-prep/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-asset-prep

Your own site · 80×15
<a href="https://agentmods.dev/skills/binghanofuestc/open_agent_team/image-asset-prep"><img src="https://agentmods.dev/badge/skills/binghanofuestc/open_agent_team/image-asset-prep.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 554 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. 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.00000 $0.00554
Opus 5 $0.00000 $0.00277
Sonnet 5 $0.00000 $0.00111
Haiku 4.5 $0.00000 $0.00055

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

Security

Grade A, and why

image-asset-prep 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 7d ago.

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

teams/ppt_writer_team/skills/image-asset-prep/SKILL.md · 86 lines

How it starts

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

Image Asset Prep

Use this skill when a PPT needs real images from Boss-provided materials or public search results. For video search/linking, use it together with media-asset-sourcing.

Purpose

Prepare image assets before PPTX rendering so the encoder can insert concrete local files instead of leaving placeholders or asking the author to download images manually.

Tool

python teams/ppt_writer_team/skills/image-asset-prep/scripts/prepare_images.py \
  --scan-dir source_materials \
  --output-dir materials/images \
  --aspect-ratio 16:9 \
  --width 1600 \
  --height 900

For selected URLs or local files:

python teams/ppt_writer_team/skills/image-asset-prep/scripts/prepare_images.py \
  --input local/photo.jpg \
  --url https://example.com/image.jpg \
  --output-dir materials/images \
  --aspect-ratio 4:3

For a curated manifest:

python teams/ppt_writer_team/skills/image-asset-prep/scripts/prepare_images.py \
  --manifest materials/image_requests.json \
  --output-dir materials/images

Manifest Shape

[
  {
    "id": "hero_product",
    "source": "downloads/product.jpg",
    "alt": "Product in use",
    "aspect_ratio": "16:9",
    "fit": "cover"
  },
  {
    "id": "market_chart_photo",
    "url": "https://example.com/photo.jpg",
    "alt": "Storefront image",
    "aspect_ratio": "4:3"
  }
]

Outputs

materials/images/raw/
materials/images/processed/
materials/images/image_manifest.json

image_manifest.json contains id, original source, processed local path, dimensions, aspect ratio and alt/caption metadata. deck_spec.json should reference the processed local path or the image id from this manifest.

When preparing thumbnails for videos, save them under:

materials/media/thumbnails/

and record them in materials/media/media_manifest.json.

Rules

Prefer images from Boss-provided material when available.
When using public web images, save the image into materials/images/raw/ and record the source URL.
Never leave final slides with "download image" instructions.
Crop/resize before rendering so image boxes are visually full and do not contain avoidable empty margins.
Use cover crop for hero/photo slots and contain only when the full image must remain visible.
Do not use images whose source or rights are unclear for external-facing decks without review.

Read the full file on GitHub · 86 lines

Files

What ships with it

2 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. 7d ago First seen · 86 lines · 0 tokens per session scan A 920125ba3a58

Subscribe to this mod's changes

image-asset-prep is a skill published in the GitHub repository BingHanOfUESTC/open_agent_team (106 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 554 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-09-03.

Related

Other skills, from other repositories

ppt-generation

Use this skill when the user requests to generate, create, or make presentations (PPT/PPTX). Creates visually rich slides by generating images for each slide and composing them into a PowerPoint file.

bytedance/deer-flow · 44 tokens

morph-ppt

Use this skill when the user wants a .pptx with smooth cross-slide animation — PowerPoint Morph transitions, Keynote-style continuous motion, shapes that grow / move / rotate as the slide advances. Trigger on: 'morph', 'morph transition', 'smooth transition', 'continuous animation across slides', 'Keynote-style…

iOfficeAI/OfficeCLI · 169 tokens

pptx

A guide for turning a paper, outline, or structured text into a PowerPoint presentation. It covers an 8–12-slide structure, concise slide points, and generation of a .pptx file.

bojieli/ai-agent-book · 84 tokens

pptx

Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying…

agentscope-ai/QwenPaw · 152 tokens

morph-ppt-3d

3D Morph PPT — extends morph-ppt with GLB model insertion, cinematographic camera, model-content layout, and enriched visual design system.

iOfficeAI/OfficeCLI · 37 tokens

sn-ppt-entry

Entry point for PPT generation. Asks the user to choose a mode (fast, standard, or creative), then collects role / audience / scene / pagecount as needed. For standard mode, also asks how images should be sourced (AI generation, web search, or none), whether charts should use AI-generated infographics or ECharts, and…

OpenSenseNova/SenseNova-Skills · 204 tokens