lorem-ipsum by intellectronica/agent-skills
npx skills add https://github.com/intellectronica/agent-skills --skill lorem-ipsum使用捆绑的生成器脚本生成 lorem ipsum 占位文本。务必使用脚本生成内容,而不是直接编写 lorem ipsum。
关键要求:生成输出中的所有文本必须是 lorem ipsum,包括标题、项目符号、列表项、表格单元格以及任何其他文本元素。
使用 scripts/generate.py 来生成 lorem ipsum 内容。该脚本处理所有文本生成,以确保输出一致、地道的 lorem ipsum。
# 生成 3 个段落(默认)
uv run scripts/generate.py
# 生成 5 个段落,每个段落 4 句话
uv run scripts/generate.py --paragraphs 5 --sentences 4
# 生成大约 500 个单词
uv run scripts/generate.py --words 500
# 生成恰好 1000 个字符
uv run scripts/generate.py --characters 1000
# 生成大约 200 个 LLM 令牌(约 800 个字符)
uv run scripts/generate.py --tokens 200
# 连续文本,无段落分隔
uv run scripts/generate.py --paragraphs 4 --continuous
# 3 个带标题的部分,每个部分 2 个段落
uv run scripts/generate.py --headings 3 --paragraphs 6
# 4 个带项目符号的部分(每个部分 5 个项目符号)
uv run scripts/generate.py --headings 4 --bullets 5
# 使用编号列表而非项目符号
uv run scripts/generate.py --headings 3 --bullets 6 --numbered
# 包含 5 个部分的逼真混合文档(内容类型多样)
uv run scripts/generate.py --mixed 5
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
--mixed 选项生成逼真的文档,每个部分具有不同的结构:
# 写入文件
uv run scripts/generate.py --paragraphs 3 --output ~/Desktop/placeholder.txt
# HTML 格式
uv run scripts/generate.py --headings 2 --format html --output page.html
# 纯文本格式(无 Markdown 格式)
uv run scripts/generate.py --format text
# 复制到剪贴板
uv run scripts/generate.py --words 200 | pbcopy
| 选项 | 描述 |
|---|---|
--paragraphs N | 段落数量(默认:3) |
--sentences N | 每个段落包含的句子数量(默认:5) |
--words N | 近似总单词数 |
--characters N | 精确字符数(会截断以匹配) |
--tokens N | 预估的 LLM 令牌数(约 4 个字符/令牌) |
--continuous | 输出无段落分隔 |
--headings N | 带标题的部分数量 |
--bullets N | 每个部分的项目符号数量 |
--numbered | 使用编号列表而非项目符号 |
--mixed N | 包含 N 个部分的逼真文档,内容类型多样 |
--output FILE | 写入文件而非标准输出 |
--format FORMAT | 输出格式:text、markdown、html(默认:markdown) |
scripts/generate.py--output 或重定向/管道pbcopy"生成 3 段 lorem ipsum"
uv run scripts/generate.py --paragraphs 3
"创建带有 3 个标题且每个标题下包含 2 个段落的 lorem ipsum"
uv run scripts/generate.py --headings 3 --paragraphs 6
"给我一个带项目符号的文档"
uv run scripts/generate.py --headings 3 --bullets 5
"将 500 个单词的连续 lorem ipsum 保存到 ~/Desktop/placeholder.txt"
uv run scripts/generate.py --words 500 --continuous --output ~/Desktop/placeholder.txt
"HTML 格式的带编号列表的 lorem ipsum"
uv run scripts/generate.py --headings 4 --bullets 5 --numbered --format html
"恰好 500 个字符的 lorem ipsum"
uv run scripts/generate.py --characters 500
"大约 100 个令牌的带标题的 lorem ipsum"
uv run scripts/generate.py --tokens 100 --headings 2
"一个包含混合内容的逼真文档"
uv run scripts/generate.py --mixed 5
每周安装量
152
代码仓库
GitHub 星标数
228
首次出现
2026 年 1 月 20 日
安全审计
安装于
claude-code128
opencode125
gemini-cli119
codex118
cursor113
antigravity104
Generate lorem ipsum placeholder text using the bundled generator script. Always use the script to generate content rather than writing lorem ipsum directly.
Critical requirement : ALL text in the generated output must be lorem ipsum, including headings, bullet points, list items, table cells, and any other textual elements.
Use scripts/generate.py to produce lorem ipsum content. The script handles all text generation to ensure consistent, authentic lorem ipsum output.
# Generate 3 paragraphs (default)
uv run scripts/generate.py
# Generate 5 paragraphs with 4 sentences each
uv run scripts/generate.py --paragraphs 5 --sentences 4
# Generate approximately 500 words
uv run scripts/generate.py --words 500
# Generate exactly 1000 characters
uv run scripts/generate.py --characters 1000
# Generate approximately 200 LLM tokens (~800 characters)
uv run scripts/generate.py --tokens 200
# Continuous text without paragraph breaks
uv run scripts/generate.py --paragraphs 4 --continuous
# 3 sections with headings and 2 paragraphs each
uv run scripts/generate.py --headings 3 --paragraphs 6
# 4 sections with bullet points (5 bullets each)
uv run scripts/generate.py --headings 4 --bullets 5
# Numbered lists instead of bullets
uv run scripts/generate.py --headings 3 --bullets 6 --numbered
# Realistic mixed document with 5 sections (varied content types)
uv run scripts/generate.py --mixed 5
The --mixed option generates realistic documents with varied structure per section:
# Write to file
uv run scripts/generate.py --paragraphs 3 --output ~/Desktop/placeholder.txt
# HTML format
uv run scripts/generate.py --headings 2 --format html --output page.html
# Plain text (no markdown formatting)
uv run scripts/generate.py --format text
# Copy to clipboard
uv run scripts/generate.py --words 200 | pbcopy
| Option | Description |
|---|---|
--paragraphs N | Number of paragraphs (default: 3) |
--sentences N | Sentences per paragraph (default: 5) |
--words N | Approximate total word count |
--characters N | Exact character count (truncates to match) |
--tokens N | Estimated LLM token count (~4 chars/token) |
--continuous |
scripts/generate.py with appropriate options--output or redirect/pipe as neededpbcopy"Generate 3 paragraphs of lorem ipsum"
uv run scripts/generate.py --paragraphs 3
"Create lorem ipsum with 3 headings and 2 paragraphs under each"
uv run scripts/generate.py --headings 3 --paragraphs 6
"Give me a document with bullet points"
uv run scripts/generate.py --headings 3 --bullets 5
"500 words of continuous lorem ipsum saved to ~/Desktop/placeholder.txt"
uv run scripts/generate.py --words 500 --continuous --output ~/Desktop/placeholder.txt
"Lorem ipsum with numbered lists in HTML format"
uv run scripts/generate.py --headings 4 --bullets 5 --numbered --format html
"Exactly 500 characters of lorem ipsum"
uv run scripts/generate.py --characters 500
"About 100 tokens worth of lorem ipsum with headings"
uv run scripts/generate.py --tokens 100 --headings 2
"A realistic document with mixed content"
uv run scripts/generate.py --mixed 5
Weekly Installs
152
Repository
GitHub Stars
228
First Seen
Jan 20, 2026
Security Audits
Gen Agent Trust HubWarnSocketPassSnykPass
Installed on
claude-code128
opencode125
gemini-cli119
codex118
cursor113
antigravity104
agent-browser 浏览器自动化工具 - Vercel Labs 命令行网页操作与测试
152,900 周安装
WordPress区块开发指南:创建、修改、调试与迁移WP区块完整教程
785 周安装
Python图像处理技能:Pillow脚本生成,支持调整大小、格式转换、网页优化
794 周安装
Clerk Swift iOS 原生集成指南:SwiftUI/UIKit 认证实现与快速开始
796 周安装
Autoresearch:自主实验循环工具,自动化代码优化与性能改进
827 周安装
zeroize-audit 安全审计工具:检测敏感数据归零漏洞与编译器优化风险
811 周安装
App Store Connect CLI 崩溃排查工具:快速分析 TestFlight 崩溃报告与性能诊断
839 周安装
| Output without paragraph breaks |
--headings N | Number of sections with headings |
--bullets N | Bullet points per section |
--numbered | Use numbered lists instead of bullets |
--mixed N | Realistic document with N sections, varied content types |
--output FILE | Write to file instead of stdout |
--format FORMAT | Output format: text, markdown, html (default: markdown) |