-
|
Need Step-by-step instructions are needed It is unclear how to create skills. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi! Here's a step-by-step guide to create and use skills in AionUi: Creating a Custom Skill1. Navigate to the skills folder: Skills are stored in the 2. Create a new skill file: Create a new {
"name": "My Custom Skill",
"description": "Description of what this skill does",
"prompts": [
{
"role": "system",
"content": "You are a helpful assistant specialized in..."
}
],
"tools": []
}3. Restart AionUi to load the new skill. Troubleshooting: "Skill already added but not displayed"This is a known UI refresh issue. Try these steps:
If the issue persists, it might be a bug. Consider opening an Issue with:
Adding Custom Agent SelectionCurrently, the "main agent" selection is predefined. For custom agents:
You can also check the docs folder for more detailed configuration guides. If this helps, please mark it as the answer! ✅ |
Beta Was this translation helpful? Give feedback.



Hi! Here's a step-by-step guide to create and use skills in AionUi:
Creating a Custom Skill
1. Navigate to the skills folder:
Skills are stored in the
skills/directory of your AionUi installation.2. Create a new skill file:
Create a new
.jsonor.yamlfile in theskills/folder. Here's a basic structure:{ "name": "My Custom Skill", "description": "Description of what this skill does", "prompts": [ { "role": "system", "content": "You are a helpful assistant specialized in..." } ], "tools": [] }3. Restart AionUi to load the new skill.
Troubleshooting: "Skill already added but not displayed"
This is a known UI refresh issue. Try these steps: