reddit-competitor-analysis-api-skill
Analysis
This appears to be a coherent Reddit data-collection helper, but it uses your BrowserAct API key, sends search parameters to BrowserAct, and may run a long background task.
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.
TEMPLATE_ID = "85401899001481609" ... "workflow_template_id": TEMPLATE_ID
The local script delegates the actual Reddit collection workflow to a remote BrowserAct template identified by ID. This is purpose-aligned, but the remote workflow definition is not included in the local artifacts.
Run in background mode ... "background": true ... "timeout": 1800
The skill explicitly recommends background execution for long BrowserAct tasks and provides a timeout. This is disclosed and tied to the expected 5-20 minute runtime.
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 requires a BrowserAct API key and uses it as a bearer token for BrowserAct API calls. This is expected for the stated service integration, with no evidence of hardcoding or unrelated credential use.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
API_BASE_URL = "https://api.browseract.com/v2/workflow" ... requests.post(f"{API_BASE_URL}/run-task-by-template", json=payload, headers=headers)The skill sends the user's Reddit search keywords and filter parameters to the external BrowserAct API. This is disclosed and central to the skill's purpose.
