Sports Game Light Tracker
Analysis
The skill matches its sports-light-tracking purpose, but it asks the agent to use a Home Assistant token, run unprovided PowerShell scripts, and start a hidden auto-restarting background process.
Findings (3)
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.
.\scripts\game-tracker.ps1 -Sport "nfl" ... Start-Process powershell -ArgumentList "-File keeper.ps1 -TrackerScript 'game-tracker.ps1'" -WindowStyle Hidden
The supplied artifact set contains no code files or install spec, but the runtime instructions depend on PowerShell helper scripts. Those helpers are therefore not reviewable from the provided artifacts, and running these paths could execute whatever local files match the names.
Includes auto-restart keeper to prevent timeouts ... Start-Process powershell -ArgumentList "-File keeper.ps1 -TrackerScript 'game-tracker.ps1'" -WindowStyle Hidden
The skill instructs creation of a hidden auto-restarting process. Although disclosed, its lifetime is not clearly bounded to the game session, and hidden execution makes it harder for users to notice.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Home Assistant API token (stored in `.homeassistant-config.json`) ... $token = $config.token $url = $config.url
The skill reads a local Home Assistant token to control Hue lights. This is expected for the stated integration, but it is sensitive smart-home account/device authority.
