Biome Config Validator
PassAudited by VirusTotal on May 1, 2026.
Overview
Type: OpenClaw Skill Name: biome-config-validator Version: 1.0.1 The skill is a legitimate utility for validating Biome (biome.json) configuration files. The core logic in `scripts/biome_config_validator.py` performs structural checks, rule validation, and best-practice analysis using standard Python libraries without any network activity, suspicious file access, or command execution. No indicators of malicious intent or prompt injection were found.
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.
The tool will read the file path supplied to it for validation.
The skill exposes a local CLI command that takes a file path. This is purpose-aligned for validating a Biome config, but users should run it only on intended configuration files.
python3 scripts/biome_config_validator.py lint biome.json
Invoke it on the intended biome.json or related config files only.
Users have less external provenance information for independently verifying the skill origin.
The package does not provide an upstream source or homepage, which is a provenance gap. The artifacts do not show remote installs, external dependencies, or hidden helpers.
Source: unknown; Homepage: none
Review the included script before use if provenance matters for your environment.
Using the skill executes local Python code to inspect the selected config file.
The skill runs an included Python script. Local script execution is central to the stated validator purpose, and the provided artifacts do not show eval, subprocess execution, downloads, or generated-code execution.
#!/usr/bin/env python3
Use it in a normal project workspace and review the script if your policy requires approving local code execution.
