Chinese Daily Assistant

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to be a simple local Chinese daily-assistant utility, with the main caveat that some documentation overstates the freshness of weather and exchange-rate data.

This looks safe to install from a security perspective based on the provided artifacts. Treat the weather and exchange-rate outputs as static sample information unless the skill is later updated with real, clearly documented data sources.

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.

What this means

Weather and currency answers may be stale or illustrative rather than current, so relying on them for real-world decisions could be misleading.

Why it was flagged

The implementation uses fixed local weather and exchange-rate tables, while user-facing descriptions elsewhere claim real-time data or public data sources. This is not suspicious code behavior, but users should not treat the outputs as live data.

Skill content
const weatherData = { ... }; const exchangeRates = { 'USD': { name: '美元', rate: 7.20 }, ... };
Recommendation

Use this skill as a lightweight reference/demo unless the maintainer updates it to fetch and clearly document live data sources.