baidu-maps-poi-ai-search
Analysis
The skill appears to perform the advertised Baidu Maps POI search, but it can log a Baidu API key if the key is supplied in the JSON request.
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.
import requests
The skill has no install spec and declares only python3 as a required binary, but the code depends on the external requests package.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
print(f"success parse request body: {params}", file=sys.stderr) ... ak = params.get("ak") or os.getenv("BAIDU_AK")The script accepts a Baidu API key in the JSON request and logs the entire parsed request before redaction. If a user supplies 'ak' in JSON, the API key can appear in stderr logs.
