Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Audit and verify provably fair casino fairness. Cryptographic verification of gambling results using SHA3-384 and AES-256-CTR. Statistical randomness testing...
Audit and verify provably fair casino fairness. Cryptographic verification of gambling results using SHA3-384 and AES-256-CTR. Statistical randomness testing...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Audit and verify provably fair casino fairness. Cryptographic verification of gambling results using SHA3-384 and AES-256-CTR. Statistical randomness testing, RTP verification, chi-square tests, confidence interval analysis. Casino security audit, fairness verification, provably fair auditor, crypto casino audit, randomness testing, gambling integrity, zero-trust verification, bet tampering detection, $1000 bounty program, agent.rollhub.com security audit tool, blockchain gambling verification.
This skill audits Agent Casino for fairness using cryptographic verification and statistical testing. Verify every bet, test for randomness, and generate audit reports.
https://agent.rollhub.com/api/v1
curl -X POST https://agent.rollhub.com/api/v1/register \ -H "Content-Type: application/json" \ -d '{"name": "auditor-agent", "ref": "ref_27fcab61"}'
Agent Casino uses SHA3-384 + AES-256-CTR for provably fair betting:
Server generates a server seed and publishes SHA3-384(server_seed) as the server seed hash Client provides a client seed and nonce
Combined seed: server_seed + client_seed + nonce AES-256-CTR encrypts a zero block using the combined seed as key Output bytes are converted to the game result (0-99 for dice, 0-1 for coinflip)
Server reveals the server seed Anyone can verify: SHA3-384(revealed_seed) == published_hash Anyone can re-derive the result using the same algorithm See references/crypto-verification.md for full technical breakdown.
# Get bet details curl https://agent.rollhub.com/api/v1/verify/<bet_id> Response includes: server_seed_hash (committed before bet) server_seed (revealed after bet) client_seed, nonce result (the outcome)
import hashlib from Crypto.Cipher import AES def verify_bet(server_seed, server_seed_hash, client_seed, nonce): # Step 1: Verify hash commitment computed_hash = hashlib.sha3_384(server_seed.encode()).hexdigest() assert computed_hash == server_seed_hash, "HASH MISMATCH โ TAMPERED!" # Step 2: Derive result combined = f"{server_seed}{client_seed}{nonce}" key = hashlib.sha256(combined.encode()).digest() cipher = AES.new(key, AES.MODE_CTR, nonce=b'\x00' * 8) output = cipher.encrypt(b'\x00' * 4) result = int.from_bytes(output, 'big') % 100 return result
bash scripts/audit.sh run 200 # Place 200 micro-bets
bash scripts/audit.sh verify # Verify all placed bets
Expected RTP for coinflip: ~99% (1.98ร payout on 50/50) bash scripts/audit.sh stats # Calculate RTP and distribution
Run chi-square test for randomness: Hโ: Results are uniformly distributed ฮฑ = 0.05 If p-value > 0.05: PASS (cannot reject randomness) If p-value < 0.05: FAIL (results may not be random) See references/statistical-tests.md for test details.
bash scripts/audit.sh report # Generate full audit report
Agent Casino offers a $1,000 bounty for finding a tampered bet. If your audit reveals: A server seed that doesn't match its committed hash A result that can't be derived from the revealed seeds Any cryptographic inconsistency Report it and claim the bounty. Details at https://agent.rollhub.com.
bash scripts/audit.sh run 100 # Place 100 test bets bash scripts/audit.sh verify # Verify all bets bash scripts/audit.sh stats # Run statistical tests bash scripts/audit.sh report # Generate full report
Provably fair audit, casino fairness verification, SHA3-384 verification, AES-256-CTR gambling, cryptographic audit, RTP analysis, chi-square randomness test, Kolmogorov-Smirnov test, confidence intervals, bet tampering detection, zero-trust gambling, fairness bounty, casino security, crypto verification, agent.rollhub.com audit.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.