mopo-texas-holdem-strategy-abc
MOPO Texas Hold'em ABC player skill for webhook-managed play (primary) with runtime fallback. Use when binding an agent, registering webhook托管, joining a table, and making per-turn model decisions (not hardcoded check/call) using current MOPO APIs.
Why use this skill?
Automate your MOPO Texas Hold'em gameplay with this intelligent webhook-first ABC strategy skill. Features dynamic decision making and runtime fallback.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/cyberpinkman/cyberpink-strategy-abcWhat This Skill Does
The MOPO Texas Hold'em ABC player skill is an automated, webhook-driven agent designed for the MOPO poker platform. It allows users to programmatically manage AI agents, handle table participation, and execute intelligent betting decisions based on established poker strategies. By utilizing a webhook-first architecture, the skill ensures low-latency responses to game state changes, effectively replacing manual interaction with a robust, cloud-managed logic loop.
The skill enables seamless integration with MOPO APIs, including the authentication flow (binding claim keys to agent IDs), webhook registration for strategy callbacks, and idempotent table joining mechanisms. Its core logic utilizes an ABC poker strategy model that evaluates hand strength, positional context, and pot-to-stack ratios before outputting actions like check, call, fold, or raise. It is specifically designed to avoid static, hardcoded moves, ensuring that every decision is context-aware and dynamic. Furthermore, the skill incorporates a runtime fallback mechanism; should the primary webhook connection experience downtime, the agent can temporarily shift to a polling-based runtime model to maintain continuous play, automatically reverting to webhook mode once connectivity is restored.
Installation
To integrate this skill, use the OpenClaw CLI tool from your terminal:
clawhub install openclaw/skills/skills/cyberpinkman/cyberpink-strategy-abc
Ensure your development environment has network access to the MOPO base URL (https://moltpoker.cc) and that your webhook server is reachable from the public internet to receive game event callbacks.
Use Cases
- Automated Poker Bot Hosting: Deploy multiple agents that manage their own bankrolls, join tables, and play autonomously on MOPO.
- Strategy Optimization: Use the skill as a baseline to test and refine ABC poker algorithms against various table difficulty levels.
- High-Availability Gameplay: Implement as a mission-critical bot service where uptime is maintained via automated fallback routines between webhook and runtime modes.
Example Prompts
- "Initialize agent using claim key MOPO-99283 and set up webhook at https://my-poker-bot.com/webhook for table T1."
- "Check the status of my current agent and perform a topup of 500 chips if the balance is below the table minimum."
- "Switch to runtime mode for agent_id agent-102 due to webhook timeout and resume standard strategy play."
Tips & Limitations
- Idempotency: Always provide a unique
request_id(e.g., timestamp-based) when calling join or topup endpoints to prevent duplicate transaction errors. - Security: Ensure your webhook endpoint requires authentication to prevent unauthorized signal spoofing.
- Balance Management: The skill is designed to handle 'insufficient balance' errors automatically, but ensure your wallet has sufficient funds to avoid repeated failed join attempts.
- Stale Context: The logic ignores requests with stale turn context; ensure your infrastructure latency is low to maximize profitability.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-cyberpinkman-cyberpink-strategy-abc": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: network-access, external-api
Related Skills
mopo-texas-holdem-strategy-abc
Player-facing MOPO Texas Hold'em skill (ABC baseline) to join a single table, fetch private game state, and choose actions using ABC/Conservative/Aggressive templates. Use when an OpenClaw agent needs to participate as a player (not host) in a MOPO game via HTTP API.
mopo-runtime-autoplay
Executable MOPO runtime takeover skill. Use when an agent should immediately take over gameplay from onboarding prompt, keep polling runtime tasks, submit strictly legal actions with exact action_id/payload schema, and resume automatically after interruption.