Toolverse
All skills

goldenseed

by openclaw

Deterministic entropy streams for reproducible testing and procedural generation. Perfect 50/50 statistical distribution with hash verification. Not cryptographically secure - use for testing, worldgen, and scenarios where reproducibility matters more than unpredictability.

Installation

Pick a client and clone the repository into its skills directory.

Installation

Quick info

Author
openclaw
Category
Mobile

About this skill

Deterministic entropy streams for reproducible testing and procedural generation. Perfect 50/50 statistical distribution with hash verification. Not cryptographically secure - use for testing, worldgen, and scenarios where reproducibility matters more than unpredictability.

How to use

  1. Zainstaluj pakiet poleceniem pip install golden-seed w swoim środowisku Python.

  2. Zaimportuj klasę UniversalQKD z modułu gq: from gq import UniversalQKD.

  3. Utwórz generator z domyślnym ziarnem, wpisując gen = UniversalQKD(). Każde nowe wywołanie UniversalQKD() tworzy generator z tym samym ziarnem, co gwarantuje identyczne wyniki.

  4. Generuj 16-bajtowe porcje danych poleceniem chunk = next(gen). Powtórz to tyle razy, ile potrzebujesz bajtów. Każde wywołanie next() zwraca kolejny blok z deterministycznego strumienia.

  5. Weryfikuj powtarzalność, tworząc dwa niezależne generatory i porównując ich wyjścia: gen1 = UniversalQKD() i gen2 = UniversalQKD(), a następnie assert next(gen1) == next(gen2). Asercja zawsze przejdzie, ponieważ oba generatory mają identyczne ziarna.

  6. Do testów statystycznych (np. rzutu monetą) wyciągnij poszczególne bity z bajtów – na przykład byte & 1 zwraca najmniej znaczący bit, który możesz użyć jako wyniku rzutu (0 lub 1). Powtórz dla milionów iteracji, aby potwierdzić rozkład 50/50.

Related skills

godot

by bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI

Mobile
547680

build-iphone-apps

by glittercowboy

Build professional native iPhone apps in Swift with SwiftUI and UIKit. Full lifecycle - build, debug, test, optimize, ship. CLI-only, no Xcode. Targets iOS 26 with iOS 18 compatibility.

Mobile
1182

kotlin-multiplatform

by vitorpamplona

Platform abstraction decision-making for Amethyst KMP project. Guides when to abstract vs keep platform-specific,\nsource set placement (commonMain, jvmAndroid, platform-specific), expect/actual patterns. Covers primary targets\n(Android, JVM/Desktop, iOS) with web/wasm future

Mobile
15105

senior-architect

by alirezarezvani

Comprehensive software architecture skill for designing scalable, maintainable systems using ReactJS, NextJS, NodeJS, Express, React Native, Swift, Kotlin, Flutter, Postgres, GraphQL, Go, Python. Includes architecture diagram generation, system design patterns, tech stack

Mobile
184296

swift-best-practices

by sammcj

This skill should be used when writing or reviewing Swift code for iOS or macOS projects. Apply modern Swift 6+ best practices, concurrency patterns, API design guidelines, and migration strategies. Covers async/await, actors, MainActor, Sendable, typed throws, and Swift 6

Mobile
36140

csharp-developer

by zenobi-us

Expert C# developer specializing in modern .NET development, ASP.NET Core, and cloud-native applications. Masters C# 12 features, Blazor, and cross-platform development with emphasis on performance and clean architecture.

Mobile
37126