星座配对 - 即刻数据
PassAudited by ClawScan on May 9, 2026.
Overview
This skill appears to be a narrow zodiac-compatibility API lookup; the main thing to notice is that it uses and transmits a Jike API key.
This looks safe for its stated purpose. Before installing, make sure you are comfortable providing a Jike API key, confirm the API base URL has not been overridden unexpectedly, and use it only for the intended zodiac pairing lookups.
Findings (1)
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.
