Exchange Rate Inquiry & Conversion - 汇率查询
Analysis
The skill appears purpose-aligned for exchange-rate lookups and only uses the documented JisuAPI service with the user's API key.
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.
EXCHANGE_CONVERT_URL = "https://api.jisuapi.com/exchange/convert" ... resp = requests.get(EXCHANGE_CONVERT_URL, params=params, timeout=10)
The script makes outbound HTTPS API calls to fixed JisuAPI exchange endpoints using the user's requested currency parameters. This matches the skill purpose, but it means lookup details leave the local environment.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
appkey = os.getenv("JISU_API_KEY") ... params = {"appkey": appkey}The script reads the Jisu API key from the environment and attaches it to provider requests. This is expected for the documented API integration and is also disclosed in SKILL.md, but it is still credential use.
