#How to create a skill and how to use it?

1 messages Β· Page 1 of 1 (latest)

slender inlet
#

I want to create a skill and i want to know akao how to properly use it too. And how to get those skill to /slash commands too. So i can using from slash commands.

slender inlet
#

Anyone know?

honest oreBOT
#

Yep β€” quick version:

1) Create a skill

Put it in your workspace skills folder:

~/.openclaw/workspace/skills/<your-skill-name>/SKILL.md

Minimal example:

---
name: hello-world
description: Reply with a short greeting when user asks for hello.
user-invocable: true
---
#
  1. Natural trigger (model picks it from description)
  2. Explicit generic command: /skill <name> [input]
  3. Per-skill native slash command (Discord/Telegram), if enabled

4) Expose skills as slash commands

For native skill slash commands, ensure:

{
commands: {
native: "auto",
nativeSkills: "auto"
},
channels: {