Custom Skills
Introduction
You can customize skills and manage them within your project.
Customizing Skills
- Create the skill directory structure: Create a root
.feisuandirectory, and then add askillsdirectory inside it. Each subdirectory represents a skill and must contain aSKILL.mdfile. EachSKILL.mdfile follows the skill specification, containing the skill name, description, and other metadata. Any other files referenced by the skill will be included alongside this file.
.feisuan/
├── skills/
│ ├──my-skill/
│ │ ├──SKILL.md
│ │ └── helpers.py
│ └──another-skill/
│ └── SKILL.md
- Edit the SKILL.md file: Each
SKILL.mdfile must contain YAML frontmatter includingnameanddescription. Optionally, it can includeallowed-tools(a space-separated list of pre-approved tools) andlicense.
---
name: my-skill
description: A useful skill
allowed-tools: Bash Read Edit
license: MIT
---
# My Skill
