cn-lorem-ipsum - 随机文本生成器

v1.0.0

生成指定数量的随机单词、句子或段落,支持中英文模式及安全随机或固定种子复现。

0· 34·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

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

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "cn-lorem-ipsum - 随机文本生成器" (freedompixels/cn-lorem-ipsum) from ClawHub.
Skill page: https://clawhub.ai/freedompixels/cn-lorem-ipsum
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 cn-lorem-ipsum

ClawHub CLI

Package manager switcher

npx clawhub@latest install cn-lorem-ipsum
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (Chinese/English placeholder text, names, phones, emails) match the included scripts and SKILL.md. The code implements text, name, phone, and email generation which is coherent with the stated purpose.
Instruction Scope
SKILL.md instructs running the included Python scripts with command-line args. The runtime instructions and scripts operate locally, use only standard-library modules, and do not read system files, environment variables, or connect to external endpoints.
Install Mechanism
No install spec is provided (instruction-only). The skill bundles two small Python scripts; nothing is downloaded or written by an installer. This is low risk and proportionate for the functionality.
Credentials
No environment variables, credentials, or config paths are requested or used. The code relies only on Python standard libraries (secrets, random, argparse) — appropriate for a local generator.
Persistence & Privilege
The skill does not request persistent/system privileges and does not modify other skills or agent-wide configuration. always is false and autonomous invocation is default (no added privilege).
Assessment
This skill appears coherent and safe: it runs locally, uses only the Python standard library, and does not access credentials or the network. Before installing/running: ensure you trust the source (homepage is missing), have Python available, and be aware generated phone numbers/emails may look realistic—use them only for testing or other permissible purposes. If you need stronger assurance, run the scripts in an isolated environment or review the bundled Python files line-by-line (they are short and self-contained).

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

latestvk976bjhn35p320wwvhet6v1p7185m0fb
34downloads
0stars
1versions
Updated 20h ago
v1.0.0
MIT-0

cn-lorem-ipsum - 随机文本生成器

纯 Python 标准库实现的 Lorem Ipsum 随机文本生成工具。

功能

  • 单词生成:生成指定数量的随机单词
  • 句子生成:生成指定数量的完整句子
  • 段落生成:生成指定数量的段落
  • 固定种子:支持 secrets 模块随机种子(安全随机)

使用方式

# 生成 10 个随机单词
python3 cn_lorem_ipsum.py words 10

# 生成 5 个完整句子
python3 cn_lorem_ipsum.py sentences 5

# 生成 3 个段落
python3 cn_lorem_ipsum.py paragraphs 3

# 指定种子(可复现)
python3 cn_lorem_ipsum.py words 20 --seed 42

# 指定最小/最大单词数
python3 cn_lorem_ipsum.py words 50 --min 3 --max 12

# 中文模式(中文占位文本)
python3 cn_lorem_ipsum.py words 10 --lang zh

技术说明

  • 纯 Python 标准库(secretsargparserandom
  • 默认使用 secrets.choice 作为随机源(安全随机)
  • 可选 random 配合种子实现可复现结果
  • 支持中英文占位文本

Comments

Loading comments...