Dead Or Not
Analysis
The skill’s life-check purpose is coherent, but it needs review because it stores SMTP credentials locally, runs persistently via cron, and can send emergency emails automatically after a no-reply condition.
Findings (5)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Agent reads check_flag → asks user if they're okay 4. No reply → calls send_mail.py to notify emergency contact
The skill authorizes an automated external notification after a no-reply condition, but the artifacts do not define how long to wait, how to confirm the user is truly unresponsive, or how to prevent false alerts.
source "$CONFIG_FILE"
The cron-run shell script executes the local config file as shell code instead of safely parsing key-value settings, so malformed or tampered config content can run commands with the user's privileges.
crontab -l | { cat; echo "0 0 * * * /path/to/check.sh >> /path/to/log.txt 2>&1"; } | crontab -The skill instructs the user to add a recurring cron job. This is disclosed and purpose-aligned, but it creates persistent background behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
SMTP_EMAIL=your_qq@qq.com SMTP_PASSWORD=your_auth_code
The skill requires SMTP account credentials that allow sending mail as the configured sender, while the registry metadata declares no primary credential or required environment variables.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
LAST_SEEN_FILE="$CONFIG_DIR/last_seen" LAST_ASKED_FILE="$CONFIG_DIR/last_asked"
The skill relies on persistent local state files to decide whether the user is overdue for a check-in.
