From b2d281c29d50601eeccfefef250754649aee12fa Mon Sep 17 00:00:00 2001 From: Jiang Bohan Date: Fri, 30 Jan 2026 17:34:35 +0800 Subject: [PATCH] docs(skill-creator): emphasize correct skill directory path --- skills/skill-creator/SKILL.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/skills/skill-creator/SKILL.md b/skills/skill-creator/SKILL.md index b96ce8e3..29c8d77f 100644 --- a/skills/skill-creator/SKILL.md +++ b/skills/skill-creator/SKILL.md @@ -71,16 +71,20 @@ Detailed instructions that will be injected into your system prompt... ### Creating a Skill +**IMPORTANT**: Always create skills in `~/.super-multica/skills/`, NOT in the current working directory. + To create a new skill: -1. Create the skill directory: +1. Create the skill directory (use absolute path): ```bash mkdir -p ~/.super-multica/skills/ ``` -2. Write the SKILL.md file with proper frontmatter and instructions +2. Write the SKILL.md file at `~/.super-multica/skills//SKILL.md` -3. The skill will be automatically loaded (hot-reload is enabled) +3. If including scripts, create them at `~/.super-multica/skills//scripts/` + +4. The skill will be automatically loaded (hot-reload is enabled) ### Example: Creating a Translation Skill