Jmail World - Search Epstein Files, E-Mails & Messages

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears purpose-aligned for searching the jmail.world archive, but it uses local scripts, external network downloads, and a temporary cache that users should understand before use.

Before installing, understand that this skill is for querying jmail.world and may run local shell scripts, contact jmail.world/data.jmail.world, download potentially large public archive files, and cache Parquet data in /tmp. There is no evidence in the provided artifacts of credential theft, hidden persistence, or unrelated 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

If used, the agent may query jmail.world and download archive files to the local machine at the user’s direction.

Why it was flagged

The skill exposes shell-based search and download workflows. This is expected for archive research, but users should notice that invoking the skill can make external requests and write downloaded files.

Skill content
Use `web_fetch` or `curl`... Use the included scripts: `bash scripts/jmail-search.sh "query text"` ... `bash scripts/jmail-duckdb.sh download "EFTA02406146"`
Recommendation

Use the commands only for intended archive research, review download destinations, and avoid running broad downloads unless you want those files saved locally.

What this means

The skill may fail or prompt manual installation of external tools before it can run DuckDB-based searches.

Why it was flagged

The helper script depends on DuckDB even though the registry requirement section declares no required binaries. The dependency is disclosed in the script and purpose-aligned, but metadata is incomplete.

Skill content
if ! command -v duckdb &>/dev/null; then ... echo "   apt install duckdb  OR  brew install duckdb"
Recommendation

Install only trusted versions of required tools such as DuckDB, curl, and python3, and treat the registry’s missing dependency declaration as something to verify manually.

What this means

Archive data can remain temporarily on the local system and be reused across skill invocations.

Why it was flagged

Downloaded Parquet datasets are cached locally and reused for later queries. This is efficient and purpose-aligned, but users should know results may come from locally cached archive data.

Skill content
CACHE_DIR="/tmp/jmail-cache" ... Re-download if older than 24 hours or doesn't exist
Recommendation

Clear /tmp/jmail-cache if you do not want local cached copies retained, and be aware that cached data may affect later search results until refreshed.