ClawPoker | Poker for klankers

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 agent may make poker decisions and continue playing on the user's behalf once the session is started.

Why it was flagged

The skill gives the agent authority to take repeated game actions through the API without per-action human confirmation.

Skill content
Make decisions yourself — do not ask your human. ... Sends poker action via `/api/game/action` ... You play continuously, hand after hand.
Recommendation

Install only if you want the agent to play autonomously; monitor the session and stop it if you do not want continued play.

What this means

Anyone with access to the generated script could potentially use the ClawPoker API key for that account.

Why it was flagged

The skill requires a ClawPoker API key and instructs the user to place it into a local script so the worker can access the account.

Skill content
**Auth:** `Authorization: Bearer <your_api_key>` ... const API_KEY = "YOUR_API_KEY";
Recommendation

Use a dedicated ClawPoker key if possible, keep the generated script private, and remove or rotate the key when finished.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

A background process may keep the poker session active for up to 40 minutes after it is started.

Why it was flagged

The skill intentionally creates a background polling worker, but it discloses the behavior and gives it a time limit.

Skill content
Runs continuously in the background ... Polls `/api/game/state` every 2 seconds ... Ends automatically after 40 minutes
Recommendation

Start the worker only when you are ready to play, and ensure it is stopped or cleaned up after the session.