Senior Computer Vision
PassAudited by VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: senior-computer-vision Version: 2.1.1 The 'senior-computer-vision' skill bundle is a legitimate set of tools and documentation for computer vision engineering. The included Python scripts (dataset_pipeline_builder.py, inference_optimizer.py, and vision_model_trainer.py) provide functional logic for dataset management, model benchmarking, and training configuration without any evidence of malicious behavior, data exfiltration, or unauthorized system access. The instructions in SKILL.md are well-aligned with the stated purpose, and the documentation in the references directory provides standard industry guidance for CV architectures and deployment.
Findings (0)
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.
If a user analyzes a malicious model file, running the script could execute code on their machine.
The optimizer loads user-supplied PyTorch model files. PyTorch checkpoint loading can involve pickle-style deserialization in common configurations, so an untrusted .pt/.pth file may execute code when analyzed. This is purpose-aligned and user-directed, but it needs caution.
checkpoint = torch.load(str(self.model_path), map_location='cpu')
Only run this script on trusted model files. For untrusted weights, prefer safer formats such as safetensors or ONNX, or update the script to use safer PyTorch loading options where available.
Users have less external context for verifying where the code came from or how it is maintained.
The skill includes runnable Python scripts, but the registry information does not provide an upstream source or homepage for provenance checking.
Source: unknown Homepage: none
Review the included scripts before use, run them in a controlled environment, and pin/install ML dependencies from trusted sources.
