星座配对 - 即刻数据
PassAudited by VirusTotal on May 9, 2026.
Overview
Type: OpenClaw Skill Name: jike-zodiac-pairing-query Version: 1.0.0 The skill is a straightforward API wrapper for querying zodiac pairing information from jikeapi.cn. The Python script (zodiac_pairing_query.py) uses standard libraries to handle arguments and perform network requests, with no evidence of malicious behavior, data exfiltration, or command injection vulnerabilities.
Findings (0)
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.
Your Jike API key and the entered zodiac values are sent to the configured API endpoint; if JIKE_API_BASE_URL is unexpectedly set, they could be sent somewhere other than the default Jike API host.
The helper reads a Jike AppKey and sends it as a request parameter to the configured API endpoint; this is expected for the service, but the endpoint can be changed by an environment variable.
API_BASE_URL = os.environ.get("JIKE_API_BASE_URL", "https://api.jikeapi.cn").rstrip("/") ... urllib.parse.urlencode({**params, 'appkey': appkey})Use a dedicated Jike API key, avoid passing secrets with --key on shared machines, and verify JIKE_API_BASE_URL is unset or points to the intended Jike API endpoint.
