Validator Agent
Analysis
This skill is a coherent pre-deployment validator, but it needs to run local project commands, so use it only on repositories and dependencies you trust.
Findings (3)
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.
cd <project> && npm run lint 2>&1 | tail -20 ... cd <project> && npm test 2>&1
The skill instructs the agent to run local npm commands in the selected project. This is expected for validation, but npm scripts can execute project-controlled code.
cd <project> && npx tsc --noEmit 2>&1 ... cd <project> && npx type-coverage 2>&1 || echo "type-coverage not installed — skip"
The documented validation flow uses npx-based tooling. That is normal for TypeScript validation, but npx/npm tooling may execute locally installed or fetched package code depending on the environment.
"version": "1.0.0"
The registry metadata reports version 1.1.0, while the included skill.json reports version 1.0.0. This is a minor provenance/coherence mismatch rather than evidence of harmful behavior.
