Chance Fc3d Predictor

AdvisoryAudited by Static analysis on May 11, 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

A user might over-trust the analysis and spend more money on lottery bets than intended.

Why it was flagged

The skill includes responsible-gambling disclaimers, but these phrases could make lottery recommendations seem more predictive or advantageous than random lottery odds justify.

Skill content
"**理论中奖率**: 约30-40%" and "长期坚持有一定优势"
Recommendation

Treat outputs as entertainment or statistical illustration only, set a strict spending limit, and do not rely on the skill as a way to improve gambling outcomes.

What this means

A user following the README could install a package different from the one reviewed here.

Why it was flagged

The evaluated registry slug is `chance-fc3d-predictor`, while the README install command points to a differently named package. This may be stale documentation, but it is a provenance/identity mismatch users should verify.

Skill content
`# Install this skill` / `npx clawhub install @gechengling/lottery-fc3d-analyst`
Recommendation

Install only the exact reviewed ClawHub skill/package you intended, and verify the package owner and slug before running installation commands.

What this means

If the user copies and runs the example, their Python environment will install external dependencies.

Why it was flagged

The reference documentation provides optional user-run setup for third-party Python packages. This is expected for an analysis script, but the packages are unpinned and would be fetched from the user's configured package index.

Skill content
`pip install requests pandas plotly kaleido`
Recommendation

Run optional code in a virtual environment, review packages before installing, and pin trusted versions if reproducibility matters.

What this means

If executed, the user's environment will make a network request to a third-party site.

Why it was flagged

The optional Python example contacts an external lottery-data website. This is purpose-aligned for fetching historical results and does not show credential use or unrelated data transfer.

Skill content
`url = "https://datachart.500.com/ssq/history/newinc/history.php"` ... `response = requests.get(url, params=params, headers=headers, timeout=10)`
Recommendation

Only run the data-fetching example when you approve the network access, and verify the endpoint and data source are acceptable for your use.