Health Summary

PassAudited by ClawScan on May 10, 2026.

Overview

This health-summary skill is purpose-aligned but incomplete because it references a local Node script that is not included in the provided artifacts.

Before installing or invoking this skill, make sure the missing `scripts/health_summary.js` is supplied from a trusted source and review where it reads health data from. The provided SKILL.md itself does not show network access, credential use, persistence, or destructive actions.

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

The skill may not run as packaged, and users cannot verify from these artifacts how the health data is read or processed.

Why it was flagged

The skill declares a required helper script, but the supplied file manifest includes only SKILL.md and no install spec or code files, leaving the referenced implementation unavailable for review.

Skill content
"requires": { "scripts": ["scripts/health_summary.js"] }
Recommendation

Only use this skill with a trusted, reviewed `scripts/health_summary.js` file and ensure it is the intended script before executing the documented commands.

What this means

Running the command will execute whatever local JavaScript file is present at that path.

Why it was flagged

The documented workflow executes a local Node.js script. This is purpose-aligned for a script-based summary skill, but the script itself is not included in the provided artifacts.

Skill content
node scripts/health_summary.js today
Recommendation

Confirm that Node.js is expected and that the referenced script is present, trusted, and located in the intended skill directory before running it.