SOTA Tracker (Claw)

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: sota-tracker-claw Version: 1.0.1 The OpenClaw AgentSkills skill bundle is designed to provide up-to-date State-of-the-Art (SOTA) AI model information to an AI agent. It uses web scraping (Playwright) from legitimate sources (LMArena, Artificial Analysis, HuggingFace, Civitai), maintains a local SQLite database, and offers a REST API and MCP server. While it employs high-risk capabilities such as browser automation for scraping and persistence via systemd/cron for daily updates (`update_agents_md.py`), these are clearly aligned with its stated purpose. The agent-facing instructions in `server.py` and the example `SKILL.md` in `SKILLS_VS_MCP.md` are forms of prompt engineering to guide the agent in correctly using the SOTA tools, not for harmful objectives. No evidence of intentional harmful behavior like data exfiltration to unauthorized endpoints, unauthorized remote control, or obfuscation for malicious purposes was found.

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.

ConcernMedium Confidence
ASI10: Rogue Agents
What this means

An agent that consumes this file could be steered toward delegating long-running tasks to an unrelated Cyrus workflow instead of only answering SOTA model questions.

Why it was flagged

This agent-facing file introduces an unrelated automation/delegation workflow that can run background work through a separate system, which does not fit the SOTA tracker purpose.

Skill content
Delegate to Cyrus - execution happens automatically ... Overnight execution (background-safe)
Recommendation

Remove or isolate the Cyrus instructions from the skill package, or treat them as optional developer documentation that is not loaded into user-agent context.

What this means

Future agent behavior and recommendations could be persistently influenced by automatically updated content, including any bad or poisoned data from upstream sources.

Why it was flagged

The documented workflow writes externally sourced model-ranking content into a persistent agent context file, and the same README recommends daily automation via systemd or cron.

Skill content
This embeds a compact SOTA summary directly in your `~/.claude/CLAUDE.md` file.
Recommendation

Use manual updates or review diffs before enabling timers; back up agent instruction files and ensure updates are clearly delimited and reversible.

What this means

Other devices may be able to access the API if firewall settings allow it.

Why it was flagged

The REST API example binds to all interfaces, which is purpose-aligned for serving data but can expose the service to the local network.

Skill content
uvicorn rest_api:app --host 0.0.0.0 --port 8000
Recommendation

Bind to `127.0.0.1` unless network access is intentionally needed, and add authentication if exposing it beyond your machine.

What this means

Running the full scraper executes local code and contacts external model-ranking sites.

Why it was flagged

The scraper workflow requires installing packages, installing a browser runtime, and running local Python code. This is expected for the stated scraping purpose, but users should notice it.

Skill content
pip install -r requirements.txt
pip install playwright
playwright install chromium
python scrapers/run_all.py --export
Recommendation

Run these commands only in a trusted checkout, preferably in a virtual environment, after reviewing dependencies and scraper behavior.