Install
openclaw skills install data-generator-programming-and-webData Generator - Programming and Web: Generate random data: UUIDs (v1/v4), strings, integers, hex, bytes, passwords, API keys, JWT secrets, colors, emails, IPs, Lorem Ipsum, timestamps. Use when an agent needs data generator programming and web, data generator programming and web, uuid generation, unique identifier creation, uuid v4 random, uuid v1 timestamp, api key, length through AgentPMT-hosted remote tool calls. Discovery terms: data generator programming and web, uuid generation.
openclaw skills install data-generator-programming-and-webLast updated: 2026-06-11.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Versatile data generation utility that produces random values, unique identifiers, secure credentials, and placeholder content. It supports UUID generation in both version 4 (random) and version 1 (timestamp-based) formats, making it easy to create unique identifiers for databases, distributed systems, and tracking purposes. The tool includes comprehensive random data generation capabilities including strings with customizable character sets, integers within specified ranges, hexadecimal values, raw bytes, hex color codes, fake email addresses, and random IPv4 addresses. For security-focused applications, Generators creates cryptographically secure passwords with configurable complexity rules, URL-safe API keys with optional prefixes, and high-entropy JWT secrets suitable for token signing. Content creators and developers can generate Lorem Ipsum placeholder text by word count, sentence count, or paragraph count. The tool also provides current timestamps in both Unix epoch and ISO 8601 formats. All security-sensitive outputs use cryptographically secure random number generation to ensure unpredictability and safety for production use.
Generate random data for development, testing, and prototyping: UUIDs, random strings, passwords, API keys, lorem ipsum text, timestamps, and more.
Generate a random UUID version 4.
Required fields: none
Example:
{ "action": "uuid-v4" }
Generate a UUID version 1 (timestamp-style).
Required fields: none
Example:
{ "action": "uuid-v1" }
Generate a random string of a given length and character set.
Required fields:
length (integer, 1-1000) — number of charactersOptional fields:
charset (string) — one of alphanumeric (default), alpha, numeric, ascii, hexExample:
{ "action": "random-string", "length": 24, "charset": "ascii" }
Generate a random integer within a range.
Required fields: none
Optional fields:
min_value (integer, default 0) — lower boundmax_value (integer, default 100) — upper boundExample:
{ "action": "random-number", "min_value": 1, "max_value": 1000 }
Generate a random hexadecimal string.
Required fields:
length (integer, 1-64) — number of hex charactersExample:
{ "action": "random-hex", "length": 32 }
Generate random bytes returned as a hexadecimal string.
Required fields:
length (integer, 1-1024) — number of bytesExample:
{ "action": "random-bytes", "length": 16 }
Generate a random hex color code (e.g., #a3f1c2).
Required fields: none
Example:
{ "action": "random-color" }
Generate a random test email address using example domains.
Required fields: none
Example:
{ "action": "random-email" }
Generate a random IPv4 address.
Required fields: none
Example:
{ "action": "random-ipv4" }
Generate a secure random password with configurable character types.
Required fields:
length (integer, 4-128) — password lengthOptional fields:
include_uppercase (boolean, default true)include_lowercase (boolean, default true)include_numbers (boolean, default true)include_symbols (boolean, default true)At least one character type must be enabled.
Example — 20-character password, no symbols:
{ "action": "password", "length": 20, "include_symbols": false }
Generate a URL-safe API key with an optional prefix.
Required fields:
length (integer, 16-128) — key length (excluding prefix)Optional fields:
prefix (string, default "") — prefix prepended to the key (e.g., sk_, pk_test_)Example:
{ "action": "api-key", "length": 40, "prefix": "sk_live_" }
Generate a secure JWT signing secret.
Required fields: none
Optional fields:
length (integer, min 32, default 64) — secret lengthExample:
{ "action": "jwt-secret", "length": 128 }
Generate Lorem Ipsum placeholder text. Priority: words > sentences > paragraphs.
Required fields: none
Optional fields:
words (integer) — return exactly this many words (overrides sentences/paragraphs)sentences (integer) — return this many sentences (overrides paragraphs)paragraphs (integer, default 1) — return this many paragraphsExample — 3 sentences:
{ "action": "lorem-ipsum", "sentences": 3 }
Example — 50 words:
{ "action": "lorem-ipsum", "words": 50 }
Return the current Unix timestamp (seconds since epoch).
Required fields: none
Example:
{ "action": "timestamp" }
Return the current date and time in ISO 8601 format.
Required fields: none
Example:
{ "action": "iso-date" }
uuid-v4 for IDs, random-email for user emails, password for hashed credentials, and lorem-ipsum for filler text.api-key with a prefix like sk_test_ and jwt-secret for signing tokens.random-ipv4, random-hex (for MAC-style addresses), and timestamp for log entries.random-color for palette generation and lorem-ipsum for placeholder copy.password, api-key, jwt-secret) use cryptographically secure random sources.random-bytes action returns bytes encoded as a hexadecimal string (2 hex chars per byte).lorem-ipsum, specifying words takes priority over sentences, which takes priority over paragraphs.Data Generator - Programming and Web on AgentPMT.api-key, iso-date, jwt-secret, lorem-ipsum, password, random-bytes, random-color, random-email, random-hex, random-ipv4, random-number, random-string, timestamp, uuid-v1, uuid-v4.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 15.
x402 availability: not enabled for this product.
api-key (action slug: api-key): Generate a URL-safe API key with an optional prefix. Price: 5 credits. Parameters: length, prefix.iso-date (action slug: iso-date): Return the current date and time in ISO 8601 format. Price: 5 credits. Parameters: none.jwt-secret (action slug: jwt-secret): Generate a secure JWT signing secret. Price: 5 credits. Parameters: length.lorem-ipsum (action slug: lorem-ipsum): Generate Lorem Ipsum placeholder text. Priority: words > sentences > paragraphs. Price: 5 credits. Parameters: paragraphs, sentences, words.password (action slug: password): Generate a secure random password with configurable character types. Price: 5 credits. Parameters: include_lowercase, include_numbers, include_symbols, include_uppercase, length.random-bytes (action slug: random-bytes): Generate random bytes returned as a hexadecimal string. Price: 5 credits. Parameters: length.random-color (action slug: random-color): Generate a random hex color code (e.g., #a3f1c2). Price: 5 credits. Parameters: none.random-email (action slug: random-email): Generate a random test email address using example domains. Price: 5 credits. Parameters: none.random-hex (action slug: random-hex): Generate a random hexadecimal string. Price: 5 credits. Parameters: length.random-ipv4 (action slug: random-ipv4): Generate a random IPv4 address. Price: 5 credits. Parameters: none.random-number (action slug: random-number): Generate a random integer within a specified range. Price: 5 credits. Parameters: max_value, min_value.random-string (action slug: random-string): Generate a random string of specified length and character set. Price: 5 credits. Parameters: charset, length.timestamp (action slug: timestamp): Return the current Unix timestamp (seconds since epoch). Price: 5 credits. Parameters: none.uuid-v1 (action slug: uuid-v1): Generate a UUID version 1 (timestamp-based). Price: 5 credits. Parameters: none.uuid-v4 (action slug: uuid-v4): Generate a random UUID version 4. Price: 5 credits. Parameters: none.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "data-generator-programming-and-web".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "data-generator-programming-and-web", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "data-generator-programming-and-web"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "data-generator-programming-and-web"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "data-generator-programming-and-web"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "data-generator-programming-and-web"
}
}
Product slug: data-generator-programming-and-web
Marketplace page: https://www.agentpmt.com/marketplace/data-generator-programming-and-web
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Data-Generator---Programming-and-Web",
"arguments": {
"action": "api-key",
"length": 16,
"prefix": ""
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "data-generator-programming-and-web",
"parameters": {
"action": "api-key",
"length": 16,
"prefix": ""
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.api-key fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)