OpenClawSkills
GitHub

Lorem Ipsum

Community

Generate placeholder text for design and testing.

Installation

Save as `lorem.js`.

Source Code

JavaScript
Tutorial.terminal

// lorem.js
// Generates random lorem ipsum text

module.exports = async function(context) {
    const paragraphs = [
        "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
        "Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
        "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.",
        "Duis aute irure dolor in reprehenderit in voluptate velit esse cillum."
    ];
    
    const count = parseInt(context.args[0]) || 1;
    return paragraphs.slice(0, count).join("\n\n");
};

Live Preview

● Live Demo
Agent Session
Starting session...

How to use

  • Ensure you have the necessary dependencies installed (if any).
  • Place the file in your OpenClaw skills folder (e.g., ~/.openclaw/skills/).
  • Restart your agent or reload configuration.
  • Invoke it using the filename (without extension) as the tool name, or through natural language if the description is clear.