Destiny Fusion Pro

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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.

What this means

Installing or using the skill may involve running local code with the birth details the user provides.

Why it was flagged

The recommended workflow runs a local Python script. This is disclosed, user-directed, and matches the stated offline calculation purpose.

Skill content
python scripts/fortune_fusion.py \
  --date 1990-10-21 \
  --time 15:30
Recommendation

Run it only from the installed skill directory and keep execution user-directed; do not treat it as an automatically safe background task.

What this means

The skill may not work until third-party astrology libraries are installed, and those packages become part of the trust chain.

Why it was flagged

The script relies on external calculation packages, but the registry section says there is no install spec and no required binaries. The dependency use is purpose-aligned, but users should notice the undeclared package requirement.

Skill content
from lunar_python import Solar ... from iztro_py import astro ... "未安装 iztro-py,请先安装:pip install iztro-py"
Recommendation

Install dependencies only from trusted package sources and consider adding explicit, pinned installation requirements in the skill metadata.