bg-remover
Analysis
This skill appears to perform the advertised local image background editing, with the main thing to notice being its user-directed installation of external Python packages and a model download.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
$PIP install rembg Pillow numpy onnxruntime --quiet
The installer fetches external Python packages without pinned versions or hashes. This is expected for the image-processing purpose, but it means the user relies on the current PyPI supply chain at install time.
首次运行会自动下载 U2-Net 模型(约 170MB),需要网络
The documentation discloses that first use may download a model over the network. This is purpose-aligned for rembg/U2-Net processing, but it is an external dependency users should be aware of.
