GitHub Actions Runtime Regression Audit
Security checks across malware telemetry and agentic risk
Overview
The skill appears purpose-aligned for locally comparing GitHub Actions run exports, with normal caution around the optional GitHub CLI collection step and user-chosen file globs.
This looks safe for its stated purpose. Before installing, review the bundled script, keep BASELINE_GLOB and CURRENT_GLOB limited to the intended GitHub Actions export folders, and only run the optional gh command with the GitHub account and repositories you intend to audit.
VirusTotal
63/63 vendors flagged this skill as clean.
Risk analysis
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.
If a broad glob is used, the script may read and summarize more local JSON files than intended.
The script reads every local file matched by the user-supplied baseline/current glob patterns. This is expected for comparing exported run JSON, but the chosen glob controls the read scope.
files = sorted(glob.glob(file_glob, recursive=True)) ... with open(path, 'r', encoding='utf-8') as fh:
Use narrow globs that point only to the intended GitHub Actions export directories.
Running the collection command can access GitHub repository workflow-run data available to the configured GitHub CLI account.
The optional collection example uses the GitHub CLI, which typically relies on the user's configured GitHub authentication. The command is user-directed and scoped to specific run IDs and output fields.
gh run view <run-id> --json databaseId,workflowName,headBranch,headSha,url,repository,jobs \
Run the GitHub CLI collection step only for intended repositories and run IDs, and verify the active GitHub account has appropriate scope.
Users have less external provenance information for deciding whether to trust the bundled script.
The registry metadata does not provide upstream provenance. This is not suspicious by itself because the skill is bundled and has no install spec, but it reduces transparency.
Source: unknown; Homepage: none
Review the bundled script and install from a trusted registry or publisher before using it in CI workflows.
