Jadwal Sholat

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to only look up Indonesian prayer times from a disclosed public API and does not request credentials, persistence, or broad local access.

This looks safe for its stated purpose. Before installing, be aware that it may run the included Python helper and will send your requested city/location and date to api.myquran.com to retrieve the schedule.

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.

What this means

Using the skill may execute the included helper script locally to make the requested API lookup.

Why it was flagged

The skill recommends running an included local Python helper. The helper source is provided, stdlib-only, and aligned with the stated prayer-schedule lookup purpose, so this is a notice rather than a concern.

Skill content
python3 scripts/myquran_sholat.py hari-ini "kota tangerang"
Recommendation

Run it only as the normal user and avoid granting extra privileges; the included script does not show file modification or credential use.

What this means

The API provider can receive the city/location keyword or ID, date/month, and timezone used for the prayer-time lookup.

Why it was flagged

The helper contacts the disclosed third-party API to retrieve schedules, meaning user-supplied location/date queries leave the local environment.

Skill content
API_BASE = "https://api.myquran.com/v3" ... urllib.request.urlopen(req, timeout=timeout)
Recommendation

Use the skill for location/date queries you are comfortable sending to api.myquran.com; do not include unrelated private information in the location keyword.