Lorem Gen

v1.0.0

Generate placeholder text for design mockups, development, and testing. Supports classic Lorem Ipsum, hipster-style, and tech jargon. Output as plain text, H...

0· 143·0 current·0 all-time
byJohn Wang@johnnywang2001

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for johnnywang2001/lorem-gen.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Lorem Gen" (johnnywang2001/lorem-gen) from ClawHub.
Skill page: https://clawhub.ai/johnnywang2001/lorem-gen
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install lorem-gen

ClawHub CLI

Package manager switcher

npx clawhub@latest install lorem-gen
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included assets: the SKILL.md documents a CLI wrapper and the repository contains a single Python script whose sole purpose is generating lorem/hipster/tech placeholder text.
Instruction Scope
Runtime instructions only call the local script (python3 scripts/lorem_gen.py) with CLI flags. The SKILL.md and script do not read unrelated files, environment variables, or send data externally.
Install Mechanism
No install step is declared and the script uses only the Python standard library. Nothing is downloaded or extracted from external sources.
Credentials
The skill declares no required environment variables, credentials, or config paths, and the code does not access any secrets or external services.
Persistence & Privilege
always is false and the skill does not request persistent or elevated privileges. It only provides a local CLI script and does not modify agent/system configuration.
Assessment
This skill appears low-risk: it runs a small local Python script to produce placeholder text and requires no network access or credentials. If you plan to install or run it, ensure you have Python 3 available and that running small scripts from this source is acceptable in your environment. As with any third-party code, you can review the included scripts (scripts/lorem_gen.py) before executing; the file here is short, clear, and does not perform I/O beyond printing generated text.

Like a lobster shell, security has layers — review code before you run it.

latestvk972x5hsm90y8r5fsrmsvmphzx838x9f
143downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Lorem Gen

Generate placeholder text via CLI. Supports multiple styles and output formats.

Quick Start

# 3 paragraphs of classic Lorem Ipsum
python3 scripts/lorem_gen.py

# 5 sentences
python3 scripts/lorem_gen.py -n 5 -u sentences

# 50 words of hipster-style text
python3 scripts/lorem_gen.py -n 50 -u words -s hipster

# Tech jargon as HTML
python3 scripts/lorem_gen.py -s tech -f html

# JSON output with reproducible seed
python3 scripts/lorem_gen.py -n 2 -f json --seed 42

Options

FlagDescriptionDefault
-n, --countNumber of units3
-u, --unitparagraphs, sentences, or wordsparagraphs
-s, --stylelorem, hipster, or techlorem
-f, --formatplain, html, markdown, jsonplain
--no-classicSkip "Lorem ipsum dolor sit amet..." openingoff
--seedRandom seed for reproducible outputnone

Styles

  • lorem — Classic Latin placeholder text
  • hipster — Artisan / wellness / lifestyle vocabulary
  • tech — DevOps, cloud, and infrastructure jargon

Notes

  • No external dependencies (Python 3 stdlib only)
  • First paragraph starts with the classic opening by default (use --no-classic to disable)
  • Use --seed for deterministic output across runs

Comments

Loading comments...