OpenClaw AVIF to JPG

v1.0.0

Convert `.avif` images to `.jpg` using a CLI workflow for one or more input paths. Use when the user asks to convert AVIF files, batch-convert a folder of AV...

0· 266·0 current·0 all-time
byKen Chen@guoway
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included Python script and SKILL.md. The script performs local AVIF→JPEG conversion using Pillow and an AVIF plugin — nothing in the package requests unrelated resources or privileges.
Instruction Scope
SKILL.md instructs installing Pillow and pillow-avif-plugin and running the bundled script on provided paths. The instructions and script only read the input paths and write JPEGs next to source files; they do not reference unrelated system files, credentials, or external endpoints.
Install Mechanism
There is no automatic install spec; dependency installation is manual via pip from PyPI as noted in SKILL.md. No downloads from unknown URLs or extracted archives are present in the package.
Credentials
The skill requires no environment variables, credentials, or config paths. The dependencies and behavior are proportional to the conversion task.
Persistence & Privilege
always is false and the skill does not request persistent or system-wide privileges, nor does it modify other skills or global agent settings.
Assessment
This skill appears coherent and limited to converting AVIF files to JPEGs. Before running: (1) review and run the included script in a controlled environment (virtualenv/container) and install Pillow and pillow-avif-plugin from PyPI; (2) confirm you want files written next to the sources (it creates sibling folders and will overwrite only with --overwrite); (3) test on a small sample to verify output quality and behavior; and (4) as a general precaution, only install packages from PyPI you trust and inspect third-party dependencies if you have strict supply-chain requirements.

Like a lobster shell, security has layers — review code before you run it.

latestvk97ckbmz9v7zcjjnxb96kz9h7s827d29
266downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

OpenClaw AVIF to JPG

Overview

Run the bundled Python script to convert AVIF images into JPEG. Accept one folder path or multiple file/folder paths and place output beside source paths.

Quick Start

  1. Ensure dependencies exist:
python3 -m pip install Pillow pillow-avif-plugin
  1. Convert one folder:
python3 scripts/avif2jpg.py /path/to/folder
  1. Convert multiple files:
python3 scripts/avif2jpg.py /path/a.avif /path/b.avif
  1. Recursively convert folder:
python3 scripts/avif2jpg.py /path/to/folder --recursive

Output Rules

  • If input is a folder /data/photos, output goes to sibling folder /data/photos_jpg.
  • If input is a file /data/a.avif, output goes to /data/a.jpg.
  • Skip non-.avif files and print warnings.

Command Options

  • --quality <1-100>: Set JPEG quality (default 92).
  • --overwrite: Overwrite existing output file.
  • --recursive: Recursively scan folders.

Execution Checklist

  1. Resolve and validate each input path first.
  2. Install dependencies if Pillow or AVIF plugin is missing.
  3. Run scripts/avif2jpg.py with user options.
  4. Report converted files, skipped files, and failures.

Comments

Loading comments...