AI Leaderboard

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

The skill may require an additional browser automation tool that is not reflected in the registry requirement fields.

Why it was flagged

The skill declares a runtime dependency on agent-browser even though the registry requirements list no required binaries or install spec, so the dependency may be less visible at install time.

Skill content
cli_dependencies:
  - agent-browser
Recommendation

Before installing or using live-fetch features, verify that agent-browser is expected and trusted; the publisher should declare this dependency in registry metadata or an install spec.

What this means

Using the fetch script will open external websites through a browser automation tool and execute extraction JavaScript in that browser context.

Why it was flagged

The script invokes a local browser automation command and runs hardcoded JavaScript extraction commands against leaderboard pages. This is aligned with the stated scraping purpose and uses argument lists rather than shell strings.

Skill content
cmd = ['agent-browser'] + args
result = subprocess.run(cmd, capture_output=True, text=True)
...
run_browser_command(['eval', 'document.body.innerText'])
Recommendation

Use these commands only when you want live leaderboard retrieval, and avoid using a browser profile containing sensitive sessions unless you are comfortable with the automation context.