唐诗宋词元曲查询 - 即刻数据

PassAudited by ClawScan on May 9, 2026.

Overview

This appears to be a read-only poetry lookup skill that uses a Jike API key and calls the Jike API; the main thing to notice is its handling of that credential.

This skill looks coherent for read-only Chinese poetry queries. Before installing, make sure you are comfortable providing a Jike API key to this third-party API wrapper, keep the API base URL trusted, and review the full script if you need higher assurance because the provided source view is truncated and the source is listed as unknown.

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.

What this means

The skill will use your Jike API key to perform lookups. If configuration is changed to an untrusted API base URL, that key could be sent somewhere other than the default Jike API.

Why it was flagged

The script reads a Jike AppKey from configuration and appends it to API requests. This is expected for the stated service, but it is still credential use that depends on a trusted API endpoint.

Skill content
API_BASE_URL = os.environ.get("JIKE_API_BASE_URL", "https://api.jikeapi.cn").rstrip("/") ... APPKEY_ENV_NAMES = ("JIKE_POETRY_QUERY_KEY", "JIKE_APPKEY") ... urlencode({**params, 'appkey': appkey})
Recommendation

Use a dedicated Jike AppKey, prefer environment variables over command-line key passing, and leave JIKE_API_BASE_URL unset unless you intentionally trust the alternate endpoint.

What this means

You cannot easily verify from the provided metadata whether the package is officially maintained by the API provider.

Why it was flagged

No upstream source repository or verified package provenance is provided. This is not suspicious by itself, especially with no install script, but it limits independent verification.

Skill content
Source: unknown
Recommendation

Install only if you trust the publisher or have reviewed the included code; for stronger assurance, compare it with an official source if available.