Headless Brave Browser
Analysis
This skill appears to do what it says: use a Brave API key for web search and fetch requested web pages for content extraction.
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.
const response = await fetch(url, { ... redirect: "follow" });The skill fetches HTTP/HTTPS URLs for content extraction, which is central to its purpose but gives the agent network-fetch capability.
Run once before first use: ```bash cd <skill-root> npm ci ```
The skill requires installing npm dependencies, which is expected for this Node.js implementation and is disclosed in setup instructions.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"X-Subscription-Token": cfg.BRAVE_API_KEY
The skill uses the Brave API key as an authentication token when calling the Brave Search API, matching the disclosed requirement.
