用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/DreamLab-AI/agentbox --skill product-image-processor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | product-image-processor |
| description | Download, resize, and remove backgrounds from product images at scale |
| user-invocable | true |
| allowed-tools | ["Read","Write","Bash","Glob","Grep","WebFetch","AskUserQuestion","mcp__google__sheets_values_get","mcp__google__sheets_spreadsheet_get"] |
Download product images from a Google Sheet, normalize sizing, and remove backgrounds. Saves output at each processing stage.
Works with the master Google Sheet — the 33-column schema defined in ../../schema/product-schema.md. Image URLs are in column AC, product names in column C. Read ../../schema/sheet-conventions.md for CRUD patterns with MCP tools.
If no arguments provided, ask the user:
docs.google.com/spreadsheets/d/{ID}/...). This is typically the same master sheet used by Norma Jean.AC in the master schema, or the user can specify)C in the master schema). If not provided, derive names from the image URL/filename.~/Documents/Work-Docs/product-images-YYYY-MM-DD/ as default but let the user pick any path.Use mcp__google__sheets_spreadsheet_get to inspect the sheet, then mcp__google__sheets_values_get to read the image URL column and optional name column.
Build a list of { index, url, name } entries. Skip empty rows.
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.
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.
001-image.png, 002-image.png, etc.If the downloaded file is not a PNG (check extension or content type), convert it to PNG during the resize step.
Run a Python script to resize all images in originals/ → resized/:
from PIL import Image
import os, sys
input_dir = sys.argv[1] # originals/
output_dir = sys.argv[2] # resized/
max_edge = int(sys.argv[3]) if len(sys.argv) > 3 else 2000
for fname in sorted(os.listdir(input_dir)):
if not fname.lower().endswith(('.png', '.jpg', '.jpeg', '.webp', '.gif', '.bmp', '.tiff')):
continue
try:
img = Image.open(os.path.join(input_dir, fname))
img = img.convert("RGBA")
w, h = img.size
longest = max(w, h)
if longest > max_edge:
scale = max_edge / longest
new_w, new_h = int(w * scale), int(h * scale)
img = img.resize((new_w, new_h), Image.LANCZOS)
out_name = os.path.splitext(fname)[0] + ".png"
img.save(os.path.join(output_dir, out_name), "PNG")
print(f"OK: {fname} → {out_name} ({img.size[0]}x{img.size[1]})")
except Exception as e:
print()
Rules:
Check if rembg is installed. If not, install it:
pip3 install rembg onnxruntime
Then run background removal on all resized images → nobg/:
from rembg import remove
from PIL import Image
import os, sys, io
input_dir = sys.argv[1] # resized/
output_dir = sys.argv[2] # nobg/
for fname in sorted(os.listdir(input_dir)):
if not fname.lower().endswith('.png'):
continue
try:
input_path = os.path.join(input_dir, fname)
with open(input_path, 'rb') as f:
input_data = f.read()
output_data = remove(input_data)
img = Image.open(io.BytesIO(output_data))
img.save(os.path.join(output_dir, fname), "PNG")
print(f"OK: {fname}")
except Exception as e:
print(f"FAIL: {fname} — {e}")
Note: The first run of rembg downloads the u2net model (~170MB). Warn the user this may take a minute.
After processing, print a summary:
## Product Image Processing Complete
📁 Output: ~/Documents/Work-Docs/product-images-YYYY-MM-DD/
| Stage | Success | Failed |
|-------------|---------|--------|
| Downloaded | 12 | 1 |
| Resized | 12 | 0 |
| BG Removed | 12 | 0 |
### Failures
- 003-chair-arm.png: Download failed (404 Not Found)
Include the full path to the output folder so the user can open it.