← Back to Skills Marketplace
mibayy

Casino Blackjack Advisor

by Mibayy · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
145
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install casino-blackjack-advisor
Description
Returns the mathematically optimal blackjack action (HIT/STAND/DOUBLE/SPLIT/SURRENDER) for any hand using perfect basic strategy (6 decks, S17). Reduces hous...
README (SKILL.md)

Blackjack Basic Strategy Advisor

Perfect basic strategy for 6-deck blackjack (dealer stands on soft 17). Covers all hand types: hard, soft, and pairs. Reduces house edge to 0.3% — the lowest achievable without card counting.

Usage

# Single hand (outputs JSON)
python blackjack_advisor.py "8,6" "7"
python blackjack_advisor.py "A,7" "6"
python blackjack_advisor.py "9,9" "6"

# Demo (runs 7 test hands)
python blackjack_advisor.py

Output

{
  "action": "DOUBLE",
  "explain": "Double ta mise et prends UNE seule carte.",
  "hand_type": "soft 18",
  "total": 18,
  "confidence": "optimal"
}

Actions: HIT | STAND | DOUBLE | SPLIT | SURRENDER | BLACKJACK

Strategy covered

  • Hard hands (4–21): full matrix vs all dealer upcards 2–A
  • Soft hands (A+2 through A+9): double/hit/stand decisions
  • Pairs (2–A): split vs no-split vs double

Rules assumed

  • 6 decks
  • Dealer stands on soft 17 (S17)
  • Double after split allowed
  • Surrender available (late surrender)

No configuration required

No env vars, no API keys, no dependencies beyond Python stdlib.

Why this matters

Playing slots or guessing costs 4–40x more per dollar wagered than using basic strategy. On a $5,000 wagering requirement: slots cost ~$200, basic strategy costs ~$15.

Usage Guidance
This skill appears safe and does what it claims: a local basic-strategy advisor implemented in one Python file with no network or secret access. Before installing, consider: (1) the advice assumes 6 decks and dealer stands on soft 17—confirm these match your casino rules; (2) explanations are in French—output may mix languages; (3) while benign, review any third-party skills that could combine with this one if you plan to allow autonomous invocation. If you need the skill to run in an automated agent, ensure you trust that agent's overall permissions.
Capability Analysis
Type: OpenClaw Skill Name: casino-blackjack-advisor Version: 1.0.0 The skill is a straightforward blackjack strategy advisor that uses hardcoded lookup tables to provide mathematically optimal moves. The code in blackjack_advisor.py uses only standard Python libraries (sys, json), contains no network or file system access, and lacks any indicators of malicious intent or prompt injection.
Capability Assessment
Purpose & Capability
Name/description match the implementation: a local Python script that returns basic-strategy actions for 6-deck S17 blackjack. No unrelated binaries, credentials, or external services are requested.
Instruction Scope
SKILL.md describes only local usage (CLI/demo). The runtime instructions and the included script operate on provided cards and print JSON or a demo table. The instructions do not ask the agent to read unrelated files, env vars, or transmit data externally.
Install Mechanism
No install spec; this is an instruction-only skill with a single Python file relying on the stdlib. Nothing is downloaded or written to disk beyond the normal installation of the skill bundle.
Credentials
The skill requires no environment variables, credentials, or config paths. All behavior is local and self-contained; requested access is minimal and appropriate for the stated functionality.
Persistence & Privilege
Flags: always:false (not force-included). The clawhub.json marks the script as an automaton entrypoint, which is expected for a runnable skill. There is no indication the skill modifies other skills, stores credentials, or requests persistent privileged presence.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install casino-blackjack-advisor
  3. After installation, invoke the skill by name or use /casino-blackjack-advisor
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Perfect basic strategy for 6-deck S17 blackjack. CLI + JSON output. Zero dependencies.
Metadata
Slug casino-blackjack-advisor
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Casino Blackjack Advisor?

Returns the mathematically optimal blackjack action (HIT/STAND/DOUBLE/SPLIT/SURRENDER) for any hand using perfect basic strategy (6 decks, S17). Reduces hous... It is an AI Agent Skill for Claude Code / OpenClaw, with 145 downloads so far.

How do I install Casino Blackjack Advisor?

Run "/install casino-blackjack-advisor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Casino Blackjack Advisor free?

Yes, Casino Blackjack Advisor is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Casino Blackjack Advisor support?

Casino Blackjack Advisor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Casino Blackjack Advisor?

It is built and maintained by Mibayy (@mibayy); the current version is v1.0.0.

💬 Comments