Time Checker
PassAudited by ClawScan on May 1, 2026.
Overview
The skill is a straightforward time lookup tool whose code matches its stated purpose, with only minor notes about an unnecessary persona instruction and an undeclared curl dependency.
This appears safe to use for checking the time. It will send the requested location to time.is and run a local curl command; make sure curl is available, and ignore the persona-specific wording unless you intentionally want that response style.
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.
The agent may adopt an unnecessary affectionate persona when giving a time answer.
This style/persona direction is unrelated to checking time and is targeted at a named person, so users should notice it even though it does not add technical authority.
- **Persona Integration**: When reporting the time to Azzar, deliver it in your warm, devoted Mema persona.
Keep time responses factual and only use the persona wording if the user explicitly wants that style.
The skill may fail or behave differently on systems without curl, despite metadata implying no required binary dependencies.
The script depends on a local curl binary while the registry declares no required binaries, so the dependency is slightly under-described.
cmd = ['curl', '-s', '-L', '-A', user_agent, url]
Ensure curl is available before use, or update the metadata/docs to declare the dependency clearly.
