cn-time-parser
PassAudited by VirusTotal on May 8, 2026.
Overview
Type: OpenClaw Skill Name: cn-time-parser Version: 1.0.0 The skill bundle is a legitimate utility designed to parse Chinese natural language time expressions into structured date and timestamp data. It utilizes well-known, relevant libraries (dayjs, lunisolar, and chinese-workday) and the logic in scripts/parse-time.js is strictly limited to string processing and date calculation without any network access, file system manipulation, or sensitive data access. No evidence of malicious intent or prompt injection was found.
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.
Installing the skill will fetch and install npm dependencies needed for lunar calendar and holiday calculations.
The skill depends on third-party npm packages and asks the user to install them before use. This matches the time-parsing purpose, but it introduces normal package supply-chain considerations.
需要安装Node.js环境,以及dayjs、lunisolar和chinese-workday模块 - 准备命令:在使用前执行 `cd /workspace/projects/cn-time-parser && npm install`
Install only from a trusted skill source, keep the included package-lock.json, and avoid running npm install if the package files differ from the reviewed artifacts.
The local script will process the query text you provide and return parsed date, timestamp, lunar, holiday, and workday information.
The skill works by running a local Node.js script with the user's query. This is expected for the stated functionality and the visible code is focused on date parsing.
脚本调用示例:`node scripts/parse-time.js --query "今天的天气怎么样"`
Run the script only from the skill directory and pass only the text needed for time parsing.
