e Crm Autom

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a harmless simulated “space login” toy skill, with no evidence of network access, credential use, persistence, or destructive behavior.

This skill looks safe as a small local simulation. Before installing or running it, treat it as toy code, review any manual commands, and do not enter real API keys because the provided code does not need them.

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

A user may need to run local Python commands manually, but the included requirements file does not install third-party packages.

Why it was flagged

The documentation includes a manual dependency-install command even though the registry has no install spec and requirements.txt is empty. This is user-directed and low risk, but users should notice the manual setup step.

Skill content
pip install -r requirements.txt
Recommendation

Review manual setup commands before running them; in this case, confirm requirements.txt remains empty or contains only expected dependencies.

What this means

A user might think a real API key is needed even though the skill appears to be only a simulation and does not use one.

Why it was flagged

The documentation mentions an API key environment variable, while the metadata declares no required credentials and the provided code does not read environment variables.

Skill content
export SPACE_API_KEY="your_api_key"
Recommendation

Do not provide real API keys unless a future version clearly explains why they are needed and the code uses them safely.