agentskills-io

PassAudited by ClawScan on May 1, 2026.

Overview

This skill is coherent and appears benign, but it asks users to run local shell commands and fetch an unpinned validator from GitHub.

This skill looks safe for its stated purpose. Before installing or running commands, review the GitHub validator source or pin it to a trusted version, and check local git diffs after using the version-bump script.

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

Running the documented setup may execute code from the current state of the referenced GitHub repository.

Why it was flagged

The validation workflow fetches and installs a tool directly from a GitHub source without pinning a commit or release. This is central to the skill's purpose and disclosed, but users should be aware of the supply-chain dependency.

Skill content
uv tool install git+https://github.com/agentskills/agentskills#subdirectory=skills-ref
Recommendation

Prefer pinning the validator to a trusted release or commit, and review the upstream repository before installing permanently.

What this means

A user running the script may change version fields across changed plugins and marketplace metadata.

Why it was flagged

The helper script edits plugin metadata files to bump versions. This is aligned with the documented versioning workflow and does not auto-commit, but it does mutate local project files.

Skill content
jq --arg version "$new" '.version = $version' "$plugin_json" > "${plugin_json}.tmp"; ... mv "${plugin_json}.tmp" "$plugin_json"
Recommendation

Run it only in the intended repository, inspect the resulting git diff, and commit the changes only after review.