rand

Installation
SKILL.md

rand - Random Data Generation

The rand module generates various types of random data, ranging from basic numbers and strings to complex identifiers like UUIDv7 and mock data like emails or IP addresses.

When to Activate

  • When generating unique identifiers (UUID, UUIDv7).
  • When creating random passwords or tokens (strings, alphanum).
  • When generating mock data for testing (emails, IPs).
  • When requiring random integers or floats within a specific range.

Core Principles & Rules

  • Range Control: Use specific min/max values for int and float to suit the task.
  • Bulk Generation: Support for generating multiple items simultaneously (e.g., x rand email 5).
  • Identifier Uniqueness: Prefer uuidv7 for time-ordered unique identifiers.

Patterns & Examples

Installs
3
Repository
x-cmd/skill
GitHub Stars
21
First Seen
Apr 10, 2026
rand — x-cmd/skill