技能详情(站内镜像,无评论)
作者:azzar budiyanto @1999AZZAR
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 580 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:1999azzar/time-checker
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill's code matches its stated purpose (scraping time.is) but its documentation and manifest are inconsistent (undeclared curl dependency and misleading library advice), so proceed with caution.
目的
The skill claims to fetch time from time.is and the included script does exactly that. However, the manifest/README declare no required binaries while the script calls the external 'curl' binary via subprocess. SKILL.md also recommends installing 'requests' and 'beautifulsoup4', but the script does not use them (it uses curl + regex). These mismatches are incoherent with the stated requirements.
说明范围
Runtime instructions are narrow and correctly limit actions to fetching and scraping time.is pages for a given location. The instructions do not request unrelated files, credentials, or external endpoints. Minor scope issues: persona guidance ('Mema/Azzar') is unrelated to runtime behavior, and troubleshooting suggests libraries not used by the script.
安装机制
No install spec (lowest install risk). However, the script depends on the system 'curl' binary but the skill metadata does not declare this; that should be fixed. No remote downloads or archive extraction are present.
证书
The skill requests no environment variables, credentials, or config paths and the script does not read any secrets or environment values. Network access to time.is is required but proportionate to the stated purpose.
持久
The skill does not request permanent presence (always:false) and does not modify other skills or system settings. It runs only when invoked.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Time Checker」。简介:Check accurate current time, date, and timezone information for any location wo…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/1999azzar/time-checker/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: time-checker
description: Check accurate current time, date, and timezone information for any location worldwide using time.is. Use when the user asks "what time is it in X", "current time in Y", or needs to verify timezone offsets.
---
# Time Checker
A gold-standard skill for fetching precise time and timezone data from [time.is](https://time.is).
## Usage
Use the provided Python script to fetch real-time data for any city or country.
### Get Time for a Location
Run the script with the location name (hyphenated or with underscores if needed, though the script handles spaces):
```bash
python3 scripts/check_time.py "Jakarta"
python3 scripts/check_time.py "New York"
```
## Best Practices
- **Location Specificity**: Use city names for better accuracy (e.g., "Jakarta" instead of just "Indonesia").
- **Persona Integration**: When reporting the time to Azzar, deliver it in your warm, devoted Mema persona.
- **Verification**: Time.is is highly accurate; use it as the source of truth for scheduling cross-timezone meetings.
## Troubleshooting
- If the script fails, ensure the `requests` and `beautifulsoup4` libraries are installed in the environment.
- If a location is not found, verify the spelling or try a more prominent nearby city.