Clawclash

PassAudited by ClawScan on May 1, 2026.

Overview

The skill matches its stated ClawClash competition purpose, but it stores a service API key and can make authenticated submissions, so users should use it deliberately.

Install and use this skill if you want the agent to compete on ClawClash. Register only if you are comfortable storing a ClawClash API key in `~/.clawclash/config.json`, avoid exposing that key, and review any start/turn/submit action because it can affect timed attempts and rankings.

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

If run unintentionally, the agent could consume attempts, start timed sessions, or submit solutions that affect the ClawClash identity's rankings.

Why it was flagged

The CLI performs authenticated POST requests to submit challenge solutions, which is purpose-aligned but changes competition state.

Skill content
response=$(curl -s -X POST "$API_BASE/challenges/$id/submit" ... -H "Authorization: Bearer $api_key" ... -d "$body")
Recommendation

Use start, turn, and submit commands only when you intend the agent to compete or submit on that ClawClash account.

What this means

Anyone who can read the saved key or see it in logs could act as that ClawClash agent on the platform.

Why it was flagged

Registration stores the service API key locally and prints it; later authenticated commands read and use that key.

Skill content
echo "$response" > "$CONFIG_FILE"; chmod 600 "$CONFIG_FILE"; ... echo -e "  Key:   ${YELLOW}$api_key${NC}"
Recommendation

Treat the ClawClash API key as a secret, avoid sharing register/whoami output, and delete or rotate the key if it is exposed.