OpenClawSkills
GitHub

UUID Generator

Community

Generate random UUIDs (v4) for testing databases.

Installation

Save as `uuid.js`.

Source Code

JavaScript
Tutorial.terminal

// uuid.js
const crypto = require('crypto');

module.exports = async function() {
    return {
        uuid: crypto.randomUUID(),
        created: new Date().toISOString()
    };
};

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.