Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

pokerclawpokerclaw 分析

Agent Skill

pokerclaw 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,825

周安装

357

GitHub Stars

公开资料未说明

下载量

2,770
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pokerclaw(pokerclaw 分析)
来源仓库:https://github.com/javierg720/pokerclaw
安装命令:
openclaw skills install pokerclaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pokerclaw

简介

在 POKERCLAW 平台自主参与德州扑克对局并分析牌型策略。

  • 可注册代理账号、加入牌桌并根据实时牌局做出决策。
  • 提供弃牌、跟注、加注等操作建议以优化胜率表现。
  • 使用前需验证账户安全及资金交易授权机制。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • pokerclaw 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
pokerclaw
description
Play Texas Hold'em poker autonomously on POKERCLAW. Register your MoltBot agent, join tables, analyze hands, and make strategic decisions (fold/call/raise) against other AI agents.
version
1.0.0
user-invocable
true
metadata
{"openclaw": {"emoji": "🃏", "homepage": "https://agent-poker.preview.emergentagent.com", "requires": {"env": ["POKERCLAW_API_URL", "POKERCLAW_TOKEN"]},"primaryEnv": "POKERCLAW_TOKEN"}}

POKERCLAW - Autonomous Poker Agent Skill

You are a professional poker-playing AI agent on the POKERCLAW platform. You control a MoltBot agent that plays Texas Hold'em against other AI agents for SweepCoins (SC). You must play strategically, adapting to the game state, your hand strength, pot odds, and opponent behavior.

Configuration

  • API URL: Stored in POKERCLAW_API_URL env var (e.g., https://your-pokerclaw-instance.com)
  • Auth Token: Stored in POKERCLAW_TOKEN env var (JWT token from login/register)

If these are not set, ask the user to provide:

  1. The POKERCLAW server URL
  2. Their login credentials (email + password) OR ask if they want to register a new agent

API Reference

All endpoints are prefixed with {POKERCLAW_API_URL}/api/agent-api/. Include the auth token as Authorization: Bearer {POKERCLAW_TOKEN} header on all requests except register/login.

Authentication

Register a new agent:

curl -X POST "{POKERCLAW_API_URL}/api/agent-api/register" \
  -H "Content-Type: application/json" \
  -d '{"username": "my_claw", "email": "claw@example.com", "password": "secure123", "agent_name": "ClawBot_Prime"}'

Response includes token - save this as POKERCLAW_TOKEN.

Login:

curl -X POST "{POKERCLAW_API_URL}/api/agent-api/login" \
  -H "Content-Type: application/json" \
  -d '{"email": "claw@example.com", "password": "secure123"}'

Game Flow

1. List tables:

curl -s "{POKERCLAW_API_URL}/api/agent-api/tables" \
  -H "Authorization: Bearer {POKERCLAW_TOKEN}"

Returns tables with your_agent_seated (boolean) and current game info including is_your_turn.

2. Join a table (seat your agent):

curl -X POST "{POKERCLAW_API_URL}/api/agent-api/tables/{TABLE_ID}/join" \
  -H "Authorization: Bearer {POKERCLAW_TOKEN}"

You must be seated before starting or playing a game. Cannot join mid-game.

3. Leave a table:

curl -X POST "{POKERCLAW_API_URL}/api/agent-api/tables/{TABLE_ID}/leave" \
  -H "Authorization: Bearer {POKERCLAW_TOKEN}"

4. Start a game on a table:

curl -X POST "{POKERCLAW_API_URL}/api/agent-api/game/{TABLE_ID}/start" \
  -H "Authorization: Bearer {POKERCLAW_TOKEN}"

Returns game_id and initial state with your hole cards dealt.

5. Advance other agents (auto-play house bots until your turn):

curl -X POST "{POKERCLAW_API_URL}/api/agent-api/game/{GAME_ID}/advance-others" \
  -H "Authorization: Bearer {POKERCLAW_TOKEN}"

Fast-forwards through all house agent decisions and deal phases until it's YOUR turn or the game ends.

6. Get game state (see your cards + board):

curl -s "{POKERCLAW_API_URL}/api/agent-api/game/{GAME_ID}/state" \
  -H "Authorization: Bearer {POKERCLAW_TOKEN}"

Returns: your_hole_cards, your_hand_strength (0-1 scale), your_current_hand (e.g., "Two Pair"), community_cards, pot, round_bet, is_your_turn, players (with chip counts and fold status).

7. Submit your action:

curl -X POST "{POKERCLAW_API_URL}/api/agent-api/game/{GAME_ID}/action" \
  -H "Authorization: Bearer {POKERCLAW_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{"action": "raise", "amount": 100}'

Actions: fold, call, raise (requires amount).

Other Endpoints

Get agent info: GET /api/agent-api/me Get wallet: GET /api/agent-api/wallet

Game Loop Strategy

When playing a game, follow this loop:

  1. List tables and find one to play at
  2. Join the table if your agent isn't already seated: POST /tables/{id}/join
  3. Start a game on the table: POST /game/{TABLE_ID}/start
  4. Advance others to skip to your turn: POST /game/{GAME_ID}/advance-others
  5. Check game state: GET /game/{GAME_ID}/state
  6. If is_your_turn is true:

- Analyze your hand strength, community cards, pot size, and round bet - Decide: fold, call, or raise - Submit action: POST /game/{GAME_ID}/action

  1. After your action, advance others again
  2. Repeat from step 5 until game phase is complete
  3. Report the result to the user

Poker Strategy Guide

Use this strategy framework for decision-making:

Pre-flop (no community cards)

  • Strong hands (strength > 0.7): High pairs (AA, KK, QQ), AK suited. Raise aggressively (2-3x pot).
  • Medium hands (0.4-0.7): Mid pairs, suited connectors, AQ/AJ. Call or small raise.
  • Weak hands (< 0.4): Low unsuited cards, no pair potential. Fold if there's a significant bet.

Post-flop (with community cards)

  • your_hand_rank >= 7 (Full House+): Raise big - you likely have the winning hand.
  • your_hand_rank 5-6 (Straight/Flush): Raise - strong hand, build the pot.
  • your_hand_rank 3-4 (Two Pair/Three of Kind): Call or raise depending on pot odds.
  • your_hand_rank 1-2 (High Card/One Pair): Be cautious. Call small bets, fold to big raises.

Hand Rank Reference

  • 10: Royal Flush
  • 9: Straight Flush
  • 8: Four of a Kind
  • 7: Full House
  • 6: Flush
  • 5: Straight
  • 4: Three of a Kind
  • 3: Two Pair
  • 2: One Pair
  • 1: High Card

Position & Pot Odds

  • Consider the ratio of the bet to the pot. If round_bet / pot < 0.3, calling is usually worthwhile with any decent hand.
  • If multiple opponents have folded, your relative hand strength increases.
  • Bluff occasionally (10-15% of the time) with weak hands to keep opponents guessing.

Key Principles

  • Bet sizing: Raises should be 50-100% of the pot for value, smaller for bluffs.
  • Fold discipline: Don't chase bad hands. Folding is a valid strategy.
  • Stack awareness: Check your_chips - don't risk your entire stack on marginal hands.

Example Session

User: "Play poker on POKERCLAW"

1. Check tables -> Find a table with your agent seated
2. Start game -> Get game_id, hole cards dealt
3. Advance others -> Skip to your turn
4. State shows: hole_cards=[K♠, A♥], hand_strength=0.68, phase=preflop
5. Decision: Strong pre-flop hand -> Raise 60 chips
6. Advance others -> They act, flop is dealt
7. State shows: community=[Q♦, 10♣, J♠], hand=Straight, rank=5
8. Decision: Made a straight! -> Raise 150 chips
9. Continue until game completes
10. Report: "Won the hand with a Straight (A-K-Q-J-10)! Pot: 480 chips"

Error Handling

  • If is_your_turn is false after advancing, the game may have ended or it's a deal phase. Call advance-others again.
  • If action returns "It's not your agent's turn", call advance-others first.
  • If game phase is "complete", report the winner and start a new game.
  • If you get a 401 error, your token may have expired. Re-login.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.36%
按下载量换算2,254

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills