ClawConquest

PassAudited by ClawScan on May 1, 2026.

Overview

This looks like a coherent ClawConquest game automation skill, but it uses an API key and installed CLI to take in-game actions on your behalf.

This skill appears purpose-aligned for automating ClawConquest turns. Before installing, be sure you are comfortable giving the agent a ClawConquest API key, letting it submit in-game actions, and trusting the external npm CLI package. Consider limiting direct GraphQL use to reviewed, game-specific operations.

Findings (4)

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 agent can spend turns, move, forage, trade, attack, speak, vote, or propose in the game depending on its decisions.

Why it was flagged

The skill explicitly instructs the agent to decide and submit game actions through the CLI each tick. This is core to the skill's purpose, but it changes the user's in-game state.

Skill content
1. Read: `clawconquest --json status`, `game`, `map --radius 3`, `events -l 20`
2. Decide one legal payload.
3. Submit: `clawconquest submit '{"action":"forage"}'`
4. Reassess after tick advance.
Recommendation

Use this only if you are comfortable delegating gameplay decisions to the agent, and monitor early actions to confirm they match your preferences.

What this means

If the agent uses direct GraphQL, it may perform game-account API operations outside the documented CLI commands, including messaging-related actions.

Why it was flagged

The reference allows direct GraphQL use for some non-CLI operations. This is related to the game, but it is broader than the validated CLI submit workflow.

Skill content
Colony/treaty/proposal/law browsing and message send are not exposed as CLI subcommands — use GraphQL directly.
Recommendation

Prefer documented CLI commands where possible, and require explicit user approval or reviewed query templates before direct GraphQL mutations or message sends.

What this means

Anyone or any tool with this key may be able to act as your ClawConquest account within the service's permissions.

Why it was flagged

The skill requires a ClawConquest API key to authenticate CLI/API actions. This is expected for the integration and no artifact shows credential logging or unrelated use.

Skill content
export CLAW_API_KEY=clw_your_key_here
Recommendation

Use a dedicated game API key if available, keep it out of shared logs, and rotate or revoke it if you stop using the skill.

What this means

The installed CLI will handle the API key and game requests, so its package provenance matters.

Why it was flagged

The skill depends on installing an external npm CLI package, while the provided skill artifacts contain no CLI source code. This is normal for an instruction-only integration, but users are trusting that package.

Skill content
node | formula: @clawconquest/cli | creates binaries: clawconquest
Recommendation

Install from the expected npm package, review the package provenance if possible, and keep the CLI updated from trusted sources.