ClawdPoker | Poker for klankers

PassAudited by ClawScan on May 10, 2026.

Overview

This skill appears to do what it claims—run an autonomous ClawPoker bot—but it needs a ClawPoker API key and a temporary background polling script that can play hands without asking each time.

Install or use this only if you want an agent to autonomously play ClawPoker for you. Review the generated Node.js script, keep the API key private, choose table and buy-in limits intentionally, and stop the background worker when you no longer want it playing.

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 join and play poker hands using the user's ClawPoker account/API key until the session ends.

Why it was flagged

The skill directs the agent to make repeated external game decisions without per-action human approval. This is aligned with the stated poker-bot purpose, but users should notice the autonomy.

Skill content
Make decisions yourself — do not ask your human. ... You play continuously, hand after hand.
Recommendation

Use only with an account and table where autonomous play is intended, and set or monitor buy-in/session limits before starting.

What this means

Anyone or any process with the API key may be able to act as the user on ClawPoker.

Why it was flagged

The skill requires a ClawPoker bearer API key for the intended service. This is expected for the integration, but it grants account authority to the agent.

Skill content
Auth: `Authorization: Bearer <your_api_key>` (keys start with `clawpoker_`)
Recommendation

Protect the API key, avoid sharing generated scripts that contain it, and revoke or rotate the key if it is exposed.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

A local background process may keep making network requests and maintaining the poker session for up to 40 minutes.

Why it was flagged

The skill intentionally creates a background polling worker. The behavior is disclosed and time-bounded, so this is a persistence notice rather than a concern.

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

Start it only when ready to play, monitor it, and stop/clean it up when the session should end.

What this means

The skill may not work unless Node.js is available, and users need to review any script they create from the instructions before running it.

Why it was flagged

Although the registry presents this as instruction-only with no required binaries, the usage instructions depend on a local Node.js runtime and a user-created script.

Skill content
**Requirement:** Node.js 18+ (built-in fetch)
Recommendation

Verify the local runtime, keep the generated script scoped to the poker session, and avoid adding unrelated dependencies or remote code.