web-search-scraper-api-skill
Analysis
This skill appears to do what it says—send a user-provided URL to BrowserAct and print extracted Markdown—but users should understand it uses a BrowserAct API key and a third-party scraping workflow.
Findings (4)
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.
The website URL to extract content from. Supports any HTTP/HTTPS URL.
The skill is intentionally broad and can direct a scraping API at any user-supplied web URL.
TEMPLATE_ID = "85961818557645714" ... API_BASE_URL = "https://api.browseract.com/v2/workflow"
The actual extraction work is delegated to a remote BrowserAct workflow template identified by ID, rather than fully implemented in the local artifact.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
api_key = os.getenv("BROWSERACT_API_KEY") ... headers = {"Authorization": f"Bearer {api_key}"}The script reads a BrowserAct API key from the environment and uses it as a bearer token for BrowserAct API requests.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
{"name": "target_url", "value": target_url} ... requests.post(f"{API_BASE_URL}/run-task-by-template", json=payload, headers=headers)The user-provided target URL is sent to the external BrowserAct API to run the scraping workflow.
