Generate a random value
oneguard_generateGenerate random strings locally for temporary or non-secret use. Returns the values directly in conversation, storing nothing—for secrets, use the dedicated secret generation tool instead.
Instructions
Generates one or more random values locally and returns them. Nothing is stored anywhere. Note that the returned value passes through this conversation — if the value is going into a OneGuard secret, use oneguard_secrets_generate instead, which stores it without ever revealing it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | How many values to generate. Default 1. | |
| length | No | Number of characters. Default 16. | |
| numbers | No | Include 0-9. Default true. | |
| special | No | Include !@#%^&*()-_=+[]{}|;:,.<>? . Default true. | |
| lowercase | No | Include a-z. Default true. | |
| uppercase | No | Include A-Z. Default true. | |
| min_numbers | No | Minimum digits in the value. Default 2. | |
| min_special | No | Minimum special characters. Default 2. |