zhihu-search-api-skill
Analysis
This skill coherently uses BrowserAct to fetch Zhihu article results, with the main user considerations being API-key handling, third-party data sharing, and a long-running polling loop.
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.
while True: ... requests.get(f"{API_BASE_URL}/get-task-status?task_id={task_id}", headers=headers) ... time.sleep(10)The script polls the external task status in an unbounded loop until BrowserAct reports a terminal status.
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.
API_BASE_URL = "https://api.browseract.com/v2/workflow" ... requests.post(f"{API_BASE_URL}/run-task-by-template", json=payload, headers=headers)The script sends the search keyword, date filter, and limit to BrowserAct's external API to run the workflow.
