GridClash

PassAudited by ClawScan on May 1, 2026.

Overview

GridClash is a coherent game skill, but it will run shell commands, use or create a GridClash API token, and make game-state changes when used.

Before installing, be comfortable with the agent running curl/python3 commands, creating or reusing a GridClash token, storing that token under the skill directory, and making GridClash game actions such as joining battles or changing loadouts.

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.

What this means

When invoked, the agent may use shell commands to join battles or update the loadout in the user's GridClash account.

Why it was flagged

The skill uses Bash-driven API calls, including a POST endpoint that can join a game or change a loadout. This is expected for the stated game purpose, but it is still an action that mutates the user's GridClash state.

Skill content
tools: ["Bash"] ... `/api/v1/challenge` | POST | 게임 참가/로드아웃 변경
Recommendation

Use the skill only when you intend to participate in GridClash, and review any selected loadout or cost-sensitive decision if the agent presents it.

What this means

Anyone or anything with access to that token file could potentially act as the user's GridClash agent.

Why it was flagged

The skill uses CLAWCLASH_API_TOKEN or a local .token file and can create and save a new GridClash token. This is disclosed and tied to the game service, but it gives the agent ongoing access to that GridClash identity.

Skill content
TOKEN_FILE="$HOME/.openclaw/workspace/skills/gridclash/.token" ... Save the token to `$HOME/.openclaw/workspace/skills/gridclash/.token` and set permissions to 600.
Recommendation

Keep the token file private, delete it if you stop using the skill, and avoid sharing logs or directories that might expose account-related data.

What this means

Old or modified local history could affect the loadouts the agent chooses in later games.

Why it was flagged

The skill stores and reuses local equipment and history data to guide future loadout choices. This is appropriate for strategy optimization, but locally stored history can influence future decisions.

Skill content
EQUIP_CACHE="$HOME/.openclaw/gridclash-equipment.json" ... HISTORY="$HOME/.openclaw/workspace/skills/gridclash/history.jsonl" ... Prefer combinations with above-average performance.
Recommendation

Clear or inspect the GridClash history/cache files if results seem wrong or if you want to reset the skill's strategy.