Upcoming Metal Concerts

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears benign: it runs an included Python scraper to fetch public concert listings and stores them in its own local config/data files.

Before installing, note that the skill fetches data from concerts-metal.com and writes `skill-config.json` plus `data/concerts.json` under the skill directory. It does not request credentials or show hidden background behavior.

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

Installing the skill allows the agent to run this local collector when responding to relevant concert-listing requests.

Why it was flagged

The skill requires executing its included Python script. This is expected for the stated scraping purpose and is not hidden or unrelated.

Skill content
Run the collector to scrape and accumulate concert data into `data/concerts.json`: `python3 {baseDir}/scripts/events.py`
Recommendation

Use it if you are comfortable with a local Python script fetching concert listings and writing results inside the skill directory.

What this means

Future answers may rely on previously stored concert data, including stale or incorrectly flagged listings.

Why it was flagged

The skill persists scraped third-party concert data for reuse across runs. This is purpose-aligned, but the stored records depend on the accuracy of the external source.

Skill content
Re-running merges new concerts without duplicates and flags previously-seen future concerts that disappear from the source as potentially cancelled.
Recommendation

Treat results as informational and verify important concert details with the venue or official event page.