Servicenow Docs
Analysis
This appears to be a benign ServiceNow documentation lookup skill; the main things to notice are that it sends queries to ServiceNow and uses a version-ranged npm 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.
let url = `${ZOOMIN_API}?q=${encodeURIComponent(query)}&publication=latest`; ... const response = await fetch(url);The tool sends user-provided search terms to an external ServiceNow documentation API. This is disclosed and purpose-aligned, but users should know their queries leave the local environment.
"dependencies": { "zod": "^4.3.5" }The package uses a semver caret range rather than an exact pinned dependency. This is a common, low-risk pattern for a small validation dependency, but it can allow future dependency version drift.
