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
intandfloatto suit the task. - Bulk Generation: Support for generating multiple items simultaneously (e.g.,
x rand email 5). - Identifier Uniqueness: Prefer
uuidv7for time-ordered unique identifiers.