Creating Custom Skills 🛠 OpenClaw is designed to be easily extensible. "Skills" are the primary way to add new capabilities to your assistant. What is a Skill? A skill is a directory containing a file (which provides instructions and tool definitions to the LLM) and optionally some scripts or resources. Step-by-Step: Your First Skill 1. Create the Directory Skills live in your workspace, usually . Create a new folder for your skill: 2. Define the Create a file in that directory. This file uses YAML frontmatter for metadata and Markdown for instructions. 3. Add Tools (Optional) You can define…