Islamic Reflection

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears benign, but it runs an included Python script and contacts a calendar API to get the Hijri date.

This looks safe for normal use if you are comfortable with local Python execution and an outbound calendar API request. The script does not show file access, persistence, credentials, or data-changing behavior.

Findings (3)

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

Asking for a reflection will run the included Python script and return its printed output.

Why it was flagged

The skill makes local script execution part of the normal workflow. The command is fixed, disclosed, and purpose-aligned, so this is a notice rather than a concern.

Skill content
When user requests a reflection, you MUST execute the Python script: `python scripts/reflection.py`
Recommendation

Review the included script before installing and avoid running modified or untrusted replacement scripts.

What this means

The skill may not work unless Python is available in the environment.

Why it was flagged

The registry metadata omits the Python runtime even though SKILL.md directs the agent to run `python scripts/reflection.py`; this is an under-declared runtime requirement, not hidden behavior.

Skill content
Required binaries (all must exist): none
Recommendation

Ensure Python is installed and that the agent runs only the included script.

What this means

Running the skill will make an outbound request to api.aladhan.com.

Why it was flagged

The script contacts an external calendar API to convert the current Gregorian date to a Hijri date. It sends the date and normal network metadata, with no user content or credentials shown.

Skill content
url = f"https://api.aladhan.com/v1/gToH/{today.day:02d}-{today.month:02d}-{today.year}"
Recommendation

Install only if you are comfortable with that date lookup, or use/block network access if offline behavior is required.