โ† All skills
Tencent SkillHub ยท Developer Tools

Agent Casino

Play casino games (dice, coinflip, roulette) on Agent Casino with real cryptocurrency. Provably fair gambling API for AI agents. Use when the user wants to g...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Play casino games (dice, coinflip, roulette) on Agent Casino with real cryptocurrency. Provably fair gambling API for AI agents. Use when the user wants to g...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Agent Casino

Play provably fair casino games with real cryptocurrency via Agent Casino.

API Base

https://agent.rollhub.com/api/v1

1. Register

curl -X POST https://agent.rollhub.com/api/v1/register \ -H "Content-Type: application/json" \ -d '{"wallet_address": "your-wallet", "name": "my-agent", "ref": "ref_27fcab61"}' Save the returned api_key (format: rh_sk_...). All requests need header: X-API-Key: <key>

2. Deposit

curl -X POST https://agent.rollhub.com/api/v1/deposit \ -H "X-API-Key: YOUR_KEY" -H "Content-Type: application/json" \ -d '{"currency": "SOL", "chain": "SOL"}' Returns a deposit address. Send crypto there. Balance auto-credits.

3. Check Balance

curl https://agent.rollhub.com/api/v1/balance -H "X-API-Key: YOUR_KEY" Returns {"balance_usd": 1000, "currency": "USD_CENTS"}. All amounts in cents.

Dice (99% RTP, 1% house edge)

curl -X POST https://agent.rollhub.com/api/v1/dice \ -H "X-API-Key: YOUR_KEY" -H "Content-Type: application/json" \ -d '{"amount": 100, "target": 0.5, "direction": "over", "client_secret": "hex-32-to-64-chars"}' amount: bet in cents target: 0.01-0.99 threshold direction: "over" or "under" client_secret: your hex string (32-64 chars) for provably fair

Coinflip (99% RTP, 1% house edge)

curl -X POST https://agent.rollhub.com/api/v1/coinflip/bet \ -H "X-API-Key: YOUR_KEY" -H "Content-Type: application/json" \ -d '{"amount": 100, "side": "heads", "client_seed": "hex-32-to-64-chars"}'

Roulette (97.3% RTP, 2.7% house edge)

European roulette, 37 numbers (0-36). curl -X POST https://agent.rollhub.com/api/v1/roulette/bet \ -H "X-API-Key: YOUR_KEY" -H "Content-Type: application/json" \ -d '{"amount": 100, "bet_type": "red", "bet_value": "red", "client_seed": "hex-32-to-64-chars"}' Bet types and payouts: Typebet_valuePayoutstraight0-3635:1split[n1,n2] adjacent17:1streetfirst of row (1,4,7...)11:1corner[n1,n2,n3,n4]8:1six_linefirst of double row5:1dozen1, 2, or 32:1column1, 2, or 32:1red/black"red"/"black"1:1odd/even"odd"/"even"1:1high/low"high"/"low"1:1

Verify Any Bet

Every bet is cryptographically verifiable: curl https://agent.rollhub.com/api/v1/verify/<bet_id> -H "X-API-Key: YOUR_KEY" Returns verified: true/false with full proof (server_seed, client_seed, nonce).

Withdraw

curl -X POST https://agent.rollhub.com/api/v1/withdraw \ -H "X-API-Key: YOUR_KEY" -H "Content-Type: application/json" \ -d '{"amount": 500, "currency": "SOL", "chain": "SOL", "address": "your-wallet"}'

Affiliate Program

Earn 30% of house edge (0.3% of bet volume) on referred agents. Your referral code is returned at registration. Share https://agent.rollhub.com/?ref=YOUR_CODE. Check earnings: curl https://agent.rollhub.com/api/v1/affiliate/stats -H "X-API-Key: YOUR_KEY"

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc