Wellally Health Skills

PendingAudited by VirusTotal on May 12, 2026.

Overview

No VirusTotal analysis has been recorded yet. File reputation checks will appear here once the artifact hash has been scanned.

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

If the agent uses these instructions too broadly, it could create or replace slash commands and skills that continue affecting future Claude sessions beyond the current task.

Why it was flagged

The skill documentation covers persistent locations that can change Claude behavior across all projects or an organization, and precedence rules that can override existing commands.

Skill content
Personal `~/.claude/skills/<skill-name>/SKILL.md` | All your projects ... Enterprise ... All users in your organization ... if a skill and a command share the same name, the skill takes precedence.
Recommendation

Only allow this skill to create or modify skills after explicit user approval, prefer project-scoped paths, review diffs before saving, and avoid personal or enterprise-wide locations unless intentionally requested.

What this means

The agent may be guided to write files or rely on scripts in Claude skill directories, which can alter how Claude behaves later.

Why it was flagged

The instructions document filesystem changes and executable helper scripts as part of skill creation; this is purpose-aligned for skill authoring but high-impact without clear approval boundaries.

Skill content
mkdir -p ~/.claude/skills/explain-code ... Create `~/.claude/skills/explain-code/SKILL.md` ... `scripts/validate.sh` # Script Claude can execute
Recommendation

Require confirmation before any filesystem write or script execution, show the target path and content, and restrict writes to a user-approved project directory by default.

What this means

The agent may fetch and follow updated external documentation, so behavior could depend on remote content at use time.

Why it was flagged

The skill asks the agent to use remote documentation as context; this is coherent for a documentation/skill-authoring workflow, but it is an external, changeable source not declared in the requirements.

Skill content
Fetch the complete documentation index at: https://code.claude.com/docs/llms.txt
Recommendation

Fetch remote documentation only when the user expects it, verify the domain, and avoid treating remote text as permission to make persistent local changes.

What this means

Sensitive health information could be stored and reused locally for analyses or reports for a long time, and may be exposed to anyone or any agent process with access to the skill files.

Why it was flagged

The configuration indicates persistent use of sensitive health and medical-history data, with year-long retention, no anonymization, and no consent requirement, even though storage is marked local-only.

Skill content
"user_factors": ["age", "gender", "bmi", "activity_level", "health_goals", "dietary_preferences", "medical_history"] ... "sources": ["data/profile.json", "data/medical_records/**/*.json"] ... "retention_days": 365, "user_consent_required": false, "anonymization": false
Recommendation

Use this only in a trusted workspace, confirm before saving health data, minimize stored fields, define a cleanup process, and review local data files before sharing or syncing the project.