SeedGen

Generate reproducible seeds and deterministic test data. Use when creating random seeds, rotating salt values, auditing randomness, storing seed records.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "SeedGen" with this command: npx skills add bytesagain3/seedgen

SeedGen

Random seed and data generator. Generate random strings, hex, bytes, integers, floats, UUIDs, passwords, and batch outputs — using /dev/urandom and standard tools.

Commands

CommandDescription
seedgen string <length>Random alphanumeric string of given length
seedgen hex <bytes>Random hex string (2 hex chars per byte)
seedgen bytes <count>Random bytes, base64 encoded
seedgen int <min> <max>Random integer in range [min, max]
seedgen floatRandom float between 0 and 1
seedgen pick <item1> <item2> ...Randomly pick one item from a list
seedgen uuidGenerate a UUID v4
seedgen password <length>Generate a strong mixed-char password
seedgen batch <type> <count> [args]Generate multiple values at once
seedgen versionShow version

Examples

seedgen string 32          # → "aB3kQ9..."
seedgen hex 16             # → "4f2a1c..."
seedgen bytes 64           # → base64-encoded random bytes
seedgen int 1 100          # → 42
seedgen float              # → 0.73812...
seedgen pick red green blue # → "green"
seedgen uuid               # → "550e8400-e29b-41d4-..."
seedgen password 20        # → "kP#9xL!mQ..."
seedgen batch string 5 16  # → 5 random 16-char strings

Requirements

  • /dev/urandom (standard on Linux/macOS)
  • shuf, awk, od, base64 (standard coreutils)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Uuid Generator

Generate UUIDs in versions v1, v4, and v5 with options for count, namespace, name, and output format.

Registry SourceRecently Updated
771Profile unavailable
Coding

Playwright Test Generator

AI-driven Playwright test code generator for QA engineers. Generates Page Object Models, standard test scripts, and data-driven tests from natural language d...

Registry SourceRecently Updated
1610Profile unavailable
General

Test Data Generator

Generate customized test data in JSON, CSV, or SQL (MySQL/PostgreSQL) formats using built-in or custom templates with realistic fields like names, emails, an...

Registry SourceRecently Updated
1230Profile unavailable
Coding

Safe Facebook Messenger

Operate Facebook Messenger safely through a live signed-in Chrome session with remote debugging enabled using Chrome DevTools MCP. Use when sending direct me...

Registry SourceRecently Updated
1250Profile unavailable