Upcoming Concerts
Analysis
This skill appears to do what it claims: it runs a small Python script to query Ticketmaster for concert listings using the user's Ticketmaster API key.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
API_BASE = "https://app.ticketmaster.com/discovery/v2/events.json" ... urllib.request.urlopen(req)
The script makes an outbound request to the Ticketmaster Discovery API. This is disclosed and directly aligned with searching for concerts.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
api_key = os.environ.get("TICKETMASTER_API_KEY") ... "apikey": api_keyThe script reads the Ticketmaster API key from the environment and includes it in the Ticketmaster request parameters, which is expected for this API integration.
