BOM Compare Tool
Analysis
This skill appears aligned with comparing BOM spreadsheet files, with only minor notes about local file access and an undeclared spreadsheet dependency.
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.
const content = fs.readFileSync(filePath, 'utf8'); ... const wb = xlsx.readFile(filePath);
The tool reads local files supplied by path, which is necessary for comparing BOM documents but means the user should control which files are provided.
const xlsx = require('xlsx');The code depends on the external xlsx package, while the provided artifacts include no install spec, package manifest, or pinned dependency version.
