UUID Generator
CommunityGenerate random UUIDs (v4) for testing databases.
Installation
Save as `uuid.js`.
Source Code
JavaScriptTutorial.terminal
// uuid.js
const crypto = require('crypto');
module.exports = async function() {
return {
uuid: crypto.randomUUID(),
created: new Date().toISOString()
};
};
Live Preview
β Live DemoAgent 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.